aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-packaging
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2017-04-15 21:45:22 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2017-04-15 21:45:22 +0000
commit97a3ddf98567eb8073aeca6cd73d3f2877eeeca7 (patch)
treeb37cf9ecf33b41e6fd3198a1e74496abac8ac688 /testing/py-packaging
parenta5c55fae732ea6706d0a60b15689f6affb11b050 (diff)
downloadaports-97a3ddf98567eb8073aeca6cd73d3f2877eeeca7.tar.bz2
aports-97a3ddf98567eb8073aeca6cd73d3f2877eeeca7.tar.xz
testing/py-packaging: move to community
Diffstat (limited to 'testing/py-packaging')
-rw-r--r--testing/py-packaging/APKBUILD49
1 files changed, 0 insertions, 49 deletions
diff --git a/testing/py-packaging/APKBUILD b/testing/py-packaging/APKBUILD
deleted file mode 100644
index f48c560419..0000000000
--- a/testing/py-packaging/APKBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# Maintainer: Breno Leitao <breno.leitao@gmail.com>
-pkgname=py-packaging
-_pkgname=packaging
-pkgver=16.8
-pkgrel=1
-pkgdesc="Core utilities for Python packages"
-url="https://pypi.python.org/pypi/packaging"
-arch="noarch"
-license="APACHE or BSD"
-depends="py-parsing py-six"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
-makedepends="python3-dev python2-dev py-setuptools"
-source="https://files.pythonhosted.org/packages/source/p/$_pkgname/$_pkgname-$pkgver.tar.gz"
-builddir="$srcdir/$_pkgname-$pkgver"
-
-build() {
- cd "$builddir"
- python2 setup.py build || return 1
- python3 setup.py build || return 1
-}
-
-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="d1a7b65472c7c02dd758f0c469d6c6aeea34de7b798613f7fcdf45fcccbeba1e9085cab113fa89b392a60f758f8747d13b1c265c809566990c22e61ca8db49bb packaging-16.8.tar.gz"