django-taggit-0.11.1-1

This commit is contained in:
Jaroslav Lichtblau 2014-12-18 19:27:04 +01:00
parent 45d01c311b
commit 06fa9e72d4
2 changed files with 15 additions and 15 deletions

View file

@ -1,15 +1,13 @@
pkgbase = django-taggit
pkgdesc = Simple tagging application for Django
pkgver = 0.9.1
pkgver = 0.11.1
pkgrel = 1
url = http://github.com/alex/django-taggit/
arch = i686
arch = x86_64
arch = any
license = BSD
depends = python2
depends = django
source = http://pypi.python.org/packages/source/d/django-taggit/django-taggit-0.9.1.tar.gz
md5sums = 1ddca9dd55fb629a0cc03c4b0481a1ea
depends = python2-django
source = http://pypi.python.org/packages/source/d/django-taggit/django-taggit-0.11.1.tar.gz
md5sums = b8f77660c6b401e86ae986acecef46a1
pkgname = django-taggit

View file

@ -1,17 +1,19 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: İlker Kesen <ikesen92@gmail.com>
pkgname=django-taggit
pkgver=0.9.1
pkgver=0.11.1
pkgrel=1
pkgdesc="Simple tagging application for Django"
arch=('i686' 'x86_64')
arch=('any')
url="http://github.com/alex/django-taggit/"
license=('BSD')
depends=('python2' 'django')
depends=('python2-django')
source=(http://pypi.python.org/packages/source/d/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('1ddca9dd55fb629a0cc03c4b0481a1ea')
md5sums=('b8f77660c6b401e86ae986acecef46a1')
build() {
cd $srcdir/$pkgname-$pkgver
python2 setup.py build || return 1
python2 setup.py install --root=$pkgdir || return 1
package() {
cd "${srcdir}"/$pkgname-$pkgver
python2 setup.py install --root="${pkgdir}"
}