@all When there a big change or an error fixed, I add it in the Changelog. @DasGurke sha256sum is now fixed thanks. @cybertron python2-django PKGBUILD was recently removed from the Extra/ repo and because of that Archlinuxarm do not compile it any more.. You can compile it yourself:
# $Id$
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Maintainer: Dan McGee <dan@archlinux.org>
# Contributor: Shahar Weiss <sweiss4@gmx.net>
pkgbase=django
pkgname=('python2-django')
pkgver='1.11.13'
pkgrel=1
pkgdesc="A high-level Python Web framework that encourages rapid development and clean design"
arch=('any')
license=('BSD')
url="http://www.djangoproject.com/"
makedepends=('python2' 'python2-setuptools')
depends=('python2' 'python2-setuptools' 'python2-pytz')
optdepends=('python2-psycopg2: for PostgreSQL backend')
source=("https://www.djangoproject.com/m/releases/1.11/Django-$pkgver.tar.gz")
sha256sums=('46adfe8e0abe4d1f026c1086889970b611aec492784fbdfbdaabc2457360a4a5')
options=('!strip')
package() {
cd "$srcdir/Django-$pkgver"
python2 setup.py install --root="$pkgdir" --optimize=1
mv "$pkgdir"/usr/bin/django-admin.py "$pkgdir"/usr/bin/django-admin2.py
mv "$pkgdir"/usr/bin/django-admin "$pkgdir"/usr/bin/django-admin2
install -Dm644 extras/django_bash_completion \
"$pkgdir"/usr/share/bash-completion/completions/django-admin2.py
ln -s django-admin2.py \
"$pkgdir"/usr/share/bash-completion/completions/django-admin2
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
Pinned Comments