development/django: Updated for version 0.96
This commit is contained in:
parent
7c8c4e323d
commit
bd49d44573
|
@ -2,13 +2,9 @@ Django is a high-level Python web framework that encourages rapid
|
|||
development and clean, pragmatic design. It includes a template
|
||||
engine, and an object-relational mapper.
|
||||
|
||||
This SlackBuild requires the pysetuptools package to compile; a
|
||||
SlackBuild for this package is available from SlackBuilds.org.
|
||||
|
||||
Although Django can be used without database functionality, it is
|
||||
especially useful with database support. Various databases are
|
||||
supported through Python database bindings. For example, sqlite3
|
||||
databases are supported when the pysqlite2 package is installed.
|
||||
Due to the dynamic nature of Python software, database bindings
|
||||
are not required when Django is built and can be installed later.
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ set -e
|
|||
|
||||
PRGNAM=django
|
||||
DISTNAM=Django
|
||||
VERSION=0.95.1
|
||||
VERSION=0.96
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -53,11 +53,10 @@ chmod -R u+w,go+r-w,a-s .
|
|||
|
||||
python setup.py bdist
|
||||
|
||||
tar -C $PKG -zxvf dist/$DISTNAM-$VERSION.linux-i686.tar.gz
|
||||
tar zxvf dist/$DISTNAM-$VERSION-None.linux-$(uname -m).tar.gz -C $PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS INSTALL LICENSE README docs/* \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS INSTALL LICENSE README docs/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="django"
|
||||
VERSION="0.95.1"
|
||||
VERSION="0.96"
|
||||
HOMEPAGE="http://www.djangoproject.com/"
|
||||
DOWNLOAD="http://www.djangoproject.com/download/0.95.1/tarball/"
|
||||
MD5SUM="07f09d8429916481e09e84fd01e97355"
|
||||
DOWNLOAD="http://www.djangoproject.com/download/0.96/tarball/"
|
||||
MD5SUM="b4aedad1e90dd38d58ff9fc756180c7d"
|
||||
MAINTAINER="Daniel de Kok"
|
||||
EMAIL="danieldk@pobox.com"
|
||||
APPROVED="robw810"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
django: django (Python web framework)
|
||||
django:
|
||||
django: Python is a high-level Python web framework that encourages rapid
|
||||
|
|
Loading…
Reference in New Issue