# HG changeset patch # User Pascal Bellard # Date 1329812322 -3600 # Node ID 9d082d25caeafbe85be152b729c129674f68d92d # Parent 4e0b93820dde35295fcc412c874a3caede5859db Move from undigest: python-antlr python-caldav python-gdata python-vatnumber python-vobject python-webdav python-xlwt python-zsi diff -r 4e0b93820dde -r 9d082d25caea python-antlr/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-antlr/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-antlr" +SOURCE="antlr" +VERSION="3.4" +CATEGORY="development" +SHORT_DESC="language tool for constructing recognizers, compilers for python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.antlr.org/" +WGET_URL="${WEB_SITE}download/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python python-dev setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src/runtime/Python + python setup.py build + 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 +} diff -r 4e0b93820dde -r 9d082d25caea python-caldav/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-caldav/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="python-caldav" +VERSION="0.1.12" +CATEGORY="development" +SHORT_DESC="CalDAV (RFC4791) client library for Python" +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="caldav" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/caldav" +WGET_URL="http://pypi.python.org/packages/source/c/$SOURCE/$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=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr $fs +} diff -r 4e0b93820dde -r 9d082d25caea python-gdata/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-gdata/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-gdata" +SOURCE="gdata" +VERSION="2.0.16" +CATEGORY="development" +SHORT_DESC="The Google Data APIs for Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://http://code.google.com/p/gdata-python-client/" +WGET_URL="http://gdata-python-client.googlecode.com/files/$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=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $_pkg/usr $fs +} diff -r 4e0b93820dde -r 9d082d25caea python-vatnumber/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-vatnumber/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-vatnumber" +SOURCE="vatnumber" +VERSION="1.0" +CATEGORY="development" +SHORT_DESC="Validate VAT numbers for Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://code.google.com/p/vatnumber" +WGET_URL="http://vatnumber.googlecode.com/files/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev python setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && + 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 +} diff -r 4e0b93820dde -r 9d082d25caea python-vobject/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-vobject/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-vobject" +SOURCE="vobject" +VERSION="0.8.1c" +CATEGORY="development" +SHORT_DESC="Parse iCalendar and VCards in Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://vobject.skyhouseconsulting.com/" +WGET_URL="${WEB_SITE}$TARBALL" + +DEPENDS="python python-dateutil" +BUILD_DEPENDS="python-dev python setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && + 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 +} diff -r 4e0b93820dde -r 9d082d25caea python-webdav/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-webdav/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="python-webdav" +VERSION="0.5" +CATEGORY="development" +SHORT_DESC="A WebDAV client library for Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="${PACKAGE}_$VERSION.tar.gz" +WEB_SITE="http://sourceforge.net/projects/python-webdav/" +WGET_URL="$SF_MIRROR/$PACKAGE/$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=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $_pkg/usr $fs +} diff -r 4e0b93820dde -r 9d082d25caea python-xlwt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-xlwt/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-xlwt" +SOURCE="xlwt" +VERSION="0.7.2" +CATEGORY="development" +SHORT_DESC="Python module for reading/writing Microsoft Excel spreadsheet files" +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="${SOURCE}_$VERSION.orig.tar.gz" +WEB_SITE="http://www.janrain.com/openid-enabled/" +WGET_URL="http://ftp.debian.org/debian/pool/main/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="python python-antlr" +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=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $_pkg/usr $fs +} diff -r 4e0b93820dde -r 9d082d25caea python-zsi/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-zsi/receipt Tue Feb 21 09:18:42 2012 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-zsi" +SOURCE="ZSI" +VERSION="2.1-a1" +CATEGORY="development" +SHORT_DESC="The Zolera Soap Infrastructure for Python." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pywebsvcs.sourceforge.net/zsi.html" +WGET_URL="$SF_MIRROR/project/pywebsvcs/$SOURCE/$SOURCE-${VERSION/-/_}/$TARBALL" + +DEPENDS="python python-pyxml" +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=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $_pkg/usr $fs +}