fa01e4b
#
fa01e4b
# Important notes regarding the package:
fa01e4b
# ======================================
fa01e4b
#
fa01e4b
# LICENSES: There are more licenses used inside the gawk source tarball from
fa01e4b
#           upstream than listed in License: field below. However, some of
fa01e4b
#           those files with different license are not used for compiling the
fa01e4b
#           resulting binaries, nor they are additinionally shipped inside the
fa01e4b
#           final package or its subpacakges
fa01e4b
#
fa01e4b
#           To get latest version of currently used licenses in gawk run the
fa01e4b
#           licensecheck. We assume that files that do not explicitly state
fa01e4b
#           their copyright are licensed under GPLv3+ as per COPYING file
fa01e4b
#           inside root directory of source code.
fa01e4b
#
fa01e4b
#           Also, we have to ship additional license files with the package,
fa01e4b
#           because upstream does not include them inside their source tarball:
fa01e4b
#           and never will. They have also confirmed that the additional
fa01e4b
#           licenses shipped are correct. For more info, see:
fa01e4b
#
fa01e4b
#           http://lists.gnu.org/archive/html/bug-gawk/2016-09/msg00008.html
fa01e4b
fa01e4b
# === GLOBAL MACROS ===========================================================
fa01e4b
fa01e4b
# According to Fedora Package Guidelines, it is advised that packages that can
fa01e4b
# process untrusted input are build with position-idenpendent code (PIC).
fa01e4b
#
fa01e4b
# Koji should override the compilation flags and add the -fPIC or -fPIE flags by
fa01e4b
# default. This is here just in case this wouldn't happen for some reason.
fa01e4b
# For more info: https://fedoraproject.org/wiki/Packaging:Guidelines#PIE
fa01e4b
%global _hardened_build 1
fa01e4b
Andrew J. Schorr 72f94b3
# Extract the API major & minor versions, so we can export them below.
Andrew J. Schorr 72f94b3
# Ensure that the major version is >= 3, since that patch is not yet
Andrew J. Schorr 72f94b3
# in the tarball.
Andrew J. Schorr 72f94b3
%global gawk_api_major %%(x=`tar -xf %{SOURCE0} gawk-%{version}/gawkapi.h --to-stdout 2>/dev/null | \
7fc194c
                          grep -i -e "gawk_api_major.*[[:digit:]]" | \
Andrew J. Schorr 72f94b3
                          grep -o -e "[[:digit:]]"`; \
Andrew J. Schorr 72f94b3
			  [ "$x" -lt 3 ] && x=3; echo $x)
7fc194c
94d433f
%global gawk_api_minor %%(tar -xf %{SOURCE0} gawk-%{version}/gawkapi.h --to-stdout 2>/dev/null | \
7fc194c
                          grep -i -e "gawk_api_minor.*[[:digit:]]" | \
94d433f
                          grep -o -e "[[:digit:]]" || :)
