diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-10-07 10:19:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-22 08:23:16 +0000 |
commit | b9ba75635635ce164b3c544108ca7d9fbcf2b6a3 (patch) | |
tree | 49f5f95104b438e462ebfc5e49ffc6cdb7d2e692 /testing | |
parent | ea7d84f6e8cc660d4606dac92d365d927ed664c0 (diff) | |
download | aports-b9ba75635635ce164b3c544108ca7d9fbcf2b6a3.tar.bz2 aports-b9ba75635635ce164b3c544108ca7d9fbcf2b6a3.tar.xz |
testing/py-procfs: new aport
A Python API for the Linux /proc virtual filesystem
https://github.com/pmuller/procfs
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py-procfs/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-procfs/APKBUILD b/testing/py-procfs/APKBUILD new file mode 100644 index 0000000000..edab527822 --- /dev/null +++ b/testing/py-procfs/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-procfs +_pkgname=procfs +pkgver=0.1.2 +pkgrel=0 +pkgdesc="A Python API for the Linux /proc virtual filesystem" +url="https://github.com/pmuller/procfs" +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="6ca053f33361eef169a5f15c09df76d6 procfs-0.1.2.tar.gz" +sha256sums="0ad88de8855c793906954129a2f3536fc14445ac959bdaee6b06b49e1a73fb8b procfs-0.1.2.tar.gz" +sha512sums="8552af4018aa3ea376f48c004e7da106fab953bdfc1606f9fd63063ec2baf8d4e3e4c9d46afa17392ca2b589f705f236967181cff2d392039e655cafbc424cb5 procfs-0.1.2.tar.gz" |