165 Commits

Author SHA256 Message Date
0378e1e6f1 Accepting request 1269943 from Base:System
OBS-URL: https://build.opensuse.org/request/show/1269943
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=93
2025-04-20 07:34:49 +00:00
07e2d698ee Accepting request 1223315 from Base:System
- removes testsuite.patch in older distributions

OBS-URL: https://build.opensuse.org/request/show/1223315
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=92
2024-11-12 18:21:23 +00:00
8de3626e1f - removes testsuite.patch in older distributions
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=145
2024-11-11 09:41:38 +00:00
827e4ff729 Accepting request 1166714 from Base:System
- restore texinfo macros for SLE15

    also match e.g., the Arabic digits: ٠١٢٣٤٥٦٧٨٩.
- GNU grep 3.8 (jsc#PED-6579):
  * The -s option no longer suppresses "binary file matches"
- use release keyring rather than full one for validation
- Make profiling deterministic (bsc#1040589, SLE-24115)
  * --files-without-match (-L) behavior reverted to again succeed
  * When standard output is /dev/null, grep no longer fails when
- Drop upstreamed proc-lseek-glitch.patch
    an invalid regular expression that was read from an
  * grep -z would match strings it should not.  To trigger the bug,
    you'd have to use a regular expression including an anchor
    (^ or $) and a feature like a range or a backreference, causing
    With a multibyte locale, that matcher could mistakenly match a
    string containing a newline. For example, this command:
    would mistakenly match and print all four input bytes.  After
  * grep -Pz now diagnoses attempts to use patterns containing ^
    and $, instead of mishandling these patterns.  This problem
    seems to be inherent to the PCRE API; removing this limitation
    is on PCRE's maint/README wish list.  Patterns can continue to
    match literal ^ and $ by escaping them with \ (now needed even
  * Binary files are now less likely to generate diagnostics and
    more likely to yield text matches.  grep now reports "Binary
    file FOO matches" and suppresses further output instead of
    outputting a line containing an encoding error; hence grep can
    now report matching text before a later binary match.
    Formerly, grep reported FOO to be binary when it found an
    encoding error in FOO before generating output for FOO, which
    meant it never reported both matching text and matching binary

OBS-URL: https://build.opensuse.org/request/show/1166714
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=91
2024-04-12 15:33:38 +00:00
30c4adfb72 - restore texinfo macros for SLE15
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=144
2024-04-10 20:20:23 +00:00
4ccf627561 - GNU grep 3.8 (jsc#PED-6579):
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=143
2024-04-10 09:08:11 +00:00
9db2b6928b also match e.g., the Arabic digits: ٠١٢٣٤٥٦٧٨٩.
* The -s option no longer suppresses "binary file matches"
- use release keyring rather than full one for validation
- Make profiling deterministic (bsc#1040589, SLE-24115)
  * --files-without-match (-L) behavior reverted to again succeed
  * When standard output is /dev/null, grep no longer fails when
- Drop upstreamed proc-lseek-glitch.patch
    an invalid regular expression that was read from an
  * grep -z would match strings it should not.  To trigger the bug,
    you'd have to use a regular expression including an anchor
    (^ or $) and a feature like a range or a backreference, causing
    With a multibyte locale, that matcher could mistakenly match a
    string containing a newline. For example, this command:
    would mistakenly match and print all four input bytes.  After
  * grep -Pz now diagnoses attempts to use patterns containing ^
    and $, instead of mishandling these patterns.  This problem
    seems to be inherent to the PCRE API; removing this limitation
    is on PCRE's maint/README wish list.  Patterns can continue to
    match literal ^ and $ by escaping them with \ (now needed even
  * Binary files are now less likely to generate diagnostics and
    more likely to yield text matches.  grep now reports "Binary
    file FOO matches" and suppresses further output instead of
    outputting a line containing an encoding error; hence grep can
    now report matching text before a later binary match.
    Formerly, grep reported FOO to be binary when it found an
    encoding error in FOO before generating output for FOO, which
    meant it never reported both matching text and matching binary
    data; this was less useful for searching text containing
    encoding errors in non-matching lines. [bug introduced in
  * grep -c no longer stops counting when finding binary data.

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=142
2024-04-10 09:05:21 +00:00
7375595728 osc copypac from project:openSUSE:Factory package:grep revision:90, using expand
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=141
2024-04-10 09:05:04 +00:00
bd8584a266 - split the deprecated egrep/fgrep into a deprecated subpackage
to be able to identify remaining usages
    also match e.g., the Arabic digits: ٠١٢٣٤٥٦٧٨٩.
  * The -s option no longer suppresses "binary file matches"
- use release keyring rather than full one for validation
- Make profiling deterministic (bsc#1040589, SLE-24115)
  * --files-without-match (-L) behavior reverted to again succeed
  * When standard output is /dev/null, grep no longer fails when
- Drop upstreamed proc-lseek-glitch.patch
    an invalid regular expression that was read from an
  * grep -z would match strings it should not.  To trigger the bug,
    you'd have to use a regular expression including an anchor
    (^ or $) and a feature like a range or a backreference, causing
    With a multibyte locale, that matcher could mistakenly match a
    string containing a newline. For example, this command:
    would mistakenly match and print all four input bytes.  After
  * grep -Pz now diagnoses attempts to use patterns containing ^
    and $, instead of mishandling these patterns.  This problem
    seems to be inherent to the PCRE API; removing this limitation
    is on PCRE's maint/README wish list.  Patterns can continue to
    match literal ^ and $ by escaping them with \ (now needed even
  * Binary files are now less likely to generate diagnostics and
    more likely to yield text matches.  grep now reports "Binary
    file FOO matches" and suppresses further output instead of
    outputting a line containing an encoding error; hence grep can
    now report matching text before a later binary match.
    Formerly, grep reported FOO to be binary when it found an
    encoding error in FOO before generating output for FOO, which
    meant it never reported both matching text and matching binary
    data; this was less useful for searching text containing

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=140
2024-04-10 09:04:40 +00:00
d4cbb265e2 Accepting request 1108777 from Base:System
OBS-URL: https://build.opensuse.org/request/show/1108777
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=90
2023-09-07 19:12:00 +00:00
e81a5280a0 Accepting request 1104193 from home:dimstar:Factory
- export CONFIG_SHELL=/bin/sh before running configure: results in
  the shell script (egrep/fgrep) to receive a /bin/sh shebang
  instead of requiring bash (the local shell used to build).

OBS-URL: https://build.opensuse.org/request/show/1104193
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=138
2023-09-04 07:27:54 +00:00
7815ca8e4d Accepting request 1089292 from Base:System
- update to 3.11:
  * With -P, patterns like [\d] now work again. Fixing this
    has caused grep to revert to the behavior of grep 3.8, in that
    patterns like \w and ^H go back to using ASCII rather
    than Unicode interpretations.
    However, future versions of GNU grep and/or PCRE2 are
    likely to fix this and change the behavior of \w and ^H
    back to Unicode again, without breaking [\d] as 3.10 did.

OBS-URL: https://build.opensuse.org/request/show/1089292
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=89
2023-05-28 17:21:56 +00:00
3ed3d1f409 patterns like \w and ^H go back to using ASCII rather
likely to fix this and change the behavior of \w and ^H

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=136
2023-05-27 08:56:55 +00:00
f53c211d21 - update to 3.11:
* With -P, patterns like [\d] now work again. Fixing this
    has caused grep to revert to the behavior of grep 3.8, in that
    patterns like \w and  go back to using ASCII rather
    than Unicode interpretations.
    However, future versions of GNU grep and/or PCRE2 are
    likely to fix this and change the behavior of \w and 
    back to Unicode again, without breaking [\d] as 3.10 did.

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=135
2023-05-18 12:01:28 +00:00
eadbb2a77a Accepting request 1080166 from Base:System
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1080166
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=88
2023-04-21 12:15:32 +00:00
ce62c6a0b0 OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=133 2023-04-11 15:24:32 +00:00
5820abc816 - update to 3.10:
* With -P, \d now matches only ASCII digits, regardless of
    PCRE options/modes. The changes in grep-3.9 to make  and \w
    work properly had the undesirable side effect of making \d
    also match e.g., the Arabic digits: ٠١٢٣٤٥٦٧٨٩.  
    With grep-3.9, -P '\d+' would match that ten-digit (20-byte)
    string. Now, to match such a digit, you would use \p{Nd}.
    Similarly, \D is now mapped to [^0-9].

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=132
2023-03-30 07:45:04 +00:00
afff5fdc7b Accepting request 1069579 from Base:System
- Update to grep 3.9
  * When given multiple patterns the last of which has a back-reference,
    grep no longer sometimes mistakenly matches lines in some cases (forwarded request 1069578 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/1069579
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=87
2023-03-08 13:50:58 +00:00
0399a5ce73 Accepting request 1069578 from home:Andreas_Schwab:Factory
- Update to grep 3.9
  * When given multiple patterns the last of which has a back-reference,
    grep no longer sometimes mistakenly matches lines in some cases

OBS-URL: https://build.opensuse.org/request/show/1069578
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=130
2023-03-06 10:18:56 +00:00
d96df970c9 Accepting request 1069487 from home:AndreasStieger:branches:Base:System
GNU grep 3.9

OBS-URL: https://build.opensuse.org/request/show/1069487
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=129
2023-03-06 09:00:51 +00:00
4b4671c038 Accepting request 1055273 from Base:System
OBS-URL: https://build.opensuse.org/request/show/1055273
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=86
2023-01-07 16:15:39 +00:00
858941fd15 Accepting request 1054451 from home:lnussel:usrmerge
Replace transitional %usrmerged macro with regular version check (boo#1206798)

OBS-URL: https://build.opensuse.org/request/show/1054451
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=127
2023-01-04 10:54:38 +00:00
e1383edf82 Accepting request 1004920 from Base:System
- efgrep-warning.patch: remove warning from [ef]grep (forwarded request 1004919 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/1004920
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=85
2022-09-23 12:14:15 +00:00
63994663b8 Accepting request 1004919 from home:Andreas_Schwab:Factory
- efgrep-warning.patch: remove warning from [ef]grep

OBS-URL: https://build.opensuse.org/request/show/1004919
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=125
2022-09-20 09:05:25 +00:00
e15c2fff70 Accepting request 1001674 from Base:System
- GNU grep 3.8:
  * The -P option is now based on PCRE2 instead of the older PCRE
    (boo#1201803)
  * egrep and fgrep commands, deprecated since release 2.5.3 (2007), now
    warn that they are obsolescent and should be replaced by grep -E and
    grep -F
  * The confusing GREP_COLOR environment variable is now obsolescent
  * Regular expressions with stray backslashes now cause warnings
  * Regular expressions like [:space:] are now errors even if
    POSIXLY_CORRECT is set, since POSIX now allows the GNU behavior
  * In locales using UTF-8 encoding, the regular expression '.' no
    longer sometimes fails to match Unicode characters
  * The -s option no longer suppresses "binary file matches" 
    messages.
- doc: fix man page syntax errors (bsc#1201001) (forwarded request 1001672 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/1001674
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=84
2022-09-16 11:31:57 +00:00
ebc63d0566 Accepting request 1001672 from home:Andreas_Schwab:Factory
- GNU grep 3.8:
  * The -P option is now based on PCRE2 instead of the older PCRE
    (boo#1201803)
  * egrep and fgrep commands, deprecated since release 2.5.3 (2007), now
    warn that they are obsolescent and should be replaced by grep -E and
    grep -F
  * The confusing GREP_COLOR environment variable is now obsolescent
  * Regular expressions with stray backslashes now cause warnings
  * Regular expressions like [:space:] are now errors even if
    POSIXLY_CORRECT is set, since POSIX now allows the GNU behavior
  * In locales using UTF-8 encoding, the regular expression '.' no
    longer sometimes fails to match Unicode characters
  * The -s option no longer suppresses "binary file matches" 
    messages.
- doc: fix man page syntax errors (bsc#1201001)

OBS-URL: https://build.opensuse.org/request/show/1001672
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=123
2022-09-07 09:12:00 +00:00
c668b08763 Accepting request 994329 from Base:System
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/994329
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=83
2022-08-13 20:36:30 +00:00
2e4651d6ee Accepting request 992600 from home:Andreas_Schwab:Factory
- Skip more gnulib tests in qemu build

OBS-URL: https://build.opensuse.org/request/show/992600
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=121
2022-08-03 14:31:01 +00:00
c6ba2f07fe Accepting request 979044 from Base:System
- use release keyring rather than full one for validation 

- Do not link an unversioned file by URL (and refresh keyring)

OBS-URL: https://build.opensuse.org/request/show/979044
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=82
2022-05-27 22:28:02 +00:00
4254629b5b - use release keyring rather than full one for validation
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=119
2022-05-24 19:43:06 +00:00
2c80760faf Accepting request 978988 from home:coolo:branches:Base:System
- Do not link an unversioned file by URL (and refresh keyring)

OBS-URL: https://build.opensuse.org/request/show/978988
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=118
2022-05-24 19:18:23 +00:00
02a96d30d6 Accepting request 962180 from Base:System
Make profiling deterministic (bsc#1040589) (forwarded request 962124 from bmwiedemann)

OBS-URL: https://build.opensuse.org/request/show/962180
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=81
2022-03-18 15:41:18 +00:00
f97d8ce173 Accepting request 962124 from home:bmwiedemann:branches:Base:System
Make profiling deterministic (bsc#1040589)

OBS-URL: https://build.opensuse.org/request/show/962124
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=116
2022-03-16 13:02:12 +00:00
4436673445 Accepting request 953909 from Base:System
- use glibc-locale to reenable less common locale tests (bsc#1195390)

OBS-URL: https://build.opensuse.org/request/show/953909
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=80
2022-02-14 21:35:53 +00:00
8e3b0ca183 - use glibc-locale to reenable less common locale tests (bsc#1195390)
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=115
2022-02-12 13:41:02 +00:00
1343420ab0 Accepting request 912393 from Base:System
- Update to grep 3.7
  * Preprocessing N patterns would take at least O(N^2) time when too many
    patterns hashed to too few buckets
- werror-return-type.patch, gnulib-c-stack.patch: Removed
- Skip stack overflow tests in qemu build (forwarded request 912392 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/912393
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=79
2021-08-24 08:53:49 +00:00
cc0349ac7c Accepting request 912392 from home:Andreas_Schwab:Factory
- Update to grep 3.7
  * Preprocessing N patterns would take at least O(N^2) time when too many
    patterns hashed to too few buckets
- werror-return-type.patch, gnulib-c-stack.patch: Removed
- Skip stack overflow tests in qemu build

OBS-URL: https://build.opensuse.org/request/show/912392
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=114
2021-08-16 12:20:25 +00:00
2b4051f1b3 Accepting request 909988 from Base:System
- gnulib-c-stack.patch: Fix AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC configure
  check (forwarded request 909987 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/909988
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=78
2021-08-05 18:47:38 +00:00
7b29ed8d9a Accepting request 909987 from home:Andreas_Schwab:Factory
- gnulib-c-stack.patch: Fix AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC configure
  check

OBS-URL: https://build.opensuse.org/request/show/909987
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=113
2021-08-03 12:27:57 +00:00
993b4c7d69 Accepting request 852358 from Base:System
OBS-URL: https://build.opensuse.org/request/show/852358
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=77
2020-12-07 13:59:52 +00:00
4e25c172e4 Accepting request 851470 from home:AndreasStieger:branches:Base:System
- remove deprecated texinfo macros
- silence egrep,fgrep packaging warnings

OBS-URL: https://build.opensuse.org/request/show/851470
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=111
2020-12-01 14:09:11 +00:00
2da8e22798 Accepting request 850976 from Base:System
OBS-URL: https://build.opensuse.org/request/show/850976
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=76
2020-11-26 22:09:38 +00:00
3402f78091 Accepting request 849610 from home:lnussel:usrmove
- prepare usrmerge (boo#1029961)

OBS-URL: https://build.opensuse.org/request/show/849610
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=109
2020-11-26 10:08:54 +00:00
34aeb1e3df Accepting request 850163 from home:Andreas_Schwab:Factory
- Update to grep 3.6
  * The GREP_OPTIONS environment variable no longer affects grep's behavior.
  * grep's DFA matcher performed an invalid regex transformation
    that would convert an ERE like a+a+a+ to a+a+, which would make
    grep a+a+a+ mistakenly match "aa".
  * grep -P now reports the troublesome input filename upon PCRE execution
    failure.
- werror-return-type.patch: work around gcc bug

OBS-URL: https://build.opensuse.org/request/show/850163
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=108
2020-11-23 10:53:34 +00:00
bc5e96c9df Accepting request 838208 from Base:System
OBS-URL: https://build.opensuse.org/request/show/838208
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=75
2020-10-04 15:29:58 +00:00
cc503460e4 Accepting request 838206 from home:AndreasStieger:branches:Base:System
GNU grep 3.5

OBS-URL: https://build.opensuse.org/request/show/838206
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=106
2020-09-28 09:02:25 +00:00
94f472e919 Accepting request 830790 from Base:System
- gnulib-test-avoid-FP-perror-strerror.patch: Add patch to
  avoid false-positive error in gnulib tests 'test-perror2' and
  'test-strerror_r', visible on armv7l.

OBS-URL: https://build.opensuse.org/request/show/830790
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=74
2020-09-04 08:52:21 +00:00
63595ee723 OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=104 2020-08-31 12:12:58 +00:00
328e35e543 OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=103 2020-08-31 12:12:16 +00:00
864192556e Accepting request 830782 from home:berny:branches:Base:System
- gnulib-test-avoid-FP-perror-strerror.patch: Add patch to
avoid false-positive error in gnulib tests 'test-perror2' and
'test-strerror_r', visible on armv7l.
- grep.spec: Reference the patch.

OBS-URL: https://build.opensuse.org/request/show/830782
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=102
2020-08-31 12:11:25 +00:00
3b27e95d4f Accepting request 818103 from Base:System
Use deterministic profile.sh script to make package build reproducible (boo#1040589) (forwarded request 817958 from bmwiedemann)

OBS-URL: https://build.opensuse.org/request/show/818103
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=73
2020-07-04 23:09:37 +00:00
9d3f35e52d Accepting request 817958 from home:bmwiedemann:branches:Base:System
Use deterministic profile.sh script to make package build reproducible (boo#1040589)

OBS-URL: https://build.opensuse.org/request/show/817958
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=100
2020-07-01 12:12:03 +00:00
11194e42c2 Accepting request 766067 from Base:System
- Switch back to system regex to avoid undefined behaviour (forwarded request 766066 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/766067
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=72
2020-02-15 21:21:00 +00:00
ad77cef40c Accepting request 766066 from home:Andreas_Schwab:Factory
- Switch back to system regex to avoid undefined behaviour

OBS-URL: https://build.opensuse.org/request/show/766066
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=98
2020-01-21 12:43:52 +00:00
6f4bd295ad Accepting request 760933 from home:AndreasStieger:branches:Base:System
grep 3.4

OBS-URL: https://build.opensuse.org/request/show/760933
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=97
2020-01-07 14:49:36 +00:00
f3adb1a6d8 Accepting request 731945 from Base:System
- Do not recommend lang package. The lang package already has a
  supplements. (forwarded request 731935 from lnussel)

OBS-URL: https://build.opensuse.org/request/show/731945
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=71
2019-09-26 18:35:17 +00:00
8b5538cb93 Accepting request 731935 from home:lnussel:branches:Base:System
- Do not recommend lang package. The lang package already has a
  supplements.

OBS-URL: https://build.opensuse.org/request/show/731935
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=95
2019-09-19 12:12:22 +00:00
Stephan Kulow
f0a3f7b2fc Accepting request 676971 from Base:System
- test-pcre-jitstack.diff: avoid false positive upon stack overflow (forwarded request 676970 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/676971
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=70
2019-02-24 15:54:58 +00:00
461bbb0f4a Accepting request 676970 from home:Andreas_Schwab:Factory
- test-pcre-jitstack.diff: avoid false positive upon stack overflow

OBS-URL: https://build.opensuse.org/request/show/676970
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=93
2019-02-18 09:24:00 +00:00
9067ff6870 Accepting request 663378 from Base:System
- Update to grep 3.3
  ** Changes in behavior
  * The --files-without-match (-L) option now causes grep to succeed
    when a file is listed, instead of when a line is selected.
  ** Improvements
  * An over-30x performance improvement when many 'or'd expressions
    share a common prefix, thanks to improvements in gnulib's dfa.c
  * An additional 3-23% speed-up when searching large files, via
    increased initial buffer size.
  * grep now diagnoses stack overflow
- remove-backref-alt-test.patch: remove (forwarded request 663377 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/663378
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=69
2019-01-15 08:08:19 +00:00
90931682f7 Accepting request 663377 from home:Andreas_Schwab:Factory
- Update to grep 3.3
  ** Changes in behavior
  * The --files-without-match (-L) option now causes grep to succeed
    when a file is listed, instead of when a line is selected.
  ** Improvements
  * An over-30x performance improvement when many 'or'd expressions
    share a common prefix, thanks to improvements in gnulib's dfa.c
  * An additional 3-23% speed-up when searching large files, via
    increased initial buffer size.
  * grep now diagnoses stack overflow
- remove-backref-alt-test.patch: remove

OBS-URL: https://build.opensuse.org/request/show/663377
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=91
2019-01-07 15:05:24 +00:00
2d29b503ac Accepting request 648389 from Base:System
do not run profiling in parallel to make package build reproducible (boo#1040589)

also requires -fno-profile-values to avoid ~3 differing bits (forwarded request 647618 from bmwiedemann)

OBS-URL: https://build.opensuse.org/request/show/648389
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=68
2018-11-26 09:12:03 +00:00
6d2ddee86a Accepting request 647618 from home:bmwiedemann:branches:Base:System
do not run profiling in parallel to make package build reproducible (boo#1040589)

also requires -fno-profile-values to avoid ~3 differing bits

OBS-URL: https://build.opensuse.org/request/show/647618
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=89
2018-11-12 08:14:47 +00:00
44e97b2190 Accepting request 627810 from Base:System
- remove-backref-alt-test.patch: Remove backref-alt test which fails or
  not depending on glibc version (forwarded request 627809 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/627810
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=67
2018-08-28 07:17:56 +00:00
c16b5ef5c8 Accepting request 627809 from home:Andreas_Schwab:Factory
- remove-backref-alt-test.patch: Remove backref-alt test which fails or
  not depending on glibc version

OBS-URL: https://build.opensuse.org/request/show/627809
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=87
2018-08-07 07:30:15 +00:00
f8d737b760 Accepting request 580141 from Base:System
Use %license (boo#1082318). Please forward to SLE, if possible (forwarded request 580090 from favogt)

OBS-URL: https://build.opensuse.org/request/show/580141
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=66
2018-02-28 18:54:56 +00:00
3aebc07ff2 Accepting request 580090 from home:favogt:licensetag
Use %license (boo#1082318). Please forward to SLE, if possible

OBS-URL: https://build.opensuse.org/request/show/580090
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=85
2018-02-26 09:37:58 +00:00
d115d359af Accepting request 507734 from Base:System
- Update to grep 3.1
  * grep '[0-9]' is now just as fast as grep '[[:digit:]]' when run
    in a multi-byte locale
  * Context no longer excludes selected lines omitted because of -m (forwarded request 507733 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/507734
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=65
2017-07-10 09:00:16 +00:00
9ddff5d97e Accepting request 507733 from home:Andreas_Schwab:Factory
- Update to grep 3.1
  * grep '[0-9]' is now just as fast as grep '[[:digit:]]' when run
    in a multi-byte locale
  * Context no longer excludes selected lines omitted because of -m

OBS-URL: https://build.opensuse.org/request/show/507733
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=83
2017-07-03 08:53:53 +00:00
45e855e6c1 Accepting request 501206 from Base:System
1

OBS-URL: https://build.opensuse.org/request/show/501206
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=64
2017-06-08 14:09:38 +00:00
bf6fd4341d Accepting request 500479 from home:pluskalm:branches:Base:System
- Use https url's
- Drop no longer needed explicit pie
- Enable profiled build

OBS-URL: https://build.opensuse.org/request/show/500479
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=81
2017-06-05 18:55:41 +00:00
fd39693673 Accepting request 456801 from Base:System
1

OBS-URL: https://build.opensuse.org/request/show/456801
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=63
2017-03-05 16:47:43 +00:00
7bdb31fdca Accepting request 456376 from home:pluskalm:branches:Base:System
- Update to version 3.0:
  * grep without -F no longer goes awry when given two or more
    patterns that contain no special characters other than '\' and
    also contain a subpattern like '\.' that escapes a character to
    make it ordinary.
  * grep no longer fails to build on PCRE versions before 8.20.
- Cleanup spec file:
  * Drop support for old distributions
  * Create lang subpackage
  * Use fdupes to replace duplicate files with symlinks

OBS-URL: https://build.opensuse.org/request/show/456376
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=79
2017-02-13 12:43:49 +00:00
deb19a66b1 Accepting request 455468 from Base:System
- Update to version 2.28:
  * Improve performance for -E or -G pattern lists that are easily
    converted to -F format.
  * Fix performance regression with multiple patterns.
  * When standard output is /dev/null, grep no longer fails when 
    standard input is a file in the Linux /proc file system, or when
    standard input is a pipe and standard output is in append mode.
  * When grep -Fo finds matches of differing length, it could
    mistakenly print a shorter one.  Now it prints a longest one.
- Drop upstreamed proc-lseek-glitch.patch (forwarded request 455466 from pluskalm)

OBS-URL: https://build.opensuse.org/request/show/455468
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=62
2017-02-12 23:25:32 +00:00
58a5d7a714 Accepting request 455466 from home:pluskalm:branches:Base:System
- Update to version 2.28:
  * Improve performance for -E or -G pattern lists that are easily
    converted to -F format.
  * Fix performance regression with multiple patterns.
  * When standard output is /dev/null, grep no longer fails when 
    standard input is a file in the Linux /proc file system, or when
    standard input is a pipe and standard output is in append mode.
  * When grep -Fo finds matches of differing length, it could
    mistakenly print a shorter one.  Now it prints a longest one.
- Drop upstreamed proc-lseek-glitch.patch

OBS-URL: https://build.opensuse.org/request/show/455466
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=77
2017-02-08 10:29:11 +00:00
bcce3640c9 Accepting request 445549 from Base:System
- testsuite.patch: remove
- proc-lseek-glitch.patch: work around proc lseek glitch (forwarded request 445548 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/445549
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=61
2016-12-17 08:45:55 +00:00
35010bcd20 Accepting request 445548 from home:Andreas_Schwab:Factory
- testsuite.patch: remove
- proc-lseek-glitch.patch: work around proc lseek glitch

OBS-URL: https://build.opensuse.org/request/show/445548
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=75
2016-12-13 09:12:40 +00:00
ab25972494 Accepting request 444686 from Base:System
- Update to grep 2.27
  * grep no longer reports a false match in a multibyte, non-UTF8 locale
    like zh_CN.gb18030, with a regular expression like ".*7" that just
    happens to match the 4-byte representation of gb18030's \uC9, the
    final byte of which is the digit "7".
  * grep by default now reads all of standard input if it is a pipe,
    even if this cannot affect grep's output or exit status.
  * grep no longer mishandles ranges in nontrivial unibyte locales.
  * grep -P no longer attempts multiline matches.
  * grep -m0 -L PAT FILE now outputs "FILE".
  * To output ':' and tab-align the following character C, grep -T no
    longer outputs tab-backspace-':'-C, an approach that has problems if
    run inside an Emacs shell window.
  * grep -T now uses worst-case widths of line numbers and byte offsets
    instead of guessing widths that might not work with larger files.
  * grep no longer reads the input in a few more cases when it is easy to
    see that matching cannot succeed, e.g., 'grep -f /dev/null'. (forwarded request 444685 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/444686
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=60
2016-12-09 08:30:19 +00:00
234f2ddb7d Accepting request 444685 from home:Andreas_Schwab:Factory
- Update to grep 2.27
  * grep no longer reports a false match in a multibyte, non-UTF8 locale
    like zh_CN.gb18030, with a regular expression like ".*7" that just
    happens to match the 4-byte representation of gb18030's \uC9, the
    final byte of which is the digit "7".
  * grep by default now reads all of standard input if it is a pipe,
    even if this cannot affect grep's output or exit status.
  * grep no longer mishandles ranges in nontrivial unibyte locales.
  * grep -P no longer attempts multiline matches.
  * grep -m0 -L PAT FILE now outputs "FILE".
  * To output ':' and tab-align the following character C, grep -T no
    longer outputs tab-backspace-':'-C, an approach that has problems if
    run inside an Emacs shell window.
  * grep -T now uses worst-case widths of line numbers and byte offsets
    instead of guessing widths that might not work with larger files.
  * grep no longer reads the input in a few more cases when it is easy to
    see that matching cannot succeed, e.g., 'grep -f /dev/null'.

OBS-URL: https://build.opensuse.org/request/show/444685
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=73
2016-12-07 14:52:36 +00:00
76736cbdde Accepting request 437648 from Base:System
1

OBS-URL: https://build.opensuse.org/request/show/437648
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=59
2016-11-03 10:12:22 +00:00
74a16347ac 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
2016-10-28 13:08:56 +00:00
c73c4a355d Accepting request 392948 from Base:System
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/392948
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=58
2016-04-30 21:22:53 +00:00
ac3ff8c41b Accepting request 391328 from home:AndreasStieger:branches:Base:System
grep 2.25, fixing the binary matching issues

OBS-URL: https://build.opensuse.org/request/show/391328
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=69
2016-04-22 19:04:16 +00:00
c28a39f12c Accepting request 369903 from home:pluskalm:branches:Base:System
- Update to 2.24

OBS-URL: https://build.opensuse.org/request/show/369903
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=68
2016-03-11 09:44:11 +00:00
d5daf2ac7b Accepting request 357841 from home:pluskalm:branches:Base:System
- Update to 2.23
- Update info handling scriplets

OBS-URL: https://build.opensuse.org/request/show/357841
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=67
2016-02-05 20:31:40 +00:00
55ceba1040 Accepting request 346405 from Base:System
- testsuite.patch: also disable long-pattern-perf test (forwarded request 346404 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/346405
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=57
2015-12-03 12:24:56 +00:00
085bd321a0 Accepting request 346404 from home:Andreas_Schwab:Factory
- testsuite.patch: also disable long-pattern-perf test

OBS-URL: https://build.opensuse.org/request/show/346404
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=65
2015-11-26 17:17:05 +00:00
af36529693 Accepting request 342256 from Base:System
- testsuite.patch: disable unreliable test mb-non-UTF8-performance (forwarded request 342255 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/342256
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=56
2015-11-08 13:34:53 +00:00
47fc1f9776 Accepting request 342255 from home:Andreas_Schwab:Factory
- testsuite.patch: disable unreliable test mb-non-UTF8-performance

OBS-URL: https://build.opensuse.org/request/show/342255
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=63
2015-11-03 13:51:34 +00:00
1d22e4af0e Accepting request 342139 from home:AndreasStieger:branches:Base:System
GNU grep 2.22

OBS-URL: https://build.opensuse.org/request/show/342139
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=62
2015-11-03 13:41:47 +00:00
Stephan Kulow
65ca097c01 Accepting request 315188 from Base:System
- add gnulib-perl522.patch from gnulib.bugs (forwarded request 315187 from coolo)

OBS-URL: https://build.opensuse.org/request/show/315188
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=55
2015-07-21 11:23:56 +00:00
8e2acdccba Accepting request 315187 from home:coolo:branches:openSUSE:Factory
- add gnulib-perl522.patch from gnulib.bugs

OBS-URL: https://build.opensuse.org/request/show/315187
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=60
2015-07-06 10:18:30 +00:00
7e4f519036 Accepting request 282841 from Base:System
- grep-F-heap-overrun.patch: fix heap overrun with grep -F (CVE-2015-1345,
  bsc#914695) (forwarded request 282840 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/282841
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=54
2015-02-08 10:41:14 +00:00
0bfdea05de Accepting request 282840 from home:Andreas_Schwab:Factory
- grep-F-heap-overrun.patch: fix heap overrun with grep -F (CVE-2015-1345,
  bsc#914695)

OBS-URL: https://build.opensuse.org/request/show/282840
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=58
2015-01-26 11:36:14 +00:00
66105b9b52 Accepting request 280868 from Base:System
- Fix last change (forwarded request 280867 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/280868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=53
2015-01-20 20:54:05 +00:00
2d8fa17deb Accepting request 280867 from home:Andreas_Schwab:Factory
- Fix last change

OBS-URL: https://build.opensuse.org/request/show/280867
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=56
2015-01-12 09:32:24 +00:00
2692e2ada9 Accepting request 266917 from Base:System
1

OBS-URL: https://build.opensuse.org/request/show/266917
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=52
2015-01-08 22:00:54 +00:00
ec3a6d2227 Accepting request 266854 from home:msmeissn:branches:Base:System
- build with PIE enabled

OBS-URL: https://build.opensuse.org/request/show/266854
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=54
2014-12-31 14:00:22 +00:00
e7ad208b7d Accepting request 263355 from Base:System
1

OBS-URL: https://build.opensuse.org/request/show/263355
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=51
2014-12-01 13:00:31 +00:00
0d74e719d8 Accepting request 263354 from home:AndreasStieger:branches:Base:System
GNU grep 2.21

OBS-URL: https://build.opensuse.org/request/show/263354
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=52
2014-11-28 16:17:42 +00:00
Stephan Kulow
c1afbcad33 Accepting request 236537 from Base:System
1

OBS-URL: https://build.opensuse.org/request/show/236537
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=49
2014-06-18 20:04:34 +00:00
33f05ff394 Accepting request 236536 from home:AndreasStieger:branches:Base:System
GNU grep 2.20

OBS-URL: https://build.opensuse.org/request/show/236536
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=50
2014-06-07 20:45:42 +00:00
Stephan Kulow
e9a98b4f0c Accepting request 235299 from Base:System
GNU grep 2.19 (forwarded request 235298 from AndreasStieger)

OBS-URL: https://build.opensuse.org/request/show/235299
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=48
2014-05-26 12:39:40 +00:00
6cf01df445 Accepting request 235298 from home:AndreasStieger:branches:Base:System
GNU grep 2.19

OBS-URL: https://build.opensuse.org/request/show/235298
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=48
2014-05-24 17:06:08 +00:00
Stephan Kulow
7328f5de7a Accepting request 227624 from Base:System
- mb-non-UTF8-performance.patch: make performance-measuring less
  system-sensitive (forwarded request 227607 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/227624
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=47
2014-04-06 07:53:57 +00:00
af2cc815a7 Accepting request 227607 from home:Andreas_Schwab:Factory
- mb-non-UTF8-performance.patch: make performance-measuring less
  system-sensitive

OBS-URL: https://build.opensuse.org/request/show/227607
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=46
2014-03-26 18:41:35 +00:00
Stephan Kulow
7431168027 Accepting request 223511 from Base:System
GNU grep 2.18 (forwarded request 223510 from AndreasStieger)

OBS-URL: https://build.opensuse.org/request/show/223511
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=46
2014-02-24 05:52:01 +00:00
Stephan Kulow
e6941a8946 Accepting request 223510 from home:AndreasStieger:branches:Base:System
GNU grep 2.18

OBS-URL: https://build.opensuse.org/request/show/223510
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=44
2014-02-22 19:40:06 +00:00
Stephan Kulow
db1ee17f5e Accepting request 223042 from Base:System
- update to 2.17 
  * grep -i in a multibyte locale is now typically 10 times faster
    for patterns that do not contain \ or [
  * grep (without -i) in a multibyte locale is now up to 7 times faster
    when processing many matched lines
  * grep's --mmap option was disabled in March of 2010, and began to
    elicit a warning in January of 2012.  Now it is completely gone.
- Reformat spec file using hints from spec-cleaner (forwarded request 223015 from mvyskocil)

OBS-URL: https://build.opensuse.org/request/show/223042
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=45
2014-02-20 17:12:24 +00:00
7d179c3ddc Accepting request 223015 from home:mvyskocil:branches:Base:System
- update to 2.17 
  * grep -i in a multibyte locale is now typically 10 times faster
    for patterns that do not contain \ or [
  * grep (without -i) in a multibyte locale is now up to 7 times faster
    when processing many matched lines
  * grep's --mmap option was disabled in March of 2010, and began to
    elicit a warning in January of 2012.  Now it is completely gone.
- Reformat spec file using hints from spec-cleaner

OBS-URL: https://build.opensuse.org/request/show/223015
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=42
2014-02-19 12:44:11 +00:00
Stephan Kulow
23add5de19 Accepting request 212873 from Base:System
GNU grep 2.16 (forwarded request 212857 from AndreasStieger)

OBS-URL: https://build.opensuse.org/request/show/212873
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=44
2014-01-07 05:53:36 +00:00
Stephan Kulow
5aae1c48e1 Accepting request 212857 from home:AndreasStieger:branches:Base:System
GNU grep 2.16

OBS-URL: https://build.opensuse.org/request/show/212857
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=40
2014-01-05 19:47:13 +00:00
Stephan Kulow
ca5645c675 Accepting request 212137 from Base:System
- don't drag texlive into bootstrap cycle - makeinfo is enough

OBS-URL: https://build.opensuse.org/request/show/212137
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=43
2013-12-24 08:34:36 +00:00
Stephan Kulow
e4f1608119 - don't drag texlive into bootstrap cycle - makeinfo is enough
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=38
2013-12-23 21:17:45 +00:00
Stephan Kulow
64978765d0 Accepting request 212042 from Base:System
The "gnulib" package contains a number of floating-point test cases
that do not work correctly with the PowerPC long double ("double double")
format.  These tests "accidentally" succeeded anyway in the big-endian
variant, but are now actually failing in little-endian mode.

As is usual for gnulib, those tests end up copied into the source code
of various packages that use gnulib, including coreutils, findutils,
grep, and libunistring.

A patch to fix the tests for ppc64le has been submitted to upstream
to the bug-gnulib mailing list.  We'll work with upstream of the
other affected packages to make sure the copies are refreshed.

- grep-gnulib-ppc64le.patch: Fix imported gnulib long double math
  tests for little-endian PowerPC. (forwarded request 211831 from uweigand)

OBS-URL: https://build.opensuse.org/request/show/212042
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=40
2013-12-23 18:36:53 +00:00
923a5384a0 Accepting request 211831 from openSUSE:Factory:PowerLE
The "gnulib" package contains a number of floating-point test cases
that do not work correctly with the PowerPC long double ("double double")
format.  These tests "accidentally" succeeded anyway in the big-endian
variant, but are now actually failing in little-endian mode.

As is usual for gnulib, those tests end up copied into the source code
of various packages that use gnulib, including coreutils, findutils,
grep, and libunistring.

A patch to fix the tests for ppc64le has been submitted to upstream
to the bug-gnulib mailing list.  We'll work with upstream of the
other affected packages to make sure the copies are refreshed.

- grep-gnulib-ppc64le.patch: Fix imported gnulib long double math
  tests for little-endian PowerPC.

OBS-URL: https://build.opensuse.org/request/show/211831
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=36
2013-12-22 21:33:10 +00:00
Stephan Kulow
60bfadcad8 Accepting request 211672 from Base:System
Update to 2.15 (joined with SR#206801) (forwarded request 210610 from AndreasStieger)

OBS-URL: https://build.opensuse.org/request/show/211672
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=39
2013-12-19 12:33:08 +00:00
78dd48e433 Accepting request 210610 from home:AndreasStieger:branches:Base:System
Update to 2.15 (joined with SR#206801)

OBS-URL: https://build.opensuse.org/request/show/210610
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=34
2013-12-19 10:06:49 +00:00
Stephan Kulow
4947fb6dab Accepting request 161421 from Base:System
- Added url as source.
  Please see http://en.opensuse.org/SourceUrls (forwarded request 161404 from m_meister)

OBS-URL: https://build.opensuse.org/request/show/161421
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=37
2013-03-27 18:25:43 +00:00
51a988006a Accepting request 161404 from home:m_meister:branches:openSUSE:Factory
- Added url as source.
  Please see http://en.opensuse.org/SourceUrls

OBS-URL: https://build.opensuse.org/request/show/161404
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=32
2013-03-27 14:02:13 +00:00
Ismail Dönmez
9120b1c7c4 Accepting request 133898 from Base:System
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/133898
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=35
2012-09-14 10:25:48 +00:00
Philipp Thomas
ef325ae301 - Update to 2.14:
Bug fixes:
  * grep -i '^$' could exit 0 (i.e., report a match) in a multi-byte
    locale, even though there was no match, and the command generated
    no output.  E.g., seq 2 | LC_ALL=en_US.utf8 grep -il '^$' would
    mistakenly print "(standard input)".  Related, seq 9 |
    LC_ALL=en_US.utf8 grep -in '^$' would print "2:4:6:8:10:12:14:16"
    and exit 0.  Now it prints nothing and exits with status of 1. 
    [bug introduced in grep-2.6]
  * 'grep' no longer falsely reports text files as being binary on
    file systems that compress contents or that store tiny contents
    in metadata.
- Add current German message catalog from the translation project.

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=30
2012-08-24 18:47:51 +00:00
Stephan Kulow
008ae10840 Accepting request 127195 from Base:System
Version upgrade to grep-2.13 that fixes Turkish I-with-dot/i-without-dot issues in UTF-8 locale (forwarded request 127180 from jsmeix)

OBS-URL: https://build.opensuse.org/request/show/127195
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=34
2012-07-09 05:57:39 +00:00
60b72d06e4 Accepting request 127180 from home:jsmeix:branches:Base:System
Version upgrade to grep-2.13 that fixes Turkish I-with-dot/i-without-dot issues in UTF-8 locale

OBS-URL: https://build.opensuse.org/request/show/127180
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=28
2012-07-05 13:46:46 +00:00
Stephan Kulow
500c625f7a Accepting request 121746 from Base:System
update to 2.12 (forwarded request 121718 from tabraham1)

OBS-URL: https://build.opensuse.org/request/show/121746
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=32
2012-05-25 15:33:05 +00:00
Stephan Kulow
9db86fc1fe Accepting request 121718 from home:tabraham1:branches:Base:System
update to 2.12

OBS-URL: https://build.opensuse.org/request/show/121718
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=26
2012-05-22 09:42:25 +00:00
Stephan Kulow
e984d21b30 Accepting request 114760 from Base:System
fix ppc build (forwarded request 114736 from msmeissn)

OBS-URL: https://build.opensuse.org/request/show/114760
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=31
2012-04-20 13:16:52 +00:00
Stephan Kulow
fe59e98971 Accepting request 114736 from home:msmeissn:branches:Base:System
fix ppc build

OBS-URL: https://build.opensuse.org/request/show/114736
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=24
2012-04-20 04:49:24 +00:00
Stephan Kulow
fac8dd3e47 Accepting request 109246 from Base:System
update to 2.11 (forwarded request 109178 from tabraham1)

OBS-URL: https://build.opensuse.org/request/show/109246
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=30
2012-03-16 12:15:41 +00:00
Stephan Kulow
675c8879e8 Accepting request 109178 from home:tabraham1:branches:Base:System
update to 2.11

OBS-URL: https://build.opensuse.org/request/show/109178
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=22
2012-03-14 10:21:46 +00:00
Stephan Kulow
2ec010886d Accepting request 102997 from Base:System
usrMerge project - move files from toplevel to /usr (forwarded request 102725 from rjschwei)

OBS-URL: https://build.opensuse.org/request/show/102997
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=29
2012-02-07 13:45:44 +00:00
878ebfbf59 Accepting request 102725 from home:rjschwei:branches:Base:System
usrMerge project - move files from toplevel to /usr

OBS-URL: https://build.opensuse.org/request/show/102725
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=20
2012-02-07 10:09:11 +00:00
Stephan Kulow
395bc29246 Accepting request 94989 from Base:System
license update: GPL-3.0+
There are no GPL-3.0 files in the package. (forwarded request 94973 from babelworx)

OBS-URL: https://build.opensuse.org/request/show/94989
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=27
2011-12-05 19:33:07 +00:00
Stephan Kulow
caec96c698 Accepting request 94973 from home:babelworx:ldig:branches:Base:System
license update: GPL-3.0+
There are no GPL-3.0 files in the package.

OBS-URL: https://build.opensuse.org/request/show/94973
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=18
2011-12-02 12:12:00 +00:00
Stephan Kulow
0d2bcc9262 Accepting request 94738 from home:coolo:removeautomake
add automake to buildrequires

OBS-URL: https://build.opensuse.org/request/show/94738
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=17
2011-12-01 15:53:45 +00:00
Stephan Kulow
24c804265a Accepting request 89748 from Base:System
fixed ppc build (forwarded request 89734 from msmeissn)

OBS-URL: https://build.opensuse.org/request/show/89748
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=26
2011-10-30 13:42:10 +00:00
Cristian Rodríguez
23a194b2c8 Accepting request 89734 from home:msmeissn:branches:Base:System
fixed ppc build

OBS-URL: https://build.opensuse.org/request/show/89734
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=15
2011-10-29 18:54:23 +00:00
Lars Vogdt
db8bd70942 Accepting request 86037 from Base:System
- fix testsuite to build properly against locally built grep

OBS-URL: https://build.opensuse.org/request/show/86037
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=24
2011-10-03 07:20:05 +00:00
cae5da8ad4 Accepting request 85060 from home:dirkmueller:branches:Base:System
- fix testsuite to build properly against locally built grep

OBS-URL: https://build.opensuse.org/request/show/85060
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=13
2011-09-27 10:43:28 +00:00
Sascha Peilicke
3bdc279dc2 Autobuild autoformatter for 78439
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=23
2011-08-11 08:08:30 +00:00
OBS User buildservice-autocommit
62cf53a846 Updating link to change in openSUSE:Factory/grep revision 23.0
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=980bf551012ec03c09a1f4e26fd0d449
2011-08-11 08:08:30 +00:00
Sascha Peilicke
0a98d7b4a0 Accepting request 78439 from Base:System
- Upgrade to version 2.9 
* grep no longer clobbers heap for an ERE like '(^| )*( |$)'' )'
* grep -P no longer aborts when PCRE's backtracking limit is exceeded
* grep's interpretation of range expression is now more consistent (forwarded request 78414 from elvigia)

OBS-URL: https://build.opensuse.org/request/show/78439
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=22
2011-08-11 08:08:22 +00:00
c80f2e2b77 Accepting request 78414 from home:elvigia:branches:Base:System
- Upgrade to version 2.9 
* grep no longer clobbers heap for an ERE like '(^| )*( |$)'' )'
* grep -P no longer aborts when PCRE's backtracking limit is exceeded
* grep's interpretation of range expression is now more consistent

OBS-URL: https://build.opensuse.org/request/show/78414
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=11
2011-08-10 09:57:16 +00:00
OBS User autobuild
8695883102 Accepting request 49040 from Base:System
Copy from Base:System/grep based on submit request 49040 from user jsmeix

OBS-URL: https://build.opensuse.org/request/show/49040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=20
2010-09-26 22:36:44 +00:00
OBS User autobuild
47cebbd200 Accepting request 49040 from Base:System
checked in (request 49040)

OBS-URL: https://build.opensuse.org/request/show/49040
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=10
2010-09-26 22:36:43 +00:00
3b88b61d0c Accepting request 49038 from home:jsmeix:branches:Base:System
Fixed --without-included-rege (missing x at the end) typo in the spec file

OBS-URL: https://build.opensuse.org/request/show/49038
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=9
2010-09-24 12:55:39 +00:00
OBS User autobuild
a517511ed0 Accepting request 48993 from Base:System
Copy from Base:System/grep based on submit request 48993 from user jsmeix

OBS-URL: https://build.opensuse.org/request/show/48993
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=19
2010-09-23 21:58:18 +00:00
OBS User buildservice-autocommit
4dd29ab60e Updating link to change in openSUSE:Factory/grep revision 19.0
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=53f4dea82ac8e2b55f22fc9a92d6109d
2010-09-23 21:58:18 +00:00
OBS User autobuild
1edc3f9f46 Accepting request 48993 from Base:System
checked in (request 48993)

OBS-URL: https://build.opensuse.org/request/show/48993
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=8
2010-09-23 21:58:16 +00:00
1fd6c0c375 Accepting request 48968 from home:jsmeix:branches:Base:System
OBS-URL: https://build.opensuse.org/request/show/48968
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=7
2010-09-23 14:42:19 +00:00
OBS User autobuild
5e7a038201 Accepting request 43849 from Base:System
Copy from Base:System/grep based on submit request 43849 from user jsmeix

OBS-URL: https://build.opensuse.org/request/show/43849
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=18
2010-07-23 15:17:36 +00:00
OBS User autobuild
2a0a7cfe60 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=15 2010-03-18 14:51:10 +00:00
OBS User unknown
c1df53f438 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=13 2009-06-12 15:32:35 +00:00
OBS User unknown
38e83c5257 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=12 2009-06-05 20:56:59 +00:00
OBS User unknown
0debf6ea62 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=11 2009-02-12 15:07:35 +00:00
OBS User unknown
0495f5fb58 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=10 2008-08-21 15:53:30 +00:00
OBS User unknown
fc2d1d0edd OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=9 2008-06-03 14:13:39 +00:00
OBS User unknown
5b8d935d00 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=8 2008-05-29 13:20:52 +00:00
OBS User unknown
f30f3390a6 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=7 2008-02-15 00:20:59 +00:00
OBS User unknown
f78702e37a OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=6 2007-11-28 22:12:05 +00:00
OBS User unknown
67cc99e155 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=5 2007-10-02 22:55:33 +00:00
OBS User unknown
47b8536896 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=4 2007-05-17 09:38:38 +00:00
OBS User unknown
9c56d9d307 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=3 2007-05-07 16:12:46 +00:00
OBS User unknown
1bbe85cdec OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=2 2007-03-22 19:43:58 +00:00
OBS User unknown
67fe50d745 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grep?expand=0&rev=1 2006-12-18 23:16:42 +00:00
3 changed files with 0 additions and 28 deletions

View File

@@ -1,9 +0,0 @@
Index: grep-3.8/src/egrep.sh
===================================================================
--- grep-3.8.orig/src/egrep.sh
+++ grep-3.8/src/egrep.sh
@@ -1,4 +1,2 @@
#!@SHELL@
-cmd=${0##*/}
-echo "$cmd: warning: $cmd is obsolescent; using @grep@ @option@" >&2
exec @grep@ @option@ "$@"

BIN
grep-3.11.tar.xz (Stored with Git LFS)

Binary file not shown.

View File

@@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEFV0/xQDINEhtHupnf9n8ywAL7u4FAmRfTKwACgkQf9n8ywAL
7u6GLhAAlhO11xMM5IG9VbQoT3Qa3i+T3f6r34N7LWUMDJE2WUJojujuQ7Ac78fU
mxm0Z+t6+vaJzrmNtnotmhg2LK7rWVnase64o0t0GB3/gZumJlSHL0jQzKvaKoGz
vwE4yfRRN5uM284Xmb/k8EyamG+3oyoxWk/Ml13vouEPxPbu0Oe2vlChl8tL0g/W
Wi4x8ue32ZipBse0QyE3l/fxnOQ8MCwVqzVr+psGIa6vmSMhkuDfEprTAfZLVRbN
AzsZrZ1BEtlTzitTMxWejTwI/4Eq2FguAJXgEESaPBHhX+XRC3ArXNtycTcWmqB1
wNwDLz3bpzns0g24WJ3B8ahY0IxzXfbqkUEy4MNVClsz4+iLUlbQIB48AZbKL9Bo
PhmsJoxDFI7D2Cam2a6iK6aprtFOal+gTRqPmdvqCgxShvZxgndASD0SKc+0CAik
FkNz12NDp5hYZDSUO+uSiTKaVzlYCKqLnPg0CVw++u2H+QsP5BgqJr3tkc5PwXmX
TfwFWTx4h2xasoBe4RzFw4RMRejtDVaNUSAoSj6FhHcW7NYYJeURZb/0FpAwWov1
otjDCU0NzpraAB/xk79uwPxp8InfEM6GYPlEi2hkPQBT0HZY1MZYaIzW0h9lLxlU
vr8Dvr9uUlNIHse7mWc1zm1dFwOjWwCmg6Lfaj8DebAvEHI5gNQ=
=9t3y
-----END PGP SIGNATURE-----