8cc84d
%global tex_texinfo %{_datadir}/texmf/tex/texinfo
8cc84d
8cc84d
Summary: Tools needed to create Texinfo format documentation files
8cc84d
Name: texinfo
8cc84d
Version: 5.1
8cc84d
Release: 5%{?dist}
8cc84d
License: GPLv3+
8cc84d
Group: Applications/Publishing
8cc84d
Url: http://www.gnu.org/software/texinfo/
8cc84d
Source0: ftp://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.xz
8cc84d
Source1: ftp://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.xz.sig
8cc84d
Source2: info-dir
8cc84d
Patch0: texinfo-4.12-zlib.patch
8cc84d
Patch1: texinfo-4.13a-powerpc.patch
8cc84d
# Patch2: bz#1053129, already upstream
8cc84d
Patch2: texinfo-5.2-non-existing-info-page-segfault.patch
8cc84d
# Patch3: bz#970986, already upstream
8cc84d
Patch3: texinfo-5.1-pod-simple-texinfo-test-fail-fix.patch
8cc84d
# Patch4: bz#1134160, already upstream
8cc84d
Patch4: texinfo-5.1-enumerate-start-greater-than-nine-fix.patch
8cc84d
Requires(post): /sbin/install-info
8cc84d
Requires(preun): /sbin/install-info
8cc84d
Requires: perl >= 5.7.3, perl(Text::Unidecode)
8cc84d
# Review Request for perl-Unicode-EastAsianWidth - bz874743
8cc84d
#Requires: perl(Unicode::EastAsianWidth)
8cc84d
BuildRequires: zlib-devel, ncurses-devel, help2man, perl(Data::Dumper)
8cc84d
8cc84d
%description
8cc84d
Texinfo is a documentation system that can produce both online
8cc84d
information and printed output from a single source file. The GNU
8cc84d
Project uses the Texinfo file format for most of its documentation.
8cc84d
8cc84d
Install texinfo if you want a documentation system for producing both
8cc84d
online and print documentation from the same source file and/or if you
8cc84d
are going to write documentation for the GNU Project.
8cc84d
8cc84d
%package -n info
8cc84d
Summary: A stand-alone TTY-based reader for GNU texinfo documentation
8cc84d
Group: System Environment/Base
8cc84d
8cc84d
%description -n info
8cc84d
The GNU project uses the texinfo file format for much of its
8cc84d
documentation. The info package provides a standalone TTY-based
8cc84d
browser program for viewing texinfo files.
8cc84d
8cc84d
%package tex
8cc84d
Summary: Tools for formatting Texinfo documentation files using TeX
8cc84d
Group: Applications/Publishing
8cc84d
Requires: texinfo = %{version}-%{release}
8cc84d
Requires: tex(tex) tex(epsf.tex)
8cc84d
Requires(post): %{_bindir}/texconfig-sys
8cc84d
Requires(postun): %{_bindir}/texconfig-sys
8cc84d
8cc84d
%description tex
8cc84d
Texinfo is a documentation system that can produce both online
8cc84d
information and printed output from a single source file. The GNU
8cc84d
Project uses the Texinfo file format for most of its documentation.
8cc84d
8cc84d
The texinfo-tex package provides tools to format Texinfo documents
8cc84d
for printing using TeX.
8cc84d
8cc84d
%prep
8cc84d
%setup -q
8cc84d
%patch0 -p1 -b .zlib
8cc84d
%patch1 -p1 -b .powerpc
8cc84d
%patch2 -p1 -b .non-existing-info-page-segfault
8cc84d
%patch3 -p1 -b .pod-simple-texinfo-test-fail-fix
8cc84d
%patch4 -p1 -b .enumerate-start-greater-than-nine-fix
8cc84d
8cc84d
%build
8cc84d
%configure --with-external-Text-Unidecode \
8cc84d
           --with-external-libintl-perl \
