summaryrefslogtreecommitdiff
path: root/extra/python-cryptography
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-03-15 04:04:05 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-03-15 04:04:05 +0000
commit8cd8534c45f14c6dfea3f1f2228451d192c33b3e (patch)
tree8dc070d5ca8ecdac8bb23a37b793ecf92893c227 /extra/python-cryptography
parent4d799458274f83bcf13d49715eaa435045a719d7 (diff)
Sat Mar 15 03:58:34 UTC 2014
Diffstat (limited to 'extra/python-cryptography')
-rw-r--r--extra/python-cryptography/PKGBUILD53
1 files changed, 53 insertions, 0 deletions
diff --git a/extra/python-cryptography/PKGBUILD b/extra/python-cryptography/PKGBUILD
new file mode 100644
index 000000000..4f111327e
--- /dev/null
+++ b/extra/python-cryptography/PKGBUILD
@@ -0,0 +1,53 @@
+# $Id: PKGBUILD 207736 2014-03-14 03:47:23Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+
+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
+}