wok rev 19222

Up grep (2.25)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 18 20:11:48 2016 +0300 (2016-06-18)
parents 7f34d19fe19e
children 3b9bfe76d680
files grep/description.txt grep/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/grep/description.txt	Sat Jun 18 20:11:48 2016 +0300
     1.3 @@ -0,0 +1,29 @@
     1.4 +This is GNU grep, the "fastest grep in the west" (we hope). All bugs reported
     1.5 +in previous releases have been fixed. Many exciting new bugs have probably been
     1.6 +introduced in this revision.
     1.7 +
     1.8 +GNU grep is provided "as is" with no warranty. The exact terms under which you
     1.9 +may use and (re)distribute this program are detailed in the GNU General Public
    1.10 +License.
    1.11 +
    1.12 +GNU grep is based on a fast lazy-state deterministic matcher (about twice as
    1.13 +fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper search for a
    1.14 +fixed string that eliminates impossible text from being considered by the full
    1.15 +regexp matcher without necessarily having to look at every character. The
    1.16 +result is typically many times faster than Unix grep or egrep. (Regular
    1.17 +expressions containing backreferencing will run more slowly, however.)
    1.18 +
    1.19 +Send bug reports to bug-grep@gnu.org.
    1.20 +
    1.21 +
    1.22 +KNOWN BUGS:
    1.23 +
    1.24 +Several tests in fmbtest.sh and foad1.sh fail under the cs_CZ.UTF-8 locale
    1.25 +and have been disabled.
    1.26 +
    1.27 +The combination of -o and -i options is broken and the known failing cases
    1.28 +are disabled in foad1.sh
    1.29 +
    1.30 +The option -i does not work properly in some multibyte locales such as
    1.31 +tr_TR.UTF-8 where the upper case and lower case forms of a character are not
    1.32 +necessarily of the same byte length.
     2.1 --- a/grep/receipt	Sat Jun 18 19:48:35 2016 +0300
     2.2 +++ b/grep/receipt	Sat Jun 18 20:11:48 2016 +0300
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="grep"
     2.7 -VERSION="2.11"
     2.8 +VERSION="2.25"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="GNU Global Regular Expression Print."
    2.11  MAINTAINER="paul@slitaz.org"
    2.12 @@ -18,12 +18,16 @@
    2.13  {
    2.14  	./configure $CONFIGURE_ARGS &&
    2.15  	make && make install
    2.16 +
    2.17 +	find $install/usr/share/man -type f -exec gzip -9 \{\} \;
    2.18  }
    2.19  
    2.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.21  genpkg_rules()
    2.22  {
    2.23 +	mkdir -p $fs/usr/share
    2.24  	cp -a $install/usr/bin $fs
    2.25 +	cp -a $install/usr/share/man $fs/usr/share
    2.26  }
    2.27  
    2.28  post_remove()