Date: Monday, November 4, 2019 @ 09:21:27
  Author: foutrelis
Revision: 523864

archrelease: copy trunk to community-staging-any

Added:
  python-django-extensions/repos/community-staging-any/
  python-django-extensions/repos/community-staging-any/PKGBUILD
    (from rev 523863, python-django-extensions/trunk/PKGBUILD)

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

Copied: python-django-extensions/repos/community-staging-any/PKGBUILD (from rev 
523863, python-django-extensions/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2019-11-04 09:21:27 UTC (rev 523864)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Jeremy Audet <[email protected]>
+# Contributor: Dominik Kozaczko <[email protected]>
+# Contributor: Alper Kanat <[email protected]>
+# Contributor: Apkawa <[email protected]>
+# Contributor: Schnouki <[email protected]>
+
+pkgname=python-django-extensions
+pkgver=2.2.5
+pkgrel=2
+pkgdesc='A collection of custom extensions for the Django Framework'
+arch=(any)
+url=https://github.com/django-extensions/django-extensions
+license=(MIT)
+depends=(
+  python-django
+  python-six
+)
+makedepends=(
+  git
+  python-setuptools
+)
+optdepends=(
+  'graphviz: graph_models extension'
+  'ipython: shell_plus extension'
+  'python-werkzeug: runserver_plus extension'
+)
+source=(git+https://github.com/django-extensions/django-extensions.git#tag=0f0ca99c8d5f3e34399b2f6a6f920167376d7fb9)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd django-extensions
+
+  git describe --tags
+}
+
+build() {
+  cd django-extensions
+
+  python setup.py build
+}
+
+package() {
+  cd django-extensions
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t 
"${pkgdir}"/usr/share/licenses/python-django-extensions/
+}
+
+# vim: ts=2 sw=2 et:

Reply via email to