# HG changeset patch # User Pascal Bellard # Date 1428499750 -7200 # Node ID ef6ca97fc0663a3c5430dfb55bde10d33e1382d6 # Parent 4ff117f7678a0ce89c08c257d851679d3ce0b22c Add python-unidecode & python-unicodecsv diff -r 4ff117f7678a -r ef6ca97fc066 python-unicodecsv/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-unicodecsv/receipt Wed Apr 08 15:29:10 2015 +0200 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="python-unicodecsv" +VERSION="0.9.4" +CATEGORY="development" +SHORT_DESC="A drop-in replacement of csv module which *does* support unicode." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://github.com/jdunck/python-unicodecsv" +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" + +DEPENDS="python" +BUILD_DEPENDS="python wget" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +} diff -r 4ff117f7678a -r ef6ca97fc066 python-unidecode/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-unidecode/receipt Wed Apr 08 15:29:10 2015 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="python-unidecode" +VERSION="0.04.17" +CATEGORY="development" +SHORT_DESC="ASCII transliterations of Unicode text." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +SOURCE="Unidecode" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/$SOURCE/$VERSION" +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs +}