summaryrefslogtreecommitdiff
path: root/pcr/python2-django-extensions
diff options
context:
space:
mode:
authoraurelien <aurelien@xload.io>2014-05-31 09:06:56 +0200
committeraurelien <aurelien@xload.io>2014-05-31 09:06:56 +0200
commitc31e1121bfc2671b34726cdee0c8bb1adf27b90d (patch)
treeac4cb30731dd8b26910de35ea17dbba4976aed64 /pcr/python2-django-extensions
parentf0ec54d6f5843080278878857ff85145967e7afc (diff)
python2-django-extensions
Diffstat (limited to 'pcr/python2-django-extensions')
-rw-r--r--pcr/python2-django-extensions/PKGBUILD39
1 files changed, 39 insertions, 0 deletions
diff --git a/pcr/python2-django-extensions/PKGBUILD b/pcr/python2-django-extensions/PKGBUILD
new file mode 100644
index 000000000..16f2d542a
--- /dev/null
+++ b/pcr/python2-django-extensions/PKGBUILD
@@ -0,0 +1,39 @@
+# Maintainer : Parabola Aurélien DESBRIÈRES <aurelien@hackers.camp>
+# Contributor: Jeremy "Ichimonji10" Audet <ichimonji10 at gmail dot com>
+# Contributor: Dominik Kozaczko <dominik@kozaczko.info>
+# Contributor: Alper Kanat <alperkanat@raptiye.org>
+# Contributor: Apkawa <apkawa@gmail.com>
+# Contributor: Schnouki <thomas.jost@gmail.com>
+#
+# namcap warns that python2-django and python2-six are unnecessary dependencies.
+# This is untrue.
+#
+# This package was formerly named `django-extensions`. As a result, this package
+# must provide and conflict with that package.
+
+pkgname=python2-django-extensions
+_pkgname=django-extensions
+pkgver=1.3.7
+pkgrel=1
+pkgdesc='A collection of custom extensions for the Django Framework.'
+arch=(any)
+url='http://github.com/django-extensions/django-extensions'
+license=(MIT)
+depends=(python2-django python2-six)
+makedepends=(python2-setuptools)
+optdepends=(
+ 'graphviz: to graph Django models'
+ 'python2-werkzeug: to use the Werkzeug debugger in the embedded web server'
+)
+provides=(django-extensions)
+conflicts=(django-extensions)
+options=(!emptydirs)
+source=("https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz")
+
+package() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ python2 setup.py install --root="${pkgdir}/" --optimize=1
+ install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et: