aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-logilab-common
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
commit6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch)
tree1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/py-logilab-common
parent66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff)
downloadaports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2
aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/py-logilab-common')
-rw-r--r--testing/py-logilab-common/APKBUILD45
1 files changed, 0 insertions, 45 deletions
diff --git a/testing/py-logilab-common/APKBUILD b/testing/py-logilab-common/APKBUILD
deleted file mode 100644
index b6cd1cee70..0000000000
--- a/testing/py-logilab-common/APKBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
-# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
-pkgname=py-logilab-common
-_realname=logilab-common
-pkgver=0.56.0
-pkgrel=0
-pkgdesc="A collection of Python packages and modules used by Logilab projects"
-url="http://www.logilab.org/project/logilab-common"
-arch="noarch"
-license="LGPL2+"
-depends="python"
-depends_dev=""
-makedepends="python-dev"
-install=""
-subpackages="$pkgname-doc"
-source="http://ftp.logilab.org/pub/common/"$_realname"-$pkgver.tar.gz"
-_builddir="$srcdir"/"$_realname"-$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
-}
-
-doc() {
- # The man page is not picked-up automatically
- mkdir -p "$subpkgdir"/usr/share/man/man1 || return 1
- mv "$_builddir"/doc/*.1 "$subpkgdir"/usr/share/man/man1/ || return 1
-}
-
-md5sums="9737aa6b05758779df201113a9aa592b logilab-common-0.56.0.tar.gz"