summaryrefslogtreecommitdiff
path: root/pcr-testing/django-allauth
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2018-09-12 08:25:54 +0000
committerbill-auger <mr.j.spam.me@gmail.com>2018-09-30 04:27:49 -0400
commit60149d4be1633dd72cba35fcfc29bcf9f117e6fd (patch)
tree3b6c121600f41edbe42ccc971d130cf69197c7e7 /pcr-testing/django-allauth
parent4e8a56f5ba2fb21332825f6f00cc84725a9268b2 (diff)
downloadabslibre-60149d4be1633dd72cba35fcfc29bcf9f117e6fd.tar.gz
abslibre-60149d4be1633dd72cba35fcfc29bcf9f117e6fd.tar.bz2
abslibre-60149d4be1633dd72cba35fcfc29bcf9f117e6fd.zip
add 'mailman3'
Diffstat (limited to 'pcr-testing/django-allauth')
-rw-r--r--pcr-testing/django-allauth/PKGBUILD42
1 files changed, 42 insertions, 0 deletions
diff --git a/pcr-testing/django-allauth/PKGBUILD b/pcr-testing/django-allauth/PKGBUILD
new file mode 100644
index 000000000..cd931df53
--- /dev/null
+++ b/pcr-testing/django-allauth/PKGBUILD
@@ -0,0 +1,42 @@
+# Maintainer: bill-auger <bill-auger@programmer.net>
+# Maintainer (AUR): Simon Hanna <simon dot hanna AT serve-me DOT info>
+# Contributor: Jakob Gahde <j5lx@fmail.co.uk>
+
+pkgbase='django-allauth'
+pkgname=('python-django-allauth' 'python2-django-allauth')
+pkgver=0.37.0
+pkgrel=1
+pkgdesc="Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication."
+arch=('any')
+license=('MIT')
+url=http://www.intenct.nl/projects/django-allauth/
+
+makedepends=('python-setuptools' 'python2-setuptools')
+
+source=(https://github.com/pennersr/${pkgbase}/archive/${pkgver}.tar.gz)
+sha256sums=('3d526573d0f3463506c605224a9bb444cdf0ad2e7118206a8e8cf9af6489efc3')
+
+
+package_python-django-allauth()
+{
+ depends=('python' 'python-django>=1.11' 'python2-openid' 'python-requests-oauthlib>=0.3.0'
+ 'python-requests')
+
+ cd "${srcdir}/${pkgbase}-${pkgver}"
+
+ python setup.py install --root="${pkgdir}" -O1
+
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-django-allauth()
+{
+ depends=('python2' 'python2-django>=1.10' 'python2-openid'
+ 'python2-requests-oauthlib' 'python2-requests')
+
+ cd "${srcdir}/${pkgbase}-${pkgver}"
+
+ python2 setup.py install --root="${pkgdir}" -O1
+
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}