Browse Source

sharutil package updated

Signed-off-by: basebuilder_pel7ppc64bebuilder0 <basebuilder@powerel.org>
master
basebuilder_pel7ppc64bebuilder0 6 years ago
parent
commit
d85ddbec9a
  1. 36
      SOURCES/sharutils-4.13.3-Allow-exactly-one-input-file-when-specifying-output-.patch
  2. 169
      SOURCES/sharutils-4.13.3-Append-new-line-to-usage-output.patch
  3. 74
      SOURCES/sharutils-4.13.3-Do-not-open-and-dev-stdout.patch
  4. 304
      SPECS/sharutils.spec

36
SOURCES/sharutils-4.13.3-Allow-exactly-one-input-file-when-specifying-output-.patch

@ -0,0 +1,36 @@ @@ -0,0 +1,36 @@
From 2e633b222dbdccfd04506a0c0028471feb101524 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Wed, 23 Jan 2013 13:15:18 +0100
Subject: [PATCH] Allow exactly one input file when specifying output file

This fixes regression in 4.13.3. The fix ported from 4.13.4pre2.
<https://bugzilla.redhat.com/show_bug.cgi?id=901895>
---
src/uudecode.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/uudecode.c b/src/uudecode.c
index 2ef5a92..723bcff 100644
--- a/src/uudecode.c
+++ b/src/uudecode.c
@@ -490,7 +490,7 @@ main (int argc, char const * const * argv)
exit_status = decode ("stdin");
break;
- case 1:
+ default:
if (HAVE_OPT(OUTPUT_FILE))
{
usage_message(_("You cannot specify an output file when processing\n\
@@ -499,7 +499,7 @@ multiple input files.\n"));
}
/* FALLTHROUGH */
- default:
+ case 1:
while (--argc >= 0)
{
char const * f = *(argv++);
--
1.8.1

169
SOURCES/sharutils-4.13.3-Append-new-line-to-usage-output.patch

@ -0,0 +1,169 @@ @@ -0,0 +1,169 @@
From 1a2570d69c1c50e2dd0f619d3791b4c77d3d8d47 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Tue, 4 Mar 2014 15:20:47 +0100
Subject: [PATCH] Append new-line to usage output
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This is bug in autogen, however regenerating sources would mean to
unbundle libopts and fix autogen. So I corrected generated sources
instead.

Take care about array length and substring offsets and values for
gettext() coherency.

Signed-off-by: Petr Písař <ppisar@redhat.com>
---
src/shar-opts.c | 14 +++++++-------
src/uudecode-opts.c | 14 +++++++-------
src/uuencode-opts.c | 14 +++++++-------
3 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/shar-opts.c b/src/shar-opts.c
index 1da4365..96223c6 100644
--- a/src/shar-opts.c
+++ b/src/shar-opts.c
@@ -74,7 +74,7 @@ int optidx = 0;
/*
* shar option static const strings
*/
-static char const shar_opt_strs[10449] =
+static char const shar_opt_strs[10451] =
/* 0 */ "shar (GNU sharutils) 4.13.3\n"
"Copyright (C) 1994-2013 Free Software Foundation, Inc., all rights reserved.\n"
"This is free software. It is licensed for use, modification and\n"
@@ -339,9 +339,9 @@ static char const shar_opt_strs[10449] =
"Though this program supports 'uuencode'-d files, they are deprecated. If\n"
"you are emailing files, please consider mime-encoded files. If you do\n"
"'uuencode', base 64 is the preferred encoding method.\n\n"
- "please send bug reports to: bug-gnu-utils@gnu.org\0"
-/* 10319 */ "shar (GNU sharutils) - create a shell archive - Ver. 4.13.3\n"
- "USAGE: shar [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [file ...]";
+ "please send bug reports to: bug-gnu-utils@gnu.org\n\0"
+/* 10320 */ "shar (GNU sharutils) - create a shell archive - Ver. 4.13.3\n"
+ "USAGE: shar [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [file ...]\n";
/*
* compression option description:
@@ -1414,7 +1414,7 @@ static char const * const apzHomeList[2] = {
#define shar_full_usage (shar_opt_strs+4701)
-#define shar_short_usage (shar_opt_strs+10319)
+#define shar_short_usage (shar_opt_strs+10320)
#endif /* not defined __doxygen__ */
@@ -2145,10 +2145,10 @@ arguments.\n\n\
Though this program supports 'uuencode'-d files, they are deprecated. If\n\
you are emailing files, please consider mime-encoded files. If you do\n\
'uuencode', base 64 is the preferred encoding method.\n\n\
-please send bug reports to: bug-gnu-utils@gnu.org"));
+please send bug reports to: bug-gnu-utils@gnu.org\n"));
/* short-usage */
puts(_("shar (GNU sharutils) - create a shell archive - Ver. 4.13.3\n\
-USAGE: shar [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [file ...]"));
+USAGE: shar [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [file ...]\n"));
/* explain */
puts(_("If no 'file's are specified, the list of input files is read from a\n\
standard input. Standard input must not be a terminal"));
diff --git a/src/uudecode-opts.c b/src/uudecode-opts.c
index 33ebe2f..b4c6fd2 100644
--- a/src/uudecode-opts.c
+++ b/src/uudecode-opts.c
@@ -72,7 +72,7 @@ extern FILE * option_usage_fp;
/*
* uudecode option static const strings
*/
-static char const uudecode_opt_strs[4552] =
+static char const uudecode_opt_strs[4554] =
/* 0 */ "uudecode (GNU sharutils) 4.13.3\n"
"Copyright (C) 1994-2013 Free Software Foundation, Inc., all rights reserved.\n"
"This is free software. It is licensed for use, modification and\n"
@@ -159,9 +159,9 @@ static char const uudecode_opt_strs[4552] =
"that starts with \"'begin'\" and proceeds until the end-of-encoding marker is\n"
"found. The program determines from the header line of the encoded file\n"
"which of the two supported encoding schemes was used.\n\n"
- "please send bug reports to: bug-gnu-utils@gnu.org\0"
-/* 4412 */ "uudecode (GNU sharutils) - decode an encoded file - Ver. 4.13.3\n"
- "USAGE: uudecode [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ file ... ]";
+ "please send bug reports to: bug-gnu-utils@gnu.org\n\0"
+/* 4413 */ "uudecode (GNU sharutils) - decode an encoded file - Ver. 4.13.3\n"
+ "USAGE: uudecode [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ file ... ]\n";
/*
* output-file option description:
@@ -345,7 +345,7 @@ static char const * const apzHomeList[2] = {
#define uudecode_full_usage (uudecode_opt_strs+2463)
-#define uudecode_short_usage (uudecode_opt_strs+4412)
+#define uudecode_short_usage (uudecode_opt_strs+4413)
#endif /* not defined __doxygen__ */
@@ -720,10 +720,10 @@ be written to the same file as the previous output. Don't do that.\n\n\
that starts with \"'begin'\" and proceeds until the end-of-encoding marker is\n\
found. The program determines from the header line of the encoded file\n\
which of the two supported encoding schemes was used.\n\n\
-please send bug reports to: bug-gnu-utils@gnu.org"));
+please send bug reports to: bug-gnu-utils@gnu.org\n"));
/* short-usage */
puts(_("uudecode (GNU sharutils) - decode an encoded file - Ver. 4.13.3\n\
-USAGE: uudecode [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ file ... ]"));
+USAGE: uudecode [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [ file ... ]\n"));
/* explain */
puts(_("If no 'file'(s) are provided, then standard input is decoded"));
/* detail */
diff --git a/src/uuencode-opts.c b/src/uuencode-opts.c
index 93c9570..eb791d5 100644
--- a/src/uuencode-opts.c
+++ b/src/uuencode-opts.c
@@ -71,7 +71,7 @@ extern char const uu_base64[64];
/*
* uuencode option static const strings
*/
-static char const uuencode_opt_strs[4248] =
+static char const uuencode_opt_strs[4250] =
/* 0 */ "uuencode (GNU sharutils) 4.13.3\n"
"Copyright (C) 1994-2013 Free Software Foundation, Inc., all rights reserved.\n"
"This is free software. It is licensed for use, modification and\n"
@@ -155,9 +155,9 @@ static char const uuencode_opt_strs[4248] =
"'Note': 'uuencode' uses buffered input and assumes that it is not hand\n"
"typed from a tty. The consequence is that at a tty, you may need to hit\n"
"Ctl-D several times to terminate input.\n\n"
- "please send bug reports to: bug-gnu-utils@gnu.org\0"
-/* 4101 */ "uuencode (GNU sharutils) - encode a file into email friendly text - Ver. 4.13.3\n"
- "USAGE: uuencode [ -<flag> | --<name> ]... [ in-file ] output-name";
+ "please send bug reports to: bug-gnu-utils@gnu.org\n\0"
+/* 4102 */ "uuencode (GNU sharutils) - encode a file into email friendly text - Ver. 4.13.3\n"
+ "USAGE: uuencode [ -<flag> | --<name> ]... [ in-file ] output-name\n";
/*
* base64 option description:
@@ -340,7 +340,7 @@ static char const * const apzHomeList[2] = {
#define uuencode_full_usage (uuencode_opt_strs+2306)
-#define uuencode_short_usage (uuencode_opt_strs+4101)
+#define uuencode_short_usage (uuencode_opt_strs+4102)
#endif /* not defined __doxygen__ */
@@ -695,10 +695,10 @@ standard out.\n\n\
'Note': 'uuencode' uses buffered input and assumes that it is not hand\n\
typed from a tty. The consequence is that at a tty, you may need to hit\n\
Ctl-D several times to terminate input.\n\n\
-please send bug reports to: bug-gnu-utils@gnu.org"));
+please send bug reports to: bug-gnu-utils@gnu.org\n"));
/* short-usage */
puts(_("uuencode (GNU sharutils) - encode a file into email friendly text - Ver. 4.13.3\n\
-USAGE: uuencode [ -<flag> | --<name> ]... [ in-file ] output-name"));
+USAGE: uuencode [ -<flag> | --<name> ]... [ in-file ] output-name\n"));
/* detail */
puts(_("'uuencode' is used to create an ASCII representation of a file that can be\n\
sent over channels that may otherwise corrupt the data. Specifically,\n\
--
1.8.5.3

74
SOURCES/sharutils-4.13.3-Do-not-open-and-dev-stdout.patch

@ -0,0 +1,74 @@ @@ -0,0 +1,74 @@
From 49857a3ee79226ce870607104f7ef28bacae3f57 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Wed, 23 Jan 2013 14:06:50 +0100
Subject: [PATCH] Do not open - and /dev/stdout

Ported from 4.13.4pre2.
<https://bugzilla.redhat.com/show_bug.cgi?id=901895>

I have duplicated the autogen code to C because the build system does
not run autogen.
---
src/uudecode-opts.c | 17 ++++++++++++++++-
src/uudecode-opts.def | 17 ++++++++++++++++-
2 files changed, 32 insertions(+), 2 deletions(-)

diff --git a/src/uudecode-opts.c b/src/uudecode-opts.c
index 19f4ee1..33ebe2f 100644
--- a/src/uudecode-opts.c
+++ b/src/uudecode-opts.c
@@ -385,7 +385,22 @@ doOptOutput_File(tOptions* pOptions, tOptDesc* pOptDesc)
* reset its state.
*/
/* extracted from uudecode-opts.def, line 60 */
- FILE * fp = freopen (pOptDesc->optArg.argString, "w", stdout);
+ FILE * fp;
+ switch (*pOptDesc->optArg.argString)
+ {
+ case '-':
+ if (pOptDesc->optArg.argString[1] == '\0')
+ return;
+ break;
+
+ case '/':
+ if (strcmp (pOptDesc->optArg.argString + 1, "dev/stdout") == 0)
+ return;
+
+ default:
+ break;
+ }
+ fp = freopen (pOptDesc->optArg.argString, "w", stdout);
if (fp != stdout)
{
error (0, errno, "%s", pOptDesc->optArg.argString);
diff --git a/src/uudecode-opts.def b/src/uudecode-opts.def
index ae11b0a..419387b 100644
--- a/src/uudecode-opts.def
+++ b/src/uudecode-opts.def
@@ -57,7 +57,22 @@ flag = {
arg-name = file;
descrip = 'direct output to @file{file}';
flag-code = <<- _EOCode_
- FILE * fp = freopen (pOptDesc->optArg.argString, "w", stdout);
+ FILE * fp;
+ switch (*pOptDesc->optArg.argString)
+ {
+ case '-':
+ if (pOptDesc->optArg.argString[1] == '\0')
+ return;
+ break;
+
+ case '/':
+ if (strcmp (pOptDesc->optArg.argString + 1, "dev/stdout") == 0)
+ return;
+
+ default:
+ break;
+ }
+ fp = freopen (pOptDesc->optArg.argString, "w", stdout);
if (fp != stdout)
{
error (0, errno, "%s", pOptDesc->optArg.argString);
--
1.8.1

304
SPECS/sharutils.spec

@ -0,0 +1,304 @@ @@ -0,0 +1,304 @@
Summary: The GNU shar utilities for packaging and unpackaging shell archives
Name: sharutils
Version: 4.13.3
Release: 8%{?dist}
# The main code: GPLv3+
# lib (gnulib): LGPLv3+
# lib/sys_socket.in.h: LGPLv2+
# lib/md5.c: Public Domain
# libopts: LGPLv3+ or BSD
# doc/sharutils.texi: GFDL
License: GPLv3+ and LGPLv3+ and (LGPLv3+ or BSD) and LGPLv2+ and Public Domain and GFDL
Group: Applications/Archiving
Source: ftp://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
URL: http://www.gnu.org/software/%{name}/
# Bug #901895, in upstream 4.13.4pre2
Patch0: %{name}-4.13.3-Allow-exactly-one-input-file-when-specifying-output-.patch
# Bug #901895, in upstream 4.13.4pre2
Patch1: %{name}-4.13.3-Do-not-open-and-dev-stdout.patch
# Bug #1020287, fixed in upstream 4.13.4
Patch2: %{name}-4.13.3-Append-new-line-to-usage-output.patch
BuildRequires: gettext
Requires(post): info
Requires(preun): info
Provides: bundled(gnulib)
Provides: bundled(libopts)

%description
The sharutils package contains the GNU shar utilities, a set of tools
for encoding and decoding packages of files (in binary or text format)
in a special plain text format called shell archives (shar). This
format can be sent through e-mail (which can be problematic for regular
binary files). The shar utility supports a wide range of capabilities
(compressing, uuencoding, splitting long files for multi-part
mailings, providing check-sums), which make it very flexible at
creating shar files. After the files have been sent, the unshar tool
scans mail messages looking for shar files. Unshar automatically
strips off mail headers and introductory text and then unpacks the
shar files.

%prep
%setup -q
%patch0 -p1 -b .input_count
%patch1 -p1 -b .dev_stdout
%patch2 -p1 -b .usage_newline

# convert TODO, THANKS to UTF-8
for i in TODO THANKS; do
iconv -f iso-8859-1 -t utf-8 -o $i{.utf8,}
mv $i{.utf8,}
done

%build
%configure
make %{?_smp_mflags}

%install
make DESTDIR=${RPM_BUILD_ROOT} INSTALL='install -p' install
rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir
# gnulib-tool installs compat header files mistakenly
rm -rf ${RPM_BUILD_ROOT}%{_includedir}
chmod 644 AUTHORS ChangeLog COPYING NEWS README THANKS TODO
%find_lang %{name}

%check
make check

%post
/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir ||:

%preun
if [ $1 = 0 ]; then
/sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir ||:
fi

%files -f %{name}.lang
%doc AUTHORS ChangeLog COPYING NEWS README THANKS TODO
%{_bindir}/*
%{_infodir}/*info*
%{_mandir}/man1/*
%{_mandir}/man5/*

%changelog
* Tue Mar 04 2014 Petr Pisar <ppisar@redhat.com> - 4.13.3-8
- Correct fix for new line at the end of usage texts (bug #1020287)

* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 4.13.3-7
- Mass rebuild 2014-01-24

* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 4.13.3-6
- Mass rebuild 2013-12-27

* Thu Oct 17 2013 Petr Pisar <ppisar@redhat.com> - 4.13.3-5
- Append new-line to usage output (bug #1020287)

* Tue May 28 2013 Petr Pisar <ppisar@redhat.com> - 4.13.3-4
- Correct license declaration (LGPLv3+ and (LGPLv3+ or BSD) and GFDL added)

* Fri Feb 08 2013 Petr Pisar <ppisar@redhat.com> - 4.13.3-3
- Collect message catalogs in install phase (bug #908967)

* Wed Jan 23 2013 Petr Pisar <ppisar@redhat.com> - 4.13.3-2
- Fix decoding from positional argument while overriding output file
(bug #901895)
- Fix decoding to standard output when output file is - or /dev/stdout
(bug #901895)

* Mon Jan 07 2013 Petr Pisar <ppisar@redhat.com> - 4.13.3-1
- 4.13.3 bump

* Thu Jan 03 2013 Petr Pisar <ppisar@redhat.com> - 4.13.1-2
- Fix MD5 checksum generation on big-endian machines

* Thu Jan 03 2013 Petr Pisar <ppisar@redhat.com> - 4.13.1-1
- 4.13.1 bump

* Thu Aug 02 2012 Petr Pisar <ppisar@redhat.com> - 4.11.1-5
- Fix building with glibc-2.16.6

* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.11.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild

* Tue May 15 2012 Petr Pisar <ppisar@redhat.com> - 4.11.1-3
- Export bundled(gnulib) (bug #821789)

* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.11.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild

* Fri May 06 2011 Petr Pisar <ppisar@redhat.com> - 4.11.1-1
- 4.11.1 bump

* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.11-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

* Mon Feb 07 2011 Petr Pisar <ppisar@redhat.com> - 4.11-1
- 4.11 bump
- Do not install header files injected by gnulib-tool
- Remove BuildRoot stuff

* Mon Aug 30 2010 Petr Pisar <ppisar@redhat.com> - 4.10-1
- 4.10 bump (bug #628304)

* Thu Jun 3 2010 Petr Pisar <ppisar@redhat.com> - 4.9-1
- version bump to 4.9 (bug #569059, bug #583187)

* Mon Feb 1 2010 Stepan Kasal <skasal@redhat.com> - 4.7-6
- fix the License tag

* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

* Thu Sep 04 2008 Jason L Tibbitts III <tibbs@math.uh.edu> - 4.7-3
- Requires(pre) should be Requires(post).

* Thu Sep 4 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 4.7-2
- forgot the new source

* Thu Sep 4 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 4.7-1
- update to 4.7
- fix license tag
- package cleanups

* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 4.6.3-2
- Autorebuild for GCC 4.3

* Tue Apr 10 2007 Than Ngo <than@redhat.com> - 4.6.3-1
- 4.6.3

* Fri Jul 14 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-2
- rebuild

* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-1.2
- bump again for double-long bug on ppc(64)

* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.6.1-1.1
- rebuilt for new gcc4.1 snapshot and glibc changes

* Mon Feb 06 2006 Florian La Roche <laroche@redhat.com>
- 4.6.1

* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- rebuilt

* Thu Nov 03 2005 Than Ngo <than@redhat.com> 4.6-2
- fix wrong permission #171889

* Wed Oct 26 2005 Than Ngo <than@redhat.com> 4.6-1
- update to 4.6

* Mon Apr 11 2005 Than Ngo <than@redhat.com> 4.2.1-27
- apply debian patch to fix insecure temporary file creation
in unshar #154049, CAN-2005-0990

* Thu Mar 31 2005 Than Ngo <than@redhat.com> 4.2.1-26
- apply patch to fix multiple buffer overflows #152571

* Mon Mar 07 2005 Than Ngo <than@redhat.com> 4.2.1-25
- cleanup

* Sat Mar 05 2005 Than Ngo <than@redhat.com> 4.2.1-24
- rebuilt

* Wed Feb 09 2005 Than Ngo <than@redhat.com> 4.2.1-23
- rebuilt

* Fri Oct 01 2004 Than Ngo <than@redhat.com> 4.2.1-22
- fix buffer overflow in shar, (from Ulf Harnhammer)

* Thu Jun 24 2004 Than Ngo <than@redhat.com> 4.2.1-21
- add builrequires on gettext, bug #126599

* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt

* Fri May 21 2004 Than Ngo <than@redhat.com> 4.2.1-19
- add suse patch, which fixes buffer overflow in handling of -o option, #123230

* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt

* Mon Jun 16 2003 Than Ngo <than@redhat.com> 4.2.1-17
- rebuilt

* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
- rebuilt

* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt

* Wed Dec 11 2002 Tim Powers <timp@redhat.com> 4.2.1-13
- rebuild on all arches

* Mon Jun 24 2002 Than Ngo <than@redhat.com> 4.2.1-12
- fixed #66892

* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
- automated rebuild

* Thu May 23 2002 Tim Powers <timp@redhat.com>
- automated rebuild

* Sun Apr 14 2002 Than Ngo <than@redhat.com> 4.2.1-9
- added fix for Unsecure outputfile handling in uudecode (#63303)
- Copyright -> License

* Fri May 11 2001 Than Ngo <than@redhat.com>
- use find_lang macro
- use mktemp

* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
- automatic rebuild

* Sun Jun 18 2000 Than Ngo <than@redhat.de>
- fix typo (Bug# 12447)

* Sun Jun 18 2000 Than Ngo <than@redhat.de>
- rebuilt in the new build environment

* Thu Jun 08 2000 Than Ngo <than@redhat.de>
- add %%defattr(-,root,root) (Bug# 11990)
- use rpm macros

* Sun May 21 2000 Ngo Than <than@redhat.de>
- rebuild to put man pages and info files in right place

* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
- rebuild to gzip man pages

* Tue Dec 21 1999 Preston Brown <pbrown@redhat.com>
- sharutils 4.2.1 for Y2K (2 digit date) fix.
- ja message catalog move (#7878)

* Tue Sep 7 1999 Jeff Johnson <jbj@redhat.com>
- handle spaces in uuencoded file names (David Fox <dsfox@cogsci.ucsd.edu>).

* Wed Jul 28 1999 Cristian Gafton <gafton@redhat.com>
- use the /usr/share/locale for the localedir instead of /usr/lib/locale
(#2998)

* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
- auto rebuild in the new build environment (release 12)

* Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
- build for glibc 2.1

* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
- translations modified for de, fr, tr

* Sat Apr 11 1998 Cristian Gafton <gafton@redhat.com>
- manhattan rebuild

* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
- ALRIGHT! Woo-hoo! Erik already did the install-info stuff!
- added BuildRoot
- spec file cleanups

* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
- uses install-info

* Fri Jul 18 1997 Erik Troan <ewt@redhat.com>
- built against glibc

Loading…
Cancel
Save