wok rev 14376

move from undigest python-apsw, python-llfuse, python-py, python-pycryptopp, python-pyliblzma, python-pytest, python-unittest2, s3ql
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 22 18:19:33 2013 +0200 (2013-04-22)
parents 999d29597a59
children 490539922a0d
files linux-uml/receipt python-apsw/receipt python-llfuse/receipt python-py/receipt python-pycryptopp/receipt python-pyliblzma/receipt python-pytest/receipt python-unittest2/receipt s3ql/receipt
line diff
     1.1 --- a/linux-uml/receipt	Sun Apr 21 21:21:11 2013 +0200
     1.2 +++ b/linux-uml/receipt	Mon Apr 22 18:19:33 2013 +0200
     1.3 @@ -6,7 +6,7 @@
     1.4  KBASEVER="3.2"
     1.5  CATEGORY="base-system"
     1.6  SHORT_DESC="The User Mode Linux kernel."
     1.7 -BUILD_DEPENDS="slitaz-toolchain perl"
     1.8 +BUILD_DEPENDS="bash perl"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  TARBALL="$SOURCE-$KBASEVER.tar.xz"
    1.11  WEB_SITE="http://www.kernel.org/"
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/python-apsw/receipt	Mon Apr 22 18:19:33 2013 +0200
     2.3 @@ -0,0 +1,28 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="python-apsw"
     2.7 +SOURCE="apsw"
     2.8 +VERSION="3.7.16.2-r1"
     2.9 +CATEGORY="development"
    2.10 +SHORT_DESC="Python wrapper for SQLite."
    2.11 +MAINTAINER="pascal.bellard@slitaz.org"
    2.12 +TARBALL="$SOURCE-$VERSION.zip"
    2.13 +WEB_SITE="http://code.google.com/p/$PACKAGE/"
    2.14 +WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL"
    2.15 +
    2.16 +DEPENDS="sqlite"
    2.17 +BUILD_DEPENDS="python-dev sqlite-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	cd $src
    2.23 +	python setup.py build &&
    2.24 +	python setup.py install --root=$DESTDIR
    2.25 +}
    2.26 +
    2.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	cp -a $install/usr $fs
    2.31 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/python-llfuse/receipt	Mon Apr 22 18:19:33 2013 +0200
     3.3 @@ -0,0 +1,29 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="python-llfuse"
     3.7 +SOURCE="llfuse"
     3.8 +VERSION="0.38"
     3.9 +CATEGORY="development"
    3.10 +SHORT_DESC="Python bindings for the low level FUSE API."
    3.11 +MAINTAINER="pascal.bellard@slitaz.org"
    3.12 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    3.13 +WEB_SITE="http://code.google.com/p/$PACKAGE/"
    3.14 +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
    3.15 +
    3.16 +DEPENDS="fuse"
    3.17 +BUILD_DEPENDS="python-dev fuse-dev attr-dev python-distribute"
    3.18 +
    3.19 +# Rules to configure and make the package.
    3.20 +compile_rules()
    3.21 +{
    3.22 +	cd $src
    3.23 +	python setup.py build &&
    3.24 +	python setup.py test &&
    3.25 +	python setup.py install --root=$DESTDIR
    3.26 +}
    3.27 +
    3.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.29 +genpkg_rules()
    3.30 +{
    3.31 +	cp -a $install/usr $fs
    3.32 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/python-py/receipt	Mon Apr 22 18:19:33 2013 +0200
     4.3 @@ -0,0 +1,31 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="python-py"
     4.7 +VERSION="1.4.13"
     4.8 +CATEGORY="development"
     4.9 +SHORT_DESC="Library with cross-python path, ini-parsing, io, code, log facilities."
    4.10 +MAINTAINER="pascal.bellard@slitaz.org"
    4.11 +SOURCE="py"
    4.12 +TARBALL="$SOURCE-$VERSION.tar.gz"
    4.13 +WEB_SITE="http://pypi.python.org/pypi/py"
    4.14 +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    4.15 +
    4.16 +DEPENDS="python"
    4.17 +BUILD_DEPENDS="python-dev setuptools"
    4.18 +
    4.19 +# Rules to configure and make the package.
    4.20 +compile_rules()
    4.21 +{
    4.22 +	cd $src
    4.23 +	python setup.py build
    4.24 +	python setup.py test
    4.25 +	python setup.py install --root=$DESTDIR
    4.26 +}
    4.27 +
    4.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.29 +genpkg_rules()
    4.30 +{
    4.31 +	mkdir -p $fs/usr
    4.32 +	cp -a $install/usr/lib $fs/usr
    4.33 +}
    4.34 +
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/python-pycryptopp/receipt	Mon Apr 22 18:19:33 2013 +0200
     5.3 @@ -0,0 +1,30 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="python-pycryptopp"
     5.7 +VERSION="0.6.0"
     5.8 +CATEGORY="development"
     5.9 +SHORT_DESC="Wrapper around a few algorithms from Crypto++ and python-Ed25519."
    5.10 +MAINTAINER="pascal.bellard@slitaz.org"
    5.11 +SOURCE="pycryptopp"
    5.12 +TARBALL="$SOURCE-$VERSION.1206569328141510525648634803928199668821045408958.tar.gz"
    5.13 +WEB_SITE="http://pypi.python.org/pypi/pycryptopp"
    5.14 +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    5.15 +
    5.16 +DEPENDS="python"
    5.17 +BUILD_DEPENDS="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 build
    5.24 +	python setup.py install --root=$DESTDIR
    5.25 +}
    5.26 +
    5.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.28 +genpkg_rules()
    5.29 +{
    5.30 +	mkdir -p $fs/usr
    5.31 +	cp -a $install/usr/lib $fs/usr
    5.32 +}
    5.33 +
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/python-pyliblzma/receipt	Mon Apr 22 18:19:33 2013 +0200
     6.3 @@ -0,0 +1,30 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="python-pyliblzma"
     6.7 +VERSION="0.5.3"
     6.8 +CATEGORY="development"
     6.9 +SHORT_DESC="A Python wrapper for the liblzma library."
    6.10 +MAINTAINER="pascal.bellard@slitaz.org"
    6.11 +SOURCE="pyliblzma"
    6.12 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    6.13 +WEB_SITE="http://pypi.python.org/pypi/pyliblzma"
    6.14 +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    6.15 +
    6.16 +DEPENDS="liblzma python"
    6.17 +BUILD_DEPENDS="liblzma-dev python-dev setuptools"
    6.18 +
    6.19 +# Rules to configure and make the package.
    6.20 +compile_rules()
    6.21 +{
    6.22 +	cd $src
    6.23 +	python setup.py build
    6.24 +	python setup.py install --root=$DESTDIR
    6.25 +}
    6.26 +
    6.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.28 +genpkg_rules()
    6.29 +{
    6.30 +	mkdir -p $fs/usr
    6.31 +	cp -a $install/usr/lib $fs/usr
    6.32 +}
    6.33 +
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/python-pytest/receipt	Mon Apr 22 18:19:33 2013 +0200
     7.3 @@ -0,0 +1,30 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="python-pytest"
     7.7 +VERSION="2.3.4"
     7.8 +CATEGORY="development"
     7.9 +SHORT_DESC="A simple powerful testing with Python"
    7.10 +MAINTAINER="pascal.bellard@slitaz.org"
    7.11 +SOURCE="pytest"
    7.12 +TARBALL="$SOURCE-$VERSION.zip"
    7.13 +WEB_SITE="http://pypi.python.org/pypi/pytest"
    7.14 +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    7.15 +
    7.16 +DEPENDS="python"
    7.17 +BUILD_DEPENDS="python-dev setuptools"
    7.18 +
    7.19 +# Rules to configure and make the package.
    7.20 +compile_rules()
    7.21 +{
    7.22 +	cd $src
    7.23 +	python setup.py build
    7.24 +	python setup.py install --root=$DESTDIR
    7.25 +}
    7.26 +
    7.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.28 +genpkg_rules()
    7.29 +{
    7.30 +	mkdir -p $fs/usr
    7.31 +	cp -a $install/usr/lib $fs/usr
    7.32 +}
    7.33 +
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/python-unittest2/receipt	Mon Apr 22 18:19:33 2013 +0200
     8.3 @@ -0,0 +1,31 @@
     8.4 +# SliTaz package receipt.
     8.5 +
     8.6 +PACKAGE="python-unittest2"
     8.7 +VERSION="0.5.1"
     8.8 +CATEGORY="development"
     8.9 +SHORT_DESC="New features backport to the unittest testing framework."
    8.10 +MAINTAINER="pascal.bellard@slitaz.org"
    8.11 +SOURCE="unittest2"
    8.12 +TARBALL="$SOURCE-$VERSION.tar.gz"
    8.13 +WEB_SITE="http://pypi.python.org/pypi/unittest2"
    8.14 +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    8.15 +
    8.16 +DEPENDS="python"
    8.17 +BUILD_DEPENDS="python-dev setuptools"
    8.18 +
    8.19 +# Rules to configure and make the package.
    8.20 +compile_rules()
    8.21 +{
    8.22 +	cd $src
    8.23 +	python setup.py build
    8.24 +	python setup.py test
    8.25 +	python setup.py install --root=$DESTDIR
    8.26 +}
    8.27 +
    8.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    8.29 +genpkg_rules()
    8.30 +{
    8.31 +	mkdir -p $fs/usr
    8.32 +	cp -a $install/usr/lib $fs/usr
    8.33 +}
    8.34 +
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/s3ql/receipt	Mon Apr 22 18:19:33 2013 +0200
     9.3 @@ -0,0 +1,30 @@
     9.4 +# SliTaz package receipt.
     9.5 +
     9.6 +PACKAGE="s3ql"
     9.7 +VERSION="1.13.2"
     9.8 +CATEGORY="network"
     9.9 +SHORT_DESC="A file system for Google Storage, Amazon S3 or OpenStack."
    9.10 +MAINTAINER="pascal.bellard@slitaz.org"
    9.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    9.12 +WEB_SITE="http://code.google.com/p/$PACKAGE/"
    9.13 +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
    9.14 +
    9.15 +DEPENDS="sqlite python-llfuse python-pyliblzma python-pycryptopp python-apsw"
    9.16 +BUILD_DEPENDS="python-dev sqlite-dev liblzma-dev fuse-dev attr-dev rsync \
    9.17 +python-distribute python-llfuse python-pyliblzma python-pycryptopp python-apsw \
    9.18 +python-pytest python-py python-unittest2"
    9.19 +
    9.20 +# Rules to configure and make the package.
    9.21 +compile_rules()
    9.22 +{
    9.23 +	cd $src
    9.24 +	python setup.py build &&
    9.25 +	python setup.py test &&
    9.26 +	python setup.py install --root=$DESTDIR
    9.27 +}
    9.28 +
    9.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    9.30 +genpkg_rules()
    9.31 +{
    9.32 +	cp -a $install/usr $fs
    9.33 +}