8cc84d
# line below - bz874743
8cc84d
#            --with-external-Unicode-EastAsianWidth
8cc84d
make %{?_smp_mflags}
8cc84d
8cc84d
%install
8cc84d
mkdir -p ${RPM_BUILD_ROOT}/sbin
8cc84d
8cc84d
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
8cc84d
8cc84d
mkdir -p $RPM_BUILD_ROOT%{tex_texinfo}
8cc84d
install -p -m644 doc/texinfo.tex doc/txi-??.tex $RPM_BUILD_ROOT%{tex_texinfo}
8cc84d
8cc84d
install -p -m644 %{SOURCE2} $RPM_BUILD_ROOT%{_infodir}/dir
8cc84d
mv $RPM_BUILD_ROOT%{_bindir}/install-info $RPM_BUILD_ROOT/sbin
8cc84d
8cc84d
%find_lang %{name}
8cc84d
%find_lang %{name}_document
8cc84d
8cc84d
%post
8cc84d
if [ -f %{_infodir}/texinfo.gz ]; then # --excludedocs?
8cc84d
    /sbin/install-info %{_infodir}/texinfo.gz %{_infodir}/dir || :
8cc84d
fi
8cc84d
8cc84d
%preun
8cc84d
if [ $1 = 0 ]; then
8cc84d
    if [ -f %{_infodir}/texinfo.gz ]; then # --excludedocs?
8cc84d
        /sbin/install-info --delete %{_infodir}/texinfo.gz %{_infodir}/dir || :
8cc84d
    fi
8cc84d
fi
8cc84d
8cc84d
%post -n info
8cc84d
if [ -f %{_infodir}/info-stnd.info ]; then # --excludedocs?
8cc84d
    /sbin/install-info %{_infodir}/info-stnd.info %{_infodir}/dir
8cc84d
fi
8cc84d
if [ -x /bin/sed ]; then
8cc84d
    /bin/sed -i '/^This is.*produced by makeinfo.*from/d' %{_infodir}/dir || :
8cc84d
fi
8cc84d
8cc84d
%preun -n info
8cc84d
if [ $1 = 0 ]; then
8cc84d
    if [ -f %{_infodir}/info-stnd.info ]; then # --excludedocs?
8cc84d
        /sbin/install-info --delete %{_infodir}/info-stnd.info %{_infodir}/dir \
8cc84d
        || :
8cc84d
    fi
8cc84d
fi
8cc84d
8cc84d
%post tex
8cc84d
%{_bindir}/texconfig-sys rehash 2> /dev/null || :
8cc84d
8cc84d
%postun tex
8cc84d
%{_bindir}/texconfig-sys rehash 2> /dev/null || :
8cc84d
8cc84d
8cc84d
%files -f %{name}.lang -f %{name}_document.lang
8cc84d
%doc AUTHORS ChangeLog NEWS README TODO COPYING
8cc84d
%{_bindir}/makeinfo
8cc84d
%{_bindir}/texi2any
8cc84d
%{_bindir}/pod2texi
8cc84d
%{_datadir}/texinfo
8cc84d
%{_infodir}/texinfo*
8cc84d
%{_mandir}/man1/makeinfo.1*
8cc84d
%{_mandir}/man5/texinfo.5*
8cc84d
%{_mandir}/man1/texi2any.1*
8cc84d
%{_mandir}/man1/pod2texi.1*
8cc84d
8cc84d
%files -n info
8cc84d
%config(noreplace) %verify(not md5 size mtime) %{_infodir}/dir
8cc84d
%doc COPYING
8cc84d
%{_bindir}/info
8cc84d
%{_bindir}/infokey
8cc84d
%{_infodir}/info.info*
8cc84d
%{_infodir}/info-stnd.info*
8cc84d
/sbin/install-info
8cc84d
%{_mandir}/man1/info.1*
8cc84d
%{_mandir}/man1/infokey.1*
8cc84d
%{_mandir}/man1/install-info.1*
8cc84d
%{_mandir}/man5/info.5*
8cc84d
8cc84d
%files tex
8cc84d
%{_bindir}/texindex
8cc84d
%{_bindir}/texi2dvi
8cc84d
%{_bindir}/texi2pdf
8cc84d
%{_bindir}/pdftexi2dvi
8cc84d
%{tex_texinfo}/
8cc84d
%{_mandir}/man1/texindex.1*
8cc84d
%{_mandir}/man1/texi2dvi.1*
8cc84d
%{_mandir}/man1/texi2pdf.1*
8cc84d
%{_mandir}/man1/pdftexi2dvi.1*
8cc84d
8cc84d
%changelog
8cc84d
* Mon Oct 02 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.1-5
8cc84d
- Fix upstream test failure in Pod-Simple-Texinfo
8cc84d
  Resolves: #970986
