diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-09-15 20:50:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-17 15:01:35 +0000 |
commit | 838aaac0ec6ec826a149d1a886ed9a1cc6c3d231 (patch) | |
tree | 24f4bcd2ba027d2155336f577947706abf344e30 /testing/py-utc | |
parent | 7ffc82a585db7eb1b22ce75ed8449618ba28f135 (diff) | |
download | aports-838aaac0ec6ec826a149d1a886ed9a1cc6c3d231.tar.bz2 aports-838aaac0ec6ec826a149d1a886ed9a1cc6c3d231.tar.xz |
testing/py-utc: new aport
A tiny library for working with UTC time
http://bits.btubbs.com/utc
Diffstat (limited to 'testing/py-utc')
-rw-r--r-- | testing/py-utc/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-utc/APKBUILD b/testing/py-utc/APKBUILD new file mode 100644 index 0000000000..5932e77362 --- /dev/null +++ b/testing/py-utc/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-utc +_pkgname=utc +pkgver=0.0.1 +pkgrel=0 +pkgdesc="A tiny library for working with UTC time" +url="http://bits.btubbs.com/utc" +arch="noarch" +license="BSD" +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="82a6c960d6acd6171b90565d4401c0c0 utc-0.0.1.tar.gz" +sha256sums="65ab9962037c38d13e5035433062b50416df083297e6a34258fb924a242020ee utc-0.0.1.tar.gz" +sha512sums="d37acf51c47d074d629f31b65c8e647e4951472f881a5cb35fe10719d20e9fde3bf6e3440ea2bcab52a453fb6d32749407741f3377049d26c496df042965025a utc-0.0.1.tar.gz" |