1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
|
grep (3.6-1+deb11u1) bullseye; urgency=medium
* Fix sometimes mistakenly matches lines when last of multiple patterns
includes backref (Closes: #1029235)
* debian/salsa-ci.yml set RELEASE: bullseye
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 25 Jan 2023 09:23:20 +0100
grep (3.6-1) unstable; urgency=low
[ Debian Janitor ]
* Use secure URI in Homepage field.
* Bump debhelper from old 9 to 10.
* Set upstream metadata fields: Bug-Submit (from ./configure),
Repository.
* Set upstream metadata fields: Repository, Repository-Browse.
[ Santiago Ruano Rincón ]
* New upstream version 3.6
* update debian/gbp.conf
* Add debian/NEWS to document that GREP_OPTIONS no longer affects grep's
behaviour
* Use https in the debian/watch URL
* Remove Build-Deps on autotools-dev and dh-autoreconf. debhelper=10 enables
them by default
* Add Description: to d/patches/02-man_rgrep.patch
* Remove extra signatures in d/upstream/signing-key.asc
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 09 Nov 2020 21:37:02 +0100
grep (3.4-1) unstable; urgency=low
* New upstream version 3.4
* Include debian/salsa-ci.yml
* Bump Standards-Version to 4.5.0
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 29 Jan 2020 10:31:53 +0100
grep (3.3-1) unstable; urgency=low
* New upstream version 3.3.
- New upstream release brings performance improvements to some
situations. (Closes: #917127)
* Remove upstream patches now included in new release.
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 07 Jan 2019 12:04:36 -0300
grep (3.1-3) unstable; urgency=low
[ Santiago Ruano Rincón ]
* Add upstream-532541-doc-improve-o-help.patch: Improve help about -o.
(Closes: #532541)
* Remove debian/patches/03-397262-dlopen-pcre.patch: dlopen libpcre.so.3 has
been actually wrongly applied and not really used. This patch does not
make sense any more (since stretch), since late-mounting of /usr is not
longer supported. (Closes: #907651)
* Add upstream-915206-0001-tests-backref-alt-works-with-glibc-2.28.patch.
Fix FTBFS with glibc 2.28. (Closes: #915206)
* d/source/options: remove compression = "bzip2", let dpkg-deb select
suitable defaults.
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field
* d/control: Remove Testsuite field, not needed anymore
* d/changelog: Remove trailing whitespaces
* d/rules: Remove trailing whitespaces
* d/control: Set Vcs-* to salsa.debian.org
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 02 Dec 2018 18:58:48 +0100
grep (3.1-2) unstable; urgency=low
* Replace 90-submitted-grep-man-Dt-updated.patch with
90-upstream-doc-define-Dt-string-in-man-page.patch (Closes: #868133)
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 12 Jul 2017 12:59:03 +0200
grep (3.1-1) unstable; urgency=low
* New upstream version 3.1
* Remove no longer needed debian/patches/81-356120-document-multiple-e.patch
* doc/grep.in.1: Fix undefined `Dt' macro. Add
debian/patches/90-submitted-grep-man-Dt-updated.patch (Closes: #863437)
* Bump Standards-Version to 4.0.0
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 11 Jul 2017 16:25:21 +0200
grep (3.0-1) experimental; urgency=low
* New upstream version 3.0
* Remove no longer needed upstream patches:
- upstream-grep-simplify-finalize_input.patch
- upstream-grep-work-around-proc-lseek-glitch.patch
- upstream-grep-fix-bug-dev-null-output.patch
- upstream-clarify-early-exit-news-for-2.27.patch
- upstream-grep-Fo-could-report-a-match-that-is-not-the-longest.patch
* Refresh 03-397262-dlopen-pcre.patch
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 16 May 2017 11:27:45 +0200
grep (2.27-2) unstable; urgency=low
* Upstream patches to solve issues when standard input is a file in Linux
/proc file system and standard output is /dev/null:
- upstream-grep-simplify-finalize_input.patch
- upstream-grep-work-around-proc-lseek-glitch.patch
- upstream-grep-fix-bug-dev-null-output.patch
* Minor upstream patch to clarify in NEWS the new early-exit
options.
upstream-clarify-early-exit-news-for-2.27.patch
* When grep -Fo finds matches of differing length, it could
mistakenly print a shorter one. Import the patch to fix it:
upstream-grep-Fo-could-report-a-match-that-is-not-the-longest.patch
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 23 Jan 2017 19:18:59 +0100
grep (2.27-1) unstable; urgency=low
* New upstream release.
* Improve documentation on context and matching lines. (Closes: #831673).
* Fix non-deterministic behavior when output redirected to /dev/null
(Closes: #844286).
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 07 Dec 2016 17:31:23 +0100
grep (2.26-1) unstable; urgency=low
* New upstraem release.
* Fix diagnosing errors in regexps provided through -f (Closes: #525214).
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 03 Oct 2016 06:44:16 +0200
grep (2.25-6) unstable; urgency=medium
* debian/tests:
- Remove no-pcre3 test: not possible to run it on available testbeds(?).
- Add @builddeps@ to fix test dependencies.
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 03 Jul 2016 21:07:38 +0200
grep (2.25-5) unstable; urgency=medium
* Add debian/tests/upstream-test-suite-no-pcre3: run tests also under
unavailable pcre3.
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 02 Jul 2016 14:59:28 +0200
grep (2.25-4) unstable; urgency=medium
* Remove deprecated cdbs patchsys-quilt (Closes: #825984)
* Remove not actually needed.
debian/tests/patches/01-test-Makefile-remove-PATH.patch.
* debian/tests/{control,upstream-test-suite}: Depends on locales-all instead
of trying to generate locale specific files.
-- Santiago Ruano Rincón <santiago@debian.org> Thu, 02 Jun 2016 11:03:01 +0200
grep (2.25-3) unstable; urgency=medium
* Add Build-Deps on quilt to make lintian happy
* Bump Standards-Version to 3.9.8
* Use Vcs-* secure links
* Bump debian/compat to 9
* Update debhelper (>= 9)
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 31 May 2016 19:41:32 +0200
grep (2.25-2) unstable; urgency=medium
* Add debian/patches/upstream-90-language-test-suite.patch
* Changes to enable first autopkgtest test:
- debian/control: Add Testsuite: stanza
- debian/rules: Include cdbs patchsys-quilt.
Disable check-expensive. At least for the moment, let's use
non-expensive checks.
- debian/tests/upstream-test-suite: Try building binary packages.
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 31 May 2016 16:55:00 +0200
grep (2.25-1) unstable; urgency=medium
* New upstream release.
- Treat all characters as valid in C or POSIX locales. Closes: #800670.
* Remove 80-587930-man-ere-reference.patch
* Update 81-356120-document-multiple-e.patch
-- Santiago Ruano Rincón <santiago@debian.org> Fri, 22 Apr 2016 11:24:39 +0200
grep (2.24-1) unstable; urgency=medium
* New upstream release.
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 12 Mar 2016 12:21:28 +0100
grep (2.23.7~9e28-1) experimental; urgency=medium
* debian/rules: set DEB_MAKE_CHECK_TARGET to run expensive tests on amd64
and i386 only, and cheap tests on any other architecture.
* Add 81-356120-document-multiple-e.patch to clarify information about
multiple -e and -f options. Closes: #356120.
* Updated 80-587930-man-ere-reference.patch to modify grep.texi.
-- Santiago Ruano Rincón <santiago@debian.org> Fri, 04 Mar 2016 21:14:58 +0100
grep (2.23-1) unstable; urgency=low
* New upstream release.
* Fix grep --exclude no longer works against arguments with a directory
name. Closes: #807641.
* Fix grep treats ISO-8859 text files as binary. Closes: #799956.
* Remove no longer needed 85-412370-F-x-documentation.patch.
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 15 Feb 2016 23:22:58 +0100
grep (2.22-1) unstable; urgency=low
* New upstream release
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 09 Nov 2015 14:31:36 +0100
grep (2.21-2) unstable; urgency=low
* 80-587930-man-ere-reference.patch: Fix typo in man page (Closes: #779728).
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 16 May 2015 11:20:32 +0200
grep (2.20-4.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* Fix CVE-2015-1345: buffer overrun in src/kwset.c (closes: #776039).
-- Michael Gilbert <mgilbert@debian.org> Mon, 26 Jan 2015 02:56:14 +0000
grep (2.21-1) experimental; urgency=low
* New upstream release (Uploading to experimental since Jessie is frozen).
* Fix handling of word boundaries in multibyte locales (Closes: #720482).
* Ignore regenerated files by automake via d/source/options. Remove
now obsolete d/patches/90-doc-Makefile-Mostlyclean-files.patch.
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 25 Nov 2014 09:06:46 +0100
grep (2.21~pre-2.20.90-a07a4-2) experimental; urgency=low
* A cleaner d/patches/90-doc-Makefile-Mostlyclean-files.patch replaces
99-autotools-changes.patch. Needed to allow grep build twice in a row.
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 18 Nov 2014 17:55:11 +0100
grep (2.21~pre-2.20.90-a07a4-1) experimental; urgency=low
* New upstream pre-release.
* Remove no longer need patches:
- 70-man_apostrophe.patch
- 04-446854-grep.1.patch
- 0001-build-avoid-Wstack-protector.patch
- 0001-grep-P-invalid-utf8-non-matching-debian.patch
* GREP_OPTIONS is obsolete now. grep warns its use (Closes: #411931).
* Bump Standards-Version to 3.9.6.
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 17 Nov 2014 16:05:53 +0100
grep (2.20-4) unstable; urgency=medium
* d/patches/05-grep-wrapper-sh.patch: egrep and fgrep wrap scripts use sh
instead of bash. The patch also removes the possible call ./grep (looking
for it in the working directory) (Closes: #762427, #762917).
-- Santiago Ruano Rincón <santiago@debian.org> Fri, 03 Oct 2014 12:09:05 +0200
grep (2.20-3) unstable; urgency=high
* d/patches/0001-grep-P-invalid-utf8-non-matching-debian.patch From
upstream: -P now treats invalid UTF-8 characters as non matching.
Thanks to Paul Eggert. (Closes: #758105).
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 10 Sep 2014 13:10:32 +0200
grep (2.20-2) unstable; urgency=low
* Add 85-412370-F-x-documentation.patch to d/patches/series
* d/rules:
- Correct hardening CPPFLAGS. Thanks to Simon Ruderich.
(Closes: #758069)
- Set DEB_MAKE_CHECK_TARGET = check to run make check after build.
-- Santiago Ruano Rincón <santiago@debian.org> Thu, 14 Aug 2014 17:40:36 +0200
grep (2.20-1) unstable; urgency=low
* New upstream release.
* Improve documentation about -F and -x. Thanks to Justin Pryzby.
85-412370-F-x-documentation.patch (Closes: #412370)
* Add d/upstream/signing-key.asc and updated d/watch to verify upstream
signature.
* d/rules: Enable all hardening options. Patch by Markus Waldeck.
* Add 0001-build-avoid-Wstack-protector.patch. See:
http://bugs.gnu.org/17793
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 13 Aug 2014 16:49:29 +0200
grep (2.18-2) unstable; urgency=medium
* Depends on pcre3 >= 1:8.31-3. Since that revision, pcre3 enables to
compile JIT regexes (Closes: 736919)
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 15 Apr 2014 19:40:35 +0200
grep (2.18-1) unstable; urgency=low
* New upstream release
* Move to CDBS. Jointly with included patches, makes grep build twice in a
row (Closes: #736977)
* d/patches/
- 03-397262-dlopen-pcre.patch: removed unneeded changes in configure
- 99-autotools-changes.patch: included modifications made by autotools
-- Santiago Ruano Rincón <santiago@debian.org> Thu, 06 Mar 2014 22:25:25 +0100
grep (2.16-1) unstable; urgency=low
* New upstream release.
* d/patches, Removed not longer needed patches:
- 85-automake-warnings-bc9c23a4350598db4ec04225e1e0194a7b17175d.patch
- 90-729581-multibyte-s.patch
- 91-P-regression-9a9b4c59babc60e15a79cf7db8167d42e68e44b9.patch
- 92-730472-PCRE-no-check-UTF8.patch
* Bump Standards-Version to 3.9.5
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 18 Jan 2014 13:41:31 +0100
grep (2.15-2) unstable; urgency=high
* d/patches/92-730472-PCRE-no-check-UTF8.patch flags PCRE with
PCRE_NO_UTF8_CHECK instead of PCRE_UTF8 to avoid checking if input is
UTF8 valid (Closes: #730472).
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 27 Nov 2013 23:39:35 +0100
grep (2.15-1) unstable; urgency=high
* New upstream release.
* d/patches/
- 85-automake-warnings-bc9c23a4350598db4ec04225e1e0194a7b17175d.patch
"avoid automake deprecation warning re ACLOCAL_AMFLAGS"
- 90-729581-multibyte-s.patch fixes a regresion bug, the \s
was not working on UTF-8 systems. (Closes: #729581)
- 91-P-regression-9a9b4c59babc60e15a79cf7db8167d42e68e44b9.patch
improves handling of PCRE errors and invalid UTF-8 inputs
* Trying autoreconf again: disabling autopoint, autoheader and libtoolize.
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 24 Nov 2013 17:53:03 +0100
grep (2.15~pre-2.14.54-37f7-1) experimental; urgency=low
* New upstream release
* d/control:
- Multi-Arch: foreign (Closes: #726391)
- Removed Build-deps: dh-autoreconf
- Added Build-deps: texinfo
* Updated d/patches/03-397262-dlopen-pcre.patch
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 26 Oct 2013 01:43:19 +0200
grep (2.14-4) unstable; urgency=low
* Making debian/copyright machine-readable, according to the specification
of version 1.0
* d/patches/95-sS-multibyte.patch: Fixes matching of multi-byte white spaces
* debian/rules: using dh_autoreconf tools
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 02 Oct 2013 15:00:06 +0200
grep (2.14-3) unstable; urgency=low
* Updating 80-587930-man-ere-reference.patch to improve documentation
regarding -P (Closes: #203109)
* Correcting a formating issue in grep.in.1. Thanks to David Prévot
(Closes: #692760)
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 11 Aug 2013 18:17:21 +0200
grep (2.14-2) unstable; urgency=low
* Fixing bug in 03-397262-dlopen-pcre.patch: LIB instead of LIBS. Thanks
to Bjarni Ingi Gislason. (Closes: #693917)
-- Santiago Ruano Rincón <santiago@debian.org> Thu, 23 May 2013 11:02:34 +0200
grep (2.14-1) unstable; urgency=low
* [fb48cde] Imported Upstream version 2.14
Merged upstream:
90-672240-exclude.patch
Update man page
Closes: #678652
* Standards Version is 3.9.4
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 08 Nov 2012 13:06:00 +1100
grep (2.12-2) unstable; urgency=low
* Updated debian/watch to match .tar.xz files
* Added 90-672240-exclude.patch so that --exclude excludes again
(Closes: #672240)
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 13 May 2012 14:08:01 +0200
grep (2.12-1) unstable; urgency=low
* New upstream version 2.12
Merged upstream:
82-669084-stdin-exemption.patch
81-668585-excluded_file_name.patch
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 08 May 2012 11:41:50 +1000
grep (2.11-3) unstable; urgency=low
* --devices=ACTION (-D) no longer affects stdin
Add 82-669084-stdin-exemption.patch
Closes: #669084
-- Anibal Monsalve Salazar <anibal@debian.org> Tue, 17 Apr 2012 22:49:08 +1000
grep (2.11-2) unstable; urgency=low
* Don't segfault with -r --exclude-dir and no file operand
Add 81-668585-excluded_file_name.patch
Patch by Allan McRae
Closes: #668585
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 13 Apr 2012 18:29:01 +1000
grep (2.11-1) unstable; urgency=low
* New upstream version 2.11
Closes: #668534
Fix "input file == output file detection and -q"
Closes: #651617
* Enable hardened build flags
Patch by Moritz Muehlenhoff
Closes: #655502
* Drop 55-185208-bigfile.patch as it doesn't work
* Standards Version is 3.9.3
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 13 Apr 2012 09:20:46 +1000
grep (2.10-1) unstable; urgency=low
* New upstream version 2.10
* Fix unneeded-build-dep-on-quilt
* Fix debian-rules-missing-recommended-target
-- Anibal Monsalve Salazar <anibal@debian.org> Sun, 04 Dec 2011 21:17:33 +1100
grep (2.9-2) unstable; urgency=low
* Removed 60-76011-main.c.patch introduced in the last revision. It
introduces a bug and needs further discusion. See:
https://savannah.gnu.org/patch/?7577
-- Santiago Ruano Rincón <santiago@debian.org> Thu, 18 Aug 2011 00:31:57 +0200
grep (2.9-1) unstable; urgency=low
* 60-76011-main.c.patch: `grep -lc' does not show files with no occurrences.
Thanks to Peter Samuelson. (Closes: #76011)
* New upstream release.
- Fixes locales and brackets-related bug (Closes: #624387)
* Updating 80-587930-man-ere-reference.patch to add changes in info page
-- Santiago Ruano Rincón <santiago@debian.org> Wed, 13 Jul 2011 20:02:15 -0400
grep (2.8-2) unstable; urgency=low
* Applying patch to improve reference acronyms in man page. Thanks to
Chris Butler. (Closes: #587930)
* Bump Standars-Version to 3.9.2. No changes needed
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 31 May 2011 19:05:48 +0200
grep (2.8-1) experimental; urgency=low
* New upstream version: 2.8
* Removing, since not longer needed:
- 80-495993-catalan_translation.patch
- 90-dfasearch-hurd.patch
* Really applying 55-185208-bigfile.patch
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 29 May 2011 11:04:28 +0200
grep (2.7-2) experimental; urgency=low
* Adding 90-dfasearch-hurd.patch to avoid error
when compiling on hurd.
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 19 Apr 2011 21:17:27 +0200
grep (2.7-1) experimental; urgency=low
* New upstream version, 2.7
- Updated patches:
03-397262-dlopen-pcre.patch
55-185208-bigfile.patch
80-495993-catalan_translation.patch
- Not longer needed, now included in upstream:
05-kwset.c.patch
06-578709-ignore-MMAP_OPTION.patch
* Merging with Ubuntu:
- Don't pass -ldl in CFLAGS, but in LIBS instead. (Closes: #596266)
- Verbose build by default.
* Bump Standars-Version to 3.9.1, no changes needed
* Vcs-Git and Vcs-Browser fileds included again
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 18 Apr 2011 18:23:03 +0200
grep (2.6.3-3) unstable; urgency=high
* Ignore MMAP_OPTION
Add 06-578709-ignore-MMAP_OPTION.patch
Closes: 578709
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 22 Apr 2010 10:36:48 +1000
grep (2.6.3-2) unstable; urgency=low
* Don't ship /usr/share/info/dir.gz which is created when install-info is
present in the build environment, see
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576620
Closes: 576787
* Make grep not fail to diagnose a failed malloc
Add 05-kwset.c.patch
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 08 Apr 2010 06:26:31 +1000
grep (2.6.3-1) unstable; urgency=low
* New upstream version
Closes: 576315
Fix "seg fault with 'grep -i' on multiple files"
Closes: 510196
Fix "Incorrect matches with grep -w"
Closes: 576155
* Merged upstream:
60-dfa.c-case_fold.patch
61-dfa.c-case_fold-charclass.patch
63-dfa.c-case_fold-range.patch
66-match_icase.patch
69-mbtowc.patch
Rejected upstream:
65-dfa-optional.patch
67-w.patch
Failed patches:
64-egf-speedup.patch
75-dfa_calloc.patch
* Remove 65-dfa-optional.patch and 67-w.patch as upstream rejected them
Fix "fgrep -i does not always match what grep matches"
Closes: 575300
Fix "-x and -w interfere?"
Closes: 429435
* Include debugging symbols
Closes: 440883
* Debian source format is 3.0 (quilt)
* Fix out-of-date-standards-version
* Fix debhelper-but-no-misc-depends
* Fix copyright-refers-to-symlink-license
* fix missing-dependency-on-install-info
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 05 Apr 2010 10:02:23 +1000
grep (2.5.4-4) unstable; urgency=low
* dlopen PCRE so we can have -P; 03-dlopen-pcre.patch by Reuben Thomas
closes: #238237, #318680, #364998, #397262, #441373, #443103
- Remove --disable-perl-regexp as configure parameter
* Suggests libpcre3
* Standards version is 3.8.1
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 25 Mar 2009 12:25:23 +1100
grep (2.5.4-3) unstable; urgency=low
* Updated copyright. The grep.texi removal notice is not longer
needed.
* Adding --without-included-regex to solve problems with glibc-2.9.
Thanks to the Ubuntu team. (Closes: #491158)
* Updated debhelper compat to version 7
-- Santiago Ruano Rincón <santiago@debian.org> Mon, 09 Mar 2009 22:50:47 +0100
grep (2.5.4-2) unstable; urgency=low
* Upload to unstable
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 16 Feb 2009 10:39:12 +1100
grep (2.5.4-1) experimental; urgency=low
* New upstream version
Documentation was re-licensed without the invariant section
Remove 68-no-grep.texi.patch
* Don't build-depend on cdbs
* Build-Depend on autotools-dev and quilt
* Standards version is 3.8.0
* Patches merged upstream:
75-dfa_calloc.patch
* Get mbtowc to look at the character before and after the match to
check if the match is a whole word. Patch by Peter De Wachter.
Add 69-mbtowc.patch. Closes: #446270
* Fix the following lintian issues:
W: grep: ancient-dpkg-predepends-check preinst:5
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 11 Feb 2009 12:30:01 +1100
grep (2.5.3~dfsg-6) unstable; urgency=low
* Corrected Catalan translation. Thanks to Carles Pina i Estany.
(Closes: #495993)
-- Santiago Ruano Rincón <santiago@debian.org> Sun, 31 Aug 2008 17:32:17 +0200
grep (2.5.3~dfsg-5) unstable; urgency=low
* Removed 56-recursive-default.patch, refer to #414168.
Closes: #467625
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 29 Feb 2008 08:58:31 +1100
grep (2.5.3~dfsg-4) unstable; urgency=low
* rgrep: Make . the default when no file or directory names given.
Thanks to Magnus Holmgren <holmgren@lysator.liu.se> (Closes: 414168)
* grep.1: using \(aq instead of '. Thanks to Andrew Moise
<chops@demiurgestudios.com>. (Closes: #226881)
* egrep: using calloc() instead of malloc()
Thanks to Johan Walles <johan.walles@gmail.com> (Closes: #450649)
* Updated watch file.
* Bump Standard-version to 3.7.3. (No changes needed)
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 16 Feb 2008 20:43:55 +0100
grep (2.5.3~dfsg-3) unstable; urgency=high
* Acknowledge NMU. Closes: #181378, #442882, #439931, #368575,
#350206, #432636, #441006, #444164, #429435
* debian/control: added homepage
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 04 Oct 2007 21:01:16 +1000
grep (2.5.3~dfsg-2.1) unstable; urgency=high
* Non-maintainer upload.
* Reinstate patches by Nicolas François <nicolas.francois@centraliens.net>
Closes: #181378, #442882
-- Thomas Viehmann <tv@beamnet.de> Tue, 02 Oct 2007 23:02:35 +0200
grep (2.5.3~dfsg-2) unstable; urgency=low
* Removed 65-dfa-optional.patch. (Closes: #439827, #440195, #440342)
-- Santiago Ruano Rincón <santiago@debian.org> Thu, 06 Sep 2007 00:16:20 -0500
grep (2.5.3~dfsg-1) unstable; urgency=low
* New upstream version (Closes: #433705). Fixes:
- grep --color '^a' colors too much (^a*) (Closes: #294367)
- { echo foo; echo bar; } |grep -o ^. matches every letter
(Closes: #406259)
- grep -A1 -m1 segfaults with multiple line matches (Closes: #411097)
- -o does not work correctly with quantifications (Closes: #293267)
- fgrep -w in 2.5.1 fails when wanted subset follows a superset string
(Closes: #195922)
* Updated copyright to GPLv3
* Removed postinst and prerm. They register and deregister grep.info
which is not shipped (Closes: #336240).
* Removed debian/info (Closes: #362184, #407768).
-- Santiago Ruano Rincón <santiago@debian.org> Sat, 25 Aug 2007 11:11:01 -0500
grep (2.5.1.ds2-6) unstable; urgency=low
* Added watch file. (Closes: #248733)
* grep didn't work with FIFOs, thanks to Bastian Kleineidam
<calvin@users.sourceforge.net> (Closes: #198846)
-- Santiago Ruano Rincón <santiago@debian.org> Tue, 10 Oct 2006 00:41:50 -0500
grep (2.5.1.ds2-5) unstable; urgency=low
* Fixed "fgrep : troubles with -w option", closes: #350775.
Patch thanks to Nicolas François <nicolas.francois@centraliens.net>.
* Set Standards-Version to 3.7.2.
* Changed co-maontainer's email address.
-- Anibal Monsalve Salazar <anibal@debian.org> Thu, 18 May 2006 21:40:49 +1000
grep (2.5.1.ds2-4) unstable; urgency=low
* Compiled with -O3 (Closes: #322416)
grep is 40 times slower on native amd64 than in a 32bit chroot
* Again, configure without-libpcre
-- Santiago Ruano Rincon <santiago@unicauca.edu.co> Wed, 9 Nov 2005 17:50:00 -0500
grep (2.5.1.ds2-3) unstable; urgency=low
* Compiled with libpcre3 to enable perl regular expressions.
Closes: #203109: perl mode non-functional, should not be documented
Closes: #238237: -P option doesn't work.
* Closes: #190551: br0ken manpage: Uses 'Egrep' instead of 'egrep'.
Thanks to Marc Brockschmidt <marc@dch-faq.de>
-- Santiago Ruano Rincon <santiago@unicauca.edu.co> Mon, 7 Nov 2005 03:40:13 -0500
grep (2.5.1.ds2-2) unstable; urgency=low
* Patched 64-egf-speedup.patch with patch from Nicolas François
<nicolas.francois@centraliens.net>. Put 64-egf-speedup.patch,
65-dfa-optional.patch, 66-match_icase.patch and 67-w.patch back
in, closes: #181378, #206470, #224993.
* Fixed "minor documentation syntax error", closes: #240239,
#257900. Patches by Allard Hoeve <allard@byte.nl> and Derrick
'dman' Hudson <dman@dman13.dyndns.org>.
* Fixed "info page not in main info menu", closes: #284676,
#267718. Patches by Rui Tiago Cação Matos
<a28525@alunos.det.ua.pt> and Paul Brook <paul@nowt.org>.
-- Anibal Monsalve Salazar <anibal@debian.org> Wed, 26 Oct 2005 19:14:35 +1000
grep (2.5.1.ds2-1) unstable; urgency=low
* Removed 64-egf-speedup.patch, 65-dfa-optional.patch,
66-match_icase.patch and 67-w.patch from debian/patches,
closes: #329876.
* Removed grep.texi from upstream tarball, 50-rgrep-info.patch and
51-dircategory-info.patch from debian/patches, the GNU Free
Documentation License from debian/copyright and debian/fdl.txt,
closes: #281647.
* Fixed FSF postal address in debian/copyright.
* Fixed override disparity found in suite unstable:
grep: override says utils-required, .deb says base-required.
-- Anibal Monsalve Salazar <anibal@debian.org> Mon, 26 Sep 2005 22:17:50 +1000
grep (2.5.1.ds1-6) unstable; urgency=low
* 64-egf-speedup.patch, 65-dfa-optional.patch, 66-match_icase.patch,
67-w.patch speed up grep. Thanks to Nicolas François
<nicolas.francois@centraliens.net> (Closes: #181378, #206470, #224993)
* Deleted the CVS directories
-- Santiago Ruano Rincon <santiago@unicauca.edu.co> Sat, 10 Sep 2005 01:52:04 -0500
grep (2.5.1.ds1-5) unstable; urgency=low
* New maintainer, closes: #316380.
* Updated standards version to 3.6.2.
-- Anibal Monsalve Salazar <anibal@debian.org> Fri, 01 Jul 2005 08:29:42 +1000
grep (2.5.1.ds1-4) unstable; urgency=high
* Add missing GFDL copyright statements (Closes: #274352)
* Acknowledge NMU (Closes #249245, #274352, #276209, #276202)
-- Ryan M. Golbeck <rmgolbeck@debian.org> Sun, 21 Nov 2004 02:02:02 -0500
grep (2.5.1.ds1-3.2) unstable; urgency=low
* NMU to fix RC bugs
* 61-dfa.c-case_fold-charclass.patch: new patch by Fumitoshi UKAI
to fix case_fold match with characters in bracket in multibyte
locales (UTF-8, CJK, ...)
closes: Bug#249245
* 62-dfa.c-charclass-bracket.patch: new patch by Fumitoshi UKAI
to fix wrong match '[' against character class such as [[:space:]]
in multibyte locales (UTF-8, ...)
closes: Bug#274352
* 63-dfa.c-case_fold-range.patch: new patch by Fumitoshi UKAI
to fix case_fold match on [a-z] or [A-Z] in multibyte locales (UTF-8,.)
closes: Bug#276209
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 20 Oct 2004 02:19:35 +0900
grep (2.5.1.ds1-3.1) unstable; urgency=low
* NMU to fix RC bug
* 60-dfa.c-case_fold.patch: new patch by Fumitoshi UKAI
to fix case_fold match on [:upper:] and [:lower:] in
multibyte locales (UTF-8, CJK, ...)
closes: Bug#276202
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 19 Oct 2004 02:07:07 +0900
grep (2.5.1.ds1-3) unstable; urgency=high
* configure without-libpcre (Closes: #237071)
-- Ryan M. Golbeck <rmgolbeck@debian.org> Tue, 03 Aug 2004 21:51:44 -0400
grep (2.5.1.ds1-2) unstable; urgency=low
* Fixed pre-depends (Closes: #222655)
-- Ryan M. Golbeck <rmgolbeck@debian.org> Sun, 07 Dec 2003 18:09:00 -0400
grep (2.5.1.ds1-1) unstable; urgency=low
* Fixed manpage typo (Closes: #207703)
* Makefile.in info patch (Closes: #218969)
- Thanks Andreas Metzler
* Fixed misspelled month in changelog.
-- Ryan M. Golbeck <rmgolbeck@debian.org> Tue, 18 Nov 2003 01:02:03 -0400
grep (2.5.1-7) unstable; urgency=low
* Jeff Bailey <jbailey@nisa.net>:
- Converted to cdbs
-- Jeff Bailey <jbailey@nisa.net> Tue, 19 Aug 2003 01:07:31 -0400
grep (2.5.1-6) unstable; urgency=low
* Consolidated manpage patches
+ Fixed line-buffering typo (Closes: #198947)
+ Re-ordered options, perl regexp note (Closes: #203109)
* Applied patch for bigfiles w/o newlines (Closes: #185208)
- Thanks Jim Meyering
-- Ryan M. Golbeck <rmgolbeck@debian.org> Sun, 17 Aug 2003 00:10:00 -0500
grep (2.5.1-5) unstable; urgency=low
* applied i18n patch for LSB test suite (Closes: #184884)
* fixed misspelling in manpage (Closes: #187477)
-- Ryan M. Golbeck <rmgolbeck@debian.org> Sat, 29 Mar 2003 00:10:00 -0500
grep (2.5.1-4) unstable; urgency=low
* New Maintainer (thanks Robert and Clint)
* New uploader: Jeff Bailey <jbailey@nisa.net>
* Converted to CBS.
* Added rgrep documentation to manpage and info doc.
* Cleaned up copyright file.
* Added #!/bin/sh to rgrep.
* Added dircategory to grep.texi
-- Ryan M. Golbeck <rmgolbeck@debian.org> Mon, 17 Feb 2003 00:10:00 -0500
grep (2.5.1-3) unstable; urgency=medium
* Document -z in the manpage. closes: #183277.
-- Clint Adams <schizo@debian.org> Mon, 10 Mar 2003 02:10:32 -0500
grep (2.5.1-2) unstable; urgency=low
* Call install with INSTALL_PROGRAM, not initial make.
-- Clint Adams <schizo@debian.org> Sun, 16 Feb 2003 00:07:50 -0500
grep (2.5.1-1) unstable; urgency=low
* Hijack.
* Update config.{guess,sub}. closes: #174898, #179702.
* New upstream version. closes: #152204.
* Update to Standards-Version 3.5.8.
* Support noopt and nostrip DEB_BUILD_OPTIONS.
* Add texinfo to Build-Depends.
-- Clint Adams <schizo@debian.org> Thu, 13 Feb 2003 18:49:35 -0500
grep (2.4.2-3.1) unstable; urgency=low
* NMU
* doc/grep.1:
- re-word description of exit codes. (Closes: #158134)
- apply rgrep patch--thanks, Martin Michlmayr! (Closes: #127438)
* doc/grep.info:
- fix missing colon in character class example (Closes: #173882)
* debian/rules:
- put only grep in /bin, fgrep and egrep in /usr/bin. (Closes: #93193)
- clean up po/*.gmo so that it is possible to rebuild without
dpkg-source aborting with "unrepresentable changes to binary files"
errors. (Closes: #142206)
- apply patch to remove bashisms (Closes: #172524)
* debian/control: add more descriptive paragraph to description
(Closes: #45943)
* debian/copyright: changed to reflect current maintainer.
(Closes: #156479)
* debian/postinst: no longer need to set /usr/doc link.
-- Hwei Sheng Teoh <hsteoh@debian.org> Tue, 10 Dec 2002 08:46:16 -0500
grep (2.4.2-3) frozen unstable; urgency=low
* Updated dutch translation (Closes: #111313)
* Fixed documentation (Closes: #69083, #71305)
* Fixed hurd build failure (Closes: #105435)
-- Robert van der Meulen <rvdm@debian.org> Wed, 28 Nov 2001 17:32:08 +0100
grep (2.4.2-2) frozen unstable; urgency=low
* New maintainer
* Replaced config.sub and config.guess for newer ones. (Closes: #98034)
* Fixed french language bug. (Closes: #95349)
-- Robert van der Meulen <rvdm@debian.org> Mon, 25 Jun 2001 14:31:38 +0200
grep (2.4.2-1) frozen unstable; urgency=low
* New upstream release. This is only a translation-update and bugfix
release, there is no new code (besides the bugfixes that is)
* Fix location of GPL (lintian)
* add -isp option to dpkg-gencontrol (lintian)
-- Wichert Akkerman <wakkerma@debian.org> Sun, 2 Apr 2000 17:57:56 +0200
grep (2.4-2) frozen unstable; urgency=low
* Fix grep-call in rgrep, Closes: Bug# 52751
-- Wichert Akkerman <wakkerma@debian.org> Sat, 22 Jan 2000 15:06:01 +0100
grep (2.4-1) unstable; urgency=low
* New upstream version
-- Wichert Akkerman <wakkerma@debian.org> Wed, 8 Dec 1999 02:05:48 +0100
grep (2.3-8) unstable; urgency=low
* Add a rgrep-script and add Conflicts and Provides for it
* Bump standards-version to 3.1.0
-- Wichert Akkerman <wakkerma@debian.org> Tue, 23 Nov 1999 22:12:18 +0100
grep (2.3-7) unstable; urgency=low
* Use different approach to get things in /usr/share
-- Wichert Akkerman <wakkerma@debian.org> Tue, 5 Oct 1999 18:48:54 +0200
grep (2.3-6) unstable; urgency=low
* Set datadir to /usr/share, Closes: Bug# 46632
-- Wichert Akkerman <wakkerma@debian.org> Tue, 5 Oct 1999 04:08:09 +0200
grep (2.3-5) unstable; urgency=low
* Change "Debian/GNU Linux" to "Debian GNU/Linux" in copyright
* Change to FHS 2.1(pre2)
* No longer generate md5sums
-- Wichert Akkerman <wakkerma@debian.org> Wed, 8 Sep 1999 02:16:55 +0200
grep (2.3-4) unstable; urgency=low
* Remove debian/files and debian/substvars on clean (Bug# 38620)
-- Wichert Akkerman <wakkerma@debian.org> Mon, 31 May 1999 13:31:59 +0200
grep (2.3-3) unstable; urgency=low
* Don't clobber NEWS with ChangeLog (Bug# 33917)
* Register info-documentation with install-info (Bug# 33917)
* Generally try to preserve timestamps
* Upgrade standards-version to 2.5.1
-- Wichert Akkerman <wakkerma@debian.org> Wed, 26 May 1999 00:36:51 +0200
grep (2.3-2) unstable; urgency=low
* Make egrep and grep seperate binaries again, since they don't check
argv[0] anymore
-- Wichert Akkerman <wakkerma@debian.org> Thu, 25 Feb 1999 02:59:21 +0100
grep (2.3-1) unstable; urgency=low
* New upstream version
-- Wichert Akkerman <wakkerma@debian.org> Tue, 23 Feb 1999 02:16:01 +0100
grep (2.2-1) unstable; urgency=low
* New upstream version
-- Wichert Akkerman <wakkerma@debian.org> Mon, 27 Apr 1998 12:13:04 +0200
grep (2.1-7) frozen unstable; urgency=high
* Fix wrong patch for Bug# 20284. Note to self: don't trust
received patches! (Bug# 20573, 20592, 20541)
-- Wichert Akkerman <wakkerma@debian.org> Fri, 3 Apr 1998 12:05:42 +0200
grep (2.1-6) frozen unstable; urgency=low
* Complain about non-existant files (Bug# 20283)
* Return with errorcode 2 when file cannot be opened (Bug# 20284)
* Fixed syntax error in manpage (Bug# 20509)
* Changed manpage: a pattern is a legal parameter (Bug# 20509)
-- Wichert Akkerman <wakkerma@debian.org> Wed, 1 Apr 1998 14:07:00 +0200
grep (2.1-5) unstable; urgency=low
* Fixed type in description (Bug# 18945)
* Now standards-version 2.4.0.0
* Re-instate [ef]grep.1 since some man-programs seem to
need them BBug# 16445)
* GPL is not compressed (lintian)
-- Wichert Akkerman <wakkerma@debian.org> Sun, 15 Mar 1998 23:19:37 +0100
grep (2.1-4) unstable; urgency=low
* Hardlink [ef]grep to grep binary again
-- Wichert Akkerman <wakkerma@debian.org> Mon, 29 Dec 1997 02:06:26 +0100
grep (2.1-3) unstable; urgency=low
* Fixed incorrect md5sums
-- Wichert Akkerman <wakkerma@debian.org> Tue, 16 Dec 1997 17:17:57 +0100
grep (2.1-2) unstable; urgency=low
* Fix redundant manpages (Bug# 14570)
-- Wichert Akkerman <wakkerma@debian.org> Fri, 7 Nov 1997 18:03:39 +0100
grep (2.1-1) unstable; urgency=low
* New upstream version (Bug# 14219)
* Fixed spelling error in copyright
* Fixed compilation flags to comply with policy
* Pristine sources
-- Wichert Akkerman <wakkerma@debian.org> Thu, 25 Sep 1997 12:19:59 +0200
grep (2.0-12) unstable; urgency=low
* Rename upstream change to changelog
* Added md5sums to .deb file
-- Wichert Akkerman <wakkerma@debian.org> Mon, 14 Jul 1997 01:17:15 +0200
grep (2.0-11) unstable; urgency=low
* Removed symlinks for egrep.1 and fgrep.1 (Bug# 7814)
-- Wichert Akkerman <wakkerma@debian.org> Tue, 11 Mar 1997 00:20:25 +0100
grep (2.0-10) unstable; urgency=low
* Now conforms to policy manual version 2.1.2.2
* Fixed typo in debian/rules (Bug# 7665)
-- Wichert Akkerman <wakkerma@wi.leidenuniv.nl> Thu, 27 Feb 1997 02:01:53 +0100
grep (2.0-9) frozen unstable; urgency=low
* Corrected priority in debian controlfile.
-- Wichert Akkerman <wakkerma@wi.leidenuniv.nl> Tue, 12 Nov 1996 23:36:10 +0100
grep (2.0-8) stable; urgency=low
* Made copyright a symlink to /usr/doc/copyright/GPL
* Compress man-pages
* Renamed debian changelog to changelog.Debian
-- Wichert Akkerman <wakkerma@wi.leidenuniv.nl> Sat, 26 Oct 1996 18:43:57 +0200
grep (2.0-7) stable unstable; urgency=low
* Moved to new packaging format
-- Wichert Akkerman <wakkerma@wi.leidenuniv.nl> Sat, 21 Sep 1996 17:24:52 +0200
grep (2.0-6); priority=LOW
* Revamped debian files
* Disable mmap-code since mmap does not work on files from the
proc-filesystem. (Temporary fix, still looking for a better
solution).
* new maintainer: Wichert Akkerman <wakkerma@wi.leidenuniv.nl>
-- Wichert Akkerman <wakkerma@wi.leidenuniv.nl>,Mon Jul 29 18:38:06 MET DST 1996
|