From 152a566ca4dc6eb30673c169c489573c0b2f57f80651f6aa2cd042f6b1431a9d Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Mon, 18 Dec 2006 23:17:47 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sed?expand=0&rev=1 --- .gitattributes | 23 ++++ .gitignore | 1 + ready | 0 sed-4.1.5.tar.bz2 | 3 + sed.changes | 286 ++++++++++++++++++++++++++++++++++++++ sed.spec | 344 ++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 657 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 ready create mode 100644 sed-4.1.5.tar.bz2 create mode 100644 sed.changes create mode 100644 sed.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4 diff --git a/sed-4.1.5.tar.bz2 b/sed-4.1.5.tar.bz2 new file mode 100644 index 0000000..b61448d --- /dev/null +++ b/sed-4.1.5.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4ba29b4674984bb534cbef3b9513895940d728a5b623f36d5c7529c71908c2 +size 645997 diff --git a/sed.changes b/sed.changes new file mode 100644 index 0000000..e019593 --- /dev/null +++ b/sed.changes @@ -0,0 +1,286 @@ +------------------------------------------------------------------- +Mon Aug 7 13:55:37 CEST 2006 - jsmeix@suse.de + +- Updated to version 4.1.5: + Fix parsing of a negative character class not including a closed + bracket, like [^]] or [^]a-z]. + Fix parsing of [ inside an y command, like y/[/A/. + Output the result of commands a, r, R when a q command is found. +- off-by-one.diff: obsolete (fixed in the source). +- configure needs --enable-html to build sed.html (default=no) + and it is installed into usr/share/doc/sed-4.1.5/ + +------------------------------------------------------------------- +Mon Jul 17 13:29:16 CEST 2006 - jsmeix@suse.de + +- Fixed the "fix build" below for our current different build + environments on our different architectures: + On s390 and s390x the sed.html documentation is still installed + into usr/share/doc/ but on the other architectures it is + installed into usr/share/doc/sed/ + +------------------------------------------------------------------- +Mon Jul 3 17:46:16 CEST 2006 - cthiel@suse.de + +- fix build + +------------------------------------------------------------------- +Wed Jan 25 21:30:56 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Thu Jan 19 14:12:52 CET 2006 - agruen@suse.de + +- off-by-one.diff: Report the correct back-reference number if + a substitution's left-hand side does not contain enough groups. + +------------------------------------------------------------------- +Fri Apr 1 10:29:28 CEST 2005 - schwab@suse.de + +- Don't use included regex. + +------------------------------------------------------------------- +Mon Jan 31 11:49:09 CET 2005 - mmj@suse.de + +- Update to 4.1.4 including: + o \B correctly means "not on a word boundary" rather than + "inside a word" + o bugfixes for platform without internationalization + o more thorough testing framework for tarballs + (`make full-distcheck') + +------------------------------------------------------------------- +Sat Jan 22 19:02:07 CET 2005 - mmj@suse.de + +- Update to 4.1.3 including: + o regex addresses do not use leftmost-longest matching. In + other words, /.\+/ only looks for a single character, and + does not try to find as many of them as possible like it used + to do. + o added a note to BUGS and the manual about changed interpretation + of `s|abc\|def||', and about localization issues. + o fixed --disable-nls build problems on Solaris. + o fixed `make check' in non-English locales. + o `make check' tests the regex library by default if the + included regex is used (regex tests had to be enabled + separately up to now). + +------------------------------------------------------------------- +Fri Sep 17 18:12:24 CEST 2004 - uli@suse.de + +- fixed segfault (bug #45491) + +------------------------------------------------------------------- +Sun Aug 22 23:27:58 CEST 2004 - mmj@suse.de + +- Update to sed-4.1.2 including: + o fix bug in 'y' command in multi-byte character sets + o fix severe bug in parsing of ranges with an embedded open bracket + o fix off-by-one error when printing a "bad command" error + +------------------------------------------------------------------- +Wed Jul 7 09:02:13 CEST 2004 - mmj@suse.de + +- Update to 4.1.1 including the initialization fix of output_fd + +------------------------------------------------------------------- +Wed Jun 23 17:41:29 CEST 2004 - ro@suse.de + +- do initialize output_fd before use + +------------------------------------------------------------------- +Thu Jun 17 00:32:15 CEST 2004 - mmj@suse.de + +- Update to 4.1 including: + o // matches the last regular expression even in + POSIXLY_CORRECT mode. + o change the way we treat lines which are not terminated by a + newline. Such lines are printed without the terminating + newline (as before) but as soon as more text is sent to the + same output stream, the missing newline is printed, so that + the two lines don't concatenate. The behavior is now + independent from POSIXLY_CORRECT because POSIX actually has + undefined behavior in this case, and the new implementation + arguably gives the ``least expected surprise''. + o documentation improvements, with updated references to the + POSIX.2 specification + o error messages on I/O errors are better, and -i does not + leave temporary files around (e.g. when running ``sed -i'' on + a directory) [#35419] + o escapes are accepted in the y command (for example: y/o/\n/ + transforms o's into newlines) + o -i option tries to set the owner and group to the same as the + input file + o `L' command is deprecated and will be removed in sed 4.2. + o line number addresses are processed differently -- this is + supposedly conformant to POSIX and surely more idiot-proof. + Line number addresses are not affected by jumping around + them: they are activated and deactivated exactly where the + script says, while previously 5,8b 1,5d would actually delete + lines 1,2,3,4 and 9 (!). + o multibyte characters are taken in consideration to compute + the operands of s and y, provided you set LC_CTYPE correctly. + They are also considered by \l, \L, \u, \U, \E. + o [\n] matches either backslash or 'n' when POSIXLY_CORRECT. + o new option --posix, disables all GNU extensions. + POSIXLY_CORRECT only disables GNU extensions that violate the + POSIX standard. + o options -h and -V are not supported anymore, use --help and + --version. + o removed documentation for \s and \S which worked incorrectly + o restored correct behavior for \w and \W: match [[:alnum:]_] + and [^[:alnum:]_] (they used to match [[:alpha:]_] and + [^[:alpha:]_] + o the special address 0 can only be used in 0,/RE/ or 0~STEP + addresses; other cases give an error (you are hindering + portability for no reason if specifying 0,N and you are + giving a dead command if specifying 0 alone). + o when a \ is used to escape the character that would terminate + an operand of the s or y commands, the backslash is removed + before the regex is compiled. This is left undefined by + POSIX; this behavior makes `s+x\+++g' remove occurrences of + `x+', consistently with `s/x\///g'. (However, if you enjoy + yourself trying `s*x\***g', sed will use the `x*' regex, and + you won't be able to pass down `x\*' while using * as the + delimiter; ideas on how to simplify the parser in this + respect, and/or gain more coherent semantics, are welcome). + +------------------------------------------------------------------- +Fri Mar 12 15:57:40 CET 2004 - mmj@suse.de + +- Remove created tempfile in the case of rename failing [#35419] + +------------------------------------------------------------------- +Tue Feb 24 11:06:04 CET 2004 - mmj@suse.de + +- Update to 4.0.9 with the following changes since 4.0.6: + o 0 address behaves correctly in single-file (-i and -s) mode. + o documentation improvements. + o tested with many hosts and compilers. + o updated regex matcher from upstream, with many bugfixes and + speedups. + o the `N' command's feature that is detailed in the BUGS file was + disabled by the first change below in sed 4.0.8. The behavior + has now been restored, and is only enabled if POSIXLY_CORRECT + behavior is not requested. + o fix `sed n' printing the last line twice. + o fix incorrect error message for invalid character classes. + o fix segmentation violation with repeated empty subexpressions. + o fix incorrect parsing of ^ after escaped (. + o more comprehensive test suite (and with many expected failures...) + o fix for -i option under Cygwin + o VPATH builds working on non-glibc machines + o fixed bug in s///Np: was printing even if less than N matches were + found. + o fixed infinite loop on s///N when LHS matched a null string and + there were not enough matches in pattern space + o behavior of s///N is consistent with s///g when the LHS can match + a null string (and the infinite loop did not happen :-) + o updated some translations + +------------------------------------------------------------------- +Sat Jan 10 20:32:30 CET 2004 - adrian@suse.de + +- build as user + +------------------------------------------------------------------- +Fri Jun 20 02:38:59 CEST 2003 - ro@suse.de + +- build with current gettext + +------------------------------------------------------------------- +Wed Jun 4 18:19:46 CEST 2003 - jh@suse.de + +- Enable profile feedback + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Mar 21 16:26:20 CET 2003 - pthomas@suse.de + +- Update to 4.0.6 + +------------------------------------------------------------------- +Fri Feb 7 01:27:19 CET 2003 - ro@suse.de + +- added install_info macros + +------------------------------------------------------------------- +Mon Nov 18 12:57:51 CET 2002 - ro@suse.de + +- set AM_GNU_GETTEXT_VERSION and use 0.10.36 since this is the + first one with DESTDIR support + +------------------------------------------------------------------- +Fri Sep 20 15:40:05 CEST 2002 - pthomas@suse.de + +- Correctly reference regex(7) from man page, remove the + obsolete remark. Fixes bug #19923. + +------------------------------------------------------------------- +Wed Aug 14 15:04:44 CEST 2002 - pthomas@suse.de + +- Fix configure.in so that --with-regex=no actually does + work. + +- Make sed use glibc's regex/regex.h. + +------------------------------------------------------------------- +Wed Jul 3 21:59:57 CEST 2002 - poeml@suse.de + +- enable 'make check' again on ppc64 + +------------------------------------------------------------------- +Wed Jul 3 21:42:55 CEST 2002 - bk@suse.de + +- add man page and remove joe from neededforbuild, no rebuild by joe + +------------------------------------------------------------------- +Tue Jun 4 20:24:11 CEST 2002 - pthomas@suse.de + +- Move tar and sed to separate packages. +- Update to 3.02.80 +- Adapt i18n patch. +- Call autoreconf. +- Update regex.c and regex.h to glibc 2.2.5 versions. +- Use AM_MAINTAINER_MODE and don't enable it (no reconfiguration). +- rework the autoconf test involving LIBOBJS +- Remove acinclude.m4. +- Make acconfig.h obsolete. + +------------------------------------------------------------------- +Wed May 22 17:48:32 CEST 2002 - olh@suse.de + +- disable sed make check on ppc64 + +------------------------------------------------------------------- +Wed May 22 16:50:17 CEST 2002 - olh@suse.de + +- allow build as user, use buildroot + +------------------------------------------------------------------- +Fri Nov 23 13:34:54 CET 2001 - mfabian@suse.de + +- add sed-3.02-i18n-0.5.patch from + http://oss.software.ibm.com/developer/opensource/linux/patches/i18n/ + with this patch, sed passes the tests for the LI18NUX2K.L1 + specification. + +------------------------------------------------------------------- +Wed May 9 19:46:04 CEST 2001 - cstein@suse.de + +- repacked sources of sed with bzip2. + +------------------------------------------------------------------- +Mon May 29 18:38:23 CEST 2000 - kukuk@suse.de + +- Move sed to /bin, add compat link + +------------------------------------------------------------------- +Mon Jan 17 16:50:21 CET 2000 - ro@suse.de + +- info -> /usr/share/info diff --git a/sed.spec b/sed.spec new file mode 100644 index 0000000..61bd3aa --- /dev/null +++ b/sed.spec @@ -0,0 +1,344 @@ +# +# spec file for package sed (Version 4.1.5) +# +# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# This file and all modifications and additions to the pristine +# package are under the same license as the package itself. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + +Name: sed +URL: http://www.gnu.org/directory/sed.html +Version: 4.1.5 +Release: 2 +License: GPL +Group: System/Base +Summary: A Stream-Oriented Noninteractive Text Editor +Provides: base:/bin/sed +PreReq: %install_info_prereq +Autoreqprov: on +Source: %name-%version.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Sed takes text input, performs some operation (or set of operations) on +it and outputs the modified text. Sed is typically used for extracting +part of a file using pattern matching or substituting multiple +occurences of a string within a file. + + + +Authors: +-------- + Francois Pinard + Tom Lord + David J. MacKenzie + Akiko Matsushita + Alan Magnuson + Alexander Lehmann + Amos Shapira + Andreas Gustafsson + Andreas Schwab + Assar Westerlund + Ben A. Mesander + Bengt Mertensson + Bernhard Daeubler + Bjorn R. Bjornsson + Brendan Kehoe + Erez Zadok + Eric Allman + Eric Backus + Geoff Russell + Greg A. Woods + Hal Peterson + Hoang Uong + Ian Lance Taylor + Jason Merrill + Jim Avera + Jim Kingdon + Jim Meyering + Joel Sherrill + John David Anglin + Joseph E. Sacco + Karl Berry + Karl Vogel + Kaveh R. Ghazi + Kristine Lund + Krste Asanovic + Marion Hakanson + Mark Seiden + Matthias Rabe + Michael Fetterman + Michael L. Welcome + Mike Lijewski + Nick S. Kanakakor + Nicolas Pioch + Noah Friedman + Pete Chown + Pierre Gaumond + Pierre Mathieu + Robert Bernstein + Rene' Seindal + Richard Stallman + Roland H. Pesch + Roland McGrath + Scott Bartram + Simon Leinen + Skip Montanaro + Stephen Perkins + Steve Williamson + Thorsten Ohl + Tom McConnell + Tom Quinn + Tom Tromey + Ulrich Drepper + Vern Paxson + Vivek P. Singhal + Walter Wong + Paolo Bonzini (bonzini@gnu.org) + Philip Hazel (ph10@cam.ac.uk) + +%prep +%setup -q + +%build +%define warn_flags -Wall -Wstrict-prototypes -Wpointer-arith -Wformat-security +%{?suse_update_config:%{suse_update_config}} +cp /usr/share/gettext/config.rpath config +autoreconf --force --install +test -f po/Makevars.template && mv po/Makevars.template po/Makevars +export CFLAGS="$RPM_OPT_FLAGS %warn_flags" +./configure --prefix=/usr \ + --mandir=%_mandir \ + --infodir=%_infodir \ + --without-included-regex \ + --enable-html \ + %{_target_cpu}-suse-linux +%if %do_profiling + make CFLAGS="$CFLAGS "%cflags_profile_generate + make check + make clean + make CFLAGS="$CFLAGS "%cflags_profile_feedback +%else + make +%endif +make check + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT +# Move sed to /bin: +mkdir -p $RPM_BUILD_ROOT/bin +mv $RPM_BUILD_ROOT/usr/bin/sed $RPM_BUILD_ROOT/bin +ln -s ../../bin/sed $RPM_BUILD_ROOT/usr/bin/sed +# Remove installed documentation (it is packaged directly in the files section). +# The actual directory depends on the build environment on the different architectures: +rm -f $RPM_BUILD_ROOT/usr/share/doc/sed.html $RPM_BUILD_ROOT/usr/share/doc/sed-4.1.5/sed.html + +%files +%defattr(-, root, root) +/bin/sed +/usr/bin/sed +%doc AUTHORS BUGS COPYING* INSTALL NEWS README* THANKS doc/sed.html + +%_infodir/sed.info*.gz +%_mandir/man*/*.gz +/usr/share/locale/*/LC_MESSAGES/sed.mo + +%post +%install_info --info-dir=%_infodir %_infodir/%name.info.gz + +%postun +%install_info_delete --info-dir=%_infodir %_infodir/%name.info.gz + +%changelog -n sed +* Mon Aug 07 2006 - jsmeix@suse.de +- Updated to version 4.1.5: + Fix parsing of a negative character class not including a closed + bracket, like [^]] or [^]a-z]. + Fix parsing of [ inside an y command, like y/[/A/. + Output the result of commands a, r, R when a q command is found. +- off-by-one.diff: obsolete (fixed in the source). +- configure needs --enable-html to build sed.html (default=no) + and it is installed into usr/share/doc/sed-4.1.5/ +* Mon Jul 17 2006 - jsmeix@suse.de +- Fixed the "fix build" below for our current different build + environments on our different architectures: + On s390 and s390x the sed.html documentation is still installed + into usr/share/doc/ but on the other architectures it is + installed into usr/share/doc/sed/ +* Mon Jul 03 2006 - cthiel@suse.de +- fix build +* Wed Jan 25 2006 - mls@suse.de +- converted neededforbuild to BuildRequires +* Thu Jan 19 2006 - agruen@suse.de +- off-by-one.diff: Report the correct back-reference number if + a substitution's left-hand side does not contain enough groups. +* Fri Apr 01 2005 - schwab@suse.de +- Don't use included regex. +* Mon Jan 31 2005 - mmj@suse.de +- Update to 4.1.4 including: + o \B correctly means "not on a word boundary" rather than + "inside a word" + o bugfixes for platform without internationalization + o more thorough testing framework for tarballs + (`make full-distcheck') +* Sat Jan 22 2005 - mmj@suse.de +- Update to 4.1.3 including: + o regex addresses do not use leftmost-longest matching. In + other words, /.\+/ only looks for a single character, and + does not try to find as many of them as possible like it used + to do. + o added a note to BUGS and the manual about changed interpretation + of `s|abc\|def||', and about localization issues. + o fixed --disable-nls build problems on Solaris. + o fixed `make check' in non-English locales. + o `make check' tests the regex library by default if the + included regex is used (regex tests had to be enabled + separately up to now). +* Fri Sep 17 2004 - uli@suse.de +- fixed segfault (bug #45491) +* Sun Aug 22 2004 - mmj@suse.de +- Update to sed-4.1.2 including: + o fix bug in 'y' command in multi-byte character sets + o fix severe bug in parsing of ranges with an embedded open bracket + o fix off-by-one error when printing a "bad command" error +* Wed Jul 07 2004 - mmj@suse.de +- Update to 4.1.1 including the initialization fix of output_fd +* Wed Jun 23 2004 - ro@suse.de +- do initialize output_fd before use +* Thu Jun 17 2004 - mmj@suse.de +- Update to 4.1 including: + o // matches the last regular expression even in + POSIXLY_CORRECT mode. + o change the way we treat lines which are not terminated by a + newline. Such lines are printed without the terminating + newline (as before) but as soon as more text is sent to the + same output stream, the missing newline is printed, so that + the two lines don't concatenate. The behavior is now + independent from POSIXLY_CORRECT because POSIX actually has + undefined behavior in this case, and the new implementation + arguably gives the ``least expected surprise''. + o documentation improvements, with updated references to the + POSIX.2 specification + o error messages on I/O errors are better, and -i does not + leave temporary files around (e.g. when running ``sed -i'' on + a directory) [#35419] + o escapes are accepted in the y command (for example: y/o/\n/ + transforms o's into newlines) + o -i option tries to set the owner and group to the same as the + input file + o `L' command is deprecated and will be removed in sed 4.2. + o line number addresses are processed differently -- this is + supposedly conformant to POSIX and surely more idiot-proof. + Line number addresses are not affected by jumping around + them: they are activated and deactivated exactly where the + script says, while previously 5,8b 1,5d would actually delete + lines 1,2,3,4 and 9 (!). + o multibyte characters are taken in consideration to compute + the operands of s and y, provided you set LC_CTYPE correctly. + They are also considered by \l, \L, \u, \U, \E. + o [\n] matches either backslash or 'n' when POSIXLY_CORRECT. + o new option --posix, disables all GNU extensions. + POSIXLY_CORRECT only disables GNU extensions that violate the + POSIX standard. + o options -h and -V are not supported anymore, use --help and +--version. + o removed documentation for \s and \S which worked incorrectly + o restored correct behavior for \w and \W: match [[:alnum:]_] + and [^[:alnum:]_] (they used to match [[:alpha:]_] and + [^[:alpha:]_] + o the special address 0 can only be used in 0,/RE/ or 0~STEP + addresses; other cases give an error (you are hindering + portability for no reason if specifying 0,N and you are + giving a dead command if specifying 0 alone). + o when a \ is used to escape the character that would terminate + an operand of the s or y commands, the backslash is removed + before the regex is compiled. This is left undefined by + POSIX; this behavior makes `s+x\+++g' remove occurrences of + `x+', consistently with `s/x\///g'. (However, if you enjoy + yourself trying `s*x\***g', sed will use the `x*' regex, and + you won't be able to pass down `x\*' while using * as the + delimiter; ideas on how to simplify the parser in this + respect, and/or gain more coherent semantics, are welcome). +* Fri Mar 12 2004 - mmj@suse.de +- Remove created tempfile in the case of rename failing [#35419] +* Tue Feb 24 2004 - mmj@suse.de +- Update to 4.0.9 with the following changes since 4.0.6: + o 0 address behaves correctly in single-file (-i and -s) mode. + o documentation improvements. + o tested with many hosts and compilers. + o updated regex matcher from upstream, with many bugfixes and + speedups. + o the `N' command's feature that is detailed in the BUGS file was + disabled by the first change below in sed 4.0.8. The behavior + has now been restored, and is only enabled if POSIXLY_CORRECT + behavior is not requested. + o fix `sed n' printing the last line twice. + o fix incorrect error message for invalid character classes. + o fix segmentation violation with repeated empty subexpressions. + o fix incorrect parsing of ^ after escaped (. + o more comprehensive test suite (and with many expected failures...) + o fix for -i option under Cygwin + o VPATH builds working on non-glibc machines + o fixed bug in s///Np: was printing even if less than N matches were + found. + o fixed infinite loop on s///N when LHS matched a null string and + there were not enough matches in pattern space + o behavior of s///N is consistent with s///g when the LHS can match + a null string (and the infinite loop did not happen :-) + o updated some translations +* Sat Jan 10 2004 - adrian@suse.de +- build as user +* Fri Jun 20 2003 - ro@suse.de +- build with current gettext +* Wed Jun 04 2003 - jh@suse.de +- Enable profile feedback +* Thu Apr 24 2003 - ro@suse.de +- fix install_info --delete call and move from preun to postun +* Fri Mar 21 2003 - pthomas@suse.de +- Update to 4.0.6 +* Fri Feb 07 2003 - ro@suse.de +- added install_info macros +* Mon Nov 18 2002 - ro@suse.de +- set AM_GNU_GETTEXT_VERSION and use 0.10.36 since this is the + first one with DESTDIR support +* Fri Sep 20 2002 - pthomas@suse.de +- Correctly reference regex(7) from man page, remove the + obsolete remark. Fixes bug #19923. +* Wed Aug 14 2002 - pthomas@suse.de +- Fix configure.in so that --with-regex=no actually does + work. +- Make sed use glibc's regex/regex.h. +* Wed Jul 03 2002 - poeml@suse.de +- enable 'make check' again on ppc64 +* Wed Jul 03 2002 - bk@suse.de +- add man page and remove joe from neededforbuild, no rebuild by joe +* Tue Jun 04 2002 - pthomas@suse.de +- Move tar and sed to separate packages. +- Update to 3.02.80 +- Adapt i18n patch. +- Call autoreconf. +- Update regex.c and regex.h to glibc 2.2.5 versions. +- Use AM_MAINTAINER_MODE and don't enable it (no reconfiguration). +- rework the autoconf test involving LIBOBJS +- Remove acinclude.m4. +- Make acconfig.h obsolete. +* Wed May 22 2002 - olh@suse.de +- disable sed make check on ppc64 +* Wed May 22 2002 - olh@suse.de +- allow build as user, use buildroot +* Fri Nov 23 2001 - mfabian@suse.de +- add sed-3.02-i18n-0.5.patch from + http://oss.software.ibm.com/developer/opensource/linux/patches/i18n/ + with this patch, sed passes the tests for the LI18NUX2K.L1 + specification. +* Wed May 09 2001 - cstein@suse.de +- repacked sources of sed with bzip2. +* Mon May 29 2000 - kukuk@suse.de +- Move sed to /bin, add compat link +* Mon Jan 17 2000 - ro@suse.de +- info -> /usr/share/info