# HG changeset patch # User Pascal Bellard # Date 1382190806 0 # Node ID fd4f1e69210940c1301b096cf8151eaa5053c9ff # Parent b50529e1ec04b7a6a8b0aa1734044a7f95d01a50 Add some licenses diff -r b50529e1ec04 -r fd4f1e692109 python-antlr/receipt --- a/python-antlr/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-antlr/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="language tool for constructing recognizers, compilers for python." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.antlr.org/" WGET_URL="${WEB_SITE}download/$TARBALL" @@ -25,5 +26,5 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr } diff -r b50529e1ec04 -r fd4f1e692109 python-apsw/receipt --- a/python-apsw/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-apsw/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="Python wrapper for SQLite." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="zlib/libpng" TARBALL="$SOURCE-$VERSION.zip" WEB_SITE="http://code.google.com/p/$PACKAGE/" WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-asterisk/receipt --- a/python-asterisk/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-asterisk/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="Python bindings for the Asterisk Manager API." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://code.google.com/p/py-asterisk/" WGET_URL="http://pypi.python.org/packages/source/p/$SOURCE/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-babel/receipt --- a/python-babel/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-babel/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -3,10 +3,12 @@ CATEGORY="development" SHORT_DESC="A collection of tools for internationalizing Python applications." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" SOURCE="Babel" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://babel.edgewall.org/" WGET_URL="http://ftp.edgewall.com/pub/babel/$TARBALL" + DEPENDS="python" BUILD_DEPENDS="python python-dev setuptools" diff -r b50529e1ec04 -r fd4f1e692109 python-beaker/receipt --- a/python-beaker/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-beaker/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,25 +5,26 @@ CATEGORY="development" SHORT_DESC="Cache and Session Library" MAINTAINER="taziden@slitaz.org" +LICENSE="BSD" SOURCE="Beaker" -DEPENDS="python" -BUILD_DEPENDS="python python-dev setuptools" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pylonshq.com" WGET_URL="$WEB_SITE/download/1.0/$TARBALL" TAGS="python" +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg - + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr/ $fs + cp -a $install/usr/ $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-bpython/receipt --- a/python-bpython/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-bpython/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,9 +6,11 @@ CATEGORY="development" SHORT_DESC="A fancy interface to the Python interpreter." MAINTAINER="claudinei@slitaz.org" +LICENSE="MIT" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.bpython-interpreter.org" WGET_URL="$WEB_SITE/releases/$TARBALL" + DEPENDS="python python-pygments setuptools" BUILD_DEPENDS="$DEPENDS python-dev" diff -r b50529e1ec04 -r fd4f1e692109 python-caldav/receipt --- a/python-caldav/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-caldav/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="CalDAV (RFC4791) client library for Python" MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" SOURCE="caldav" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pypi.python.org/pypi/caldav" @@ -24,5 +25,5 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-chardet/receipt --- a/python-chardet/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-chardet/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,22 +6,24 @@ CATEGORY="development" MAINTAINER="devel@slitaz.org" SHORT_DESC="Python module for character encoding auto-detection" -DEPENDS="python" -BUILD_DEPENDS="python-dev" +LICENSE="LGPL2.1" WEB_SITE="http://chardet.feedparser.org" TARBALL="$SOURCE-$VERSION.tgz" WGET_URL="$WEB_SITE/download/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python-dev" + # Rules to configure and make the package. compile_rules() { - cd $src - python setup.py install --root=$PWD/_pkg --optimize=1 + cd $src + python setup.py install --root=$DESTDIR --optimize=1 } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-cheetah/receipt --- a/python-cheetah/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-cheetah/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="Cheetah is a template engine and code generation tool written in Python." MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" SOURCE="Cheetah" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.cheetahtemplate.org/" WGET_URL="http://pypi.python.org/packages/source/C/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-cherrypy/receipt --- a/python-cherrypy/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-cherrypy/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="CherryPy is a pythonic, object-oriented HTTP framework." MAINTAINER="pankso@slitaz.org" +LICENSE="BSD" SOURCE="CherryPy" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.cherrypy.org/" WGET_URL="http://download.cherrypy.org/cherrypy/$VERSION/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-cssselect/receipt --- a/python-cssselect/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-cssselect/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,10 +5,12 @@ CATEGORY="development" SHORT_DESC="parses CSS3 Selectors and translates them to XPath." MAINTAINER="monghitri@aruba.it" +LICENSE="BSD" SOURCE="cssselect" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pypi.python.org/pypi/cssselect" WGET_URL="http://pypi.python.org/packages/source/c/$SOURCE/$TARBALL" + DEPENDS="python" BUILD_DEPENDS="python setuptools" diff -r b50529e1ec04 -r fd4f1e692109 python-dateutil/receipt --- a/python-dateutil/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-dateutil/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,26 +5,28 @@ CATEGORY="development" SHORT_DESC="Extensions to the standart python 2.3+ datetime module" MAINTAINER="claudinei@slitaz.org" -DEPENDS="python" -BUILD_DEPENDS="python python-dev setuptools" +LICENSE="PSL" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://labix.org/python-dateutil" WGET_URL="http://labix.org/download/$PACKAGE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - for file in `find $_pkg | grep 'pyc$'`; do + for file in `find $install | grep 'pyc$'`; do rm $file done mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr } diff -r b50529e1ec04 -r fd4f1e692109 python-decoratortools/receipt --- a/python-decoratortools/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-decoratortools/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,24 +5,26 @@ CATEGORY="development" SHORT_DESC="Class, function, and metaclass decorators" MAINTAINER="taziden@slitaz.org" +LICENSE="PSL" SOURCE="DecoratorTools" -DEPENDS="python" -BUILD_DEPENDS="python python-dev" TARBALL="$SOURCE-$VERSION.zip" WEB_SITE="http://pypi.python.org/pypi/DecoratorTools" WGET_URL="http://pypi.python.org/packages/source/D/$SOURCE/$TARBALL" TAGS="python" +DEPENDS="python" +BUILD_DEPENDS="python python-dev" + # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-dev/receipt --- a/python-dev/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-dev/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,11 +5,13 @@ CATEGORY="development" SHORT_DESC="The Python programming language devel files." MAINTAINER="pankso@slitaz.org" -DEPENDS="python" +LICENSE="PSL" WANTED="python" SOURCE="Python" WEB_SITE="http://www.python.org/" +DEPENDS="python" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r b50529e1ec04 -r fd4f1e692109 python-distribute/receipt --- a/python-distribute/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-distribute/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Easily build and distribute Python packages" MAINTAINER="slaxemulator@gmail.com" +LICENSE="PSL" WEB_SITE="http://pypi.python.org/pypi/distribute" SOURCE="distribute" TARBALL="$SOURCE-$VERSION.tar.gz" diff -r b50529e1ec04 -r fd4f1e692109 python-django/receipt --- a/python-django/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-django/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,11 +6,13 @@ CATEGORY="development" SHORT_DESC="Django is a high-level Python Web framework." MAINTAINER="claudinei@slitaz.org" +LICENSE="BSD" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="https://www.djangoproject.com/" WGET_URL="https://www.djangoproject.com/m/releases/1.5/$TARBALL" +SUGGESTED="python-mysql" + DEPENDS="python python-pysqlite" -SUGGESTED="python-mysql" BUILD_DEPENDS="setuptools wget" # Rules to configure and make the package. diff -r b50529e1ec04 -r fd4f1e692109 python-dnspython/receipt --- a/python-dnspython/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-dnspython/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,10 +5,12 @@ CATEGORY="development" SHORT_DESC="a DNS toolkit for Python" MAINTAINER="monghitri@aruba.it" +LICENSE="BSD" SOURCE="dnspython" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.dnspython.org/" WGET_URL="http://www.dnspython.org/kits/$VERSION/$TARBALL" + DEPENDS="python" BUILD_DEPENDS="python setuptools" diff -r b50529e1ec04 -r fd4f1e692109 python-extremes/receipt --- a/python-extremes/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-extremes/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="Production-quality 'Min' and 'Max' objects (adapted from PEP 326)." MAINTAINER="pankso@slitaz.org" +LICENSE="PSL" SOURCE="Extremes" TARBALL="$SOURCE-$VERSION.zip" WEB_SITE="http://pypi.python.org/pypi/Extremes" WGET_URL="http://pypi.python.org/packages/source/E/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev setuptools" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-flup/receipt --- a/python-flup/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-flup/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="network" SHORT_DESC="Random collection of WSGI modules for Python." MAINTAINER="pankso@slitaz.org" -DEPENDS="python" -BUILD_DEPENDS="python python-dev python-distribute" +LICENSE="BSD" SOURCE="flup" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://trac.saddi.com/flup" WGET_URL="http://www.saddi.com/software/flup/dist/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python python-dev python-distribute" + # Rules to configure and make the package. compile_rules() { @@ -23,6 +25,6 @@ genpkg_rules() { mkdir -p $fs - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-formencode/receipt --- a/python-formencode/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-formencode/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="FormEncode is a validation and form generation package." MAINTAINER="pankso@slitaz.org" +LICENSE="PSL" SOURCE="FormEncode" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://formencode.org/" WGET_URL="http://pypi.python.org/packages/source/F/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev setuptools" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-gazpacho/receipt --- a/python-gazpacho/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-gazpacho/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,13 +6,15 @@ CATEGORY="development" SHORT_DESC="A GUI builder for the GTK+ toolkit" MAINTAINER="claudinei@slitaz.org" -DEPENDS="python pygtk python-kiwi" -BUILD_DEPENDS="python python-dev pygtk python-kiwi" +LICENSE="LGPL2.1" SUGGESTED="twisted" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://gazpacho.sicem.biz" WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$SOURCE/0.7/$TARBALL" +DEPENDS="python pygtk python-kiwi" +BUILD_DEPENDS="python python-dev pygtk python-kiwi" + # Rules to configure and make the package. compile_rules() { @@ -27,8 +29,8 @@ genpkg_rules() { mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/usr/share $fs/usr + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib $fs/usr + cp -a $install/usr/share $fs/usr } diff -r b50529e1ec04 -r fd4f1e692109 python-genshi/receipt --- a/python-genshi/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-genshi/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Python toolkit for generation of output for the web." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" SOURCE="Genshi" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://genshi.edgewall.org/" diff -r b50529e1ec04 -r fd4f1e692109 python-ipy/receipt --- a/python-ipy/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-ipy/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,24 +5,26 @@ CATEGORY="development" SHORT_DESC="Python class and tools for IPv4 and IPv6 addresses and networks." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" SOURCE="IPy" -DEPENDS="python" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://software.inl.fr/trac/wiki/IPy" WGET_URL="http://cheeseshop.python.org/packages/source/I/$SOURCE/$TARBALL" +DEPENDS="python" + # Rules to configure and make the package. compile_rules() { cd $src python setup.py build - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr } diff -r b50529e1ec04 -r fd4f1e692109 python-jinja2/receipt --- a/python-jinja2/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-jinja2/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,9 +6,11 @@ CATEGORY="development" SHORT_DESC="Stand-alone template engine." MAINTAINER="claudinei@slitaz.org" +LICENSE="BSD" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://jinja.pocoo.org" WGET_URL="https://pypi.python.org/packages/source/J/$SOURCE/$TARBALL" + DEPENDS="python python-markupsafe" BUILD_DEPENDS="setuptools wget" diff -r b50529e1ec04 -r fd4f1e692109 python-kid/receipt --- a/python-kid/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-kid/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="Pythonic, XML-based Templating." MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" SOURCE="kid" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.kid-templating.org/" WGET_URL="http://www.kid-templating.org/dist/$VERSION/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev setuptools" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-mako/receipt --- a/python-mako/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-mako/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,24 +5,26 @@ CATEGORY="development" SHORT_DESC="Fast template library" MAINTAINER="taziden@slitaz.org" +LICENSE="MIT" SOURCE="Mako" -DEPENDS="python" -BUILD_DEPENDS="python python-dev setuptools" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.makotemplates.org/" WGET_URL="$WEB_SITE/downloads/$TARBALL" TAGS="python" +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-markupsafe/receipt --- a/python-markupsafe/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-markupsafe/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -3,10 +3,12 @@ CATEGORY="development" SHORT_DESC="Implements a XML/HTML/XHTML Markup safe string for Python." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" SOURCE="MarkupSafe" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pypi.python.org/pypi/MarkupSafe" WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + DEPENDS="python" BUILD_DEPENDS="python python-dev setuptools" @@ -16,12 +18,12 @@ cd $src python setup.py build && - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-mechanize/receipt --- a/python-mechanize/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-mechanize/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="network" SHORT_DESC="Stateful programmatic web browsing in Python." MAINTAINER="pankso@slitaz.org" +LICENSE="BSD" TARBALL="${SOURCE}-${VERSION}.tar.gz" WEB_SITE="http://wwwsearch.sourceforge.net/mechanize/" WGET_URL="http://pypi.python.org/packages/source/m/mechanize/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-mysql/receipt --- a/python-mysql/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-mysql/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="A Python interface to MySQL ." MAINTAINER="claudinei@slitaz.org" +LICENSE="GPL" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://mysql-python.sourceforge.net/" WGET_URL="$SF_MIRROR/mysql-python/$TARBALL" @@ -26,7 +27,7 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-netaddr/receipt --- a/python-netaddr/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-netaddr/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,12 +6,14 @@ CATEGORY="development" SHORT_DESC="A network address representation and manipulation library." MAINTAINER="pascal.bellard@slitaz.org" -DEPENDS="python" -BUILD_DEPENDS="python-dev python wget" +LICENSE="BSD" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://github.com/drkjam/netaddr" WGET_URL="https://github.com/downloads/drkjam/$SOURCE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python-dev python wget" + # Rules to configure and make the package. compile_rules() { diff -r b50529e1ec04 -r fd4f1e692109 python-netifaces/receipt --- a/python-netifaces/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-netifaces/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,10 +5,12 @@ CATEGORY="development" SHORT_DESC="Portable access to network interfaces from Python." MAINTAINER="monghitri@aruba.it" +LICENSE="MIT" SOURCE="netifaces" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://alastairs-place.net/projects/netifaces/" WGET_URL="http://alastairs-place.net/projects/$SOURCE/$TARBALL" + DEPENDS="python" BUILD_DEPENDS="python setuptools" diff -r b50529e1ec04 -r fd4f1e692109 python-oauth2/receipt --- a/python-oauth2/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-oauth2/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,24 +5,26 @@ CATEGORY="development" SHORT_DESC="Library for OAuth version 1.0." MAINTAINER="paul@slitaz.org" +LICENSE="MIT" SOURCE="oauth2" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="https://github.com/simplegeo/python-oauth2" WGET_URL="http://pypi.python.org/packages/source/o/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev setuptools" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-ooop/receipt --- a/python-ooop/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-ooop/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,12 +6,14 @@ CATEGORY="development" SHORT_DESC="OpenObject on Python, a library to connect with Open ERP." MAINTAINER="pascal.bellard@slitaz.org" -DEPENDS="python" -BUILD_DEPENDS="python python-dev setuptools" +LICENSE="GPL3" WEB_SITE="http://pypi.python.org/pypi/ooop" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + # Rules to configure and make the package. compile_rules() { diff -r b50529e1ec04 -r fd4f1e692109 python-pastedeploy/receipt --- a/python-pastedeploy/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pastedeploy/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="Load, configure, and compose WSGI applications and servers." MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" SOURCE="PasteDeploy" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pythonpaste.org/" WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="python python-paste" BUILD_DEPENDS="$DEPENDS python-dev setuptools" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-pastescript/receipt --- a/python-pastescript/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pastescript/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,13 +5,15 @@ CATEGORY="development" SHORT_DESC="A pluggable command-line frontend, including commands to setup package file layouts." MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" SOURCE="PasteScript" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pythonpaste.org/" WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="python python-paste python-pastedeploy" BUILD_DEPENDS="setuptools" -TAGS="python" # Rules to configure and make the package. compile_rules() @@ -23,5 +25,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-prettytable/receipt --- a/python-prettytable/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-prettytable/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="system-tools" SHORT_DESC="Python library for easily displaying tabular data in ASCII." MAINTAINER="pankso@slitaz.org" +LICENSE="BSD" TARBALL="${SOURCE}-${VERSION}.tar.bz2" WEB_SITE="http://pypi.python.org/pypi/PrettyTable" WGET_URL="http://pypi.python.org/packages/source/P/PrettyTable/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-py/receipt --- a/python-py/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-py/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Library with cross-python path, ini-parsing, io, code, log facilities." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" SOURCE="py" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pypi.python.org/pypi/py" diff -r b50529e1ec04 -r fd4f1e692109 python-pyalsaaudio/receipt --- a/python-pyalsaaudio/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyalsaaudio/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="multimedia" SHORT_DESC="ALSA wrapper for Python." MAINTAINER="pankso@slitaz.org" +LICENSE="PSL" SOURCE="pyalsaaudio" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://sourceforge.net/projects/pyalsaaudio/" WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" +TAGS="python" + DEPENDS="alsa-lib python" BUILD_DEPENDS="python python-dev alsa-lib-dev" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-pybluez/receipt --- a/python-pybluez/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pybluez/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,23 +6,25 @@ CATEGORY="development" SHORT_DESC="Python wrappers around system Bluetooth." MAINTAINER="pankso@slitaz.org" -DEPENDS="python bluez" -BUILD_DEPENDS="$DEPENDS python-dev bluez-dev" +LICENSE="GPL" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://code.google.com/p/pybluez/" WGET_URL="http://pybluez.googlecode.com/files/$TARBALL" +DEPENDS="python bluez" +BUILD_DEPENDS="$DEPENDS python-dev bluez-dev" + # Rules to configure and make the package. compile_rules() { cd $src python setup.py build && - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-pychart/receipt --- a/python-pychart/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pychart/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Python library for creating EPS, PDF, PNG or SVG." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" SOURCE="PyChart" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://home.gna.org/pychart/" @@ -16,14 +17,14 @@ { cd $src python setup.py build - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-pycryptopp/receipt --- a/python-pycryptopp/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pycryptopp/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Wrapper around a few algorithms from Crypto++ and python-Ed25519." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" SOURCE="pycryptopp" TARBALL="$SOURCE-$VERSION.1206569328141510525648634803928199668821045408958.tar.gz" WEB_SITE="http://pypi.python.org/pypi/pycryptopp" diff -r b50529e1ec04 -r fd4f1e692109 python-pydot/receipt --- a/python-pydot/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pydot/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,9 +6,11 @@ CATEGORY="development" SHORT_DESC="Python interface to Graphviz's dot language." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://code.google.com/p/pydot/" WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL" + DEPENDS="python python-pyparsing graphviz" # Rules to configure and make the package. @@ -16,14 +18,14 @@ { cd $src python setup.py build - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-pygame-dev/receipt --- a/python-pygame-dev/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pygame-dev/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Python game development files." MAINTAINER="claudinei@slitaz.org" +LICENSE="LGPL" WEB_SITE="http://www.pygame.org/" WANTED="python-pygame" diff -r b50529e1ec04 -r fd4f1e692109 python-pygame/receipt --- a/python-pygame/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pygame/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="Python game library." MAINTAINER="claudinei@slitaz.org" +LICENSE="LGPL" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.pygame.org/" WGET_URL="$WEB_SITE/ftp/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-pygments/receipt --- a/python-pygments/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pygments/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,9 +6,11 @@ CATEGORY="development" SHORT_DESC="Generic syntax highlighter." MAINTAINER="claudinei@slitaz.org" +LICENSE="BSD" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pygments.org" WGET_URL="http://pypi.python.org/packages/source/P/$SOURCE/$TARBALL" + DEPENDS="python" BUILD_DEPENDS="setuptools" @@ -23,7 +25,7 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-pygraphviz/receipt --- a/python-pygraphviz/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pygraphviz/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,25 +5,27 @@ CATEGORY="development" SHORT_DESC="A Python wrapper for the Graphviz Agraph data structure." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" SOURCE="pygraphviz" TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/pygraphviz" +WGET_URL="http://networkx.lanl.gov/download/$SOURCE/$TARBALL" + DEPENDS="graphviz python" BUILD_DEPENDS="graphviz-dev python-dev" -WEB_SITE="http://pypi.python.org/pypi/pygraphviz" -WGET_URL="http://networkx.lanl.gov/download/$SOURCE/$TARBALL" # Rules to configure and make the package. compile_rules() { cd $src python setup.py build - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $_pkg/usr/lib $fs/usr + cp -a $install/usr/lib $fs/usr } diff -r b50529e1ec04 -r fd4f1e692109 python-pylons/receipt --- a/python-pylons/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pylons/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,24 +5,26 @@ CATEGORY="development" SHORT_DESC="Lightweight web framework" MAINTAINER="taziden@slitaz.org" +LICENSE="BSD" SOURCE="Pylons" -DEPENDS="python" -BUILD_DEPENDS="python python-dev setuptools" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pylonshq.com" WGET_URL="http://cdn.pylonshq.com/download/$VERSION/$TARBALL" TAGS="python" +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-pyparsing/receipt --- a/python-pyparsing/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyparsing/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="Fuse Filsystem in user space." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pyparsing.wikispaces.com/" WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" @@ -17,13 +18,13 @@ { cd $src python setup.py build && - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-pyprotocols/receipt --- a/python-pyprotocols/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyprotocols/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="PEP 246 and a whole lot more." MAINTAINER="pankso@slitaz.org" +LICENSE="PSL" SOURCE="PyProtocols" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://peak.telecommunity.com/PyProtocols.html" WGET_URL="http://peak.telecommunity.com/dist/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-pyrex/receipt --- a/python-pyrex/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyrex/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,23 +5,25 @@ CATEGORY="development" SHORT_DESC="Language for Writing Python Extension Modules." MAINTAINER="pankso@slitaz.org" +LICENSE="Apache" SOURCE="Pyrex" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/" WGET_URL="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/$TARBALL" +TAGS="python" + DEPENDS="python" BUILD_DEPENDS="python python-dev" -TAGS="python" # Rules to configure and make the package. compile_rules() { cd $src - python setup.py install --root="$PWD/_pkg" --prefix=/usr + python setup.py install --root="$DESTDIR" --prefix=/usr } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } diff -r b50529e1ec04 -r fd4f1e692109 python-pysqlite/receipt --- a/python-pysqlite/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pysqlite/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="Python interface for the SQLite database" MAINTAINER="sygne@ombres.eu" +LICENSE="zlib/libpng" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://code.google.com/p/pysqlite/" WGET_URL="http://pysqlite.googlecode.com/files/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-pytest/receipt --- a/python-pytest/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pytest/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="A simple powerful testing with Python" MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" SOURCE="pytest" TARBALL="$SOURCE-$VERSION.zip" WEB_SITE="http://pypi.python.org/pypi/pytest" diff -r b50529e1ec04 -r fd4f1e692109 python-pytz/receipt --- a/python-pytz/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pytz/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,25 +6,27 @@ CATEGORY="development" SHORT_DESC="World Timezone Definitions for Python." MAINTAINER="pascal.bellard@slitaz.org" -DEPENDS="python" -BUILD_DEPENDS="python-dev python" +LICENSE="MIT" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://pytz.sourceforge.net/" WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python-dev python" + # Rules to configure and make the package. compile_rules() { cd $src python setup.py build && - python setup.py install --root=$PWD/_pkg + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-pyweb/receipt --- a/python-pyweb/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyweb/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="A web framework for Python." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="PublicDomain" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://webpy.org/" WGET_URL="${WEB_SITE}static/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-pywebdav/receipt --- a/python-pywebdav/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pywebdav/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -6,6 +6,7 @@ CATEGORY="development" SHORT_DESC="A WebDAV client library for Python." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://code.google.com/p/pywebdav/" WGET_URL="http://pywebdav.googlecode.com/files/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python-pyxml/receipt --- a/python-pyxml/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyxml/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="Pythonic binding for xml..." MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" SOURCE="PyXML" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pyxml.sourceforge.net/" @@ -25,7 +26,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $_pkg/usr $fs + cp -a $install/usr $fs } # Remove old package. diff -r b50529e1ec04 -r fd4f1e692109 python-pyyaml/receipt --- a/python-pyyaml/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-pyyaml/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,6 +5,7 @@ CATEGORY="development" SHORT_DESC="YAML parser and emitter for the Python programming language." MAINTAINER="rocky@slitaz.org" +LICENSE="MIT" SOURCE="PyYAML" TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://pyyaml.org/wiki/PyYAML/" diff -r b50529e1ec04 -r fd4f1e692109 python-xlib/receipt --- a/python-xlib/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python-xlib/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,7 +5,7 @@ CATEGORY="development" SHORT_DESC="X client library for Python programs." MAINTAINER="pascal.bellard@slitaz.org" -LICENSE="GPL3" +LICENSE="GPL" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://$PACKAGE.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" diff -r b50529e1ec04 -r fd4f1e692109 python/receipt --- a/python/receipt Sat Oct 19 10:56:35 2013 +0000 +++ b/python/receipt Sat Oct 19 13:53:26 2013 +0000 @@ -5,7 +5,7 @@ CATEGORY="development" SHORT_DESC="The Python programming language." MAINTAINER="pankso@slitaz.org" -LICENSE="BSD" +LICENSE="PSL" SOURCE="Python" TARBALL="$SOURCE-$VERSION.tar.bz2" WEB_SITE="http://www.python.org/"