aboutsummaryrefslogtreecommitdiffstats
path: root/community/py-py
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-09-04 14:48:26 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-09-04 15:28:09 +0000
commit0d19ec2f04873e1fc87c26aeafcf25ff58af2788 (patch)
tree7ac49737addbf8b21d29be858710bffe39ac1507 /community/py-py
parent81d9960974d3af2e1c321cb3bd1aea5ac21be735 (diff)
downloadaports-0d19ec2f04873e1fc87c26aeafcf25ff58af2788.tar.bz2
aports-0d19ec2f04873e1fc87c26aeafcf25ff58af2788.tar.xz
main/py-py: move from community due to fuse3
Diffstat (limited to 'community/py-py')
-rw-r--r--community/py-py/APKBUILD53
1 files changed, 0 insertions, 53 deletions
diff --git a/community/py-py/APKBUILD b/community/py-py/APKBUILD
deleted file mode 100644
index 3525021adc..0000000000
--- a/community/py-py/APKBUILD
+++ /dev/null
@@ -1,53 +0,0 @@
-# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
-# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
-pkgname=py-py
-_pkgname=py
-pkgver=1.5.3
-pkgrel=0
-pkgdesc="A python library with cross-python path, ini-parsing, io, code, log facilities"
-url="http://pytest.org"
-arch="noarch"
-license="MIT"
-depends=""
-makedepends="python2-dev python3-dev py-setuptools"
-subpackages="py3-$_pkgname:_py3 py2-$_pkgname:_py2"
-source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
-builddir="$srcdir/$_pkgname-$pkgver"
-
-build() {
- cd "$builddir"
- python2 setup.py build
- python3 setup.py build
-}
-
-check() {
- cd "$builddir"
- python2 setup.py check
- python3 setup.py check
-}
-
-
-package() {
- mkdir -p "$pkgdir"
-}
-
-_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"
-}
-
-_py2() {
- replaces="$pkgname"
- _py python2
-}
-
-_py3() {
- _py python3
-}
-
-sha512sums="243c0da94c439163257c525ef00b30fd6d8add5897121ee0b1f19476b50f18823ce2b99a5ab27a9cf47598b538758d0534060123dce0820d2a65d98046548c96 py-1.5.3.tar.gz"