[arch-commits] Commit in (4 files)

Felix Yan fyan at archlinux.org
Thu Feb 18 14:17:23 UTC 2016


    Date: Thursday, February 18, 2016 @ 15:17:22
  Author: fyan
Revision: 162358

extra2community: Moving python-characteristic from extra to community

Added:
  python-characteristic/
  python-characteristic/repos/
  python-characteristic/trunk/
  python-characteristic/trunk/PKGBUILD

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

Added: python-characteristic/trunk/PKGBUILD
===================================================================
--- python-characteristic/trunk/PKGBUILD	                        (rev 0)
+++ python-characteristic/trunk/PKGBUILD	2016-02-18 14:17:22 UTC (rev 162358)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-characteristic
+pkgname=('python-characteristic' 'python2-characteristic')
+pkgver=14.3.0
+pkgrel=2
+pkgdesc="Service identity verification for pyOpenSSL"
+arch=('any')
+license=('MIT')
+url="http://pypi.python.org/pypi/characteristic"
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest')
+source=("http://pypi.python.org/packages/source/c/characteristic/characteristic-${pkgver}.tar.gz")
+md5sums=('b249368dd021fde1c06b4802867c0913')
+
+prepare() {
+   cp -a characteristic-${pkgver}{,-python2}
+}
+
+build() {
+   # Build python 3 module
+   cd characteristic-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../characteristic-${pkgver}-python2
+   python2 setup.py build
+}
+
+check() {
+   # Check python3 module
+   cd "${srcdir}"/characteristic-${pkgver}
+   python -Walways setup.py test
+
+   # Check python2 module
+   cd "${srcdir}"/characteristic-${pkgver}-python2
+   python2 -Walways setup.py test
+}
+ 
+package_python-characteristic() {
+   depends=('python')
+ 
+   cd characteristic-${pkgver}
+   python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+ 
+package_python2-characteristic() {
+   depends=('python2')
+ 
+   cd characteristic-${pkgver}-python2
+   python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


Property changes on: python-characteristic/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property



More information about the arch-commits mailing list