SHA256
1
0
forked from pool/grep

Accepting request 437647 from home:AndreasStieger:branches:Base:System

grep 2.26

OBS-URL: https://build.opensuse.org/request/show/437647
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=71
This commit is contained in:
Andreas Stieger 2016-10-28 13:08:56 +00:00 committed by Git OBS Bridge
parent ac3ff8c41b
commit 74a16347ac
6 changed files with 47 additions and 24 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e21e83bac50450e0d0d61a42c154ee0dceaacdbf4f604ef6e79071cb8e596830
size 1327856

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIcBAABCgAGBQJXGa9dAAoJEH/Z/MsAC+7uZ2AP/1VzI9ru6ocGwxXpF0KT9FIR
opE4A1iKi2lX2dOQZjlB7Xth7osxdKpLTClhVcUseQT06uLXETQdjZcx8wZPSXdM
Sd5ine2EuJ2RzKluaMXXGipl99/0hG4/Ga1CsTh+eRpwZ3AUvKShI4HMZbqJaTlv
yk2p7OkMg8Pv/CxoChKuEBxUi5m3tGf1KIQ0W51RQ47PSyIEGqNsOZqtjftZJtA8
7Nqbry2TFCz5v74zEQseZloeYwI1oGoIecZHNj6DsJSv0YyP1noWFVNb+xxCD7YY
aJSGVSfE4/4C+QHt/9xRGl+rE+NpW3vZaibcdQf6uhVCxFN9/HNRz6og5SolVygx
g2bIyh3znQcRfPsqIglZjloU68dC5r0EQXfVXOYt1+QkInB+OnzhKN8nvf0hry8b
HOef7MrBQ+YrvG6+j/aWU/d1bdEATgiJAAmBWWighdT7RewDDlDq4w88NwpxtebZ
MaWDp/JW0w4akC75GFyS/uln3RxNOFT8j3ssAUhCVEJun6gLtRL/TEnGPtI4x4/w
5mGN6qoTJMt/2DnpxovRXT2gHjs9I/0l3iTbeUebFUio6MQp4nfXhVxCBf/jmyeM
1L4qw8ldA3lIlNCHcNOJZxqowVUPSz9MFHF9pEDAHOpPuSCQuXIUIBhswcUp3K7F
Bg3C9W/xRDOdhCRJU2go
=m4Hl
-----END PGP SIGNATURE-----

3
grep-2.26.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:246a8fb37e82aa33d495b07c22fdab994c039ab0f818538eac81b01e78636870
size 1356292

16
grep-2.26.tar.xz.sig Normal file
View File

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIcBAABCgAGBQJX8bocAAoJEH/Z/MsAC+7uy/gQAKoqDgRouyO3eEuP9Qbq61KY
Q5ymV1YSsPS+PaOMRByWJ56n28lm5B85ywaFgEghZxOdZlt1XaNN1R9NWa+ErC5d
6HDuBGPsnw7mOu2sgNbWaiAveIVoMhEOKK1B9gOL0ZIDEBlsFPh2uPsVdEgP2FUV
dvi+HD9E8PhpPYxKscFF6M2GcZibNl9mOpZPWa/8PlXwqYkwd4Ds/CJ5XkvOikUG
yFOl+bSM8dd6q0sGsxDJw9xdIUfKJGF72l9WYlsKqcU1D8tJtKQAVSUBObyp3Z0y
TB/+P5Bq0lJ5lT1cW/EFhR2bXzJGRF07QEilDun7vOfFJYNQPO3vk/hOdReknJwZ
B3QBZSwro9NsMacXUndAOqIuXyRZIkrbdFDaTz7wssWsvkCaVIkKoiLc8VE0Thcc
wrV1eYBDoeNuD95cDAYdAUL1/KND5wbprk8JW44magbporNf2+4ExBE91iUkyklu
lXnW05ABZSnky6bQf7fnAss6bFLgYGUzSScBs7eeedVO+1wQWpLJKG3dm6S+IS/T
4b4FbrtU4OSkBZhkuMV7jhjAZUVIdhNfIoCRsF1dxXaRuEfBynPMe4FAabrRlhIc
l98ox/ndoajwHbpvngaE1vs8hIBKwjYVI2R0rSaWvs0kr9kLb/zWi20VKH70fX10
DPSopAIjGSWlg3AJpcPy
=uKyz
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Fri Oct 28 13:01:39 UTC 2016 - astieger@suse.com
- grep 2.26:
* no longer omit output merely because it follows an output line
suppressed due to encoding errors
* In the Shift_JIS locale, no longer mistakenly match in the
middle of a multibyte character
* grep can be much faster now when standard output is /dev/null.
* grep -F is now typically much faster when many patterns are
given, as it now uses the Aho-Corasick algorithm instead of
the Commentz-Walter algorithm in that case.
* grep -iF is typically much faster in a multibyte locale, if
the pattern and its case counterparts contain only single byte
characters.
* grep with complicated expressions (e.g., back-references) and
without -i now uses the regex fastmap for better performance.
* In multibyte locales, grep now handles leading "." in patterns
more efficiently.
* grep now prints a "FILENAME:LINENO: " prefix when diagnosing
an invalid regular expression that was read from an
'-f'-specified file.
-------------------------------------------------------------------
Fri Apr 22 13:49:18 UTC 2016 - astieger@suse.com

View File

@ -17,7 +17,7 @@
Name: grep
Version: 2.25
Version: 2.26
Release: 0
Summary: Print lines matching a pattern
License: GPL-3.0+
@ -51,7 +51,7 @@ echo "ac_cv_search_pcre_compile=\${ac_cv_search_pcre_compile=%{_libdir}/libpcre.
%endif
%build
%global optflags %optflags -fPIE
%global optflags %{optflags} -fPIE
export LDFLAGS="-pie"
%if 0%{?suse_version} < 1120
%configure -C --bindir=/bin --disable-silent-rules
@ -66,7 +66,7 @@ make %{?_smp_mflags}
make check VERBOSE=1 %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
make %{?_smp_mflags} DESTDIR=%{buildroot} install
%if 0%{?suse_version} < 1120
install -d %{buildroot}%{_bindir}
ln -sf ../../bin/egrep %{buildroot}%{_bindir}/egrep
@ -101,7 +101,7 @@ ln -sf %{_bindir}/grep %{buildroot}/bin/grep
#EndUsrMerge
%endif
%{_bindir}/*
%{_mandir}/man1/*.gz
%{_infodir}/*.gz
%{_mandir}/man1/*%{ext_man}
%{_infodir}/*%{ext_info}
%changelog