# HG changeset patch # User Hans-G?nter Theisgen # Date 1656669021 -3600 # Node ID c056636b8c7ea4c956407120244666d4f183296d # Parent d402990be9fdfbafa4e09f4837ee83cf19583efd updated python-antlr (3.5.2 -> 3.5.3) diff -r d402990be9fd -r c056636b8c7e python-antlr/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-antlr/description.txt Fri Jul 01 10:50:21 2022 +0100 @@ -0,0 +1,6 @@ +ANTLR (ANother Tool for Language Recognition) is a language tool +that provides a framework for constructing recognizers, interpreters, +compilers, and translators from grammatical descriptions containing +actions in a variety of target languages. +ANTLR provides excellent support for tree construction, tree walking, +translation, error recovery, and error reporting. diff -r d402990be9fd -r c056636b8c7e python-antlr/receipt --- a/python-antlr/receipt Fri Jul 01 10:37:34 2022 +0100 +++ b/python-antlr/receipt Fri Jul 01 10:50:21 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="python-antlr" -VERSION="3.5.2" +VERSION="3.5.3" CATEGORY="development" SHORT_DESC="Language tool for constructing recognizers, compilers for python." MAINTAINER="pascal.bellard@slitaz.org" @@ -24,14 +24,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src/runtime/Python && - python setup.py build && - python setup.py install --root=$DESTDIR + cd runtime/Python && + 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 + cook_copy_folders lib }