diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-11 09:29:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-11 09:29:26 +0000 |
commit | fcbcb28d71a0c1ee4ad83d0257806f7e2ec0fe26 (patch) | |
tree | 6276844919382131a3fb9af2dff431277d7939f3 /testing | |
parent | 6785332a3e65227e6d14033a9486a373029b6fca (diff) | |
download | aports-fcbcb28d71a0c1ee4ad83d0257806f7e2ec0fe26.tar.bz2 aports-fcbcb28d71a0c1ee4ad83d0257806f7e2ec0fe26.tar.xz |
main/py-parsing: moved from testing
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py-parsing/APKBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/testing/py-parsing/APKBUILD b/testing/py-parsing/APKBUILD deleted file mode 100644 index ec76e0aa23..0000000000 --- a/testing/py-parsing/APKBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=py-parsing -pkgver=1.5.6 -pkgrel=0 -pkgdesc="An object-oriented approach to text processing" -url="http://pyparsing.wikispaces.com/" -arch="noarch" -license="MIT" -depends="python" -depends_dev="" -makedepends="$depends_dev" -install="" -subpackages="" -source="http://downloads.sourceforge.net/pyparsing/pyparsing-$pkgver.tar.gz" - -_builddir="$srcdir"/pyparsing-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - python setup.py build || return 1 -} - -package() { - cd "$_builddir" - python setup.py install --prefix=/usr --root="$pkgdir" || return 1 -} - -md5sums="1e41cb219dae9fc353bd4cd47636b283 pyparsing-1.5.6.tar.gz" |