[arch-commits] Commit in python-idna/repos (testing-any testing-any/PKGBUILD)

Felix Yan fyan at archlinux.org
Tue May 19 06:17:26 UTC 2015


    Date: Tuesday, May 19, 2015 @ 08:17:26
  Author: fyan
Revision: 239547

archrelease: copy trunk to testing-any

Added:
  python-idna/repos/testing-any/
  python-idna/repos/testing-any/PKGBUILD
    (from rev 239546, python-idna/trunk/PKGBUILD)

----------+
 PKGBUILD |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

Copied: python-idna/repos/testing-any/PKGBUILD (from rev 239546, python-idna/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2015-05-19 06:17:26 UTC (rev 239547)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-idna
+pkgname=('python-idna' 'python2-idna')
+pkgver=2.0
+pkgrel=1
+pkgdesc="Internationalized Domain Names in Applications (IDNA)"
+arch=('any')
+license=('BSD')
+url="https://github.com/kjd/idna"
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/i/idna/idna-${pkgver}.tar.gz")
+md5sums=('bd17a9d15e755375f48a62c13b25b801')
+
+prepare() {
+   cp -a idna-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd idna-${pkgver}
+   python setup.py build
+ 
+   # Build python 2 module
+   cd ../idna-${pkgver}-python2
+   python2 setup.py build
+}
+
+check() {
+   # Check python3 module
+   cd "${srcdir}"/idna-${pkgver}
+   python setup.py test
+
+   # Check python2 module
+   cd "${srcdir}"/idna-${pkgver}-python2
+   python2 setup.py test
+}
+ 
+package_python-idna() {
+   depends=('python')
+ 
+   cd idna-${pkgver}
+   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+   install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}
+ 
+package_python2-idna() {
+   depends=('python2')
+ 
+   cd idna-${pkgver}-python2
+   python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+   install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}



More information about the arch-commits mailing list