[arch-commits] Commit in python-zope-location/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Dec 24 16:21:28 UTC 2016
Date: Saturday, December 24, 2016 @ 16:21:28
Author: felixonmars
Revision: 201544
archrelease: copy trunk to community-staging-any
Added:
python-zope-location/repos/community-staging-any/
python-zope-location/repos/community-staging-any/PKGBUILD
(from rev 201543, python-zope-location/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: python-zope-location/repos/community-staging-any/PKGBUILD (from rev 201543, python-zope-location/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2016-12-24 16:21:28 UTC (rev 201544)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=('python-zope-location' 'python2-zope-location')
+pkgver=4.0.3
+pkgrel=2
+pkgdesc="Special objects that have a structural location"
+arch=('any')
+url="https://github.com/zopefoundation/zope.location"
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'python-zope-schema' 'python2-zope-schema'
+ 'python-zope-proxy' 'python2-zope-proxy' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-zope-copy' 'python2-zope-copy'
+ 'python-zope-configuration' 'python2-zope-configuration')
+source=("git+https://github.com/zopefoundation/zope.location.git#tag=$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+ cp -a zope.location{,-py2}
+}
+
+build() {
+ cd "$srcdir/zope.location"
+ python setup.py build
+
+ cd "$srcdir/zope.location-py2"
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir/zope.location"
+ nosetests3
+
+ cd "$srcdir/zope.location-py2"
+ nosetests2
+}
+
+package_python-zope-location() {
+ depends=('python-setuptools' 'python-zope-interface' 'python-zope-schema'
+ 'python-zope-proxy')
+
+ cd "$srcdir/zope.location"
+ python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-zope-location() {
+ depends=('python2-setuptools' 'python2-zope-interface' 'python2-zope-schema'
+ 'python2-zope-proxy')
+
+ cd "$srcdir/zope.location-py2"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list