Skip to content

Instantly share code, notes, and snippets.

@lubosz
Created December 6, 2013 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lubosz/7830163 to your computer and use it in GitHub Desktop.
Save lubosz/7830163 to your computer and use it in GitHub Desktop.
updated django-extensions to 1.2.5 and python 3
# Maintainer: Alper Kanat <alperkanat@raptiye.org>
# Contributor: Schnouki <thomas.jost@gmail.com>
# Maintainer: Apkawa <apkawa@gmail.com>
# Maintainer: Dominik Kozaczko <dominik@kozaczko.info>
# Contributor: Lubosz Sarnecki <lubosz@gmail.com>
pkgname=django-extensions
pkgver=1.2.5
pkgrel=2
pkgdesc="Django Custom Management Command Extensions"
arch=('any')
url="http://github.com/django-extensions/django-extensions"
license=('BSD')
depends=('python-django')
makedepends=('setuptools' 'git')
optdepends=('graphviz: to graph Django models'
'python-werkzeug: to use the Werbzeug debugger in the embedded web server')
provides=('django-extensions')
conflicts=('django-extensions-git')
replaces=('django-extensions-git')
source=('git+https://github.com/django-extensions/django-extensions.git#tag=1.2.5')
md5sums=('SKIP')
_gitname="${pkgname}"
build() {
cd $_gitname
python ./setup.py build
}
package() {
cd $_gitname
python ./setup.py install --root=$pkgdir --prefix=/usr || return 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment