Date: Sunday, December 25, 2016 @ 17:30:27
  Author: bpiotrowski
Revision: 202101

archrelease: copy trunk to community-staging-any

Added:
  python-w3lib/repos/community-staging-any/
  python-w3lib/repos/community-staging-any/PKGBUILD
    (from rev 202100, python-w3lib/trunk/PKGBUILD)

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

Copied: python-w3lib/repos/community-staging-any/PKGBUILD (from rev 202100, 
python-w3lib/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2016-12-25 17:30:27 UTC (rev 202101)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Bence Balint <[email protected]>
+
+pkgbase=python-w3lib
+pkgname=('python-w3lib' 'python2-w3lib')
+pkgver=1.16.0
+pkgrel=2
+pkgdesc="Library of web-related functions"
+arch=('any')
+license=('BSD')
+url="http://w3lib.readthedocs.org";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'git')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("git+https://github.com/scrapy/w3lib.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a w3lib{,-py2}
+}
+
+check() {
+  cd "$srcdir"/w3lib
+  py.test
+
+  cd "$srcdir"/w3lib-py2
+  py.test2
+}
+
+package_python-w3lib() {
+  depends=('python-six')
+
+  cd w3lib
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-w3lib() {
+  depends=('python2-six')
+
+  cd w3lib-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Reply via email to