[arch-commits] Commit in python-beautifulsoup4/repos (2 files)

Daniel Wallace dwallace at nymeria.archlinux.org
Mon Aug 19 01:57:08 UTC 2013


    Date: Monday, August 19, 2013 @ 03:57:08
  Author: dwallace
Revision: 95948

archrelease: copy trunk to community-testing-any

Added:
  python-beautifulsoup4/repos/community-testing-any/
  python-beautifulsoup4/repos/community-testing-any/PKGBUILD
    (from rev 95947, python-beautifulsoup4/trunk/PKGBUILD)

----------+
 PKGBUILD |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

Copied: python-beautifulsoup4/repos/community-testing-any/PKGBUILD (from rev 95947, python-beautifulsoup4/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2013-08-19 01:57:08 UTC (rev 95948)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+
+pkgbase=python-beautifulsoup4
+pkgname=('python2-beautifulsoup4' 'python-beautifulsoup4')
+pkgver=4.3.1
+pkgrel=1
+pkgdesc="A Python HTML/XML parser designed for quick turnaround projects like screen-scraping"
+arch=('any')
+url="http://www.crummy.com/software/BeautifulSoup/index.html"
+license=('PSF')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("http://www.crummy.com/software/BeautifulSoup/bs4/download/${pkgver%.*}/${pkgbase#*-}-${pkgver}.tar.gz")
+md5sums=('508095f2784c64114e06856edc1dafed')
+
+build() {
+  cd "${srcdir}"
+  cp -a beautifulsoup4-${pkgver}{,-python2}
+
+  # Build python 3 module
+  cd "${srcdir}/beautifulsoup4-${pkgver}"
+  python setup.py build
+
+  # Build python 2 module
+  cd "${srcdir}/beautifulsoup4-${pkgver}-python2"
+  python2 setup.py build
+}
+
+package_python2-beautifulsoup4() {
+  optdepends=('python2-chardet: universal encoding detector'
+              'python2-lxml: pythonic binding for the libxml2 and libxslt libraries')
+
+  cd "${srcdir}/beautifulsoup4-${pkgver}-python2"
+  python2 setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+  rm -rf ${pkgdir}/usr/lib/python2.7/site-packages/bs4/tests
+}
+
+package_python-beautifulsoup4() {
+  optdepends=('python-chardet: universal encoding detector'
+              'python-lxml: pythonic binding for the libxml2 and libxslt libraries')
+
+  cd "${srcdir}/beautifulsoup4-${pkgver}"
+  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+
+  rm -rf ${pkgdir}/usr/lib/python3.2/site-packages/bs4/{__pycache__,tests,builder/__pycache__}
+}




More information about the arch-commits mailing list