diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-10-07 07:45:55 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-22 08:23:16 +0000 |
commit | e6c8def320c5d75a3930ccd1fee27baf3ceec1d6 (patch) | |
tree | 348cd546fbb84e004b3f97e178e7e469eb5ce8bf /testing/py-blessings | |
parent | 57cb57db7cceb71a2fd337bfdad89d162a70bea4 (diff) | |
download | aports-e6c8def320c5d75a3930ccd1fee27baf3ceec1d6.tar.bz2 aports-e6c8def320c5d75a3930ccd1fee27baf3ceec1d6.tar.xz |
testing/py-blessings: new aport
A Python wrapper around terminal coloring, styling, and positioning
https://github.com/erikrose/blessings
Diffstat (limited to 'testing/py-blessings')
-rw-r--r-- | testing/py-blessings/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-blessings/APKBUILD b/testing/py-blessings/APKBUILD new file mode 100644 index 0000000000..256dc23fe5 --- /dev/null +++ b/testing/py-blessings/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-blessings +_pkgname=blessings +pkgver=1.5.1 +pkgrel=0 +pkgdesc="A Python wrapper around terminal coloring, styling, and positioning" +url="https://github.com/erikrose/blessings" +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="fbbddbf20b1f9a13e3fa612b1e086fd8 blessings-1.5.1.tar.gz" +sha256sums="2f6f5509fe180ae3092fdc559585a83a3cfce30afba9de25ccefc5ecfbfedbfc blessings-1.5.1.tar.gz" +sha512sums="43d26d12c7f847e4766354a46eea0ce485d69b74feac5a672be167f1656c4450ff340a7a1be61ef7fd4f9cf395e2719fc0d4034f6db6612851bafc5e330e7ee6 blessings-1.5.1.tar.gz" |