diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-22 12:45:41 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-22 14:21:35 +0000 |
commit | 6c07feacc0c6f8efc76653df24747ab66123646f (patch) | |
tree | 2a75edf669c33e0086e8a162646a748660bedb7e /community/py-olefile | |
parent | b69b0597dd5dccc66bb6f3f7ea8d1bb32c78f84c (diff) | |
download | aports-6c07feacc0c6f8efc76653df24747ab66123646f.tar.bz2 aports-6c07feacc0c6f8efc76653df24747ab66123646f.tar.xz |
community/py-olefile: moved from testing, added python3 support and py2/py3 subpackage
Diffstat (limited to 'community/py-olefile')
-rw-r--r-- | community/py-olefile/APKBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/community/py-olefile/APKBUILD b/community/py-olefile/APKBUILD new file mode 100644 index 0000000000..0d8a09bf5e --- /dev/null +++ b/community/py-olefile/APKBUILD @@ -0,0 +1,48 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=py-olefile +pkgver=0.43 +pkgrel=1 +pkgdesc="A Python module to read/write MS OLE2 files" +url="http://www.decalage.info/olefile" +arch="noarch" +license="custom" +depends="" +makedepends="python2-dev py-setuptools python3-dev" +install="" +subpackages="py3-${pkgname/py-/}:_py3 py2-${pkgname/py-/}:_py2" +source="https://bitbucket.org/decalage/olefileio_pl/downloads/${pkgname/py-/}-$pkgver.tar.gz" + +builddir="$srcdir"/${pkgname/py-/}-$pkgver + +build() { + cd "$builddir" + python2 setup.py build || return 1 + python3 setup.py build || return 1 +} + +package() { + mkdir -p "$pkgdir" +} + +_py() { + local python=$1 + pkgdesc="$pkgdesc - $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + cd "$builddir" + $python setup.py install --prefix=/usr --root="$subpkgdir" +} + +_py2() { + _py python2 + replaces="$pkgname" +} + +_py3() { + _py python3 +} + + +md5sums="f570df81ebfab51aaa538af39fef6fd3 olefile-0.43.tar.gz" +sha256sums="57102bf3f19c5fa099c0c7128190fe4bb28cd2760aa08f4b5b7dccf28718b876 olefile-0.43.tar.gz" +sha512sums="5a2fbe69bbe13f2633b4d6c8861531f4ac0b41379fea889a6e74a1f0f78960e2b9db10516fae5f3d2a59f2dac6a6befcd78c11a9fc45212009a3097cdc5f61ea olefile-0.43.tar.gz" |