From c379c75a623df4823e0593541edc86be9d6aa379 Mon Sep 17 00:00:00 2001 From: Andrew Manison Date: Sat, 14 Nov 2009 01:44:03 +0000 Subject: Added mediaproxy and required Python packages --- testing/python26-buildutils/APKBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testing/python26-buildutils/APKBUILD (limited to 'testing/python26-buildutils') diff --git a/testing/python26-buildutils/APKBUILD b/testing/python26-buildutils/APKBUILD new file mode 100644 index 0000000000..4bee0caa2b --- /dev/null +++ b/testing/python26-buildutils/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Andrew Manison +# Maintainer: +pkgname=python26-buildutils +_pkgname=`echo $pkgname |sed -e 's,^python26-,,'` +pkgver=0.3 +pkgrel=0 +pkgdesc="buildutils is a collection of enhancements to the Python distutils" +url="http://pypi.python.org/pypi/buildutils/0.3" +license="GPL" +depends="python python26-setuptools" +makedepends="" +install= +subpackages="" +source="http://pypi.python.org/packages/source/b/$_pkgname/$_pkgname-$pkgver.tar.gz" + +# append extra dependencies to -dev subpackage +# remove if not used. +# depends_dev="somepackage-dev" + +build() { + cd $srcdir/$_pkgname-$pkgver + mkdir -p $pkgdir/usr/lib/python2.6/site-packages + python setup.py install --root=$pkgdir + echo "/usr/lib/python2.6/site-packages/$_pkgname-$pkgver-py2.6.egg" > $pkgdir/usr/lib/python2.6/site-packages/$_pkgname.pth +} + +md5sums="fec620dee05f591edad386366b52e17b buildutils-0.3.tar.gz" -- cgit v1.2.3 From 5393a9ac78c5f80d04b224e5e028f99edfcdc24a Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 16 Nov 2009 10:43:51 +0000 Subject: testing/python26-{setuptools,buildutils}: misc build fix * avoid fork in global scope * added python-dev to makedepends * quote $pkgdir and $srcdir in case someone have spaces in the path --- testing/python26-buildutils/APKBUILD | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'testing/python26-buildutils') diff --git a/testing/python26-buildutils/APKBUILD b/testing/python26-buildutils/APKBUILD index 4bee0caa2b..5db0a6bfb9 100644 --- a/testing/python26-buildutils/APKBUILD +++ b/testing/python26-buildutils/APKBUILD @@ -1,27 +1,23 @@ # Contributor: Andrew Manison # Maintainer: pkgname=python26-buildutils -_pkgname=`echo $pkgname |sed -e 's,^python26-,,'` +_pkgname=${pkgname#python26-} pkgver=0.3 pkgrel=0 pkgdesc="buildutils is a collection of enhancements to the Python distutils" url="http://pypi.python.org/pypi/buildutils/0.3" license="GPL" depends="python python26-setuptools" -makedepends="" +makedepends="python-dev" install= subpackages="" source="http://pypi.python.org/packages/source/b/$_pkgname/$_pkgname-$pkgver.tar.gz" -# append extra dependencies to -dev subpackage -# remove if not used. -# depends_dev="somepackage-dev" - build() { - cd $srcdir/$_pkgname-$pkgver - mkdir -p $pkgdir/usr/lib/python2.6/site-packages - python setup.py install --root=$pkgdir - echo "/usr/lib/python2.6/site-packages/$_pkgname-$pkgver-py2.6.egg" > $pkgdir/usr/lib/python2.6/site-packages/$_pkgname.pth + cd "$srcdir"/$_pkgname-$pkgver + mkdir -p "$pkgdir"/usr/lib/python2.6/site-packages + python setup.py install --root="$pkgdir" + echo "/usr/lib/python2.6/site-packages/$_pkgname-$pkgver-py2.6.egg" > "$pkgdir"/usr/lib/python2.6/site-packages/$_pkgname.pth } md5sums="fec620dee05f591edad386366b52e17b buildutils-0.3.tar.gz" -- cgit v1.2.3