mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-07 18:41:55 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# 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="ZPL2+"
|
|
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"
|