django: initial release

This commit is contained in:
Lucas Hazel 2008-08-30 22:39:21 +10:00
parent 2e4c160c64
commit 9afba5ff52
3 changed files with 1856 additions and 0 deletions

1839
django/.footprint Normal file

File diff suppressed because it is too large Load Diff

1
django/.md5sum Normal file
View File

@ -0,0 +1 @@
d66c52cdbcde57ca96fa22ef2b9b6301 django-r8740.tar.bz2

16
django/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: Web framework written in python
# URL: http://djangoproject.com
# Maintainer: Lucas Hazel, lucas at die dot net dot au
# Depends on: setuptools
name=django
version=r8740
release=1
source=(http://crux.nu/~lucas/files/$name-$version.tar.bz2)
build() {
cd $name-$version
python setup.py install --root=$PKG
# Don't lay eggs
find $PKG -name '*egg-info' | xargs rm
}