# HG changeset patch # User Pascal Bellard # Date 1467119447 -7200 # Node ID eba94824c7c334ca0426b26f66c925b7a3f6c333 # Parent c9fa53c9d199f8e7f936f04e580b470b78540be5 Add swagger-py & ari-py diff -r c9fa53c9d199 -r eba94824c7c3 ari-py/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ari-py/receipt Tue Jun 28 15:10:47 2016 +0200 @@ -0,0 +1,27 @@ +PACKAGE="ari-py" +VERSION="0.1.3" +CATEGORY="development" +SHORT_DESC="Library for accessing the Asterisk REST Interface." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://github.com/asterisk/ari-py" +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" + +DEPENDS="python" +SUGGESTED="asterisk" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + 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 $install/usr $fs +} diff -r c9fa53c9d199 -r eba94824c7c3 swagger-py/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/swagger-py/receipt Tue Jun 28 15:10:47 2016 +0200 @@ -0,0 +1,26 @@ +PACKAGE="swagger-py" +VERSION="0.2.1" +CATEGORY="development" +SHORT_DESC="Swagger client library for Python." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://github.com/digium/swagger-py" +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" + +DEPENDS="python" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + 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 $install/usr $fs +}