wok-next rev 18956
Add python-peak-rules package; add it to python-turbogears dependencies
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Mar 09 02:21:29 2016 +0200 (2016-03-09) |
parents | 88c4b92b0e61 |
children | 29d7f69c742c |
files | python-peak-rules/description.txt python-peak-rules/receipt python-turbogears/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-peak-rules/description.txt Wed Mar 09 02:21:29 2016 +0200 1.3 @@ -0,0 +1,6 @@ 1.4 +PEAK-Rules is a highly-extensible framework for creating and using generic 1.5 +functions, from the very simple to the very complex. Out of the box, it 1.6 +supports multiple-dispatch on positional arguments using tuples of types, full 1.7 +predicate dispatch using strings containing Python expressions, and CLOS-like 1.8 +method combining. (But the framework allows you to mix and match dispatch 1.9 +engines and custom method combinations, if you need or want to.)
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/python-peak-rules/receipt Wed Mar 09 02:21:29 2016 +0200 2.3 @@ -0,0 +1,27 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="python-peak-rules" 2.7 +VERSION="0.5a1.dev-r2713" 2.8 +CATEGORY="misc" 2.9 +SHORT_DESC="Generic functions and business rules support systems" 2.10 +MAINTAINER="al.bobylev@gmail.com" 2.11 +LICENSE="ZPL2.1" 2.12 +WEB_SITE="https://pypi.python.org/pypi/PEAK-Rules" 2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.14 +WGET_URL="http://peak.telecommunity.com/snapshots/PEAK-Rules-$VERSION.tar.gz" 2.15 + 2.16 +DEPENDS="python" 2.17 +BUILD_DEPENDS="setuptools" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + python setup.py build && 2.23 + python setup.py install --root=$install 2.24 +} 2.25 + 2.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.27 +genpkg_rules() 2.28 +{ 2.29 + cp -a $install/* $fs 2.30 +}
3.1 --- a/python-turbogears/receipt Wed Mar 09 00:08:53 2016 +0200 3.2 +++ b/python-turbogears/receipt Wed Mar 09 02:21:29 2016 +0200 3.3 @@ -13,7 +13,7 @@ 3.4 3.5 DEPENDS="python psycopg sqlobject python-kid python-cheetah python-cherrypy \ 3.6 python-paste python-pastedeploy python-pastescript python-formencode \ 3.7 -python-decoratortools python-extremes python-simplejson" 3.8 +python-decoratortools python-extremes python-simplejson python-peak-rules" 3.9 BUILD_DEPENDS="$DEPENDS python-dev setuptools" 3.10 3.11 # Rules to configure and make the package.