8cc84d
- Fix @enumerate does not support start numbers greater than nine
8cc84d
  Resolves: #1134160
8cc84d
8cc84d
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 5.1-4
8cc84d
- Mass rebuild 2014-01-24
8cc84d
8cc84d
* Mon Jan 20 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.1-3
8cc84d
- Fix info segfaults on non existing info page when used with -o
8cc84d
  Resolves: #1053129
8cc84d
8cc84d
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 5.1-2
8cc84d
- Mass rebuild 2013-12-27
8cc84d
8cc84d
* Mon Mar 18 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.1-1
8cc84d
- Update to texinfo-5.1
8cc84d
8cc84d
* Tue Mar 05 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.0-3
8cc84d
- Fix bug in parser
8cc84d
  Resolves: #917974
8cc84d
8cc84d
* Wed Feb 20 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.0-2
8cc84d
- Fix configure arguments, remove ChangeLog conversion,
8cc84d
  move texi2any/pod2texi to main package
8cc84d
8cc84d
* Tue Feb 19 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.0-1
8cc84d
- Update to texinfo-5.0
8cc84d
8cc84d
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-20
8cc84d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8cc84d
8cc84d
* Tue Nov 13 2012 Jindrich Novy <jnovy@redhat.com> - 4.13a-19
8cc84d
- require epsf.tex (#868011)
8cc84d
8cc84d
* Mon Sep 10 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-18
8cc84d
- Fix issues found by fedora-review utility in the spec file
8cc84d
8cc84d
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-17
8cc84d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8cc84d
8cc84d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-16
8cc84d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8cc84d
8cc84d
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-15
8cc84d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8cc84d
8cc84d
* Tue Jan 11 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-14
8cc84d
- Fix missing Texinfo manual in the Directory node
8cc84d
  Resolves: #662382
8cc84d
8cc84d
* Wed Nov 10 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-13
8cc84d
- Fix get_sectioning_number function problem
8cc84d
  Resolves: #651314
8cc84d
8cc84d
* Tue Nov  9 2010 Jindrich Novy <jnovy@redhat.com> - 4.13a-12
8cc84d
- require tex(tex) instead of tetex in texinfo-tex
8cc84d
8cc84d
* Mon Oct 11 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-11
8cc84d
- Fix incopatible regexp with the lates version of egrep in texi2dvi script
8cc84d
  Resolves: #641534
8cc84d
8cc84d
* Tue Aug 31 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-10
8cc84d
- Fix info crash when using index in help window
8cc84d
  Resolves: #579263
8cc84d
8cc84d
* Mon Jan 11 2010 Jan Gorig <jgorig@redhat.com> - 4.13a-9
8cc84d
- Fix PowerPC return code bug #531349
8cc84d
8cc84d
* Mon Dec 14 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-8
8cc84d
- Fix memory allocation bug when using old-style --section "Foo" arguments
8cc84d
8cc84d
* Wed Sep  2 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-7
8cc84d
- Fix errors installing texinfo/info with --excludedocs
8cc84d
  Resolves: #515909
8cc84d
  Resolves: #515938
8cc84d
8cc84d
* Wed Aug 12 2009 Ville Skyttä <ville.skytta@iki.fi> - 4.13a-6
8cc84d
- Use lzma compressed upstream tarball.
8cc84d
8cc84d
* Wed Aug  5 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-5
8cc84d
- Fix changelog entry and rebuild
8cc84d
8cc84d
* Tue Aug  4 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-4
8cc84d
- Fix data types (fix by Ralf Corsepius)
8cc84d
  Resolves: #515402
8cc84d
8cc84d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-3
8cc84d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8cc84d
8cc84d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-2
8cc84d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8cc84d
8cc84d
* Thu Nov 20 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13-1
8cc84d
- Update to texinfo-4.13a
8cc84d
  Resolves: #471194
8cc84d
  Resolves: #208511
8cc84d
8cc84d
* Wed Jun  4 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-4
8cc84d
- Remove sed Requires (dependency loop)
8cc84d
  Resolves: #449705
8cc84d
8cc84d
* Mon Jun  2 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-3
8cc84d
- Fix install-info crashes on some info files
8cc84d
  Resolves: #449292
8cc84d
8cc84d
* Thu May 29 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-2
8cc84d
- Fix Requires and info post script
8cc84d
8cc84d
* Wed May 14 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-1
8cc84d
- Update to texinfo-4.12
8cc84d
- Remove description ("This is...") from /usr/share/info/dir in info
8cc84d
  post install section
8cc84d
  Resolves: #433535
8cc84d
8cc84d
* Mon Feb  4 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-5
8cc84d
- Merge Review
8cc84d
  Resolves: #226488
8cc84d
8cc84d
* Mon Dec 10 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-4
8cc84d
- Don't insert description ("This is...") into the direntry section
8cc84d
  of some generated files
8cc84d
  Resolves: #394191
8cc84d
8cc84d
* Tue Nov 13 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-3
8cc84d
- Fix info crashes when resizing window
8cc84d
  Resolves: #243971
8cc84d
8cc84d
* Wed Nov  7 2007 Stepan Kasal <skasal@redhat.com> - 4.11-2
8cc84d
- fix a typo in texinfo-tex summary
8cc84d
  Resolves: #239216
8cc84d
8cc84d
* Wed Sep 19 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-1
8cc84d
- Rebase to upstream texinfo-4.11 (update zlib.patch, drop
8cc84d
  texindex.patch and 0xA0.patch -- both included in upstream)
8cc84d
  Resolves: #295441
8cc84d
8cc84d
* Tue Aug 28 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.9-2
8cc84d
- Fix license
8cc84d
- Rebuild
8cc84d
8cc84d
* Tue Jul 31 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.9-1
8cc84d
- Rebase to upstream texinfo-4.9, fix typo in summary
8cc84d
  Resolves: #250119, #248883
8cc84d
8cc84d
* Mon Dec  4 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-15
8cc84d
- Don't replace 0xA0 by a space in makeinfo
8cc84d
  Related: #208511
8cc84d
- Fix some rpmlint warnings
8cc84d
8cc84d
* Sun Nov  5 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-14
8cc84d
- Remove off-line sorting from texindex (fixes CVE 2006-4810)
8cc84d
8cc84d
* Mon Oct  9 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-13
8cc84d
- Don't use mode 0666 for the texindex temporary files
8cc84d
8cc84d
* Mon Oct  9 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-12
8cc84d
- Don't leave around temporary files used by texindex
8cc84d
- Add missing error handling to texinfo-CAN-2005-3011.patch
8cc84d
8cc84d
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.8-11.1
8cc84d
- rebuild
8cc84d
8cc84d
* Sat Mar 25 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-11
8cc84d
- Split texinfo-tex from the texinfo package (#178406)
8cc84d
- Ship COPYING, don't ship INSTALL
8cc84d
8cc84d
* Sun Mar 19 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-10
8cc84d
- Remove incorrect Prefix:
8cc84d
- Drop info/README
8cc84d
- Convert change log to UTF-8
8cc84d
8cc84d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.8-9.2
8cc84d
- bump again for double-long bug on ppc(64)
8cc84d
8cc84d
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.8-9.1
8cc84d
- rebuilt for new gcc4.1 snapshot and glibc changes
8cc84d
8cc84d
* Mon Jan 16 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-9
8cc84d
- Fix handling of bzip2'ed files (#128637)
8cc84d
8cc84d
* Mon Jan 16 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-8
8cc84d
- Ignore scriptlet failures with --excludedocs (#166958)
8cc84d
- Don't link texindex to zlib, don't pretend to link to zlib statically
8cc84d
8cc84d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
8cc84d
- rebuilt
8cc84d
8cc84d
* Fri Oct 14 2005 Tim Waugh <twaugh@redhat.com> 4.8-7
8cc84d
- Apply patch to fix CAN-2005-3011 (bug #169585).
8cc84d
8cc84d
* Thu Jun  9 2005 Tim Waugh <twaugh@redhat.com> 4.8-6
8cc84d
- Ship texi2pdf man page, taken from tetex-2.0.2 RPM.
8cc84d
8cc84d
* Tue Jun  7 2005 Tim Waugh <twaugh@redhat.com> 4.8-5
8cc84d
- Ship texi2pdf (bug #147271).
8cc84d
8cc84d
* Mon Mar 14 2005 Tim Waugh <twaugh@redhat.com> 4.8-4
8cc84d
- Requires tetex (bug #151075).
8cc84d
8cc84d
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 4.8-3
8cc84d
- Rebuild for new GCC.
8cc84d
8cc84d
* Mon Feb  7 2005 Tim Waugh <twaugh@redhat.com> 4.8-2
8cc84d
- Don't ship texi2pdf (bug #147271).
8cc84d
8cc84d
* Thu Feb  3 2005 Tim Waugh <twaugh@redhat.com> 4.8-1
8cc84d
- 4.8.
8cc84d
8cc84d
* Thu Dec 30 2004 Tim Waugh <twaugh@redhat.com> 4.7-6
8cc84d
- Fixed URL (bug #143729).
8cc84d
8cc84d
* Thu Aug 12 2004 Tim Waugh <twaugh@redhat.com> 4.7-5
8cc84d
- Rebuilt.
8cc84d
8cc84d
* Wed Jul  7 2004 Tim Waugh <twaugh@redhat.com> 4.7-4
8cc84d
- Build for FC2.
8cc84d
8cc84d
* Tue Jun 29 2004 Tim Waugh <twaugh@redhat.com> 4.7-3
8cc84d
- Fix grouping in user-defined macros.
8cc84d
8cc84d
* Mon Jun 28 2004 Tim Waugh <twaugh@redhat.com> 4.7-2
8cc84d
- Build requires ncurses-devel (bug #126600).
8cc84d
8cc84d
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 4.7-1
8cc84d
- 4.7.
8cc84d
8cc84d
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
8cc84d
- rebuilt
8cc84d
8cc84d
* Tue Mar  2 2004 Tim Waugh <twaugh@redhat.com>
8cc84d
- Fixed compiler warning (bug #117097).
8cc84d
8cc84d
* Sat Feb 21 2004 Tim Waugh <twaugh@redhat.com> 4.6-3
8cc84d
- Build requires zlib-devel (bug #116436).
8cc84d
8cc84d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
8cc84d
- rebuilt
8cc84d
8cc84d
* Tue Dec  2 2003 Tim Waugh <twaugh@redhat.com> 4.6-1
8cc84d
- Fixed compiler warning (bug #111279).
8cc84d
- 4.6.
8cc84d
8cc84d
* Tue Jun 17 2003 Tim Waugh <twaugh@redhat.com> 4.5-3
8cc84d
- Rebuilt.
8cc84d
8cc84d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
8cc84d
- rebuilt
8cc84d
8cc84d
* Tue May  6 2003 Tim Waugh <twaugh@redhat.com>
8cc84d
- No longer need 3.12h-fix patch.
8cc84d
8cc84d
* Tue Apr 29 2003 Tim Waugh <twaugh@redhat.com> 4.5-1
8cc84d
- 4.5 (bug #88428).  Update zlib patch.
8cc84d
- Add URL tag (bug #54613).
8cc84d
8cc84d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.3-5
8cc84d
- rebuilt
8cc84d
8cc84d
* Tue Jan  7 2003 Tim Waugh <twaugh@redhat.com> 4.3-4
8cc84d
- Fix up spec_install_post to strip debug info out to separate package
8cc84d
  (bug #81226).
8cc84d
8cc84d
* Thu Dec 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> 4.3-3
8cc84d
- Make /usr/share/info/dir a real file and remove /etc/info-dir, that
8cc84d
  file should be unused for a long time.
8cc84d
8cc84d
* Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com> 4.3-2
8cc84d
- Don't strip files here (rpm takes care of it)
8cc84d
- Use pushd/popd instead of enclosing things in (), to make
8cc84d
  error detection easier
8cc84d
- Use _smp_mflags
8cc84d
8cc84d
* Tue Nov 19 2002 Tim Waugh <twaugh@redhat.com> 4.3-1
8cc84d
- 4.3.
8cc84d
- No longer need fileextension or malloccheck patches.
8cc84d
- Update zlib patch.
8cc84d
8cc84d
* Wed Oct 23 2002 Tim Waugh <twaugh@redhat.com> 4.2-6
8cc84d
- Don't install files not packaged.
8cc84d
- Fix file list (bug #55816).
8cc84d
8cc84d
* Mon Sep  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-5
8cc84d
- Fix crash w/ MALLOC_CHECK_ == 2 (#72831)
8cc84d
8cc84d
* Tue Jul  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-4
8cc84d
- Add infokey (#67728)
8cc84d
8cc84d
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
8cc84d
- automated rebuild
8cc84d
8cc84d
* Thu May 23 2002 Tim Powers <timp@redhat.com>
8cc84d
- automated rebuild
8cc84d
8cc84d
* Tue Apr 23 2002 Florian La Roche <Florian.LaRoche@redhat.de>
8cc84d
- 4.2
8cc84d
8cc84d
* Tue Mar  5 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.1-1
8cc84d
- 4.1 (#60714)
8cc84d
8cc84d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
8cc84d
- automated rebuild
8cc84d
8cc84d
* Tue Aug  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 4.0b-3
8cc84d
- Don't create the desktop file - we don't install it anyway.
8cc84d
8cc84d
* Sat Jul 21 2001 Tim Powers <timp@redhat.com>
8cc84d
- remove the info viewer from the menus, it's cluttering things
8cc84d
8cc84d
* Wed May 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
8cc84d
- 4.0b
8cc84d
8cc84d
* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 4.0a-1
8cc84d
- Update to 4.0a, the patch looks sane
8cc84d
8cc84d
* Fri Feb 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
8cc84d
- langify
8cc84d
- don't create desktop file in spec file
8cc84d
8cc84d
* Tue Jan 23 2001 Preston Brown <pbrown@redhat.com>
8cc84d
- danish translation added
8cc84d
8cc84d
* Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8cc84d
- Rebuild to get rid of 0777 dirs
8cc84d
8cc84d
* Wed Nov  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8cc84d
- Fix recognition of .?o extensions in texi2dvi, Bug #20498
8cc84d
8cc84d
* Thu Sep  7 2000 Jeff Johnson <jbj@redhat.com>
8cc84d
- FHS packaging (64bit systems need to use %%_libdir not /usr/lib).
8cc84d
8cc84d
* Sat Aug 19 2000 Trond Eivind Glomsrød <teg@redhat.com>
8cc84d
- really do it - #16120
8cc84d
8cc84d
* Mon Aug 14 2000 Helge Deller <hdeller@redhat.com>
8cc84d
- gzip man-pages, #16120
8cc84d
8cc84d
* Mon Aug  7 2000 Tim Waugh <twaugh@redhat.com>
8cc84d
- List man-pages in %%files.
8cc84d
8cc84d
* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8cc84d
- Add Swedish and German translations to desktop file, Bug #15366
8cc84d
8cc84d
* Thu Aug  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8cc84d
- mark /etc/info-dir %%verify(not md5 size mime), Bug #14826
8cc84d
8cc84d
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
8cc84d
- automatic rebuild
8cc84d
8cc84d
* Wed Jun 28 2000 Bill Nottingham <notting@redhat.com>
8cc84d
- fix build wackiness with info page compressing
8cc84d
8cc84d
* Fri Jun 16 2000 Bill Nottingham <notting@redhat.com>
8cc84d
- fix info-dir symlink
8cc84d
8cc84d
* Thu May 18 2000 Preston Brown <pbrown@redhat.com>
8cc84d
- use FHS paths for info.
8cc84d
8cc84d
* Fri Mar 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8cc84d
- rebuild with current ncurses
8cc84d
8cc84d
* Wed Feb 09 2000 Preston Brown <pbrown@redhat.com>
8cc84d
- wmconfig -> desktop
8cc84d
8cc84d
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
8cc84d
- fix descriptions
8cc84d
8cc84d
* Wed Jan 26 2000 Bernhard Rosenkraenzer <bero@redhat.com>
8cc84d
- move info-stnd.info* to the info package, /sbin/install-info it
8cc84d
  in %%post (Bug #6632)
8cc84d
8cc84d
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
8cc84d
- recompile to eliminate ncurses foul-up.
8cc84d
8cc84d
* Tue Nov  9 1999 Bernhard Rosenkränzer <bero@redhat.com>
8cc84d
- 4.0
8cc84d
- handle RPM_OPT_FLAGS
8cc84d
8cc84d
* Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
8cc84d
- import version 3.12h into 6.1 tree from HJLu
8cc84d
8cc84d
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
8cc84d
- auto rebuild in the new build environment (release 4)
8cc84d
8cc84d
* Wed Mar 17 1999 Erik Troan <ewt@redhat.com>
8cc84d
- hacked to use zlib to get rid of the requirement on gzip
8cc84d
8cc84d
* Wed Mar 17 1999 Matt Wilson <msw@redhat.com>
8cc84d
- install-info prerequires gzip
8cc84d
8cc84d
* Thu Mar 11 1999 Cristian Gafton <gafton@redhat.com>
8cc84d
- version 3.12f
8cc84d
- make /usr/info/dir to be a %%config(noreplace)
8cc84d
8cc84d
* Wed Nov 25 1998 Jeff Johnson <jbj@redhat.com>
8cc84d
- rebuild to fix docdir perms.
8cc84d
8cc84d
* Thu Sep 24 1998 Cristian Gafton <gafton@redhat.com>
8cc84d
- fix allocation problems in install-info
8cc84d
8cc84d
* Wed Sep 23 1998 Jeff Johnson <jbj@redhat.com>
8cc84d
- /sbin/install-info should not depend on /usr/lib/libz.so.1 -- statically
8cc84d
  link with /usr/lib/libz.a.
8cc84d
8cc84d
* Fri Aug 07 1998 Erik Troan <ewt@redhat.com>
8cc84d
- added a prereq of bash to the info package -- see the comment for a
8cc84d
  description of why that was done
8cc84d
8cc84d
* Tue Jun 09 1998 Prospector System <bugs@redhat.com>
8cc84d
- translations modified for de
8cc84d
8cc84d
* Tue Jun  9 1998 Jeff Johnson <jbj@redhat.com>
8cc84d
- add %%attr to permit non-root build.
8cc84d
8cc84d
* Thu May 07 1998 Prospector System <bugs@redhat.com>
8cc84d
- translations modified for de, fr, tr
8cc84d
8cc84d
* Sun Apr 12 1998 Cristian Gafton <gafton@redhat.com>
8cc84d
- added %%clean
8cc84d
- manhattan build
8cc84d
8cc84d
* Wed Mar 04 1998 Cristian Gafton <gafton@redhat.com>
8cc84d
- upgraded to version 3.12
8cc84d
- added buildroot
8cc84d
8cc84d
* Sun Nov 09 1997 Donnie Barnes <djb@redhat.com>
8cc84d
- moved /usr/info/dir to /etc/info-dir and made /usr/info/dir a
8cc84d
  symlink to /etc/info-dir.
8cc84d
8cc84d
* Wed Oct 29 1997 Donnie Barnes <djb@redhat.com>
8cc84d
- added wmconfig entry for info
8cc84d
8cc84d
* Wed Oct 01 1997 Donnie Barnes <djb@redhat.com>
8cc84d
- stripped /sbin/install-info
8cc84d
8cc84d
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
8cc84d
- added info-dir to filelist
8cc84d
8cc84d
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
8cc84d
- added patch from sopwith to let install-info understand gzip'ed info files
8cc84d
- use skeletal dir file from texinfo tarball (w/ bash entry to reduce
8cc84d
  dependency chain) instead (and install-info command everywhere else)
8cc84d
- patches install-info to handle .gz names correctly
8cc84d
8cc84d
* Tue Jun 03 1997 Erik Troan <ewt@redhat.com>
8cc84d
- built against glibc
8cc84d
8cc84d
* Tue Feb 25 1997 Erik Troan <ewt@redhat.com>
8cc84d
- patched install-info.c for glibc.
8cc84d
- added /usr/bin/install-info to the filelist
8cc84d
8cc84d
* Tue Feb 18 1997 Michael Fulbright <msf@redhat.com>
8cc84d
- upgraded to version 3.9.