aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-tabulate
diff options
context:
space:
mode:
authorprspkt <prspkt@protonmail.com>2019-08-19 00:38:14 +0300
committerprspkt <prspkt@protonmail.com>2019-08-19 00:46:08 +0300
commited65890150dc07644f7dfd4c6a5c3f19fabf0f3b (patch)
tree48eec81c747a69bb2e96e07db1c3ecad619459b6 /testing/py3-tabulate
parente6a1fc9118ccf2653e8186d8a9341a0a031c6944 (diff)
downloadaports-ed65890150dc07644f7dfd4c6a5c3f19fabf0f3b.tar.bz2
aports-ed65890150dc07644f7dfd4c6a5c3f19fabf0f3b.tar.xz
testing/py-tabulate: drop python2
* Fix tests. * Add py3-setuptools, py3-wcwidth runtime dependencies. Signed-off-by: prspkt <prspkt@protonmail.com>
Diffstat (limited to 'testing/py3-tabulate')
-rw-r--r--testing/py3-tabulate/APKBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/py3-tabulate/APKBUILD b/testing/py3-tabulate/APKBUILD
new file mode 100644
index 0000000000..eade8f401c
--- /dev/null
+++ b/testing/py3-tabulate/APKBUILD
@@ -0,0 +1,35 @@
+# Maintainer: Andy Postnikov <apostnikov@gmail.com>
+pkgname=py3-tabulate
+pkgver=0.8.3
+pkgrel=2
+pkgdesc="Pretty-print tabular data"
+url="https://bitbucket.org/astanin/python-tabulate"
+arch="noarch"
+license="MIT"
+depends="py3-setuptools py3-wcwidth"
+checkdepends="py3-nose"
+source="https://files.pythonhosted.org/packages/source/t/tabulate/tabulate-$pkgver.tar.gz"
+builddir="$srcdir/tabulate-$pkgver"
+
+replaces=py-tabulate # Backwards compatibility
+provides=py-tabulate=$pkgver-r$pkgrel # Backwards compatibility
+
+prepare() {
+ default_prepare
+ # fix interpreter invocation
+ sed -i 's/"python"/"python3"/g' test/test_cli.py
+}
+
+build() {
+ python3 setup.py build
+}
+
+check() {
+ PYTHONPATH="$builddir"/build/lib python3 setup.py test
+}
+
+package() {
+ python3 setup.py install --prefix=/usr --root="$pkgdir"
+}
+
+sha512sums="7f0205a4d80ed0b426a45622a3b8ec0a9b77cf6d67c1207db7fbc20a12e83a15748e63d5f8e5e65fa348b6265fd0cac93be4d04f9c1c182476b93507e1131cbf tabulate-0.8.3.tar.gz"