mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-28 09:51:46 +02:00
See https://bitbucket.org/pypa/pypi/issues/438/backwards-compatible-un-hashed-package#comment-27734791
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-ntplib
|
|
_pkgname=ntplib
|
|
pkgver=0.3.2
|
|
pkgrel=0
|
|
pkgdesc="A Python NTP library"
|
|
url="https://pypi.python.org/pypi/ntplib"
|
|
arch="noarch"
|
|
license="LGPL2+"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-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"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="0f386dc00c0056ac4d77af0b4c21bb8e ntplib-0.3.2.tar.gz"
|
|
sha256sums="14847bd4509b9212d6a03788590784abeff85c88021d8fd3b151da2f1ab8568d ntplib-0.3.2.tar.gz"
|
|
sha512sums="c815b3e9861985f23586c16eefd59ef25f93298c46b2fbd5dc508f88c67ad9d8a76f74fc7d29326860b921c346716bf8082a1cd0ee3c672029535749057e5fbd ntplib-0.3.2.tar.gz"
|