summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-17 21:57:42 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-17 21:57:42 +0100
commitfdbf831d2e99810134305d53adc819e13fe31262 (patch)
tree21d61079a104807f22f40ae1bc2bec6d2dfecfb4
parentf7b664aa0d94b7d0471f034fce4ad78e710bacf0 (diff)
libre/python-django-countries: unused. removed
-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
-}