aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-cli_helpers
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py-cli_helpers')
-rw-r--r--testing/py-cli_helpers/APKBUILD57
1 files changed, 0 insertions, 57 deletions
diff --git a/testing/py-cli_helpers/APKBUILD b/testing/py-cli_helpers/APKBUILD
deleted file mode 100644
index ebdfc98a05..0000000000
--- a/testing/py-cli_helpers/APKBUILD
+++ /dev/null
@@ -1,57 +0,0 @@
-# Contributor: Thomas Boerger <thomas@webhippie.de>
-# Maintainer: Thomas Boerger <thomas@webhippie.de>
-pkgname=py-cli_helpers
-_pkgname=cli_helpers
-pkgver=1.0.2
-pkgrel=2
-pkgdesc="A helper library for command-line interfaces"
-url="https://pypi.python.org/pypi/cli-helpers"
-arch="noarch"
-license="BSD"
-depends="py-terminaltables py-backports-csv py-tabulate"
-makedepends="python2-dev py-setuptools python3-dev"
-checkdepends="pytest py-wcwidth"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
-source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
-builddir="$srcdir/$_pkgname-$pkgver"
-
-check() {
- cd "$builddir"
- python2 setup.py check
- python3 setup.py check
- py.test-2
- py.test-3
-}
-
-build() {
- cd "$builddir"
- python2 setup.py build
- python3 setup.py build
-}
-
-package() {
- mkdir -p "$pkgdir"
-}
-
-_py2() {
- replaces="$pkgname"
- depends="${depends//py-/py2-}"
- _py python2
-}
-
-_py3() {
- depends="${depends//py-/py3-}"
- _py python3
-}
-
-_py() {
- local python="$1"
- pkgdesc="$pkgdesc (for $python)"
- depends="$depends $python"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
- cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
-}
-
-sha512sums="6338603deaedbaf4e0cb98303219f5edcd8ccdedc3000cad6d727263f2d2875c8fe3b8ce8b1213d72a7bfa404c24a605458d946868d9d526e7781ff58a139699 py-cli_helpers-1.0.2.tar.gz"