diff options
author | prspkt <prspkt@protonmail.com> | 2019-04-27 01:10:00 +0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-04-27 01:14:21 +0300 |
commit | 64c4d3f4c7e69614ff253bcf216bd0889d96c98e (patch) | |
tree | 1463872def2a15fe21de0af53661ad7c3ae314d4 /testing/py3-python-archive | |
parent | e3257a6e679f23413676dbe62bb7ad33662d9f0c (diff) | |
download | aports-64c4d3f4c7e69614ff253bcf216bd0889d96c98e.tar.bz2 aports-64c4d3f4c7e69614ff253bcf216bd0889d96c98e.tar.xz |
testing/py-archive: upgrade to python3
Diffstat (limited to 'testing/py3-python-archive')
-rw-r--r-- | testing/py3-python-archive/APKBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/py3-python-archive/APKBUILD b/testing/py3-python-archive/APKBUILD new file mode 100644 index 0000000000..4510522e04 --- /dev/null +++ b/testing/py3-python-archive/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py3-python-archive +_pkgname=python-archive +pkgver=0.2 +pkgrel=0 +pkgdesc="A Python library for extracting zip and tar archives" +url="https://github.com/gdub/python-archive" +arch="noarch" +license="MIT" +replaces="py-archive" # for backwards compatibility +provides="py-archive=$pkgver-r$pkgrel" # for backwards compatibility +depends="python3" +depends_dev="" +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" + python3 setup.py build || return 1 +} + +package() { + cd "$_builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="d2abf4c71fd28817b0a5d27ff874470d python-archive-0.2.tar.gz" +sha256sums="0f19c7bdd39a5f09ef86e56c5b2d5beb4a0635292639ee869a2b25bd9a2f1161 python-archive-0.2.tar.gz" +sha512sums="5f02fe522f44989c1b61db48239cdbda5536ff685174ba93af028591eba276dcefd7655aad3a458d92140f163724d87bbe25711c78a82e06dfb382b6ae9f5683 python-archive-0.2.tar.gz" |