# HG changeset patch # User Aleksej Bobylev # Date 1466269908 -10800 # Node ID 8563f3c360690e714addba10879be95e71aa773a # Parent 7f34d19fe19ec6682f5ec20eac418b06974862ab Up grep (2.25) diff -r 7f34d19fe19e -r 8563f3c36069 grep/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/grep/description.txt Sat Jun 18 20:11:48 2016 +0300 @@ -0,0 +1,29 @@ +This is GNU grep, the "fastest grep in the west" (we hope). All bugs reported +in previous releases have been fixed. Many exciting new bugs have probably been +introduced in this revision. + +GNU grep is provided "as is" with no warranty. The exact terms under which you +may use and (re)distribute this program are detailed in the GNU General Public +License. + +GNU grep is based on a fast lazy-state deterministic matcher (about twice as +fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper search for a +fixed string that eliminates impossible text from being considered by the full +regexp matcher without necessarily having to look at every character. The +result is typically many times faster than Unix grep or egrep. (Regular +expressions containing backreferencing will run more slowly, however.) + +Send bug reports to bug-grep@gnu.org. + + +KNOWN BUGS: + +Several tests in fmbtest.sh and foad1.sh fail under the cs_CZ.UTF-8 locale +and have been disabled. + +The combination of -o and -i options is broken and the known failing cases +are disabled in foad1.sh + +The option -i does not work properly in some multibyte locales such as +tr_TR.UTF-8 where the upper case and lower case forms of a character are not +necessarily of the same byte length. diff -r 7f34d19fe19e -r 8563f3c36069 grep/receipt --- a/grep/receipt Sat Jun 18 19:48:35 2016 +0300 +++ b/grep/receipt Sat Jun 18 20:11:48 2016 +0300 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="grep" -VERSION="2.11" +VERSION="2.25" CATEGORY="development" SHORT_DESC="GNU Global Regular Expression Print." MAINTAINER="paul@slitaz.org" @@ -18,12 +18,16 @@ { ./configure $CONFIGURE_ARGS && make && make install + + find $install/usr/share/man -type f -exec gzip -9 \{\} \; } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/usr/share cp -a $install/usr/bin $fs + cp -a $install/usr/share/man $fs/usr/share } post_remove()