aboutsummaryrefslogtreecommitdiffstats
path: root/community/py-argparse
diff options
context:
space:
mode:
authorStuart Cardall <developer@it-offshore.co.uk>2018-09-05 18:12:39 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-09-05 19:22:40 +0000
commit1a022103670369ae72197517172b2d915ec066ab (patch)
tree8fdb0a816f3f62a8ee673ef166ba20e11e7afdb4 /community/py-argparse
parent9b1e1edcd998f479b9035eda068c2f9f00e25e7b (diff)
downloadaports-1a022103670369ae72197517172b2d915ec066ab.tar.bz2
aports-1a022103670369ae72197517172b2d915ec066ab.tar.xz
community/py-argparse: move to main
* moving to main as a depends of py-tox
Diffstat (limited to 'community/py-argparse')
-rw-r--r--community/py-argparse/APKBUILD50
1 files changed, 0 insertions, 50 deletions
diff --git a/community/py-argparse/APKBUILD b/community/py-argparse/APKBUILD
deleted file mode 100644
index 0cc1a9990b..0000000000
--- a/community/py-argparse/APKBUILD
+++ /dev/null
@@ -1,50 +0,0 @@
-# Contributor: Francesco Colista <fcolista@alpinelinux.org>
-# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
-pkgname=py-argparse
-_pkgname=argparse
-pkgver=1.4.0
-pkgrel=1
-pkgdesc="Python command-line parsing library"
-url="https://pypi.python.org/pypi/argparse/"
-arch="noarch"
-license="MIT"
-makedepends="python2-dev python3-dev py-setuptools"
-subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
-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"
-}
-
-_py2() {
- _py python2
-}
-
-_py3() {
- _py python3
-}
-
-_py() {
- local python="$1"
- pkgdesc="$pkgdesc (for $python)"
- depends="$python"
- install_if="$pkgname=$pkgver-r$pkgrel $python"
-
- cd "$builddir"
- $python setup.py install --prefix=/usr --root="$subpkgdir"
-}
-
-sha512sums="9941f9d26c43169f947c9efadda6239349e1f9df80ff5fcdba3070bc7b43c43ab6bb4b7f0c7eee8e5d06231a17a7e9ee9eb73c7a9bb68ebe5d13f879686d61b2 argparse-1.4.0.tar.gz"