[arch-commits] Commit in python-setuptools/repos (testing-any testing-any/PKGBUILD)
Ángel Velásquez
angvp at nymeria.archlinux.org
Mon Sep 16 05:04:06 UTC 2013
Date: Monday, September 16, 2013 @ 07:04:06
Author: angvp
Revision: 194402
archrelease: copy trunk to testing-any
Added:
python-setuptools/repos/testing-any/
python-setuptools/repos/testing-any/PKGBUILD
(from rev 194401, python-setuptools/trunk/PKGBUILD)
----------+
PKGBUILD | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 194401, python-setuptools/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2013-09-16 05:04:06 UTC (rev 194402)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Angel Velasquez <angvp at archlinux.org>
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=1.1
+pkgrel=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools"
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz)
+md5sums=('84062633c3818c912af76d54a40d11a7')
+
+#check() {
+# # Check python3 module
+# cd "${srcdir}"/setuptools-${pkgver}
+# python3 setup.py test
+#
+# # Check python2 module
+# cd "${srcdir}"/setuptools-${pkgver}-python2
+# python2 setup.py test
+#}
+
+prepare() {
+ cd "${srcdir}"
+
+ pushd setuptools-${pkgver}
+ popd
+
+ cp -a setuptools-${pkgver}{,-python2}
+
+ cd "${srcdir}"/setuptools-${pkgver}
+ sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python3|" setuptools/tests/test_resources.py
+
+ cd ../setuptools-${pkgver}-python2
+ sed -i -e "s|^#\!.*/usr/bin/python|#!/usr/bin/python2|" setuptools/tests/test_resources.py
+}
+
+build() {
+ # Build python 3 module
+ cd "${srcdir}"/setuptools-${pkgver}
+ python3 setup.py build
+
+ # Build python 2 module
+ cd ../setuptools-${pkgver}-python2
+ python2 setup.py build
+}
+
+package_python-setuptools() {
+ depends=('python>=3.3')
+ provides=('python-distribute')
+ replaces=('python-distribute')
+
+ cd "${srcdir}/setuptools-${pkgver}"
+ python3 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+package_python2-setuptools() {
+ depends=('python2>=2.7')
+ provides=('python2-distribute' 'setuptools')
+ replaces=('python2-distribute' 'setuptools')
+
+ cd "${srcdir}/setuptools-${pkgver}-python2"
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+ rm "${pkgdir}/usr/bin/easy_install"
+}
More information about the arch-commits
mailing list