[arch-commits] Commit in python-pysaml2/repos (2 files)

Evangelos Foutras foutrelis at archlinux.org
Sun Jul 8 13:50:51 UTC 2018


    Date: Sunday, July 8, 2018 @ 13:50:51
  Author: foutrelis
Revision: 354912

archrelease: copy trunk to community-staging-any

Added:
  python-pysaml2/repos/community-staging-any/
  python-pysaml2/repos/community-staging-any/PKGBUILD
    (from rev 354911, python-pysaml2/trunk/PKGBUILD)

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

Copied: python-pysaml2/repos/community-staging-any/PKGBUILD (from rev 354911, python-pysaml2/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2018-07-08 13:50:51 UTC (rev 354912)
@@ -0,0 +1,76 @@
+# Maintainer: Johannes Löthberg <johannes at kyriasis.com>
+# Contributor: Ivan Shapovalov <intelfx at intelfx.name>
+
+pkgbase=python-pysaml2
+pkgname=(python-pysaml2 python2-pysaml2)
+pkgver=4.5.0
+pkgrel=3
+
+pkgdesc='Python implementation of SAML Version 2'
+url='https://pypi.python.org/pypi/pysaml2'
+arch=('any')
+license=('Apache')
+
+makedepends=('python-setuptools'
+             'python2-setuptools')
+
+source=("https://pypi.org/packages/source/p/pysaml2/pysaml2-$pkgver.tar.gz")
+
+md5sums=('5a529ae54d10f5cd71bc8d0bce7d788f')
+
+prepare() {
+	cp -a pysaml2-$pkgver{,-python2}
+}
+
+build() {
+	cd "$srcdir"/pysaml2-$pkgver
+	python setup.py build
+
+	cd "$srcdir"/pysaml2-$pkgver-python2
+	python2 setup.py build
+}
+
+check() {
+	cd "$srcdir"/pysaml2-$pkgver
+	python setup.py test
+
+	cd "$srcdir"/pysaml2-$pkgver-python2
+	python setup.py test
+}
+
+package_python-pysaml2() {
+	depends=('python'
+	         'python-future'
+	         'python-requests'
+	         'python-zope-interface'
+	         'python-pycryptodomex'
+	         'python-pytz'
+	         'python-pyopenssl'
+	         'python-dateutil'
+	         'python-six'
+	         'python-defusedxml')
+
+	cd pysaml2-$pkgver
+	python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-pysaml2() {
+	depends=('python2'
+	         'python2-future'
+	         'python2-requests'
+	         'python2-zope-interface'
+	         'python2-pycryptodomex'
+	         'python2-pytz'
+	         'python2-pyopenssl'
+	         'python2-dateutil'
+	         'python2-six'
+	         'python2-defusedxml')
+
+	cd pysaml2-$pkgver-python2
+	python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+	# rename all executables
+	find "$pkgdir"/usr/bin -type f -exec mv {} {}2 \;
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :



More information about the arch-commits mailing list