wok rev 15378

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 19 13:53:26 2013 +0000 (2013-10-19)
parents b50529e1ec04
children 2a5cc8208d36
files python-antlr/receipt python-apsw/receipt python-asterisk/receipt python-babel/receipt python-beaker/receipt python-bpython/receipt python-caldav/receipt python-chardet/receipt python-cheetah/receipt python-cherrypy/receipt python-cssselect/receipt python-dateutil/receipt python-decoratortools/receipt python-dev/receipt python-distribute/receipt python-django/receipt python-dnspython/receipt python-extremes/receipt python-flup/receipt python-formencode/receipt python-gazpacho/receipt python-genshi/receipt python-ipy/receipt python-jinja2/receipt python-kid/receipt python-mako/receipt python-markupsafe/receipt python-mechanize/receipt python-mysql/receipt python-netaddr/receipt python-netifaces/receipt python-oauth2/receipt python-ooop/receipt python-pastedeploy/receipt python-pastescript/receipt python-prettytable/receipt python-py/receipt python-pyalsaaudio/receipt python-pybluez/receipt python-pychart/receipt python-pycryptopp/receipt python-pydot/receipt python-pygame-dev/receipt python-pygame/receipt python-pygments/receipt python-pygraphviz/receipt python-pylons/receipt python-pyparsing/receipt python-pyprotocols/receipt python-pyrex/receipt python-pysqlite/receipt python-pytest/receipt python-pytz/receipt python-pyweb/receipt python-pywebdav/receipt python-pyxml/receipt python-pyyaml/receipt python-xlib/receipt python/receipt
line diff
     1.1 --- a/python-antlr/receipt	Sat Oct 19 10:56:35 2013 +0000
     1.2 +++ b/python-antlr/receipt	Sat Oct 19 13:53:26 2013 +0000
     1.3 @@ -6,6 +6,7 @@
     1.4  CATEGORY="development"
     1.5  SHORT_DESC="language tool for constructing recognizers, compilers for python."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 +LICENSE="BSD"
     1.8  TARBALL="$SOURCE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://www.antlr.org/"
    1.10  WGET_URL="${WEB_SITE}download/$TARBALL"
    1.11 @@ -25,5 +26,5 @@
    1.12  genpkg_rules()
    1.13  {
    1.14  	mkdir -p $fs/usr
    1.15 -	cp -a $_pkg/usr/lib $fs/usr
    1.16 +	cp -a $install/usr/lib $fs/usr
    1.17  }
     2.1 --- a/python-apsw/receipt	Sat Oct 19 10:56:35 2013 +0000
     2.2 +++ b/python-apsw/receipt	Sat Oct 19 13:53:26 2013 +0000
     2.3 @@ -6,6 +6,7 @@
     2.4  CATEGORY="development"
     2.5  SHORT_DESC="Python wrapper for SQLite."
     2.6  MAINTAINER="pascal.bellard@slitaz.org"
     2.7 +LICENSE="zlib/libpng"
     2.8  TARBALL="$SOURCE-$VERSION.zip"
     2.9  WEB_SITE="http://code.google.com/p/$PACKAGE/"
    2.10  WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL"
     3.1 --- a/python-asterisk/receipt	Sat Oct 19 10:56:35 2013 +0000
     3.2 +++ b/python-asterisk/receipt	Sat Oct 19 13:53:26 2013 +0000
     3.3 @@ -6,6 +6,7 @@
     3.4  CATEGORY="development"
     3.5  SHORT_DESC="Python bindings for the Asterisk Manager API."
     3.6  MAINTAINER="pascal.bellard@slitaz.org"
     3.7 +LICENSE="MIT"
     3.8  TARBALL="$SOURCE-$VERSION.tar.gz"
     3.9  WEB_SITE="http://code.google.com/p/py-asterisk/"
    3.10  WGET_URL="http://pypi.python.org/packages/source/p/$SOURCE/$TARBALL"
     4.1 --- a/python-babel/receipt	Sat Oct 19 10:56:35 2013 +0000
     4.2 +++ b/python-babel/receipt	Sat Oct 19 13:53:26 2013 +0000
     4.3 @@ -3,10 +3,12 @@
     4.4  CATEGORY="development"
     4.5  SHORT_DESC="A collection of tools for internationalizing Python applications."
     4.6  MAINTAINER="pascal.bellard@slitaz.org"
     4.7 +LICENSE="BSD"
     4.8  SOURCE="Babel"
     4.9  TARBALL="$SOURCE-$VERSION.tar.gz"
    4.10  WEB_SITE="http://babel.edgewall.org/"
    4.11  WGET_URL="http://ftp.edgewall.com/pub/babel/$TARBALL"
    4.12 +
    4.13  DEPENDS="python"
    4.14  BUILD_DEPENDS="python python-dev setuptools"
    4.15  
     5.1 --- a/python-beaker/receipt	Sat Oct 19 10:56:35 2013 +0000
     5.2 +++ b/python-beaker/receipt	Sat Oct 19 13:53:26 2013 +0000
     5.3 @@ -5,25 +5,26 @@
     5.4  CATEGORY="development"
     5.5  SHORT_DESC="Cache and Session Library"
     5.6  MAINTAINER="taziden@slitaz.org"
     5.7 +LICENSE="BSD"
     5.8  SOURCE="Beaker"
     5.9 -DEPENDS="python"
    5.10 -BUILD_DEPENDS="python python-dev setuptools"
    5.11  TARBALL="$SOURCE-$VERSION.tar.gz"
    5.12  WEB_SITE="http://pylonshq.com"
    5.13  WGET_URL="$WEB_SITE/download/1.0/$TARBALL"
    5.14  TAGS="python"
    5.15  
    5.16 +DEPENDS="python"
    5.17 +BUILD_DEPENDS="python python-dev setuptools"
    5.18 +
    5.19  # Rules to configure and make the package.
    5.20  compile_rules()
    5.21  {
    5.22  	cd $src
    5.23 -    python setup.py install --root=$PWD/_pkg
    5.24 -
    5.25 +	python setup.py install --root=$DESTDIR
    5.26  }
    5.27  
    5.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    5.29  genpkg_rules()
    5.30  {
    5.31 -	cp -a $_pkg/usr/ $fs
    5.32 +	cp -a $install/usr/ $fs
    5.33  }
    5.34  
     6.1 --- a/python-bpython/receipt	Sat Oct 19 10:56:35 2013 +0000
     6.2 +++ b/python-bpython/receipt	Sat Oct 19 13:53:26 2013 +0000
     6.3 @@ -6,9 +6,11 @@
     6.4  CATEGORY="development"
     6.5  SHORT_DESC="A fancy interface to the Python interpreter."
     6.6  MAINTAINER="claudinei@slitaz.org"
     6.7 +LICENSE="MIT"
     6.8  TARBALL="$SOURCE-$VERSION.tar.gz"
     6.9  WEB_SITE="http://www.bpython-interpreter.org"
    6.10  WGET_URL="$WEB_SITE/releases/$TARBALL"
    6.11 +
    6.12  DEPENDS="python python-pygments setuptools"
    6.13  BUILD_DEPENDS="$DEPENDS python-dev"
    6.14  
     7.1 --- a/python-caldav/receipt	Sat Oct 19 10:56:35 2013 +0000
     7.2 +++ b/python-caldav/receipt	Sat Oct 19 13:53:26 2013 +0000
     7.3 @@ -5,6 +5,7 @@
     7.4  CATEGORY="development"
     7.5  SHORT_DESC="CalDAV (RFC4791) client library for Python"
     7.6  MAINTAINER="pascal.bellard@slitaz.org"
     7.7 +LICENSE="GPL"
     7.8  SOURCE="caldav"
     7.9  TARBALL="$SOURCE-$VERSION.tar.gz"
    7.10  WEB_SITE="http://pypi.python.org/pypi/caldav"
    7.11 @@ -24,5 +25,5 @@
    7.12  genpkg_rules()
    7.13  {
    7.14      mkdir -p $fs/usr
    7.15 -    cp -a $_pkg/usr $fs
    7.16 +    cp -a $install/usr $fs
    7.17  }
     8.1 --- a/python-chardet/receipt	Sat Oct 19 10:56:35 2013 +0000
     8.2 +++ b/python-chardet/receipt	Sat Oct 19 13:53:26 2013 +0000
     8.3 @@ -6,22 +6,24 @@
     8.4  CATEGORY="development"
     8.5  MAINTAINER="devel@slitaz.org"
     8.6  SHORT_DESC="Python module for character encoding auto-detection"
     8.7 -DEPENDS="python"
     8.8 -BUILD_DEPENDS="python-dev"
     8.9 +LICENSE="LGPL2.1"
    8.10  WEB_SITE="http://chardet.feedparser.org"
    8.11  TARBALL="$SOURCE-$VERSION.tgz"
    8.12  WGET_URL="$WEB_SITE/download/$TARBALL"
    8.13  
    8.14 +DEPENDS="python"
    8.15 +BUILD_DEPENDS="python-dev"
    8.16 +
    8.17  # Rules to configure and make the package.
    8.18  
    8.19  compile_rules() {
    8.20    
    8.21 -  cd $src
    8.22 -  python setup.py install --root=$PWD/_pkg --optimize=1 
    8.23 +	cd $src
    8.24 +	python setup.py install --root=$DESTDIR --optimize=1 
    8.25  }
    8.26  	
    8.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    8.28  genpkg_rules()
    8.29  {
    8.30 -	cp -a $_pkg/usr $fs
    8.31 +	cp -a $install/usr $fs
    8.32  }
     9.1 --- a/python-cheetah/receipt	Sat Oct 19 10:56:35 2013 +0000
     9.2 +++ b/python-cheetah/receipt	Sat Oct 19 13:53:26 2013 +0000
     9.3 @@ -5,23 +5,25 @@
     9.4  CATEGORY="development"
     9.5  SHORT_DESC="Cheetah is a template engine and code generation tool written in Python."
     9.6  MAINTAINER="pankso@slitaz.org"
     9.7 +LICENSE="MIT"
     9.8  SOURCE="Cheetah"
     9.9  TARBALL="$SOURCE-$VERSION.tar.gz"
    9.10  WEB_SITE="http://www.cheetahtemplate.org/"
    9.11  WGET_URL="http://pypi.python.org/packages/source/C/$SOURCE/$TARBALL"
    9.12 +TAGS="python"
    9.13 +
    9.14  DEPENDS="python"
    9.15  BUILD_DEPENDS="python python-dev"
    9.16 -TAGS="python"
    9.17  
    9.18  # Rules to configure and make the package.
    9.19  compile_rules()
    9.20  {
    9.21  	cd $src
    9.22 -	python setup.py install --root=$PWD/_pkg
    9.23 +	python setup.py install --root=$DESTDIR
    9.24  }
    9.25  
    9.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    9.27  genpkg_rules()
    9.28  {
    9.29 -	cp -a $_pkg/usr $fs
    9.30 +	cp -a $install/usr $fs
    9.31  }
    10.1 --- a/python-cherrypy/receipt	Sat Oct 19 10:56:35 2013 +0000
    10.2 +++ b/python-cherrypy/receipt	Sat Oct 19 13:53:26 2013 +0000
    10.3 @@ -5,23 +5,25 @@
    10.4  CATEGORY="development"
    10.5  SHORT_DESC="CherryPy is a pythonic, object-oriented HTTP framework."
    10.6  MAINTAINER="pankso@slitaz.org"
    10.7 +LICENSE="BSD"
    10.8  SOURCE="CherryPy"
    10.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   10.10  WEB_SITE="http://www.cherrypy.org/"
   10.11  WGET_URL="http://download.cherrypy.org/cherrypy/$VERSION/$TARBALL"
   10.12 +TAGS="python"
   10.13 +
   10.14  DEPENDS="python"
   10.15  BUILD_DEPENDS="python python-dev"
   10.16 -TAGS="python"
   10.17  
   10.18  # Rules to configure and make the package.
   10.19  compile_rules()
   10.20  {
   10.21  	cd $src
   10.22 -	python setup.py install --root=$PWD/_pkg
   10.23 +	python setup.py install --root=$DESTDIR
   10.24  }
   10.25  
   10.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   10.27  genpkg_rules()
   10.28  {
   10.29 -	cp -a $_pkg/usr $fs
   10.30 +	cp -a $install/usr $fs
   10.31  }
    11.1 --- a/python-cssselect/receipt	Sat Oct 19 10:56:35 2013 +0000
    11.2 +++ b/python-cssselect/receipt	Sat Oct 19 13:53:26 2013 +0000
    11.3 @@ -5,10 +5,12 @@
    11.4  CATEGORY="development"
    11.5  SHORT_DESC="parses CSS3 Selectors and translates them to XPath."
    11.6  MAINTAINER="monghitri@aruba.it"
    11.7 +LICENSE="BSD"
    11.8  SOURCE="cssselect"
    11.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   11.10  WEB_SITE="http://pypi.python.org/pypi/cssselect"
   11.11  WGET_URL="http://pypi.python.org/packages/source/c/$SOURCE/$TARBALL"
   11.12 +
   11.13  DEPENDS="python"
   11.14  BUILD_DEPENDS="python setuptools"
   11.15  
    12.1 --- a/python-dateutil/receipt	Sat Oct 19 10:56:35 2013 +0000
    12.2 +++ b/python-dateutil/receipt	Sat Oct 19 13:53:26 2013 +0000
    12.3 @@ -5,26 +5,28 @@
    12.4  CATEGORY="development"
    12.5  SHORT_DESC="Extensions to the standart python 2.3+ datetime module"
    12.6  MAINTAINER="claudinei@slitaz.org"
    12.7 -DEPENDS="python"
    12.8 -BUILD_DEPENDS="python python-dev setuptools"
    12.9 +LICENSE="PSL"
   12.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
   12.11  WEB_SITE="http://labix.org/python-dateutil"
   12.12  WGET_URL="http://labix.org/download/$PACKAGE/$TARBALL"
   12.13  
   12.14 +DEPENDS="python"
   12.15 +BUILD_DEPENDS="python python-dev setuptools"
   12.16 +
   12.17  # Rules to configure and make the package.
   12.18  compile_rules()
   12.19  {
   12.20  	cd $src
   12.21 -	python setup.py install --root=$PWD/_pkg
   12.22 +	python setup.py install --root=$DESTDIR
   12.23  }
   12.24  
   12.25  # Rules to gen a SliTaz package suitable for Tazpkg.
   12.26  genpkg_rules()
   12.27  {
   12.28 -	for file in `find $_pkg | grep 'pyc$'`; do
   12.29 +	for file in `find $install | grep 'pyc$'`; do
   12.30  		rm $file
   12.31  	done
   12.32  	mkdir -p $fs/usr
   12.33 -	cp -a $_pkg/usr/lib $fs/usr
   12.34 +	cp -a $install/usr/lib $fs/usr
   12.35  }
   12.36  
    13.1 --- a/python-decoratortools/receipt	Sat Oct 19 10:56:35 2013 +0000
    13.2 +++ b/python-decoratortools/receipt	Sat Oct 19 13:53:26 2013 +0000
    13.3 @@ -5,24 +5,26 @@
    13.4  CATEGORY="development"
    13.5  SHORT_DESC="Class, function, and metaclass decorators"
    13.6  MAINTAINER="taziden@slitaz.org"
    13.7 +LICENSE="PSL"
    13.8  SOURCE="DecoratorTools"
    13.9 -DEPENDS="python"
   13.10 -BUILD_DEPENDS="python python-dev"
   13.11  TARBALL="$SOURCE-$VERSION.zip"
   13.12  WEB_SITE="http://pypi.python.org/pypi/DecoratorTools"
   13.13  WGET_URL="http://pypi.python.org/packages/source/D/$SOURCE/$TARBALL"
   13.14  TAGS="python"
   13.15  
   13.16 +DEPENDS="python"
   13.17 +BUILD_DEPENDS="python python-dev"
   13.18 +
   13.19  # Rules to configure and make the package.
   13.20  compile_rules()
   13.21  {
   13.22  	cd $src
   13.23 -    python setup.py install --root=$PWD/_pkg
   13.24 +    python setup.py install --root=$DESTDIR
   13.25  }
   13.26  
   13.27  # Rules to gen a SliTaz package suitable for Tazpkg.
   13.28  genpkg_rules()
   13.29  {
   13.30 -	cp -a $_pkg/usr $fs
   13.31 +	cp -a $install/usr $fs
   13.32  }
   13.33  
    14.1 --- a/python-dev/receipt	Sat Oct 19 10:56:35 2013 +0000
    14.2 +++ b/python-dev/receipt	Sat Oct 19 13:53:26 2013 +0000
    14.3 @@ -5,11 +5,13 @@
    14.4  CATEGORY="development"
    14.5  SHORT_DESC="The Python programming language devel files."
    14.6  MAINTAINER="pankso@slitaz.org"
    14.7 -DEPENDS="python"
    14.8 +LICENSE="PSL"
    14.9  WANTED="python"
   14.10  SOURCE="Python"
   14.11  WEB_SITE="http://www.python.org/"
   14.12  
   14.13 +DEPENDS="python"
   14.14 +
   14.15  # Rules to gen a SliTaz package suitable for Tazpkg.
   14.16  genpkg_rules()
   14.17  {
    15.1 --- a/python-distribute/receipt	Sat Oct 19 10:56:35 2013 +0000
    15.2 +++ b/python-distribute/receipt	Sat Oct 19 13:53:26 2013 +0000
    15.3 @@ -5,6 +5,7 @@
    15.4  CATEGORY="development"
    15.5  SHORT_DESC="Easily build and distribute Python packages"
    15.6  MAINTAINER="slaxemulator@gmail.com"
    15.7 +LICENSE="PSL"
    15.8  WEB_SITE="http://pypi.python.org/pypi/distribute"
    15.9  SOURCE="distribute"
   15.10  TARBALL="$SOURCE-$VERSION.tar.gz"
    16.1 --- a/python-django/receipt	Sat Oct 19 10:56:35 2013 +0000
    16.2 +++ b/python-django/receipt	Sat Oct 19 13:53:26 2013 +0000
    16.3 @@ -6,11 +6,13 @@
    16.4  CATEGORY="development"
    16.5  SHORT_DESC="Django is a high-level Python Web framework."
    16.6  MAINTAINER="claudinei@slitaz.org"
    16.7 +LICENSE="BSD"
    16.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    16.9  WEB_SITE="https://www.djangoproject.com/"
   16.10  WGET_URL="https://www.djangoproject.com/m/releases/1.5/$TARBALL"
   16.11 +SUGGESTED="python-mysql"
   16.12 +
   16.13  DEPENDS="python python-pysqlite"
   16.14 -SUGGESTED="python-mysql"
   16.15  BUILD_DEPENDS="setuptools wget"
   16.16  
   16.17  # Rules to configure and make the package.
    17.1 --- a/python-dnspython/receipt	Sat Oct 19 10:56:35 2013 +0000
    17.2 +++ b/python-dnspython/receipt	Sat Oct 19 13:53:26 2013 +0000
    17.3 @@ -5,10 +5,12 @@
    17.4  CATEGORY="development"
    17.5  SHORT_DESC="a DNS toolkit for Python"
    17.6  MAINTAINER="monghitri@aruba.it"
    17.7 +LICENSE="BSD"
    17.8  SOURCE="dnspython"
    17.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   17.10  WEB_SITE="http://www.dnspython.org/"
   17.11  WGET_URL="http://www.dnspython.org/kits/$VERSION/$TARBALL"
   17.12 +
   17.13  DEPENDS="python"
   17.14  BUILD_DEPENDS="python setuptools"
   17.15  
    18.1 --- a/python-extremes/receipt	Sat Oct 19 10:56:35 2013 +0000
    18.2 +++ b/python-extremes/receipt	Sat Oct 19 13:53:26 2013 +0000
    18.3 @@ -5,23 +5,25 @@
    18.4  CATEGORY="development"
    18.5  SHORT_DESC="Production-quality 'Min' and 'Max' objects (adapted from PEP 326)."
    18.6  MAINTAINER="pankso@slitaz.org"
    18.7 +LICENSE="PSL"
    18.8  SOURCE="Extremes"
    18.9  TARBALL="$SOURCE-$VERSION.zip"
   18.10  WEB_SITE="http://pypi.python.org/pypi/Extremes"
   18.11  WGET_URL="http://pypi.python.org/packages/source/E/$SOURCE/$TARBALL"
   18.12 +TAGS="python"
   18.13 +
   18.14  DEPENDS="python"
   18.15  BUILD_DEPENDS="python python-dev setuptools"
   18.16 -TAGS="python"
   18.17  
   18.18  # Rules to configure and make the package.
   18.19  compile_rules()
   18.20  {
   18.21  	cd $src
   18.22 -	python setup.py install --root=$PWD/_pkg
   18.23 +	python setup.py install --root=$DESTDIR
   18.24  }
   18.25  
   18.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   18.27  genpkg_rules()
   18.28  {
   18.29 -	cp -a $_pkg/usr $fs
   18.30 +	cp -a $install/usr $fs
   18.31  }
    19.1 --- a/python-flup/receipt	Sat Oct 19 10:56:35 2013 +0000
    19.2 +++ b/python-flup/receipt	Sat Oct 19 13:53:26 2013 +0000
    19.3 @@ -5,13 +5,15 @@
    19.4  CATEGORY="network"
    19.5  SHORT_DESC="Random collection of WSGI modules for Python."
    19.6  MAINTAINER="pankso@slitaz.org"
    19.7 -DEPENDS="python"
    19.8 -BUILD_DEPENDS="python python-dev python-distribute"
    19.9 +LICENSE="BSD"
   19.10  SOURCE="flup"
   19.11  TARBALL="$SOURCE-$VERSION.tar.gz"
   19.12  WEB_SITE="http://trac.saddi.com/flup"
   19.13  WGET_URL="http://www.saddi.com/software/flup/dist/$TARBALL"
   19.14  
   19.15 +DEPENDS="python"
   19.16 +BUILD_DEPENDS="python python-dev python-distribute"
   19.17 +
   19.18  # Rules to configure and make the package.
   19.19  compile_rules()
   19.20  {
   19.21 @@ -23,6 +25,6 @@
   19.22  genpkg_rules()
   19.23  {
   19.24  	mkdir -p $fs
   19.25 -	cp -a $_pkg/usr $fs
   19.26 +	cp -a $install/usr $fs
   19.27  }
   19.28  
    20.1 --- a/python-formencode/receipt	Sat Oct 19 10:56:35 2013 +0000
    20.2 +++ b/python-formencode/receipt	Sat Oct 19 13:53:26 2013 +0000
    20.3 @@ -5,23 +5,25 @@
    20.4  CATEGORY="development"
    20.5  SHORT_DESC="FormEncode is a validation and form generation package."
    20.6  MAINTAINER="pankso@slitaz.org"
    20.7 +LICENSE="PSL"
    20.8  SOURCE="FormEncode"
    20.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   20.10  WEB_SITE="http://formencode.org/"
   20.11  WGET_URL="http://pypi.python.org/packages/source/F/$SOURCE/$TARBALL"
   20.12 +TAGS="python"
   20.13 +
   20.14  DEPENDS="python"
   20.15  BUILD_DEPENDS="python python-dev setuptools"
   20.16 -TAGS="python"
   20.17  
   20.18  # Rules to configure and make the package.
   20.19  compile_rules()
   20.20  {
   20.21  	cd $src
   20.22 -	python setup.py install --root=$PWD/_pkg
   20.23 +	python setup.py install --root=$DESTDIR
   20.24  }
   20.25  
   20.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   20.27  genpkg_rules()
   20.28  {
   20.29 -	cp -a $_pkg/usr $fs
   20.30 +	cp -a $install/usr $fs
   20.31  }
    21.1 --- a/python-gazpacho/receipt	Sat Oct 19 10:56:35 2013 +0000
    21.2 +++ b/python-gazpacho/receipt	Sat Oct 19 13:53:26 2013 +0000
    21.3 @@ -6,13 +6,15 @@
    21.4  CATEGORY="development"
    21.5  SHORT_DESC="A GUI builder for the GTK+ toolkit"
    21.6  MAINTAINER="claudinei@slitaz.org"
    21.7 -DEPENDS="python pygtk python-kiwi"
    21.8 -BUILD_DEPENDS="python python-dev pygtk python-kiwi"
    21.9 +LICENSE="LGPL2.1"
   21.10  SUGGESTED="twisted"
   21.11  TARBALL="$SOURCE-$VERSION.tar.gz"
   21.12  WEB_SITE="http://gazpacho.sicem.biz"
   21.13  WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$SOURCE/0.7/$TARBALL"
   21.14  
   21.15 +DEPENDS="python pygtk python-kiwi"
   21.16 +BUILD_DEPENDS="python python-dev pygtk python-kiwi"
   21.17 +
   21.18  # Rules to configure and make the package.
   21.19  compile_rules()
   21.20  {
   21.21 @@ -27,8 +29,8 @@
   21.22  genpkg_rules()
   21.23  {
   21.24  	mkdir -p $fs/usr/share
   21.25 -	cp -a $_pkg/usr/bin $fs/usr
   21.26 -	cp -a $_pkg/usr/lib $fs/usr
   21.27 -	cp -a $_pkg/usr/share $fs/usr
   21.28 +	cp -a $install/usr/bin $fs/usr
   21.29 +	cp -a $install/usr/lib $fs/usr
   21.30 +	cp -a $install/usr/share $fs/usr
   21.31  }
   21.32  
    22.1 --- a/python-genshi/receipt	Sat Oct 19 10:56:35 2013 +0000
    22.2 +++ b/python-genshi/receipt	Sat Oct 19 13:53:26 2013 +0000
    22.3 @@ -5,6 +5,7 @@
    22.4  CATEGORY="development"
    22.5  SHORT_DESC="Python toolkit for generation of output for the web."
    22.6  MAINTAINER="pascal.bellard@slitaz.org"
    22.7 +LICENSE="BSD"
    22.8  SOURCE="Genshi"
    22.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   22.10  WEB_SITE="http://genshi.edgewall.org/"
    23.1 --- a/python-ipy/receipt	Sat Oct 19 10:56:35 2013 +0000
    23.2 +++ b/python-ipy/receipt	Sat Oct 19 13:53:26 2013 +0000
    23.3 @@ -5,24 +5,26 @@
    23.4  CATEGORY="development"
    23.5  SHORT_DESC="Python class and tools for IPv4 and IPv6 addresses and networks."
    23.6  MAINTAINER="pascal.bellard@slitaz.org"
    23.7 +LICENSE="BSD"
    23.8  SOURCE="IPy"
    23.9 -DEPENDS="python"
   23.10  TARBALL="$SOURCE-$VERSION.tar.gz"
   23.11  WEB_SITE="http://software.inl.fr/trac/wiki/IPy"
   23.12  WGET_URL="http://cheeseshop.python.org/packages/source/I/$SOURCE/$TARBALL"
   23.13  
   23.14 +DEPENDS="python"
   23.15 +
   23.16  # Rules to configure and make the package.
   23.17  compile_rules()
   23.18  {
   23.19  	cd $src
   23.20  	python setup.py build
   23.21 -	python setup.py install --root=$PWD/_pkg
   23.22 +	python setup.py install --root=$DESTDIR
   23.23  }
   23.24  
   23.25  # Rules to gen a SliTaz package suitable for Tazpkg.
   23.26  genpkg_rules()
   23.27  {
   23.28  	mkdir -p $fs/usr
   23.29 -	cp -a $_pkg/usr/lib $fs/usr
   23.30 +	cp -a $install/usr/lib $fs/usr
   23.31  }
   23.32  
    24.1 --- a/python-jinja2/receipt	Sat Oct 19 10:56:35 2013 +0000
    24.2 +++ b/python-jinja2/receipt	Sat Oct 19 13:53:26 2013 +0000
    24.3 @@ -6,9 +6,11 @@
    24.4  CATEGORY="development"
    24.5  SHORT_DESC="Stand-alone template engine."
    24.6  MAINTAINER="claudinei@slitaz.org"
    24.7 +LICENSE="BSD"
    24.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    24.9  WEB_SITE="http://jinja.pocoo.org"
   24.10  WGET_URL="https://pypi.python.org/packages/source/J/$SOURCE/$TARBALL"
   24.11 +
   24.12  DEPENDS="python python-markupsafe"
   24.13  BUILD_DEPENDS="setuptools wget"
   24.14  
    25.1 --- a/python-kid/receipt	Sat Oct 19 10:56:35 2013 +0000
    25.2 +++ b/python-kid/receipt	Sat Oct 19 13:53:26 2013 +0000
    25.3 @@ -5,23 +5,25 @@
    25.4  CATEGORY="development"
    25.5  SHORT_DESC="Pythonic, XML-based Templating."
    25.6  MAINTAINER="pankso@slitaz.org"
    25.7 +LICENSE="MIT"
    25.8  SOURCE="kid"
    25.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   25.10  WEB_SITE="http://www.kid-templating.org/"
   25.11  WGET_URL="http://www.kid-templating.org/dist/$VERSION/$TARBALL"
   25.12 +TAGS="python"
   25.13 +
   25.14  DEPENDS="python"
   25.15  BUILD_DEPENDS="python python-dev setuptools"
   25.16 -TAGS="python"
   25.17  
   25.18  # Rules to configure and make the package.
   25.19  compile_rules()
   25.20  {
   25.21  	cd $src
   25.22 -	python setup.py install --root=$PWD/_pkg
   25.23 +	python setup.py install --root=$DESTDIR
   25.24  }
   25.25  
   25.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   25.27  genpkg_rules()
   25.28  {
   25.29 -	cp -a $_pkg/usr $fs
   25.30 +	cp -a $install/usr $fs
   25.31  }
    26.1 --- a/python-mako/receipt	Sat Oct 19 10:56:35 2013 +0000
    26.2 +++ b/python-mako/receipt	Sat Oct 19 13:53:26 2013 +0000
    26.3 @@ -5,24 +5,26 @@
    26.4  CATEGORY="development"
    26.5  SHORT_DESC="Fast template library"
    26.6  MAINTAINER="taziden@slitaz.org"
    26.7 +LICENSE="MIT"
    26.8  SOURCE="Mako"
    26.9 -DEPENDS="python"
   26.10 -BUILD_DEPENDS="python python-dev setuptools"
   26.11  TARBALL="$SOURCE-$VERSION.tar.gz"
   26.12  WEB_SITE="http://www.makotemplates.org/"
   26.13  WGET_URL="$WEB_SITE/downloads/$TARBALL"
   26.14  TAGS="python"
   26.15  
   26.16 +DEPENDS="python"
   26.17 +BUILD_DEPENDS="python python-dev setuptools"
   26.18 +
   26.19  # Rules to configure and make the package.
   26.20  compile_rules()
   26.21  {
   26.22  	cd $src
   26.23 -    python setup.py install --root=$PWD/_pkg
   26.24 +    python setup.py install --root=$DESTDIR
   26.25  }
   26.26  
   26.27  # Rules to gen a SliTaz package suitable for Tazpkg.
   26.28  genpkg_rules()
   26.29  {
   26.30 -	cp -a $_pkg/usr $fs
   26.31 +	cp -a $install/usr $fs
   26.32  }
   26.33  
    27.1 --- a/python-markupsafe/receipt	Sat Oct 19 10:56:35 2013 +0000
    27.2 +++ b/python-markupsafe/receipt	Sat Oct 19 13:53:26 2013 +0000
    27.3 @@ -3,10 +3,12 @@
    27.4  CATEGORY="development"
    27.5  SHORT_DESC="Implements a XML/HTML/XHTML Markup safe string for Python."
    27.6  MAINTAINER="pascal.bellard@slitaz.org"
    27.7 +LICENSE="BSD"
    27.8  SOURCE="MarkupSafe"
    27.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   27.10  WEB_SITE="http://pypi.python.org/pypi/MarkupSafe"
   27.11  WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
   27.12 +
   27.13  DEPENDS="python"
   27.14  BUILD_DEPENDS="python python-dev setuptools"
   27.15  
   27.16 @@ -16,12 +18,12 @@
   27.17  
   27.18  	cd $src
   27.19  	python setup.py build &&
   27.20 -	python setup.py install --root=$PWD/_pkg
   27.21 +	python setup.py install --root=$DESTDIR
   27.22  }
   27.23  
   27.24  # Rules to gen a SliTaz package suitable for Tazpkg.
   27.25  genpkg_rules()
   27.26  {
   27.27  	mkdir -p $fs
   27.28 -	cp -a $_pkg/usr $fs
   27.29 +	cp -a $install/usr $fs
   27.30  }
    28.1 --- a/python-mechanize/receipt	Sat Oct 19 10:56:35 2013 +0000
    28.2 +++ b/python-mechanize/receipt	Sat Oct 19 13:53:26 2013 +0000
    28.3 @@ -6,6 +6,7 @@
    28.4  CATEGORY="network"
    28.5  SHORT_DESC="Stateful programmatic web browsing in Python."
    28.6  MAINTAINER="pankso@slitaz.org"
    28.7 +LICENSE="BSD"
    28.8  TARBALL="${SOURCE}-${VERSION}.tar.gz"
    28.9  WEB_SITE="http://wwwsearch.sourceforge.net/mechanize/"
   28.10  WGET_URL="http://pypi.python.org/packages/source/m/mechanize/$TARBALL"
    29.1 --- a/python-mysql/receipt	Sat Oct 19 10:56:35 2013 +0000
    29.2 +++ b/python-mysql/receipt	Sat Oct 19 13:53:26 2013 +0000
    29.3 @@ -6,6 +6,7 @@
    29.4  CATEGORY="development"
    29.5  SHORT_DESC="A Python interface to MySQL ."
    29.6  MAINTAINER="claudinei@slitaz.org"
    29.7 +LICENSE="GPL"
    29.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    29.9  WEB_SITE="http://mysql-python.sourceforge.net/"
   29.10  WGET_URL="$SF_MIRROR/mysql-python/$TARBALL"
   29.11 @@ -26,7 +27,7 @@
   29.12  genpkg_rules()
   29.13  {
   29.14  	mkdir -p $fs/usr
   29.15 -	cp -a $_pkg/usr/lib $fs/usr
   29.16 +	cp -a $install/usr/lib $fs/usr
   29.17  }
   29.18  
   29.19  # Remove old package.
    30.1 --- a/python-netaddr/receipt	Sat Oct 19 10:56:35 2013 +0000
    30.2 +++ b/python-netaddr/receipt	Sat Oct 19 13:53:26 2013 +0000
    30.3 @@ -6,12 +6,14 @@
    30.4  CATEGORY="development"
    30.5  SHORT_DESC="A network address representation and manipulation library."
    30.6  MAINTAINER="pascal.bellard@slitaz.org"
    30.7 -DEPENDS="python"
    30.8 -BUILD_DEPENDS="python-dev python wget"
    30.9 +LICENSE="BSD"
   30.10  TARBALL="$SOURCE-$VERSION.tar.gz"
   30.11  WEB_SITE="http://github.com/drkjam/netaddr"
   30.12  WGET_URL="https://github.com/downloads/drkjam/$SOURCE/$TARBALL"
   30.13  
   30.14 +DEPENDS="python"
   30.15 +BUILD_DEPENDS="python-dev python wget"
   30.16 +
   30.17  # Rules to configure and make the package.
   30.18  compile_rules()
   30.19  {
    31.1 --- a/python-netifaces/receipt	Sat Oct 19 10:56:35 2013 +0000
    31.2 +++ b/python-netifaces/receipt	Sat Oct 19 13:53:26 2013 +0000
    31.3 @@ -5,10 +5,12 @@
    31.4  CATEGORY="development"
    31.5  SHORT_DESC="Portable access to network interfaces from Python."
    31.6  MAINTAINER="monghitri@aruba.it"
    31.7 +LICENSE="MIT"
    31.8  SOURCE="netifaces"
    31.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   31.10  WEB_SITE="http://alastairs-place.net/projects/netifaces/"
   31.11  WGET_URL="http://alastairs-place.net/projects/$SOURCE/$TARBALL"
   31.12 +
   31.13  DEPENDS="python"
   31.14  BUILD_DEPENDS="python setuptools"
   31.15  
    32.1 --- a/python-oauth2/receipt	Sat Oct 19 10:56:35 2013 +0000
    32.2 +++ b/python-oauth2/receipt	Sat Oct 19 13:53:26 2013 +0000
    32.3 @@ -5,24 +5,26 @@
    32.4  CATEGORY="development"
    32.5  SHORT_DESC="Library for OAuth version 1.0."
    32.6  MAINTAINER="paul@slitaz.org"
    32.7 +LICENSE="MIT"
    32.8  SOURCE="oauth2"
    32.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   32.10  WEB_SITE="https://github.com/simplegeo/python-oauth2"
   32.11  WGET_URL="http://pypi.python.org/packages/source/o/$SOURCE/$TARBALL"
   32.12 +TAGS="python"
   32.13 +
   32.14  DEPENDS="python"
   32.15  BUILD_DEPENDS="python python-dev setuptools"
   32.16 -TAGS="python"
   32.17  
   32.18  # Rules to configure and make the package.
   32.19  compile_rules()
   32.20  {
   32.21  	cd $src
   32.22 -	python setup.py install --root=$PWD/_pkg
   32.23 +	python setup.py install --root=$DESTDIR
   32.24  }
   32.25  
   32.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   32.27  genpkg_rules()
   32.28  {
   32.29 -	cp -a $_pkg/usr $fs
   32.30 +	cp -a $install/usr $fs
   32.31  }
   32.32  
    33.1 --- a/python-ooop/receipt	Sat Oct 19 10:56:35 2013 +0000
    33.2 +++ b/python-ooop/receipt	Sat Oct 19 13:53:26 2013 +0000
    33.3 @@ -6,12 +6,14 @@
    33.4  CATEGORY="development"
    33.5  SHORT_DESC="OpenObject on Python, a library to connect with Open ERP."
    33.6  MAINTAINER="pascal.bellard@slitaz.org"
    33.7 -DEPENDS="python"
    33.8 -BUILD_DEPENDS="python python-dev setuptools"
    33.9 +LICENSE="GPL3"
   33.10  WEB_SITE="http://pypi.python.org/pypi/ooop"
   33.11  TARBALL="$SOURCE-$VERSION.tar.gz"
   33.12  WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
   33.13  
   33.14 +DEPENDS="python"
   33.15 +BUILD_DEPENDS="python python-dev setuptools"
   33.16 +
   33.17  # Rules to configure and make the package.
   33.18  compile_rules()
   33.19  {
    34.1 --- a/python-pastedeploy/receipt	Sat Oct 19 10:56:35 2013 +0000
    34.2 +++ b/python-pastedeploy/receipt	Sat Oct 19 13:53:26 2013 +0000
    34.3 @@ -5,23 +5,25 @@
    34.4  CATEGORY="development"
    34.5  SHORT_DESC="Load, configure, and compose WSGI applications and servers."
    34.6  MAINTAINER="pankso@slitaz.org"
    34.7 +LICENSE="MIT"
    34.8  SOURCE="PasteDeploy"
    34.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   34.10  WEB_SITE="http://pythonpaste.org/"
   34.11  WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL"
   34.12 +TAGS="python"
   34.13 +
   34.14  DEPENDS="python python-paste"
   34.15  BUILD_DEPENDS="$DEPENDS python-dev setuptools"
   34.16 -TAGS="python"
   34.17  
   34.18  # Rules to configure and make the package.
   34.19  compile_rules()
   34.20  {
   34.21  	cd $src
   34.22 -	python setup.py install --root=$PWD/_pkg
   34.23 +	python setup.py install --root=$DESTDIR
   34.24  }
   34.25  
   34.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   34.27  genpkg_rules()
   34.28  {
   34.29 -	cp -a $_pkg/usr $fs
   34.30 +	cp -a $install/usr $fs
   34.31  }
    35.1 --- a/python-pastescript/receipt	Sat Oct 19 10:56:35 2013 +0000
    35.2 +++ b/python-pastescript/receipt	Sat Oct 19 13:53:26 2013 +0000
    35.3 @@ -5,13 +5,15 @@
    35.4  CATEGORY="development"
    35.5  SHORT_DESC="A pluggable command-line frontend, including commands to setup package file layouts."
    35.6  MAINTAINER="pankso@slitaz.org"
    35.7 +LICENSE="MIT"
    35.8  SOURCE="PasteScript"
    35.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   35.10  WEB_SITE="http://pythonpaste.org/"
   35.11  WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL"
   35.12 +TAGS="python"
   35.13 +
   35.14  DEPENDS="python python-paste python-pastedeploy"
   35.15  BUILD_DEPENDS="setuptools"
   35.16 -TAGS="python"
   35.17  
   35.18  # Rules to configure and make the package.
   35.19  compile_rules()
   35.20 @@ -23,5 +25,5 @@
   35.21  # Rules to gen a SliTaz package suitable for Tazpkg.
   35.22  genpkg_rules()
   35.23  {
   35.24 -	cp -a $_pkg/usr $fs
   35.25 +	cp -a $install/usr $fs
   35.26  }
    36.1 --- a/python-prettytable/receipt	Sat Oct 19 10:56:35 2013 +0000
    36.2 +++ b/python-prettytable/receipt	Sat Oct 19 13:53:26 2013 +0000
    36.3 @@ -6,6 +6,7 @@
    36.4  CATEGORY="system-tools"
    36.5  SHORT_DESC="Python library for easily displaying tabular data in ASCII."
    36.6  MAINTAINER="pankso@slitaz.org"
    36.7 +LICENSE="BSD"
    36.8  TARBALL="${SOURCE}-${VERSION}.tar.bz2"
    36.9  WEB_SITE="http://pypi.python.org/pypi/PrettyTable"
   36.10  WGET_URL="http://pypi.python.org/packages/source/P/PrettyTable/$TARBALL"
    37.1 --- a/python-py/receipt	Sat Oct 19 10:56:35 2013 +0000
    37.2 +++ b/python-py/receipt	Sat Oct 19 13:53:26 2013 +0000
    37.3 @@ -5,6 +5,7 @@
    37.4  CATEGORY="development"
    37.5  SHORT_DESC="Library with cross-python path, ini-parsing, io, code, log facilities."
    37.6  MAINTAINER="pascal.bellard@slitaz.org"
    37.7 +LICENSE="MIT"
    37.8  SOURCE="py"
    37.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   37.10  WEB_SITE="http://pypi.python.org/pypi/py"
    38.1 --- a/python-pyalsaaudio/receipt	Sat Oct 19 10:56:35 2013 +0000
    38.2 +++ b/python-pyalsaaudio/receipt	Sat Oct 19 13:53:26 2013 +0000
    38.3 @@ -5,23 +5,25 @@
    38.4  CATEGORY="multimedia"
    38.5  SHORT_DESC="ALSA wrapper for Python."
    38.6  MAINTAINER="pankso@slitaz.org"
    38.7 +LICENSE="PSL"
    38.8  SOURCE="pyalsaaudio"
    38.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   38.10  WEB_SITE="http://sourceforge.net/projects/pyalsaaudio/"
   38.11  WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
   38.12 +TAGS="python"
   38.13 +
   38.14  DEPENDS="alsa-lib python"
   38.15  BUILD_DEPENDS="python python-dev alsa-lib-dev"
   38.16 -TAGS="python"
   38.17  
   38.18  # Rules to configure and make the package.
   38.19  compile_rules()
   38.20  {
   38.21  	cd $src
   38.22 -	python setup.py install --root=$PWD/_pkg
   38.23 +	python setup.py install --root=$DESTDIR
   38.24  }
   38.25  
   38.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   38.27  genpkg_rules()
   38.28  {
   38.29 -	cp -a $_pkg/usr $fs
   38.30 +	cp -a $install/usr $fs
   38.31  }
    39.1 --- a/python-pybluez/receipt	Sat Oct 19 10:56:35 2013 +0000
    39.2 +++ b/python-pybluez/receipt	Sat Oct 19 13:53:26 2013 +0000
    39.3 @@ -6,23 +6,25 @@
    39.4  CATEGORY="development"
    39.5  SHORT_DESC="Python wrappers around system Bluetooth."
    39.6  MAINTAINER="pankso@slitaz.org"
    39.7 -DEPENDS="python bluez"
    39.8 -BUILD_DEPENDS="$DEPENDS python-dev bluez-dev"
    39.9 +LICENSE="GPL"
   39.10  TARBALL="$SOURCE-$VERSION.tar.gz"
   39.11  WEB_SITE="http://code.google.com/p/pybluez/"
   39.12  WGET_URL="http://pybluez.googlecode.com/files/$TARBALL"
   39.13  
   39.14 +DEPENDS="python bluez"
   39.15 +BUILD_DEPENDS="$DEPENDS python-dev bluez-dev"
   39.16 +
   39.17  # Rules to configure and make the package.
   39.18  compile_rules()
   39.19  {
   39.20  	cd $src
   39.21  	python setup.py build &&
   39.22 -	python setup.py install --root=$PWD/_pkg
   39.23 +	python setup.py install --root=$DESTDIR
   39.24  }
   39.25  
   39.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   39.27  genpkg_rules()
   39.28  {
   39.29  	mkdir -p $fs
   39.30 -	cp -a $_pkg/usr $fs
   39.31 +	cp -a $install/usr $fs
   39.32  }
    40.1 --- a/python-pychart/receipt	Sat Oct 19 10:56:35 2013 +0000
    40.2 +++ b/python-pychart/receipt	Sat Oct 19 13:53:26 2013 +0000
    40.3 @@ -5,6 +5,7 @@
    40.4  CATEGORY="development"
    40.5  SHORT_DESC="Python library for creating EPS, PDF, PNG or SVG."
    40.6  MAINTAINER="pascal.bellard@slitaz.org"
    40.7 +LICENSE="GPL"
    40.8  SOURCE="PyChart"
    40.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   40.10  WEB_SITE="http://home.gna.org/pychart/"
   40.11 @@ -16,14 +17,14 @@
   40.12  {
   40.13  	cd $src
   40.14  	python setup.py build
   40.15 -	python setup.py install --root=$PWD/_pkg
   40.16 +	python setup.py install --root=$DESTDIR
   40.17  }
   40.18  
   40.19  # Rules to gen a SliTaz package suitable for Tazpkg.
   40.20  genpkg_rules()
   40.21  {
   40.22  	mkdir -p $fs
   40.23 -	cp -a $_pkg/usr $fs
   40.24 +	cp -a $install/usr $fs
   40.25  }
   40.26  
   40.27  # Remove old package.
    41.1 --- a/python-pycryptopp/receipt	Sat Oct 19 10:56:35 2013 +0000
    41.2 +++ b/python-pycryptopp/receipt	Sat Oct 19 13:53:26 2013 +0000
    41.3 @@ -5,6 +5,7 @@
    41.4  CATEGORY="development"
    41.5  SHORT_DESC="Wrapper around a few algorithms from Crypto++ and python-Ed25519."
    41.6  MAINTAINER="pascal.bellard@slitaz.org"
    41.7 +LICENSE="GPL"
    41.8  SOURCE="pycryptopp"
    41.9  TARBALL="$SOURCE-$VERSION.1206569328141510525648634803928199668821045408958.tar.gz"
   41.10  WEB_SITE="http://pypi.python.org/pypi/pycryptopp"
    42.1 --- a/python-pydot/receipt	Sat Oct 19 10:56:35 2013 +0000
    42.2 +++ b/python-pydot/receipt	Sat Oct 19 13:53:26 2013 +0000
    42.3 @@ -6,9 +6,11 @@
    42.4  CATEGORY="development"
    42.5  SHORT_DESC="Python interface to Graphviz's dot language."
    42.6  MAINTAINER="pascal.bellard@slitaz.org"
    42.7 +LICENSE="MIT"
    42.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    42.9  WEB_SITE="http://code.google.com/p/pydot/"
   42.10  WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL"
   42.11 +
   42.12  DEPENDS="python python-pyparsing graphviz"
   42.13  
   42.14  # Rules to configure and make the package.
   42.15 @@ -16,14 +18,14 @@
   42.16  {
   42.17  	cd $src
   42.18  	python setup.py build
   42.19 -	python setup.py install --root=$PWD/_pkg
   42.20 +	python setup.py install --root=$DESTDIR
   42.21  }
   42.22  
   42.23  # Rules to gen a SliTaz package suitable for Tazpkg.
   42.24  genpkg_rules()
   42.25  {
   42.26  	mkdir -p $fs/usr
   42.27 -	cp -a $_pkg/usr/lib $fs/usr
   42.28 +	cp -a $install/usr/lib $fs/usr
   42.29  }
   42.30  
   42.31  # Remove old package.
    43.1 --- a/python-pygame-dev/receipt	Sat Oct 19 10:56:35 2013 +0000
    43.2 +++ b/python-pygame-dev/receipt	Sat Oct 19 13:53:26 2013 +0000
    43.3 @@ -5,6 +5,7 @@
    43.4  CATEGORY="development"
    43.5  SHORT_DESC="Python game development files."
    43.6  MAINTAINER="claudinei@slitaz.org"
    43.7 +LICENSE="LGPL"
    43.8  WEB_SITE="http://www.pygame.org/"
    43.9  WANTED="python-pygame"
   43.10  
    44.1 --- a/python-pygame/receipt	Sat Oct 19 10:56:35 2013 +0000
    44.2 +++ b/python-pygame/receipt	Sat Oct 19 13:53:26 2013 +0000
    44.3 @@ -6,6 +6,7 @@
    44.4  CATEGORY="development"
    44.5  SHORT_DESC="Python game library."
    44.6  MAINTAINER="claudinei@slitaz.org"
    44.7 +LICENSE="LGPL"
    44.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    44.9  WEB_SITE="http://www.pygame.org/"
   44.10  WGET_URL="$WEB_SITE/ftp/$TARBALL"
    45.1 --- a/python-pygments/receipt	Sat Oct 19 10:56:35 2013 +0000
    45.2 +++ b/python-pygments/receipt	Sat Oct 19 13:53:26 2013 +0000
    45.3 @@ -6,9 +6,11 @@
    45.4  CATEGORY="development"
    45.5  SHORT_DESC="Generic syntax highlighter."
    45.6  MAINTAINER="claudinei@slitaz.org"
    45.7 +LICENSE="BSD"
    45.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    45.9  WEB_SITE="http://pygments.org"
   45.10  WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL"
   45.11 +
   45.12  DEPENDS="python"
   45.13  BUILD_DEPENDS="setuptools"
   45.14  
   45.15 @@ -23,7 +25,7 @@
   45.16  genpkg_rules()
   45.17  {
   45.18  	mkdir -p $fs/usr
   45.19 -	cp -a $_pkg/usr $fs
   45.20 +	cp -a $install/usr $fs
   45.21  }
   45.22  
   45.23  # Remove old package.
    46.1 --- a/python-pygraphviz/receipt	Sat Oct 19 10:56:35 2013 +0000
    46.2 +++ b/python-pygraphviz/receipt	Sat Oct 19 13:53:26 2013 +0000
    46.3 @@ -5,25 +5,27 @@
    46.4  CATEGORY="development"
    46.5  SHORT_DESC="A Python wrapper for the Graphviz Agraph data structure."
    46.6  MAINTAINER="pascal.bellard@slitaz.org"
    46.7 +LICENSE="BSD"
    46.8  SOURCE="pygraphviz"
    46.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   46.10 +WEB_SITE="http://pypi.python.org/pypi/pygraphviz"
   46.11 +WGET_URL="http://networkx.lanl.gov/download/$SOURCE/$TARBALL"
   46.12 +
   46.13  DEPENDS="graphviz python"
   46.14  BUILD_DEPENDS="graphviz-dev python-dev"
   46.15 -WEB_SITE="http://pypi.python.org/pypi/pygraphviz"
   46.16 -WGET_URL="http://networkx.lanl.gov/download/$SOURCE/$TARBALL"
   46.17  
   46.18  # Rules to configure and make the package.
   46.19  compile_rules()
   46.20  {
   46.21  	cd $src
   46.22  	python setup.py build
   46.23 -	python setup.py install --root=$PWD/_pkg
   46.24 +	python setup.py install --root=$DESTDIR
   46.25  }
   46.26  
   46.27  # Rules to gen a SliTaz package suitable for Tazpkg.
   46.28  genpkg_rules()
   46.29  {
   46.30  	mkdir -p $fs/usr
   46.31 -	cp -a $_pkg/usr/lib $fs/usr
   46.32 +	cp -a $install/usr/lib $fs/usr
   46.33  }
   46.34  
    47.1 --- a/python-pylons/receipt	Sat Oct 19 10:56:35 2013 +0000
    47.2 +++ b/python-pylons/receipt	Sat Oct 19 13:53:26 2013 +0000
    47.3 @@ -5,24 +5,26 @@
    47.4  CATEGORY="development"
    47.5  SHORT_DESC="Lightweight web framework"
    47.6  MAINTAINER="taziden@slitaz.org"
    47.7 +LICENSE="BSD"
    47.8  SOURCE="Pylons"
    47.9 -DEPENDS="python"
   47.10 -BUILD_DEPENDS="python python-dev setuptools"
   47.11  TARBALL="$SOURCE-$VERSION.tar.gz"
   47.12  WEB_SITE="http://pylonshq.com"
   47.13  WGET_URL="http://cdn.pylonshq.com/download/$VERSION/$TARBALL"
   47.14  TAGS="python"
   47.15  
   47.16 +DEPENDS="python"
   47.17 +BUILD_DEPENDS="python python-dev setuptools"
   47.18 +
   47.19  # Rules to configure and make the package.
   47.20  compile_rules()
   47.21  {
   47.22  	cd $src
   47.23 -    python setup.py install --root=$PWD/_pkg
   47.24 +	python setup.py install --root=$DESTDIR
   47.25  }
   47.26  
   47.27  # Rules to gen a SliTaz package suitable for Tazpkg.
   47.28  genpkg_rules()
   47.29  {
   47.30 -	cp -a $_pkg/usr $fs
   47.31 +	cp -a $install/usr $fs
   47.32  }
   47.33  
    48.1 --- a/python-pyparsing/receipt	Sat Oct 19 10:56:35 2013 +0000
    48.2 +++ b/python-pyparsing/receipt	Sat Oct 19 13:53:26 2013 +0000
    48.3 @@ -6,6 +6,7 @@
    48.4  CATEGORY="development"
    48.5  SHORT_DESC="Fuse Filsystem in user space."
    48.6  MAINTAINER="pascal.bellard@slitaz.org"
    48.7 +LICENSE="MIT"
    48.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    48.9  WEB_SITE="http://pyparsing.wikispaces.com/"
   48.10  WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
   48.11 @@ -17,13 +18,13 @@
   48.12  {
   48.13  	cd $src
   48.14  	python setup.py build &&
   48.15 -	python setup.py install --root=$PWD/_pkg
   48.16 +	python setup.py install --root=$DESTDIR
   48.17  }
   48.18  
   48.19  # Rules to gen a SliTaz package suitable for Tazpkg.
   48.20  genpkg_rules()
   48.21  {
   48.22 -	cp -a $_pkg/usr $fs
   48.23 +	cp -a $install/usr $fs
   48.24  }
   48.25  
   48.26  # Remove old package.
    49.1 --- a/python-pyprotocols/receipt	Sat Oct 19 10:56:35 2013 +0000
    49.2 +++ b/python-pyprotocols/receipt	Sat Oct 19 13:53:26 2013 +0000
    49.3 @@ -5,23 +5,25 @@
    49.4  CATEGORY="development"
    49.5  SHORT_DESC="PEP 246 and a whole lot more."
    49.6  MAINTAINER="pankso@slitaz.org"
    49.7 +LICENSE="PSL"
    49.8  SOURCE="PyProtocols"
    49.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   49.10  WEB_SITE="http://peak.telecommunity.com/PyProtocols.html"
   49.11  WGET_URL="http://peak.telecommunity.com/dist/$TARBALL"
   49.12 +TAGS="python"
   49.13 +
   49.14  DEPENDS="python"
   49.15  BUILD_DEPENDS="python python-dev"
   49.16 -TAGS="python"
   49.17  
   49.18  # Rules to configure and make the package.
   49.19  compile_rules()
   49.20  {
   49.21  	cd $src
   49.22 -	python setup.py install --root=$PWD/_pkg
   49.23 +	python setup.py install --root=$DESTDIR
   49.24  }
   49.25  
   49.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   49.27  genpkg_rules()
   49.28  {
   49.29 -	cp -a $_pkg/usr $fs
   49.30 +	cp -a $install/usr $fs
   49.31  }
    50.1 --- a/python-pyrex/receipt	Sat Oct 19 10:56:35 2013 +0000
    50.2 +++ b/python-pyrex/receipt	Sat Oct 19 13:53:26 2013 +0000
    50.3 @@ -5,23 +5,25 @@
    50.4  CATEGORY="development"
    50.5  SHORT_DESC="Language for Writing Python Extension Modules."
    50.6  MAINTAINER="pankso@slitaz.org"
    50.7 +LICENSE="Apache"
    50.8  SOURCE="Pyrex"
    50.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   50.10  WEB_SITE="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/"
   50.11  WGET_URL="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/$TARBALL"
   50.12 +TAGS="python"
   50.13 +
   50.14  DEPENDS="python"
   50.15  BUILD_DEPENDS="python python-dev"
   50.16 -TAGS="python"
   50.17  
   50.18  # Rules to configure and make the package.
   50.19  compile_rules()
   50.20  {
   50.21  	cd $src
   50.22 -	python setup.py install --root="$PWD/_pkg" --prefix=/usr
   50.23 +	python setup.py install --root="$DESTDIR" --prefix=/usr
   50.24  }
   50.25  
   50.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   50.27  genpkg_rules()
   50.28  {
   50.29 -	cp -a $_pkg/usr $fs
   50.30 +	cp -a $install/usr $fs
   50.31  }
    51.1 --- a/python-pysqlite/receipt	Sat Oct 19 10:56:35 2013 +0000
    51.2 +++ b/python-pysqlite/receipt	Sat Oct 19 13:53:26 2013 +0000
    51.3 @@ -6,6 +6,7 @@
    51.4  CATEGORY="development"
    51.5  SHORT_DESC="Python interface for the SQLite database"
    51.6  MAINTAINER="sygne@ombres.eu"
    51.7 +LICENSE="zlib/libpng"
    51.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    51.9  WEB_SITE="http://code.google.com/p/pysqlite/"
   51.10  WGET_URL="http://pysqlite.googlecode.com/files/$TARBALL"
    52.1 --- a/python-pytest/receipt	Sat Oct 19 10:56:35 2013 +0000
    52.2 +++ b/python-pytest/receipt	Sat Oct 19 13:53:26 2013 +0000
    52.3 @@ -5,6 +5,7 @@
    52.4  CATEGORY="development"
    52.5  SHORT_DESC="A simple powerful testing with Python"
    52.6  MAINTAINER="pascal.bellard@slitaz.org"
    52.7 +LICENSE="MIT"
    52.8  SOURCE="pytest"
    52.9  TARBALL="$SOURCE-$VERSION.zip"
   52.10  WEB_SITE="http://pypi.python.org/pypi/pytest"
    53.1 --- a/python-pytz/receipt	Sat Oct 19 10:56:35 2013 +0000
    53.2 +++ b/python-pytz/receipt	Sat Oct 19 13:53:26 2013 +0000
    53.3 @@ -6,25 +6,27 @@
    53.4  CATEGORY="development"
    53.5  SHORT_DESC="World Timezone Definitions for Python."
    53.6  MAINTAINER="pascal.bellard@slitaz.org"
    53.7 -DEPENDS="python"
    53.8 -BUILD_DEPENDS="python-dev python"
    53.9 +LICENSE="MIT"
   53.10  TARBALL="$SOURCE-$VERSION.tar.bz2"
   53.11  WEB_SITE="http://pytz.sourceforge.net/"
   53.12  WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
   53.13  
   53.14 +DEPENDS="python"
   53.15 +BUILD_DEPENDS="python-dev python"
   53.16 +
   53.17  # Rules to configure and make the package.
   53.18  compile_rules()
   53.19  {
   53.20  	cd $src
   53.21  	python setup.py build &&
   53.22 -	python setup.py install --root=$PWD/_pkg
   53.23 +	python setup.py install --root=$DESTDIR
   53.24  }
   53.25  
   53.26  # Rules to gen a SliTaz package suitable for Tazpkg.
   53.27  genpkg_rules()
   53.28  {
   53.29  	mkdir -p $fs
   53.30 -	cp -a $_pkg/usr $fs
   53.31 +	cp -a $install/usr $fs
   53.32  }
   53.33  
   53.34  # Remove old package.
    54.1 --- a/python-pyweb/receipt	Sat Oct 19 10:56:35 2013 +0000
    54.2 +++ b/python-pyweb/receipt	Sat Oct 19 13:53:26 2013 +0000
    54.3 @@ -6,6 +6,7 @@
    54.4  CATEGORY="development"
    54.5  SHORT_DESC="A web framework for Python."
    54.6  MAINTAINER="pascal.bellard@slitaz.org"
    54.7 +LICENSE="PublicDomain"
    54.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    54.9  WEB_SITE="http://webpy.org/"
   54.10  WGET_URL="${WEB_SITE}static/$TARBALL"
    55.1 --- a/python-pywebdav/receipt	Sat Oct 19 10:56:35 2013 +0000
    55.2 +++ b/python-pywebdav/receipt	Sat Oct 19 13:53:26 2013 +0000
    55.3 @@ -6,6 +6,7 @@
    55.4  CATEGORY="development"
    55.5  SHORT_DESC="A WebDAV client library for Python."
    55.6  MAINTAINER="pascal.bellard@slitaz.org"
    55.7 +LICENSE="GPL2"
    55.8  TARBALL="$SOURCE-$VERSION.tar.gz"
    55.9  WEB_SITE="http://code.google.com/p/pywebdav/"
   55.10  WGET_URL="http://pywebdav.googlecode.com/files/$TARBALL"
    56.1 --- a/python-pyxml/receipt	Sat Oct 19 10:56:35 2013 +0000
    56.2 +++ b/python-pyxml/receipt	Sat Oct 19 13:53:26 2013 +0000
    56.3 @@ -5,6 +5,7 @@
    56.4  CATEGORY="development"
    56.5  SHORT_DESC="Pythonic binding for xml..."
    56.6  MAINTAINER="pascal.bellard@slitaz.org"
    56.7 +LICENSE="BSD"
    56.8  SOURCE="PyXML"
    56.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   56.10  WEB_SITE="http://pyxml.sourceforge.net/"
   56.11 @@ -25,7 +26,7 @@
   56.12  # Rules to gen a SliTaz package suitable for Tazpkg.
   56.13  genpkg_rules()
   56.14  {
   56.15 -	cp -a $_pkg/usr $fs
   56.16 +	cp -a $install/usr $fs
   56.17  }
   56.18  
   56.19  # Remove old package.
    57.1 --- a/python-pyyaml/receipt	Sat Oct 19 10:56:35 2013 +0000
    57.2 +++ b/python-pyyaml/receipt	Sat Oct 19 13:53:26 2013 +0000
    57.3 @@ -5,6 +5,7 @@
    57.4  CATEGORY="development"
    57.5  SHORT_DESC="YAML parser and emitter for the Python programming language."
    57.6  MAINTAINER="rocky@slitaz.org"
    57.7 +LICENSE="MIT"
    57.8  SOURCE="PyYAML"
    57.9  TARBALL="$SOURCE-$VERSION.tar.gz"
   57.10  WEB_SITE="http://pyyaml.org/wiki/PyYAML/"
    58.1 --- a/python-xlib/receipt	Sat Oct 19 10:56:35 2013 +0000
    58.2 +++ b/python-xlib/receipt	Sat Oct 19 13:53:26 2013 +0000
    58.3 @@ -5,7 +5,7 @@
    58.4  CATEGORY="development"
    58.5  SHORT_DESC="X client library for Python programs."
    58.6  MAINTAINER="pascal.bellard@slitaz.org"
    58.7 -LICENSE="GPL3"
    58.8 +LICENSE="GPL"
    58.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
   58.10  WEB_SITE="http://$PACKAGE.sourceforge.net/"
   58.11  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    59.1 --- a/python/receipt	Sat Oct 19 10:56:35 2013 +0000
    59.2 +++ b/python/receipt	Sat Oct 19 13:53:26 2013 +0000
    59.3 @@ -5,7 +5,7 @@
    59.4  CATEGORY="development"
    59.5  SHORT_DESC="The Python programming language."
    59.6  MAINTAINER="pankso@slitaz.org"
    59.7 -LICENSE="BSD"
    59.8 +LICENSE="PSL"
    59.9  SOURCE="Python"
   59.10  TARBALL="$SOURCE-$VERSION.tar.bz2"
   59.11  WEB_SITE="http://www.python.org/"