mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 17:52:10 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: Peter Bui <pnutzh4x0r@gmail.com>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-tz
|
|
_pkgname=pytz
|
|
pkgver=2015.4
|
|
pkgrel=0
|
|
pkgdesc="A Python definitions of world timezone"
|
|
url="http://pytz.sourceforge.net/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.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"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="417a47b1c432d90333e42084a605d3d8 pytz-2015.4.tar.gz"
|
|
sha256sums="c4ee70cb407f9284517ac368f121cf0796a7134b961e53d9daf1aaae8f44fb90 pytz-2015.4.tar.gz"
|
|
sha512sums="5a8ed7bbb95cbd5b4ca5dac5e10d8a2c2b09d3371372e3eaa2637b28f5a4a0418d6db5098de8663e3c4af630c95f0b65283d72c4c057e8bbae53c9d0ac939dfd pytz-2015.4.tar.gz"
|