diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-07 06:07:29 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-07 06:23:54 -0300 |
commit | bd977e45196a86f5d23f0e41a2c53239d29f2900 (patch) | |
tree | b4a7da666a2482a497878a5a8e666f1f629e3379 /testing/py3-zope-configuration | |
parent | 943eb83e70708888a0fe2fc55705be680ecc2753 (diff) | |
download | aports-bd977e45196a86f5d23f0e41a2c53239d29f2900.tar.bz2 aports-bd977e45196a86f5d23f0e41a2c53239d29f2900.tar.xz |
testing/py3-zope-configuration: rename from py-zope-configuration
Diffstat (limited to 'testing/py3-zope-configuration')
-rw-r--r-- | testing/py3-zope-configuration/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py3-zope-configuration/APKBUILD b/testing/py3-zope-configuration/APKBUILD new file mode 100644 index 0000000000..c1c6f122cb --- /dev/null +++ b/testing/py3-zope-configuration/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-zope-configuration +_pkgname=zope.configuration +pkgver=4.0.2 +pkgrel=0 +pkgdesc="Zope Configuration Markup Language" +url="http://pypi.python.org/pypi/zope.configuration" +arch="noarch" +license="ZPL-2.1" +depends="python2" +depends_dev="" +makedepends="python2-dev py-setuptools" +install="" +subpackages="" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$_pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python2 setup.py build || return 1 +} + +package() { + cd "$_builddir" + python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="40b3c7ad0b748ede532d8cfe2544e44e zope.configuration-4.0.2.tar.gz" +sha256sums="c8a496fa9fad6d39ec1a46fe2b59cf47a6d159e4bc3293f3850e725a1b83fc6d zope.configuration-4.0.2.tar.gz" +sha512sums="a8a9dc4a898f62df7b4fcbd774ced4005179717b57f5fe57954b567cb042374a6f01c48f1ffd346e58487959c205e3a9e438a5fb557c92503d4720371fb4cf00 zope.configuration-4.0.2.tar.gz" |