# HG changeset patch # User Pascal Bellard # Date 1366647573 -7200 # Node ID a7f918cb00d108cf9bed9bb99f220bc7efe2912e # Parent 999d29597a593c71420e0e05520839fa3113f2b8 move from undigest python-apsw, python-llfuse, python-py, python-pycryptopp, python-pyliblzma, python-pytest, python-unittest2, s3ql diff -r 999d29597a59 -r a7f918cb00d1 linux-uml/receipt --- a/linux-uml/receipt Sun Apr 21 21:21:11 2013 +0200 +++ b/linux-uml/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -6,7 +6,7 @@ KBASEVER="3.2" CATEGORY="base-system" SHORT_DESC="The User Mode Linux kernel." -BUILD_DEPENDS="slitaz-toolchain perl" +BUILD_DEPENDS="bash perl" MAINTAINER="pascal.bellard@slitaz.org" TARBALL="$SOURCE-$KBASEVER.tar.xz" WEB_SITE="http://www.kernel.org/" diff -r 999d29597a59 -r a7f918cb00d1 python-apsw/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-apsw/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="python-apsw" +SOURCE="apsw" +VERSION="3.7.16.2-r1" +CATEGORY="development" +SHORT_DESC="Python wrapper for SQLite." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.zip" +WEB_SITE="http://code.google.com/p/$PACKAGE/" +WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL" + +DEPENDS="sqlite" +BUILD_DEPENDS="python-dev sqlite-dev" + +# 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() +{ + cp -a $install/usr $fs +} diff -r 999d29597a59 -r a7f918cb00d1 python-llfuse/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-llfuse/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-llfuse" +SOURCE="llfuse" +VERSION="0.38" +CATEGORY="development" +SHORT_DESC="Python bindings for the low level FUSE API." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://code.google.com/p/$PACKAGE/" +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" + +DEPENDS="fuse" +BUILD_DEPENDS="python-dev fuse-dev attr-dev python-distribute" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && + python setup.py test && + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +} diff -r 999d29597a59 -r a7f918cb00d1 python-py/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-py/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="python-py" +VERSION="1.4.13" +CATEGORY="development" +SHORT_DESC="Library with cross-python path, ini-parsing, io, code, log facilities." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="py" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/py" +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py test + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 999d29597a59 -r a7f918cb00d1 python-pycryptopp/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pycryptopp/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="python-pycryptopp" +VERSION="0.6.0" +CATEGORY="development" +SHORT_DESC="Wrapper around a few algorithms from Crypto++ and python-Ed25519." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="pycryptopp" +TARBALL="$SOURCE-$VERSION.1206569328141510525648634803928199668821045408958.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/pycryptopp" +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev 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/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 999d29597a59 -r a7f918cb00d1 python-pyliblzma/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pyliblzma/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="python-pyliblzma" +VERSION="0.5.3" +CATEGORY="development" +SHORT_DESC="A Python wrapper for the liblzma library." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="pyliblzma" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://pypi.python.org/pypi/pyliblzma" +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="liblzma python" +BUILD_DEPENDS="liblzma-dev python-dev 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/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 999d29597a59 -r a7f918cb00d1 python-pytest/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pytest/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="python-pytest" +VERSION="2.3.4" +CATEGORY="development" +SHORT_DESC="A simple powerful testing with Python" +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="pytest" +TARBALL="$SOURCE-$VERSION.zip" +WEB_SITE="http://pypi.python.org/pypi/pytest" +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev 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/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 999d29597a59 -r a7f918cb00d1 python-unittest2/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-unittest2/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="python-unittest2" +VERSION="0.5.1" +CATEGORY="development" +SHORT_DESC="New features backport to the unittest testing framework." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="unittest2" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/unittest2" +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev setuptools" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py test + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/lib $fs/usr +} + diff -r 999d29597a59 -r a7f918cb00d1 s3ql/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/s3ql/receipt Mon Apr 22 18:19:33 2013 +0200 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="s3ql" +VERSION="1.13.2" +CATEGORY="network" +SHORT_DESC="A file system for Google Storage, Amazon S3 or OpenStack." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://code.google.com/p/$PACKAGE/" +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" + +DEPENDS="sqlite python-llfuse python-pyliblzma python-pycryptopp python-apsw" +BUILD_DEPENDS="python-dev sqlite-dev liblzma-dev fuse-dev attr-dev rsync \ +python-distribute python-llfuse python-pyliblzma python-pycryptopp python-apsw \ +python-pytest python-py python-unittest2" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && + python setup.py test && + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +}