Date: Friday, March 14, 2014 @ 04:46:20 Author: fyan Revision: 207735
add python-cryptography 0.2.2-1 - as dependency of pyopenssl Added: python-cryptography/ python-cryptography/repos/ python-cryptography/trunk/ python-cryptography/trunk/PKGBUILD ----------+ PKGBUILD | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) Added: python-cryptography/trunk/PKGBUILD =================================================================== --- python-cryptography/trunk/PKGBUILD (rev 0) +++ python-cryptography/trunk/PKGBUILD 2014-03-14 03:46:20 UTC (rev 207735) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan <[email protected]> + +pkgbase=python-cryptography +pkgname=('python-cryptography' 'python2-cryptography') +pkgver=0.2.2 +pkgrel=1 +pkgdesc="A package designed to expose cryptographic recipes and primitives to Python developers" +arch=('i686' 'x86_64') +license=('Apache') +url="http://pypi.python.org/pypi/cryptography" +makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 'python2-six' 'python-cffi' 'python2-cffi') +checkdepends=('python-pytest' 'python2-pytest') +source=("http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz") +md5sums=('f002a442c8c5c7463bf8d2f11f6c3128') + +check() { + # Check python3 module + cd "${srcdir}"/cryptography-${pkgver} + python3 setup.py test + + # Check python2 module + cd "${srcdir}"/cryptography-${pkgver}-python2 + python2 setup.py test +} + +prepare() { + cp -a cryptography-${pkgver}{,-python2} +} + +build() { + # Build python 3 module + cd cryptography-${pkgver} + python3 setup.py build + + # Build python 2 module + cd ../cryptography-${pkgver}-python2 + python2 setup.py build +} + +package_python-cryptography() { + depends=('python' 'python-six' 'python-cffi') + + cd cryptography-${pkgver} + python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build +} + +package_python2-cryptography() { + depends=('python2' 'python2-six' 'python2-cffi') + + cd "${srcdir}/cryptography-${pkgver}-python2" + python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build +} Property changes on: python-cryptography/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