f4d7025
fa01e4b
# =============================================================================
fa01e4b
75a36c9
Name:             gawk
75a36c9
Summary:          The GNU version of the AWK text processing utility
73503db
Version:          5.1.0
f59784f
Release:          4%{?dist}
75a36c9
7b5eea9
License:          GPLv3+ and GPLv2+ and LGPLv2+ and BSD
75a36c9
75a36c9
URL:              https://www.gnu.org/software/gawk/
75a36c9
Source0:          https://ftp.gnu.org/gnu/gawk/gawk-%{version}.tar.xz
75a36c9
75a36c9
Source1:          LICENSE.GPLv2
75a36c9
Source2:          LICENSE.LGPLv2
75a36c9
Source3:          LICENSE.BSD
75a36c9
75a36c9
Provides:         /bin/awk
75a36c9
Provides:         /bin/gawk
75a36c9
f4d7025
Provides:         gawk(abi) = %{gawk_api_major}.%{gawk_api_minor}
f4d7025
75a36c9
# Safeguard to allow this package to be installed only on UsrMove enabled
75a36c9
# filesystem. More info: https://fedoraproject.org/wiki/Features/UsrMove
75a36c9
Requires:         filesystem >= 3
7f06d52
7b5eea9
BuildRequires:    git
0f5d21b
BuildRequires:    gcc
32a6659
BuildRequires:    grep
0f5d21b
BuildRequires:    ghostscript
7f06d52
bc69bcc
# Extending GAWK possibilities:
75a36c9
BuildRequires:    libsigsegv-devel
08bec36
BuildRequires:    mpfr-devel
b5b97bf
BuildRequires:    readline-devel
7f06d52
bc69bcc
# Documentation (gawk-doc):
47a4810
BuildRequires:    texinfo-tex
bc69bcc
BuildRequires:    texlive-ec
bc69bcc
BuildRequires:    texlive-cm-super
bc69bcc
bc586f5
# Make check
bc586f5
BuildRequires:    glibc-all-langpacks
bc586f5
75a36c9
# NOTE: In case any patch updates the awkgram.y or command.y (IOW if anything
75a36c9
#       changes the timestamp of awkgram.y, and it becomes newer than awkgram.c,
75a36c9
#       same applies for command.y), the 'make' command will automatically try
75a36c9
#       to rebuild the affected files. In that case we need to include the
75a36c9
#       BuildRequires line below.
75a36c9
#
5325174
#       However, it's not necessary to include any changes to awkgram.c or
5325174
#       command.c in patches (when *.y respective files were patched), since
5325174
#       these files are automatically generated by bison.
5325174
#
75a36c9
# INFO: Upstream explicitly wishes that we do not use 'yacc' instead of bison.
75a36c9
#       For more info, see: https://bugzilla.redhat.com/show_bug.cgi?id=1176993
7600724
BuildRequires:    bison
75a36c9
637a5bc
# After patching the awkgram.y, and running autoreconf, we now need additional
637a5bc
# packages to correctly finish the build. These should not be needed in the
637a5bc
# future, once upstream fixes their requirement on 'aclocal-1.15'.
637a5bc
BuildRequires:    automake
875b9ac
BuildRequires: make
637a5bc
75a36c9
# =============================================================================
75a36c9
75a36c9
# NOTE: 'autosetup' macro (below) uses 'git' for applying the patches:
75a36c9
#       ->> All the patches should be provided in 'git format-patch' format.
75a36c9
#       ->> Auxiliary repository will be created during 'fedpkg prep', you
75a36c9
#           can see all the applied patches there via 'git log'.
75a36c9
75a36c9
# Upstream patches -- official upstream patches released by upstream since the
75a36c9
# ----------------    last rebase that are necessary for any reason:
5ad0639
#Patch000: example000.patch
73503db
99a8b8e
#Parts of the patch dealing with .info files, were removed, some parts of documentation might be broken
73503db
73503db
#Patch008: gawk-api-version.patch
99a8b8e
75a36c9
75a36c9
75a36c9
# Downstream patches -- these should be always included when doing rebase:
75a36c9
# ------------------
75a36c9
#Patch100: example100.patch
75a36c9
75a36c9
75a36c9
# Downstream patches for RHEL -- patches that we keep only in RHEL for various
75a36c9
# ---------------------------    reasons, but are not enabled in Fedora:
75a36c9
%if %{defined rhel} || %{defined centos}
75a36c9
#Patch200: example200.patch
75a36c9
%endif
75a36c9
75a36c9
75a36c9
# Patches to be removed -- deprecated functionality which shall be removed at
75a36c9
# ---------------------    some point in the future:
73503db
#Patch200: gawk-4.2.1-200-fix-build-for-f29.patch
75a36c9
c4831eb
cvsdist b39d579
%description
75a36c9
The gawk package contains the GNU version of AWK text processing utility. AWK is
75a36c9
a programming language designed for text processing and typically used as a data
75a36c9
extraction and reporting tool.
cvsdist b39d579
75a36c9
The gawk utility can be used to do quick and easy text pattern matching,
75a36c9
extracting or reformatting. It is considered to be a standard Linux tool for
75a36c9
text processing.
cvsdist b39d579
75a36c9
# === SUBPACKAGES =============================================================
75a36c9
cde0cc4
%package devel
cde0cc4
Summary:          Header file for gawk extensions development
3e76924
Requires:         %{name}%{?_isa} = %{version}-%{release}
cde0cc4
cde0cc4
%description devel
cde0cc4
This subpackage provides /usr/include/gawkapi.h header file, which contains
cde0cc4
definitions for use by extension functions calling into gawk. For more info
cde0cc4
about gawk extensions, please refer to `The GNU Awk User's Guide`.
cde0cc4
cde0cc4
However, unless you are developing an extension to gawk, you most likely do not
cde0cc4
need this subpackage.
cde0cc4
7b5eea9
# ---------------
75a36c9
47a4810
%package doc
47a4810
Summary:          Additional documentation for gawk utility
99bfcca
Requires:         %{name} = %{version}-%{release}
47a4810
BuildArch:        noarch
47a4810
47a4810
%description doc
47a4810
The base package of gawk comes pre-installed with `GAWK: Effective AWK
47a4810
Programming` and `TCP/IP Internetworking with gawk` user's guides, and you can
47a4810
access them via info pages.
47a4810
47a4810
However, this way of displaying information is less convenient for printing or
47a4810
displaying images. Therefore, this doc subpackage can provide you with HTML, PDF
47a4810
and PS versions of those documents, which might be useful when you need to
47a4810
access them regularly, and/or when you do not have access to Internet.
47a4810
ef1d4db
# ---------------
ef1d4db
ef1d4db
%package all-langpacks
ef1d4db
Summary: 	  Additional localisation files for gawk utility
ef1d4db
Supplements: %{name} = %{version}-%{release}
ef1d4db
Conflicts: %{name} < 5.0.1-8
ef1d4db
%description all-langpacks
ef1d4db
The base package of gawk supports only the english localisation. This subpackage
ef1d4db
contains additional localisation files.
ef1d4db
75a36c9
# === BUILD INSTRUCTIONS ======================================================
75a36c9
75a36c9
# Call the 'autosetup' macro to prepare the environment, but do not patch the
75a36c9
# source code yet -- we need to copy the LICENSE.* files into the directory:
cvsdist b39d579
%prep
75a36c9
%autosetup -N -S git
c5cc555
cp -a %{SOURCE1} %{SOURCE2} %{SOURCE3} .
cvsdist b39d579
75a36c9
# Add and amend the copied files to the initial commit, patch the source code:
75a36c9
git add --all --force .
75a36c9
git commit --all --amend --no-edit > /dev/null
75a36c9
%autopatch -p1
75a36c9
2f3792f
# ---------------
75a36c9
cvsdist b39d579
%build
637a5bc
# NOTE: The re-generating of ./configure (below) should be removed once the
637a5bc
#       direct dependency on 'aclocal-1.15' is fixed in upstream and backported.
637a5bc
autoreconf --force --verbose
637a5bc
504c03a
%configure
fd0a519
%make_build
cd2a92f
47a4810
# Build the documentation in PDF, postscript and HTML versions:
a5ee0b1
%make_build -C doc pdf
47a4810
mkdir -p html/gawk html/gawkinet
47a4810
makeinfo --html -I doc -o html/gawk     doc/gawk.texi
47a4810
makeinfo --html -I doc -o html/gawkinet doc/gawkinet.texi
47a4810
2f3792f
# ---------------
75a36c9
cd2a92f
%check
3a0a188
make check
cvsdist b39d579
2f3792f
# ---------------
75a36c9
0afa8f5
%install
7b5eea9
%make_install
cvsdist b39d579
2f3792f
# Fedora does not support multiple versions of same package installed,
2f3792f
# and the */dir info file (containing all top nodes) is automatically updated
2f3792f
# in the %%post and %%postun phases...
2f3792f
rm -f %{buildroot}%{_bindir}/gawk-%{version}*
2f3792f
rm -f %{buildroot}%{_infodir}/dir
9ab1734
2f3792f
# Create additional symlinks:
106b5d4
ln -sf gawk %{buildroot}%{_bindir}/awk
55e6766
ln -sf gawk.1.gz %{buildroot}%{_mandir}/man1/awk.1.gz
cvsdist fb7eed6
7b5eea9
ln -sf /usr/share/awk   %{buildroot}%{_datadir}/gawk
7b5eea9
ln -sf /usr/libexec/awk %{buildroot}%{_libexecdir}/gawk
7b5eea9
2f3792f
# Install NLS language files:
2f3792f
%find_lang %{name}
75a36c9
47a4810
# Install the all the documentation in the same folder - /usr/share/doc/gawk:
4c2dabf
install -m 0755 -d %{buildroot}%{_docdir}/%{name}/html/gawk/
4c2dabf
install -m 0755 -d %{buildroot}%{_docdir}/%{name}/html/gawkinet/
4c2dabf
4c2dabf
install -m 0644 -p html/gawk/*           %{buildroot}%{_docdir}/%{name}/html/gawk/
4c2dabf
install -m 0644 -p html/gawkinet/*       %{buildroot}%{_docdir}/%{name}/html/gawkinet/
4c2dabf
4c2dabf
install -m 0644 -p doc/gawk.{pdf,ps}     %{buildroot}%{_docdir}/%{name}
4c2dabf
install -m 0644 -p doc/gawkinet.{pdf,ps} %{buildroot}%{_docdir}/%{name}
75a36c9
cde0cc4
# === PACKAGING INSTRUCTIONS ==================================================
cde0cc4
ef1d4db
#%files -f %{name}.lang
ef1d4db
%files
adc0d37
%{_bindir}/*awk
7600724
%{_libdir}/*awk
bd6cd1a
%{_datadir}/*awk
7600724
%{_libexecdir}/*awk
7600724
%{_sysconfdir}/profile.d/gawk.*
adc0d37
adc0d37
%{_mandir}/man1/*
adc0d37
%{_mandir}/man3/*
adc0d37
%{_infodir}/*awk*.info*
75a36c9
47a4810
%doc NEWS README POSIX.STD README_d/README.multibyte
75a36c9
%license COPYING LICENSE.GPLv2 LICENSE.LGPLv2 LICENSE.BSD
75a36c9
2f3792f
# ---------------
ef1d4db
%files -f %{name}.lang all-langpacks
ef1d4db
# ---------------
cvsdist b39d579
cde0cc4
%files devel
cde0cc4
%{_includedir}/gawkapi.h
cde0cc4
2f3792f
# ---------------
47a4810
47a4810
# NOTE: For some reason, adding all files in one line causes RPM build to fail.
bd6cd1a
%files doc
bd6cd1a
%doc %{_docdir}/%{name}/gawk.{pdf,ps}
bd6cd1a
%doc %{_docdir}/%{name}/gawkinet.{pdf,ps}
47a4810
%doc %{_docdir}/%{name}/html
47a4810
cde0cc4
# =============================================================================
cde0cc4
cvsdist b39d579
%changelog
f59784f
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-4
f59784f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
f59784f
038d783
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-3
038d783
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
038d783
bff1660
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.1.0-2
bff1660
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
bff1660
73503db
* Tue Jul 21 2020 Jakub Martisko <jamartis@redhat.com> - 5.1.0-1
73503db
- New upstream release
73503db
ef1d4db
* Tue Feb 18 2020 Jakub Martisko <jamartis@redhat.com> - 5.0.1-8
ef1d4db
- Split the package into the main package and locales subpackage
ef1d4db
34c791a
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.1-7
34c791a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
34c791a
eecda43
* Wed Oct  9 2019 Jerry James <loganjerry@gmail.com> - 5.0.1-6
eecda43
- Rebuild for mpfr 4
eecda43
930898f
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.1-5
930898f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
930898f
Andrew J. Schorr 72f94b3
* Sat Jul 20 2019 Andrew Schorr <ajschorr@fedoraproject.org> - 5.0.1-4
Andrew J. Schorr 72f94b3
- Force api_major_version >= 3 because patch is not in tarball yet
Andrew J. Schorr 72f94b3
468192b
* Thu Jul 11 2019 Andrew Schorr <ajschorr@fedoraproject.org> - 5.0.1-3
Andrew J. Schorr 637e5fe
- Add upstream patch to fix the API version number
Andrew J. Schorr 637e5fe
99a8b8e
* Thu Jun 27 2019 Jakub Martisko <jamartis@redhat.com> - 5.0.1-2
99a8b8e
- Fix the bacward compatibility of the inplace extension
99a8b8e
- (renaming of some variables due to introduction of namespaces)
99a8b8e
  Resolves: #1723359
99a8b8e
13f8624
* Mon Jun 24 2019 Jakub Martisko <jamartis@redhat.com> - 5.0.1-1
13f8624
- New upstream release
13f8624
  Resolves: #1674922
13f8624
3240dba
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.2.1-6
3240dba
- Rebuild for readline 8.0
3240dba
bc586f5
* Wed Feb 13 2019 Jakub Martisko <jamartis@redhat.com> - 4.2.1-5
bc586f5
- Fix FTBFS caused by missing glibc langpacks required by make check
bc586f5
  Resolves: #1674922
bc586f5
f9e6d0e
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-4
f9e6d0e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f9e6d0e
fe3f587
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-3
fe3f587
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
fe3f587
637a5bc
* Thu Jun 21 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.2.1-2
637a5bc
- 5 important patches backported from upstream per their request:
637a5bc
    gawk-4.2.1-000-add-support-for-a-and-A-in-printf.patch
637a5bc
    gawk-4.2.1-001-remove-the-tail-recursion-optimization.patch
637a5bc
    gawk-4.2.1-002-copy-MPZ-MPFR-bits-also-in-r_dupnode.patch
637a5bc
    gawk-4.2.1-003-fix-rebuilding-records-if-using-API-parser.patch
637a5bc
    gawk-4.2.1-004-fix-a-corner-case-with-EPIPE-to-stdout-stderr.patch
637a5bc
5ad0639
* Mon Feb 26 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.2.1-1
5ad0639
- Rebase to latest stable release from upstream
5ad0639
41b966b
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.2.0-4
41b966b
- Escape macros in %%changelog
41b966b
3c900c5
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.0-3
3c900c5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3c900c5
115c913
* Thu Nov 23 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.2.0-2
115c913
- 'noarch' removed from *-devel subpackage
3e76924
- added arch requirement for *-devel subpackage
fd0a519
- updated the build process to use %%make_build macro
115c913
7600724
* Tue Nov 07 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.2.0-1
36f6f20
- Update to latest stable release from upstream [new API version - 2.0]
7600724
- Added latest relevant patches from upstream's gawk-4.2-stable branch
7600724
55e6766
* Fri Sep 15 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.4-7
55e6766
- Revert previous change of adding 'awk*' symlinks for info pages (bug #1486924)
376dfb2
- Added patch to correctly fix the info pages issue (bug #1486924)
fa01e4b
- specfile content refactored for better readability
cafbac3
- Package now provides its ABI version via gawk(abi)
cafbac3
- Added test for usage of correct gawk(abi) into %%check section
55e6766
9ab1734
* Thu Aug 31 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.4-6
9ab1734
- Added 'awk*' symlinks for info pages (bug #1486924)
9ab1734
a35665c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.4-5
a35665c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
a35665c
d50ce16
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.4-4
d50ce16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d50ce16
63f2ac8
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.4-3
63f2ac8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
63f2ac8
Igor Gnatenko 30e1259
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 4.1.4-2
Igor Gnatenko 30e1259
- Rebuild for readline 7.x
Igor Gnatenko 30e1259
bc69bcc
* Mon Sep 12 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.4-1
bc69bcc
- Update to latest stable release from upstream
bc69bcc
b5b97bf
* Mon Sep 12 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.3-9
b5b97bf
- Build gawk with readline support (useful for gawk debugger)
b5b97bf
08bec36
* Mon Sep 12 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.3-8
08bec36
- Support for GNU MPFR added (see 'man gawk', look for --bignum option)
08bec36
- Another round of specfile refactoring
08bec36
99bfcca
* Sun Sep 11 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.3-7
41b966b
- Trailing '%%' character removed from doc subpackage's NVR
99bfcca
47a4810
* Sun Sep 11 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.3-6
47a4810
- New gawk-doc subpackage created (contains HTML, PDF and PS documentation)
47a4810
cde0cc4
* Thu Sep  8 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.3-5
cde0cc4
- New gawk-devel subpackage created (contains gawkapi.h header file)
cde0cc4
c5cc555
* Tue Sep  6 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.1.3-4
c5cc555
- License field updated to more correctly reflect the actual licenses used,
c5cc555
  other licensing issues fixed as well
75a36c9
- Major specfile refactoring to comply with latest Fedora Packaging Guidelines
c5cc555
d361e64
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.3-3
d361e64
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d361e64
52beacf
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-2
52beacf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
52beacf
80a1683
* Thu May 21 2015 jchaloup <jchaloup@redhat.com> - 4.1.3-1
80a1683
- Update to upstream 4.1.3
80a1683
  resolves: #1223594
80a1683
be532fd
* Wed Apr 29 2015 jchaloup <jchaloup@redhat.com> - 4.1.2-1
be532fd
- Update to upstream 4.1.2
be532fd
  resolves: #1217027
be532fd
e7e7a71
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 4.1.1-7
e7e7a71
- Rebuilt for Fedora 23 Change
e7e7a71
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
e7e7a71
3a0a188
* Fri Jan 02 2015 jchaloup <jchaloup@redhat.com> - 4.1.1-6
3a0a188
- No need for build dependency on byacc/bison, fix make check
3a0a188
  resolves: #1176993
3a0a188
  resolves: #1177001
3a0a188
73cc747
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.1-5
73cc747
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
73cc747
c4b5d06
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 4.1.1-4
c4b5d06
- fix license handling
c4b5d06
2bed361
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.1-3
2bed361
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2bed361
586e5ea
* Tue May 13 2014 jchaloup <jchaloup@redhat.com> - 4.1.1-2
586e5ea
- resolves: #1089073
586e5ea
  eval invalid free
586e5ea
9459643
* Mon Apr 21 2014 Ondrej Vasik <ovasik@redhat.com> - 4.1.1-1
9459643
- Update to upstream 4.1.1 (#1087242)
9459643
07d75b9
* Sat Jan 25 2014 Ville Skytta <ville.skytta@iki.fi> - 4.1.0-3
64dd98c
- Own the %%{_libdir}/gawk dir.
64dd98c
- Use xz compressed upstream tarball.
64dd98c
70de45e
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.0-2
70de45e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
70de45e
1b34d91
* Mon May 13 2013 Fridolin Pokorny <fpokorny@redhat.com> -  4.1.0-1
1b34d91
- Update to upstream 4.1.0 (#962109)
1b34d91
- Removed FUTURES and LIMITATIONS
7ce019c
- Added unpackaged files
1b34d91
3c512cc
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.2-2
3c512cc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3c512cc
Martin Briza c0c4fc1
* Fri Jan 04 2013 Martin Briza <mbriza@redhat.com> - 4.0.2-1
Martin Briza c0c4fc1
- Update to upstream 4.0.2 (#890559)
Martin Briza c0c4fc1
e29e5bd
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-2
e29e5bd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e29e5bd
07d75b9
* Thu Jun 07 2012 Martin Briza <mbriza@redhat.com> -  4.0.1-1
Martin Bříza 0b2e8c0
- Update to upstream 4.0.1 (#808005)
Martin Bříza 0b2e8c0
- Corrected Source0 link to .tar.gz extension as not all releases are available as .tar.bz2
Martin Bříza 0b2e8c0
- Resolves #724817 - gawk-4.0.0 regression in '\' escape handling in gsub()
Martin Bříza 0b2e8c0
- Resolves #820550 - gawk: getline in BEGIN skips 2 lines
Martin Bříza 0b2e8c0
25b1ed0
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 4.0.0-4
25b1ed0
- add filesystem guard
25b1ed0
30ecccc
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 4.0.0-3
30ecccc
- install everything in /usr
30ecccc
  https://fedoraproject.org/wiki/Features/UsrMove
30ecccc
37ec893
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
37ec893
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
37ec893
Vojtech Vitek (V-Teq) f2bfc58
* Thu Jul 14 2011 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 4.0.0-1
Vojtech Vitek (V-Teq) 4516e3c
- Remove gawk-3.1.8-syntax.patch, gawk-3.1.8-double-free-wstptr.patch
Vojtech Vitek (V-Teq) 4516e3c
- Update to upstream 4.0.0 (#717885)
Vojtech Vitek (V-Teq) f2bfc58
d39634c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-4
d39634c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d39634c
Vojtech Vitek (V-Teq) 98fd994
* Tue Nov 02 2010 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 3.1.8-3
Vojtech Vitek (V-Teq) 98fd994
- fix syntax issues #528623, #528625
Vojtech Vitek (V-Teq) faca347
- add byacc to BuildRequires
Vojtech Vitek (V-Teq) faca347
- follow updated libsigsegv option in configure script
Vojtech Vitek (V-Teq) 98fd994
Vojtech Vitek (V-Teq) 0ca990f
* Tue Nov 02 2010 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 3.1.8-2
Vojtech Vitek (V-Teq) 0ca990f
- fix #629196: Double free in free_wstr
Vojtech Vitek (V-Teq) 0ca990f
- fix license tag, add description
Vojtech Vitek (V-Teq) 0ca990f
- remove BuildRoot tag
Vojtech Vitek (V-Teq) 0ca990f
5370755
* Fri May  7 2010 Stepan Kasal <kasal@ucw.cz> - 3.1.8-1
5370755
- new upstream version
5370755
- drop upstreamed patches
5370755
Jan Zeleny cf0b5e3
* Thu Apr 01 2010 Jan Zeleny <jzeleny@redhat.com> - 3.1.7-3
Jan Zeleny cf0b5e3
- fix issue with utf8 precision recognition (#513234)
Jan Zeleny cf0b5e3
4b7ff3f
* Thu Oct  8 2009 Stepan Kasal <skasal@redhat.com> - 3.1.7-2
4b7ff3f
- in posix mode, make ARGV[0] = argv[0] (#525381)
4b7ff3f
3e8376c
* Wed Sep  9 2009 Stepan Kasal <skasal@redhat.com> - 3.1.7-1
3e8376c
- new upstream version
3e8376c
- disable libsigsegv
3e8376c
3e8376c
* Fri Jul 24 2009 Fed Rel Eng <rel-eng@lists.fedoraproject.org> - 3.1.6-6
7d89cde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7d89cde
3e8376c
* Tue Feb 24 2009 Fed Rel Eng <rel-eng@lists.fedoraproject.org> - 3.1.6-5
f1bf319
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f1bf319
80b061a
* Fri Jan 30 2009 Stepan Kasal <skasal@redhat.com> - 3.1.6-4
80b061a
- remove the versioned binaries even if the version is modified by the
80b061a
  snapshot patch, modify the file list to check this (#476166)
80b061a
- update the snapshot patch, dropping the upstreamed
80b061a
  gawk-3.1.5-test-lc_num1.patch
80b061a
95e556e
* Thu Dec 11 2008 Stepan Kasal <skasal@redhat.com> - 3.1.6-3
95e556e
- grab the current stable tree from savannah
95e556e
a5ff77e
* Wed Nov 26 2008 Stepan Kasal <skasal@redhat.com> - 3.1.6-2
a5ff77e
- test-lc_num1.patch submitted upstream, link added
a5ff77e
3d4719f
* Tue Nov 25 2008 Stepan Kasal <skasal@redhat.com> - 3.1.6-1
3d4719f
- new upstream version
3d4719f
- drop Patch1: gawk-3.1.3-getpgrp_void.patch, it seems to be a workaround
3d4719f
  for a bug in gcc that seemed to exist at Fedora Core 1 times, see #114246
3d4719f
- drop patches 2-13, they have been integrated upstream
3d4719f
e444b04
* Mon Jul 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.1.5-18
e444b04
- fix license tag
e444b04
3555703
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.1.5-17
3555703
- Autorebuild for GCC 4.3
3555703
ca7a303
* Wed Oct 31 2007 Stepan Kasal <skasal@redhat.com> - 3.1.5-16
ca7a303
- Add gawk-3.1.5-quote-sticky.patch
ca7a303
- Resolves: #299551
ca7a303
- Add gawk-3.1.5-test-lc_num1.patch, a test for that bug.
ca7a303
- BuldRequire autoconf and automake, for the test patch.
ca7a303
- Add coment explaining why bison is buildrequired.
ca7a303
- Remove BuildRequire: flex.
ca7a303
cd2a92f
* Mon Feb 12 2007 Karel Zak <kzak@redhat.com> 3.1.5-15
cd2a92f
- fix #225777 - clean up spec file according to Fedora Merge Review
cd2a92f
  suggestions (thanks to Dan Horak and Patrice Dumas)
cd2a92f
c118600
* Mon Jan 15 2007 Karel Zak <kzak@redhat.com> 3.1.5-14
c118600
- sync with double-free upstream fixes
c118600
- fix #222531: Replace dist by ?dist
c118600
c118600
* Fri Jan 12 2007 Karel Zak <kzak@redhat.com> 3.1.5-13
c118600
- fix MB read 
c118600
653a18c
* Fri Jan 12 2007 Karel Zak <kzak@redhat.com> 3.1.5-13
653a18c
- improve freewstr patch
653a18c
3d4f4d3
* Thu Jan 11 2007 Karel Zak <kzak@redhat.com> 3.1.5-12
3d4f4d3
- fix #222080 double free or corruption
3d4f4d3
8454635
* Wed Jul 19 2006 Karel Zak <kzak@redhat.com> 3.1.5-11
8454635
- spec file cleanup
8454635
964b5b0
* Tue Jul 18 2006 Karel Zak <kzak@redhat.com> 3.1.5-10
964b5b0
- add IPv6 support (patch be Jan Pazdziora)
964b5b0
27331ff
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.1.5-9.1
27331ff
- rebuild
27331ff
378468e
* Mon Jul 10 2006 Karel Zak <kzak@redhat.com> 3.1.5-9
378468e
- fix numeric conversion problem (patch by Aharon Robbins)
378468e
  http://lists.gnu.org/archive/html/bug-gnu-utils/2006-07/msg00004.html
378468e
9a938f2
* Fri Jun 23 2006 Karel Zak <kzak@redhat.com> 3.1.5-8
9a938f2
- fix #194214 - gawk coredumps on syntax error (patch by Aharon Robbins)
9a938f2
b96b60a
* Wed Jun 21 2006 Karel Zak <kzak@redhat.com> 3.1.5-7
b96b60a
- fix internal names like /dev/user, /dev/pid, or /dev/fd/N (patch by Aharon Robbins)
b96b60a
7043540
* Tue Feb 14 2006 Karel Zak <kzak@redhat.com> 3.1.5-6.2
7043540
- new version of the gawk-3.1.5-wconcat.patch patch
7043540
08d741e
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.1.5-6.1
08d741e
- bump again for double-long bug on ppc(64)
08d741e
97e51ab
* Fri Feb 10 2006 Karel Zak <kzak@redhat.com> 3.1.5-6
97e51ab
- fix wide characters concatenation
97e51ab
179269a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.1.5-5.1
179269a
- rebuilt for new gcc4.1 snapshot and glibc changes
179269a
8ae7f06
* Thu Dec 22 2005 Karel Zak <kzak@redhat.com> 3.1.5-5
8ae7f06
- fix "gawk -v BINMODE=1" (patch by Aharon Robbins)
8ae7f06
- fix conversion from large number to string (patch by Aharon Robbins)
8ae7f06
d6ea928
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
d6ea928
- rebuilt
d6ea928
db044d4
* Sun Oct  9 2005 Karel Zak <kzak@redhat.com> 3.1.5-4
db044d4
- fix off-by-one error in assignment of sentinel value at 
8ae7f06
  end of FIELDWIDTHS array. (patch by Aharon Robbins)
db044d4
8d4cb7e
* Tue Sep 27 2005 Karel Zak <kzak@redhat.com> 3.1.5-3
8d4cb7e
- fix #169374 - Invalid Free (patch by Aharon Robbins)
8d4cb7e
bcd8832
* Tue Sep 20 2005 Karel Zak <kzak@redhat.com> 3.1.5-2
9538ce3
- fix #167181 - gawk owns /usr/share
9538ce3
- fix #160634 - should exclude dirs in spec file
bcd8832
de1f186
* Tue Sep 20 2005 Karel Zak <kzak@redhat.com> 3.1.5-1
de1f186
- new upstream version
de1f186
188124d
* Wed Jun 15 2005 Karel Zak <kzak@redhat.com> 3.1.4-6
188124d
- fix #160421 - crash when using non-decimal data in command line parameters
188124d
68b8d91
* Wed Mar 02 2005 Karsten Hopp <karsten@redhat.de> 3.1.4-5
68b8d91
- rebuild with gcc-4
68b8d91
d586a4d
* Fri Nov 12 2004 Karel Zak <kzak@redhat.com> 3.1.4-4
d586a4d
- rebuilt 
d586a4d
0783ce1
* Thu Nov 11 2004 Karel Zak <kzak@redhat.com> 3.1.4-3
0783ce1
- rebuilt to FC4 
0783ce1
0783ce1
* Tue Nov  9 2004 Karel Zak <kzak@redhat.com> 3.1.4-2
0783ce1
- add dfacache.patch for fix LC_ALL=de_DE.UTF-8 ./gawk '/^[ \t]/ { print }',
0783ce1
  (by Aharon Robbins), #135210, #131498
0783ce1
- add flonum.patch for "improved" handling of non-numeric constants,
0783ce1
  second version of patch (by Aharon Robbins)
0783ce1
  http://lists.gnu.org/archive/html/bug-gnu-utils/2004-10/msg00046.html
0783ce1
- add nextc.patch (by Andreas Schwab)
0783ce1
  http://lists.gnu.org/archive/html/bug-gnu-utils/2004-09/msg00093.html
0783ce1
- add uplow.patch for fix the wide char handling (by Stepan Kasal)
0783ce1
  http://lists.gnu.org/archive/html/bug-gnu-utils/2004-10/msg00099.html
0783ce1
0783ce1
* Tue Aug 31 2004 Thomas Woerner <twoerner@redhat.com> 3.1.4-1
0783ce1
- new version 3.1.4
8bf81eb
cvsdist c650950
* Mon Jun 28 2004 Thomas Woerner <twoerner@redhat.com> 3.1.3-9
cvsdist c650950
- fixed "read only one input file on 64-bit architectures"
cvsdist c650950
cvsdist 270b564
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 270b564
- rebuilt
cvsdist 270b564
cvsdist 62c6143
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 62c6143
- rebuilt
cvsdist 62c6143
cvsdist 912f53f
* Mon Jan 26 2004 Thomas Woerner <twoerner@redhat.com> 3.1.3-6
cvsdist 912f53f
- fixed getpgrp_void problem (#114246)
cvsdist 912f53f
- removed old patches
cvsdist 912f53f
cvsdist 610e356
* Fri Jan 09 2004 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 610e356
- add a "make check"
cvsdist 610e356
cvsdist 610e356
* Mon Dec 08 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 610e356
- disabled "shutup" patch to warn about wrong awk scripts again
cvsdist 610e356
cvsdist a020bfc
* Mon Sep 22 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- add even more patches from the mailinglist
cvsdist a020bfc
cvsdist a020bfc
* Tue Jul 15 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- add first bug-fixes from the mailinglist
cvsdist a020bfc
cvsdist a020bfc
* Sun Jul 13 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- update to 3.1.3
cvsdist a020bfc
- pgawk man-page fix and /proc fix are obsolete
cvsdist a020bfc
cvsdist a020bfc
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist a020bfc
- rebuilt
cvsdist a020bfc
cvsdist a020bfc
* Wed Jun 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- fix --exclude-docs #92252
cvsdist a020bfc
cvsdist a020bfc
* Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- fix find_lang
cvsdist a020bfc
cvsdist a020bfc
* Tue Apr 15 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- fix .so pointer in pgawk man-page
cvsdist a020bfc
- also read files in /proc correctly that have a filesize of 0
cvsdist a020bfc
cvsdist a020bfc
* Sun Mar 30 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a020bfc
- update to 3.1.2
cvsdist a020bfc
cvsdist fb7eed6
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist fb7eed6
- rebuilt
cvsdist fb7eed6
cvsdist fb7eed6
* Mon Dec 02 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist fb7eed6
- add find_lang to specfile
cvsdist fb7eed6
cvsdist fb7eed6
* Wed Nov 20 2002 Elliot Lee <sopwith@redhat.com> 3.1.1-7
cvsdist fb7eed6
- Add gawk-3.1.1-ngroups.patch, because NGROUPS_MAX comes from 
cvsdist fb7eed6
sys/param.h, and awk.h changes behaviour depending on whether NGROUPS_MAX 
cvsdist fb7eed6
is defined or not. (For ppc64)
cvsdist fb7eed6
cvsdist fb7eed6
* Wed Nov 06 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist fb7eed6
- remove /usr/share/info/dir
cvsdist fb7eed6
cvsdist fb7eed6
* Sun Nov 03 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist fb7eed6
- ugly fix to get locale files into the right location #74360
cvsdist fb7eed6
cvsdist fb7eed6
* Sun Aug 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist fb7eed6
- simplify install part of spec file
cvsdist fb7eed6
- do not package /bin/gawk-<version>  anymore
cvsdist fb7eed6
cvsdist fb7eed6
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist fb7eed6
- automated rebuild
cvsdist fb7eed6
cvsdist fb7eed6
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist fb7eed6
- automated rebuild
cvsdist fb7eed6
cvsdist fb7eed6
* Thu May 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist fb7eed6
- update to 3.1.1
cvsdist fb7eed6
cvsdist 0b4e9f0
* Sun Mar 17 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 0b4e9f0
- add patch from #61316 to ignore wrong hex numbers and treat them as text
cvsdist 0b4e9f0
cvsdist 2bb86e1
* Tue Jul 31 2001 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 2bb86e1
- do not warn about unnecessary escaping
cvsdist 2bb86e1
cvsdist cbf1dc0
* Fri Jun 29 2001 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist cbf1dc0
- fix path of man-pages
cvsdist cbf1dc0
cvsdist cbf1dc0
* Mon Jun 25 2001 Than Ngo <than@redhat.com> 3.1.0-1
cvsdist cbf1dc0
- update to 3.1.0
cvsdist cbf1dc0
- remove a uneeded patch
cvsdist cbf1dc0
- adapt a patch for 3.1.0
cvsdist cbf1dc0
cvsdist cbf1dc0
* Fri Jun  1 2001 Preston Brown <pbrown@redhat.com>
cvsdist cbf1dc0
- newer version of the mktemp patch from Solar Designer <solar@openwall.com>
cvsdist cbf1dc0
cvsdist cbf1dc0
* Fri May 11 2001 Preston Brown <pbrown@redhat.com> 3.0.6-2
cvsdist cbf1dc0
- use mktemp in igawk shell script, not shell pid variable
cvsdist cbf1dc0
cvsdist 7996bfa
* Wed Aug 16 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- update to 3.06
cvsdist 7996bfa
188124d
* Tue Aug 15 2000 Trond Eivind Glomsrod <teg@redhat.com>
cvsdist 7996bfa
- /usr/bin/gawk can't point at gawk - infinite symlink
cvsdist 7996bfa
- /usr/bin/awk can't point at gawk - infinite symlink
cvsdist 7996bfa
cvsdist 7996bfa
* Mon Aug 14 2000 Preston Brown <pbrown@redhat.com>
cvsdist 7996bfa
- absolute --> relative symlinks
cvsdist 7996bfa
cvsdist 7996bfa
* Tue Aug  8 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- fix paths for "configure" call
cvsdist 7996bfa
cvsdist 7996bfa
* Thu Jul 13 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- add another bugfix
cvsdist 7996bfa
cvsdist 7996bfa
* Thu Jul 13 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- update to 3.0.5 with bugfix
cvsdist 7996bfa
cvsdist 7996bfa
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 7996bfa
- automatic rebuild
cvsdist 7996bfa
cvsdist 7996bfa
* Fri Jun 30 2000 Matt Wilson <msw@redhat.com>
cvsdist 7996bfa
- revert to 3.0.4.  3.0.5 misgenerates e2fsprogs' test cases
cvsdist 7996bfa
cvsdist 7996bfa
* Wed Jun 28 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- update to 3.0.5
cvsdist b39d579
cvsdist 7996bfa
* Mon Jun 19 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- add defattr
cvsdist b39d579
cvsdist 7996bfa
* Mon Jun 19 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- FHS
cvsdist b39d579
cvsdist 7996bfa
* Tue Mar 14 2000 Florian La Roche <Florian.LaRoche@redhat.com>
cvsdist 7996bfa
- add bug-fix
cvsdist b39d579
cvsdist b39d579
* Thu Feb  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist b39d579
- Fix man page symlinks
cvsdist b39d579
- Fix description
cvsdist b39d579
- Fix download URL
cvsdist b39d579
cvsdist b39d579
* Wed Jun 30 1999 Jeff Johnson <jbj@redhat.com>
cvsdist b39d579
- update to 3.0.4.
cvsdist b39d579
cvsdist b39d579
* Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
cvsdist b39d579
- make sure all binaries are stripped
cvsdist b39d579
cvsdist b39d579
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist b39d579
- auto rebuild in the new build environment (release 6)
cvsdist b39d579
cvsdist b39d579
* Fri Feb 19 1999 Jeff Johnson <jbj@redhat.com>
cvsdist b39d579
- Install info pages (#1242).
cvsdist b39d579
cvsdist b39d579
* Fri Dec 18 1998 Cristian Gafton <gafton@redhat.com>
cvsdist b39d579
- build for glibc 2.1
cvsdist b39d579
- don't package /usr/info/dir
cvsdist b39d579
cvsdist b39d579
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
cvsdist b39d579
- translations modified for de, fr, tr
cvsdist b39d579
cvsdist b39d579
* Wed Apr 08 1998 Cristian Gafton <gafton@redhat.com>
cvsdist b39d579
- upgraded to 3.0.3
cvsdist b39d579
- added documentation and buildroot
cvsdist b39d579
cvsdist b39d579
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
cvsdist b39d579
- built against glibc