summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2016-12-14 19:57:56 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2016-12-14 19:57:56 -0500
commitc08a4c1a643ab27df8f5220a3fa138efcbe311e9 (patch)
tree868dee0a7718e9d5bf84d8af5783b465b0817166
parent45b0f653d89c163e9b261e041ea3bfb9f07789c6 (diff)
Removing python-django-extensions: This package is in [community] repo
-rw-r--r--pcr/python-django-extensions/PKGBUILD31
1 files changed, 0 insertions, 31 deletions
diff --git a/pcr/python-django-extensions/PKGBUILD b/pcr/python-django-extensions/PKGBUILD
deleted file mode 100644
index 27c926da2..000000000
--- a/pcr/python-django-extensions/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# Maintainer (Arch): Jeremy "Ichimonji10" Audet <ichimonji10 at gmail dot com>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-#
-# namcap warns that python-django and python-six are unnecessary dependencies.
-# This is untrue.
-
-pkgname=python-django-extensions
-_pkgname=django-extensions
-pkgver=1.5.5
-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=(python-django python-six)
-makedepends=(python-setuptools)
-optdepends=(
- 'graphviz: to graph Django models'
- 'python-werkzeug: to use the Werkzeug debugger in the embedded web server'
-)
-options=(!emptydirs)
-source=("https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz")
-sha256sums=('4ee4fe0559137a74df3d7692406d1efaa7c47fe903442f211b926104f193e436')
-
-package() {
- cd "${srcdir}/${_pkgname}-${pkgver}"
- python setup.py install --root="${pkgdir}/" --optimize=1
- install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et: