[arch-commits] Commit in python-zope-configuration/repos (2 files)
Antonio Rojas
arojas at archlinux.org
Sat Nov 2 22:54:37 UTC 2019
Date: Saturday, November 2, 2019 @ 22:54:37
Author: arojas
Revision: 522392
archrelease: copy trunk to community-staging-any
Added:
python-zope-configuration/repos/community-staging-any/
python-zope-configuration/repos/community-staging-any/PKGBUILD
(from rev 522391, python-zope-configuration/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: python-zope-configuration/repos/community-staging-any/PKGBUILD (from rev 522391, python-zope-configuration/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-11-02 22:54:37 UTC (rev 522392)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-zope-configuration
+pkgname=('python-zope-configuration' 'python2-zope-configuration')
+pkgver=4.3.1
+pkgrel=2
+pkgdesc="Zope Configuration Markup Language (ZCML)"
+arch=('any')
+url="https://github.com/zopefoundation/zope.configuration"
+license=('ZPL')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-zope-interface'
+ 'python2-zope-interface' 'python-zope-schema' 'python2-zope-schema'
+ 'python-zope-i18nmessageid' 'python2-zope-i18nmessageid')
+checkdepends=('python-manuel' 'python2-manuel' 'python-zope-testing' 'python2-zope-testing'
+ 'python-zope-testrunner' 'python2-zope-testrunner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/zopefoundation/zope.configuration/archive/$pkgver.tar.gz")
+sha512sums=('b67af884d573b017264a19c906d2199a6a466a7df1bc39202f56e02d65eee810d9cbeb2c7f27b73c30ab916bac75ec4eedf6082f4b6f4f0b7514acc6abcaeabd')
+
+prepare() {
+ cp -a zope.configuration-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/zope.configuration-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/zope.configuration-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/zope.configuration-$pkgver
+ PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m zope.testrunner --test-path=src || warning "Tests failed"
+
+ cd "$srcdir"/zope.configuration-$pkgver-py2
+ PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m zope.testrunner --test-path=src
+}
+
+package_python-zope-configuration() {
+ depends=('python-setuptools' 'python-zope-interface' 'python-zope-schema'
+ 'python-zope-i18nmessageid')
+
+ cd "$srcdir"/zope.configuration-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-zope-configuration() {
+ depends=('python2-setuptools' 'python2-zope-interface' 'python2-zope-schema'
+ 'python2-zope-i18nmessageid')
+
+ cd "$srcdir"/zope.configuration-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list