summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2012-08-29 06:37:20 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2012-08-29 06:37:20 +0000
commitd2eb522916fe1002b6ad35a072f751bb5644f0ec (patch)
tree33c0a9203c5a71d1c10dd163bc9fbf422032aabc /testing
parentec3fa077dde4527ccafbf5f93eaf832bf1781e7e (diff)
downloadaports-d2eb522916fe1002b6ad35a072f751bb5644f0ec.tar.bz2
aports-d2eb522916fe1002b6ad35a072f751bb5644f0ec.tar.xz
testing/py-curl: move to main
Diffstat (limited to 'testing')
-rw-r--r--testing/py-curl/APKBUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/testing/py-curl/APKBUILD b/testing/py-curl/APKBUILD
deleted file mode 100644
index 3100eee0d..000000000
--- a/testing/py-curl/APKBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# Contributor: Natanael Copa <ncopa@alpinelinux.org>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=py-curl
-pkgver=7.19.0
-pkgrel=0
-pkgdesc="A Python interface to libcurl"
-url="http://pycurl.sourceforge.net/"
-arch="all"
-license="LGPLv2+ or MIT"
-depends="python"
-depends_dev=""
-makedepends="curl-dev python-dev"
-install=""
-subpackages="$pkgname-doc"
-source="http://pycurl.sourceforge.net/download/pycurl-$pkgver.tar.gz"
-
-_builddir="$srcdir"/pycurl-$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="919d58fe37e69fe87ce4534d8b6a1c7b pycurl-7.19.0.tar.gz"