summaryrefslogtreecommitdiff
path: root/libre/python-django-countries
diff options
context:
space:
mode:
Diffstat (limited to 'libre/python-django-countries')
-rw-r--r--libre/python-django-countries/PKGBUILD35
1 files changed, 0 insertions, 35 deletions
diff --git a/libre/python-django-countries/PKGBUILD b/libre/python-django-countries/PKGBUILD
deleted file mode 100644
index 1f0a609e9..000000000
--- a/libre/python-django-countries/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
-
-_pkgname=django-countries
-pkgname=(python-$_pkgname python2-$_pkgname)
-pkgver=3.3
-pkgdesc="Provides a country field for Django models"
-url="https://github.com/SmileyChris/django-countries"
-license=('custom:MIT')
-
-conflicts=($_pkgname)
-
-pkgrel=3
-arch=(any)
-makedepends=(python{,2}-{django,setuptools})
-source=(http://pypi.python.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz{,.asc})
-md5sums=('a981d1ae636ef8b5f05a0c73f7a7806e'
- 'SKIP')
-validpgpkeys=('012F5E34E68956C6C24A4D2FD6F44049700D3AF0')
-
-package_python-django-countries() {
- depends=('python-django')
-
- cd "$srcdir/$_pkgname-$pkgver"
- LC_ALL=en_US.UTF-8 python setup.py install --root="$pkgdir/" --optimize=1
- install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-django-countries() {
- depends=('python2-django')
- replaces=($_pkgname)
-
- cd "$srcdir/$_pkgname-$pkgver"
- python2 setup.py install --root="$pkgdir/" --optimize=1
- install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}