Blame SPECS/texinfo.spec

70f88b
%global tex_texinfo %{_datadir}/texmf/tex/texinfo
70f88b
70f88b
Summary: Tools needed to create Texinfo format documentation files
70f88b
Name: texinfo
70f88b
Version: 6.5
70f88b
Release: 6%{?dist}
70f88b
License: GPLv3+
70f88b
Url: http://www.gnu.org/software/texinfo/
70f88b
Source0: ftp://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.xz
70f88b
Source1: ftp://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.xz.sig
70f88b
# Source5: macro definitions
70f88b
Source5: macros.info
70f88b
Patch0: texinfo-4.12-zlib.patch
70f88b
# Patch1: this is needed just for koji/mock, all tests pass fine in local build
70f88b
Patch1: texinfo-6.0-disable-failing-info-test.patch
70f88b
# Patch2: rhbz#1348671, because of OSTree
70f88b
Patch2: texinfo-6.1-install-info-use-create-tmp-then-rename-pattern.patch
70f88b
# Patch3: we need to fix template fix-info-dir generates
70f88b
Patch3: info-6.5-sync-fix-info-dir.patch
70f88b
# Patch4: fixes issues detected by static analysis
70f88b
Patch4: texinfo-6.5-covscan-fixes.patch
70f88b
BuildRequires: gcc
70f88b
BuildRequires: perl-generators
70f88b
BuildRequires: zlib-devel, ncurses-devel, help2man, perl(Data::Dumper)
70f88b
BuildRequires: perl(Locale::Messages), perl(Unicode::EastAsianWidth), perl(Text::Unidecode)
70f88b
BuildRequires: perl(Storable)
70f88b
70f88b
# Texinfo perl packages are not installed in default perl library dirs
70f88b
%global __provides_exclude ^perl\\(.*Texinfo.*\\)$
70f88b
%global __requires_exclude ^perl\\(.*Texinfo.*\\)$
70f88b
70f88b
%description
70f88b
Texinfo is a documentation system that can produce both online
70f88b
information and printed output from a single source file. The GNU
70f88b
Project uses the Texinfo file format for most of its documentation.
70f88b
70f88b
Install texinfo if you want a documentation system for producing both
70f88b
online and print documentation from the same source file and/or if you
70f88b
are going to write documentation for the GNU Project.
70f88b
70f88b
%package -n info
70f88b
Summary: A stand-alone TTY-based reader for GNU texinfo documentation
70f88b
70f88b
%description -n info
70f88b
The GNU project uses the texinfo file format for much of its
70f88b
documentation. The info package provides a standalone TTY-based
70f88b
browser program for viewing texinfo files.
70f88b
70f88b
%package tex
70f88b
Summary: Tools for formatting Texinfo documentation files using TeX
70f88b
Requires: texinfo = %{version}-%{release}
70f88b
Requires: tex(tex) tex(epsf.tex)
70f88b
Requires(post): %{_bindir}/texconfig-sys
70f88b
Requires(postun): %{_bindir}/texconfig-sys
70f88b
70f88b
%description tex
70f88b
Texinfo is a documentation system that can produce both online
70f88b
information and printed output from a single source file. The GNU
70f88b
Project uses the Texinfo file format for most of its documentation.
70f88b
70f88b
The texinfo-tex package provides tools to format Texinfo documents
70f88b
for printing using TeX.
70f88b
70f88b
%prep
70f88b
%autosetup -p1
70f88b
70f88b
%build
70f88b
%configure --with-external-Text-Unidecode \
70f88b
           --with-external-libintl-perl \
70f88b
           --with-external-Unicode-EastAsianWidth \
70f88b
           --disable-perl-xs
70f88b
%make_build
70f88b
70f88b
%install
70f88b
mkdir -p ${RPM_BUILD_ROOT}/sbin
70f88b
70f88b
%make_install
70f88b
70f88b
mkdir -p $RPM_BUILD_ROOT%{tex_texinfo}
70f88b
install -p -m644 doc/texinfo.tex doc/txi-??.tex $RPM_BUILD_ROOT%{tex_texinfo}
70f88b
70f88b
mv $RPM_BUILD_ROOT%{_bindir}/install-info $RPM_BUILD_ROOT/sbin
70f88b
70f88b
install -Dpm0755 -t %{buildroot}%{_sbindir} contrib/fix-info-dir
70f88b
70f88b
mkdir -p $RPM_BUILD_ROOT%{_rpmconfigdir}/macros.d
70f88b
cp %{SOURCE5} $RPM_BUILD_ROOT%{_rpmconfigdir}/macros.d
70f88b
70f88b
%find_lang %{name}
70f88b
%find_lang %{name}_document
70f88b
70f88b
%check
70f88b
export ALL_TESTS=yes
70f88b
%make_build check
70f88b
70f88b
%post tex
70f88b
%{_bindir}/texconfig-sys rehash 2> /dev/null || :
70f88b
70f88b
%postun tex
70f88b
%{_bindir}/texconfig-sys rehash 2> /dev/null || :
70f88b
70f88b
%transfiletriggerin -n info -- %{_infodir}
70f88b
[ -f %{_infodir}/dir ] && create_arg="" || create_arg="--create"
70f88b
%{_sbindir}/fix-info-dir $create_arg %{_infodir}/dir &>/dev/null
70f88b
70f88b
%transfiletriggerpostun -n info -- %{_infodir}
70f88b
[ -f %{_infodir}/dir ] && %{_sbindir}/fix-info-dir --delete %{_infodir}/dir &>/dev/null
70f88b
70f88b
%files -f %{name}.lang -f %{name}_document.lang
70f88b
%doc AUTHORS ChangeLog NEWS README TODO
70f88b
%license COPYING
70f88b
%{_bindir}/makeinfo
70f88b
%{_bindir}/texi2any
70f88b
%{_bindir}/pod2texi
70f88b
%{_datadir}/texinfo
70f88b
%{_infodir}/texinfo*
70f88b
%{_mandir}/man1/makeinfo.1*
70f88b
%{_mandir}/man5/texinfo.5*
70f88b
%{_mandir}/man1/texi2any.1*
70f88b
%{_mandir}/man1/pod2texi.1*
70f88b
70f88b
%files -n info
70f88b
%license COPYING
70f88b
%{_bindir}/info
70f88b
%{_infodir}/info-stnd.info*
70f88b
/sbin/install-info
70f88b
%{_sbindir}/fix-info-dir
70f88b
%{_mandir}/man1/info.1*
70f88b
%{_mandir}/man1/install-info.1*
70f88b
%{_mandir}/man5/info.5*
70f88b
%{_rpmconfigdir}/macros.d/macros.info
70f88b
%ghost %{_infodir}/dir
70f88b
%ghost %attr(644, root, root) %{_infodir}/dir.old
70f88b
70f88b
%files tex
70f88b
%{_bindir}/texindex
70f88b
%{_bindir}/texi2dvi
70f88b
%{_bindir}/texi2pdf
70f88b
%{_bindir}/pdftexi2dvi
70f88b
%{tex_texinfo}/
70f88b
%{_mandir}/man1/texindex.1*
70f88b
%{_mandir}/man1/texi2dvi.1*
70f88b
%{_mandir}/man1/texi2pdf.1*
70f88b
%{_mandir}/man1/pdftexi2dvi.1*
70f88b
70f88b
%changelog
70f88b
* Thu Jan 09 2020 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.5-6
70f88b
- Fix file mode for dir.old (fixes failing rpm -V info)
70f88b
  Related: #1708912
70f88b
70f88b
* Thu Dec 12 2019 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.5-5
70f88b
- Rebuild
70f88b
  Resolves: #1708912
70f88b
- Enable gating on OSCI
70f88b
  Resolves: #1681507
70f88b
70f88b
* Tue Oct 09 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.5-4
70f88b
- Fix issues detected by static analysis
70f88b
  Resolves: #1606966
70f88b
70f88b
* Tue Feb 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 6.5-3
70f88b
- Implement transaction filetriggers for crating info/dir
70f88b
70f88b
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.5-2
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
70f88b
70f88b
* Wed Sep 13 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.5-1
70f88b
- Update to texinfo-6.5
70f88b
  Resolves: #1491075
70f88b
70f88b
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.4-5
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
70f88b
70f88b
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.4-4
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
70f88b
70f88b
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 6.4-3
70f88b
- perl dependency renamed to perl-interpreter
70f88b
  <https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
70f88b
70f88b
* Mon Jul 10 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.4-2
70f88b
- Fix broken reference following when the reference is split to
70f88b
  more than one line
70f88b
- Fix possible incorrect selection of already loaded file when
70f88b
  following cross reference
70f88b
  Resolves: #1383057
70f88b
70f88b
* Tue Jun 27 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.4-1
70f88b
- Update to texinfo-6.4
70f88b
  Resolves: #1464624
70f88b
70f88b
* Mon Mar 13 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.3-3
70f88b
- Fix path to install-info in macros.info
70f88b
  Resolves: #1419246
70f88b
70f88b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.3-2
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
70f88b
70f88b
* Mon Sep 19 2016 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.3-1
70f88b
- Update to texinfo-6.3
70f88b
  Resolves: #1374962
70f88b
70f88b
* Wed Jun 22 2016 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.1-3
70f88b
- install-info: use create-tmp-then-rename pattern because of OSTree
70f88b
  (patch by Colin Walters)
70f88b
  Resolves: #1348671
70f88b
70f88b
* Wed Feb 24 2016 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.1-2
70f88b
- Fix texi2dvi exits without completing the task
70f88b
  Resolves: #1309702
70f88b
70f88b
* Thu Feb 11 2016 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.1-1
70f88b
- Update to texinfo-6.1
70f88b
  Resolves: #1305316
70f88b
70f88b
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-3
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
70f88b
70f88b
* Sun Aug 9 2015 Orion Poplawski <orion@cora.nwra.com> - 6.0-2
70f88b
- Add BR on perl(Storable), fix perl requires (bug #1251766)
70f88b
70f88b
* Tue Jul 14 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 6.0-1
70f88b
- Update to texinfo-6.0
70f88b
  Resolves: #1236254
70f88b
70f88b
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2-10
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
70f88b
70f88b
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 5.2-9
70f88b
- Rebuilt for Fedora 23 Change
70f88b
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
70f88b
70f88b
* Mon Feb 02 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-8
70f88b
- Add macros.info
70f88b
  Resolves: #948735
70f88b
70f88b
* Thu Oct 30 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-7
70f88b
- Filter bogus perl requires/provides
70f88b
- Enable upstream test suite
70f88b
70f88b
* Tue Oct 14 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-6
70f88b
- Use perl-Unicode-EastAsianWidth
70f88b
70f88b
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2-5
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
70f88b
70f88b
* Wed Aug  6 2014 Tom Callaway <spot@fedoraproject.org> - 5.2-4
70f88b
- fix license handling
70f88b
70f88b
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2-3
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
70f88b
70f88b
* Thu Jan 16 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-2
70f88b
- Fix info segfaults on non existing info page when used with -o
70f88b
70f88b
* Tue Oct 01 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.2-1
70f88b
- Update to texinfo-5.2
70f88b
70f88b
* Tue Aug 13 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.1-4
70f88b
- Fix \b[...\b] tag processing
70f88b
  Resolves: #928975
70f88b
70f88b
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1-3
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
70f88b
70f88b
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 5.1-2
70f88b
- Perl 5.18 rebuild
70f88b
70f88b
* Mon Mar 18 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.1-1
70f88b
- Update to texinfo-5.1
70f88b
70f88b
* Tue Mar 05 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.0-3
70f88b
- Fix bug in parser
70f88b
  Resolves: #917974
70f88b
70f88b
* Wed Feb 20 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.0-2
70f88b
- Fix configure arguments, remove ChangeLog conversion,
70f88b
  move texi2any/pod2texi to main package
70f88b
70f88b
* Tue Feb 19 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.0-1
70f88b
- Update to texinfo-5.0
70f88b
70f88b
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-20
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
70f88b
70f88b
* Tue Nov 13 2012 Jindrich Novy <jnovy@redhat.com> - 4.13a-19
70f88b
- require epsf.tex (#868011)
70f88b
70f88b
* Mon Sep 10 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-18
70f88b
- Fix issues found by fedora-review utility in the spec file
70f88b
70f88b
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-17
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
70f88b
70f88b
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-16
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
70f88b
70f88b
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-15
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
70f88b
70f88b
* Tue Jan 11 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-14
70f88b
- Fix missing Texinfo manual in the Directory node
70f88b
  Resolves: #662382
70f88b
70f88b
* Wed Nov 10 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-13
70f88b
- Fix get_sectioning_number function problem
70f88b
  Resolves: #651314
70f88b
70f88b
* Tue Nov  9 2010 Jindrich Novy <jnovy@redhat.com> - 4.13a-12
70f88b
- require tex(tex) instead of tetex in texinfo-tex
70f88b
70f88b
* Mon Oct 11 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-11
70f88b
- Fix incopatible regexp with the lates version of egrep in texi2dvi script
70f88b
  Resolves: #641534
70f88b
70f88b
* Tue Aug 31 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-10
70f88b
- Fix info crash when using index in help window
70f88b
  Resolves: #579263
70f88b
70f88b
* Mon Jan 11 2010 Jan Gorig <jgorig@redhat.com> - 4.13a-9
70f88b
- Fix PowerPC return code bug #531349
70f88b
70f88b
* Mon Dec 14 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-8
70f88b
- Fix memory allocation bug when using old-style --section "Foo" arguments
70f88b
70f88b
* Wed Sep  2 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-7
70f88b
- Fix errors installing texinfo/info with --excludedocs
70f88b
  Resolves: #515909
70f88b
  Resolves: #515938
70f88b
70f88b
* Wed Aug 12 2009 Ville Skyttä <ville.skytta@iki.fi> - 4.13a-6
70f88b
- Use lzma compressed upstream tarball.
70f88b
70f88b
* Wed Aug  5 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-5
70f88b
- Fix changelog entry and rebuild
70f88b
70f88b
* Tue Aug  4 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13a-4
70f88b
- Fix data types (fix by Ralf Corsepius)
70f88b
  Resolves: #515402
70f88b
70f88b
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-3
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
70f88b
70f88b
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13a-2
70f88b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
70f88b
70f88b
* Thu Nov 20 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.13-1
70f88b
- Update to texinfo-4.13a
70f88b
  Resolves: #471194
70f88b
  Resolves: #208511
70f88b
70f88b
* Wed Jun  4 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-4
70f88b
- Remove sed Requires (dependency loop)
70f88b
  Resolves: #449705
70f88b
70f88b
* Mon Jun  2 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-3
70f88b
- Fix install-info crashes on some info files
70f88b
  Resolves: #449292
70f88b
70f88b
* Thu May 29 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-2
70f88b
- Fix Requires and info post script
70f88b
70f88b
* Wed May 14 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.12-1
70f88b
- Update to texinfo-4.12
70f88b
- Remove description ("This is...") from /usr/share/info/dir in info
70f88b
  post install section
70f88b
  Resolves: #433535
70f88b
70f88b
* Mon Feb  4 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-5
70f88b
- Merge Review
70f88b
  Resolves: #226488
70f88b
70f88b
* Mon Dec 10 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-4
70f88b
- Don't insert description ("This is...") into the direntry section
70f88b
  of some generated files
70f88b
  Resolves: #394191
70f88b
70f88b
* Tue Nov 13 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-3
70f88b
- Fix info crashes when resizing window
70f88b
  Resolves: #243971
70f88b
70f88b
* Wed Nov  7 2007 Stepan Kasal <skasal@redhat.com> - 4.11-2
70f88b
- fix a typo in texinfo-tex summary
70f88b
  Resolves: #239216
70f88b
70f88b
* Wed Sep 19 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.11-1
70f88b
- Rebase to upstream texinfo-4.11 (update zlib.patch, drop
70f88b
  texindex.patch and 0xA0.patch -- both included in upstream)
70f88b
  Resolves: #295441
70f88b
70f88b
* Tue Aug 28 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.9-2
70f88b
- Fix license
70f88b
- Rebuild
70f88b
70f88b
* Tue Jul 31 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 4.9-1
70f88b
- Rebase to upstream texinfo-4.9, fix typo in summary
70f88b
  Resolves: #250119, #248883
70f88b
70f88b
* Mon Dec  4 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-15
70f88b
- Don't replace 0xA0 by a space in makeinfo
70f88b
  Related: #208511
70f88b
- Fix some rpmlint warnings
70f88b
70f88b
* Sun Nov  5 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-14
70f88b
- Remove off-line sorting from texindex (fixes CVE 2006-4810)
70f88b
70f88b
* Mon Oct  9 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-13
70f88b
- Don't use mode 0666 for the texindex temporary files
70f88b
70f88b
* Mon Oct  9 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-12
70f88b
- Don't leave around temporary files used by texindex
70f88b
- Add missing error handling to texinfo-CAN-2005-3011.patch
70f88b
70f88b
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.8-11.1
70f88b
- rebuild
70f88b
70f88b
* Sat Mar 25 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-11
70f88b
- Split texinfo-tex from the texinfo package (#178406)
70f88b
- Ship COPYING, don't ship INSTALL
70f88b
70f88b
* Sun Mar 19 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-10
70f88b
- Remove incorrect Prefix:
70f88b
- Drop info/README
70f88b
- Convert change log to UTF-8
70f88b
70f88b
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.8-9.2
70f88b
- bump again for double-long bug on ppc(64)
70f88b
70f88b
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.8-9.1
70f88b
- rebuilt for new gcc4.1 snapshot and glibc changes
70f88b
70f88b
* Mon Jan 16 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-9
70f88b
- Fix handling of bzip2'ed files (#128637)
70f88b
70f88b
* Mon Jan 16 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-8
70f88b
- Ignore scriptlet failures with --excludedocs (#166958)
70f88b
- Don't link texindex to zlib, don't pretend to link to zlib statically
70f88b
70f88b
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
70f88b
- rebuilt
70f88b
70f88b
* Fri Oct 14 2005 Tim Waugh <twaugh@redhat.com> 4.8-7
70f88b
- Apply patch to fix CAN-2005-3011 (bug #169585).
70f88b
70f88b
* Thu Jun  9 2005 Tim Waugh <twaugh@redhat.com> 4.8-6
70f88b
- Ship texi2pdf man page, taken from tetex-2.0.2 RPM.
70f88b
70f88b
* Tue Jun  7 2005 Tim Waugh <twaugh@redhat.com> 4.8-5
70f88b
- Ship texi2pdf (bug #147271).
70f88b
70f88b
* Mon Mar 14 2005 Tim Waugh <twaugh@redhat.com> 4.8-4
70f88b
- Requires tetex (bug #151075).
70f88b
70f88b
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 4.8-3
70f88b
- Rebuild for new GCC.
70f88b
70f88b
* Mon Feb  7 2005 Tim Waugh <twaugh@redhat.com> 4.8-2
70f88b
- Don't ship texi2pdf (bug #147271).
70f88b
70f88b
* Thu Feb  3 2005 Tim Waugh <twaugh@redhat.com> 4.8-1
70f88b
- 4.8.
70f88b
70f88b
* Thu Dec 30 2004 Tim Waugh <twaugh@redhat.com> 4.7-6
70f88b
- Fixed URL (bug #143729).
70f88b
70f88b
* Thu Aug 12 2004 Tim Waugh <twaugh@redhat.com> 4.7-5
70f88b
- Rebuilt.
70f88b
70f88b
* Wed Jul  7 2004 Tim Waugh <twaugh@redhat.com> 4.7-4
70f88b
- Build for FC2.
70f88b
70f88b
* Tue Jun 29 2004 Tim Waugh <twaugh@redhat.com> 4.7-3
70f88b
- Fix grouping in user-defined macros.
70f88b
70f88b
* Mon Jun 28 2004 Tim Waugh <twaugh@redhat.com> 4.7-2
70f88b
- Build requires ncurses-devel (bug #126600).
70f88b
70f88b
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 4.7-1
70f88b
- 4.7.
70f88b
70f88b
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
70f88b
- rebuilt
70f88b
70f88b
* Tue Mar  2 2004 Tim Waugh <twaugh@redhat.com>
70f88b
- Fixed compiler warning (bug #117097).
70f88b
70f88b
* Sat Feb 21 2004 Tim Waugh <twaugh@redhat.com> 4.6-3
70f88b
- Build requires zlib-devel (bug #116436).
70f88b
70f88b
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
70f88b
- rebuilt
70f88b
70f88b
* Tue Dec  2 2003 Tim Waugh <twaugh@redhat.com> 4.6-1
70f88b
- Fixed compiler warning (bug #111279).
70f88b
- 4.6.
70f88b
70f88b
* Tue Jun 17 2003 Tim Waugh <twaugh@redhat.com> 4.5-3
70f88b
- Rebuilt.
70f88b
70f88b
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
70f88b
- rebuilt
70f88b
70f88b
* Tue May  6 2003 Tim Waugh <twaugh@redhat.com>
70f88b
- No longer need 3.12h-fix patch.
70f88b
70f88b
* Tue Apr 29 2003 Tim Waugh <twaugh@redhat.com> 4.5-1
70f88b
- 4.5 (bug #88428).  Update zlib patch.
70f88b
- Add URL tag (bug #54613).
70f88b
70f88b
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.3-5
70f88b
- rebuilt
70f88b
70f88b
* Tue Jan  7 2003 Tim Waugh <twaugh@redhat.com> 4.3-4
70f88b
- Fix up spec_install_post to strip debug info out to separate package
70f88b
  (bug #81226).
70f88b
70f88b
* Thu Dec 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> 4.3-3
70f88b
- Make /usr/share/info/dir a real file and remove /etc/info-dir, that
70f88b
  file should be unused for a long time.
70f88b
70f88b
* Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com> 4.3-2
70f88b
- Don't strip files here (rpm takes care of it)
70f88b
- Use pushd/popd instead of enclosing things in (), to make
70f88b
  error detection easier
70f88b
- Use _smp_mflags
70f88b
70f88b
* Tue Nov 19 2002 Tim Waugh <twaugh@redhat.com> 4.3-1
70f88b
- 4.3.
70f88b
- No longer need fileextension or malloccheck patches.
70f88b
- Update zlib patch.
70f88b
70f88b
* Wed Oct 23 2002 Tim Waugh <twaugh@redhat.com> 4.2-6
70f88b
- Don't install files not packaged.
70f88b
- Fix file list (bug #55816).
70f88b
70f88b
* Mon Sep  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-5
70f88b
- Fix crash w/ MALLOC_CHECK_ == 2 (#72831)
70f88b
70f88b
* Tue Jul  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-4
70f88b
- Add infokey (#67728)
70f88b
70f88b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
70f88b
- automated rebuild
70f88b
70f88b
* Thu May 23 2002 Tim Powers <timp@redhat.com>
70f88b
- automated rebuild
70f88b
70f88b
* Tue Apr 23 2002 Florian La Roche <Florian.LaRoche@redhat.de>
70f88b
- 4.2
70f88b
70f88b
* Tue Mar  5 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.1-1
70f88b
- 4.1 (#60714)
70f88b
70f88b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
70f88b
- automated rebuild
70f88b
70f88b
* Tue Aug  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 4.0b-3
70f88b
- Don't create the desktop file - we don't install it anyway.
70f88b
70f88b
* Sat Jul 21 2001 Tim Powers <timp@redhat.com>
70f88b
- remove the info viewer from the menus, it's cluttering things
70f88b
70f88b
* Wed May 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
70f88b
- 4.0b
70f88b
70f88b
* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 4.0a-1
70f88b
- Update to 4.0a, the patch looks sane
70f88b
70f88b
* Fri Feb 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
70f88b
- langify
70f88b
- don't create desktop file in spec file
70f88b
70f88b
* Tue Jan 23 2001 Preston Brown <pbrown@redhat.com>
70f88b
- danish translation added
70f88b
70f88b
* Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
70f88b
- Rebuild to get rid of 0777 dirs
70f88b
70f88b
* Wed Nov  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
70f88b
- Fix recognition of .?o extensions in texi2dvi, Bug #20498
70f88b
70f88b
* Thu Sep  7 2000 Jeff Johnson <jbj@redhat.com>
70f88b
- FHS packaging (64bit systems need to use %%_libdir not /usr/lib).
70f88b
70f88b
* Sat Aug 19 2000 Trond Eivind Glomsrød <teg@redhat.com>
70f88b
- really do it - #16120
70f88b
70f88b
* Mon Aug 14 2000 Helge Deller <hdeller@redhat.com>
70f88b
- gzip man-pages, #16120
70f88b
70f88b
* Mon Aug  7 2000 Tim Waugh <twaugh@redhat.com>
70f88b
- List man-pages in %%files.
70f88b
70f88b
* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
70f88b
- Add Swedish and German translations to desktop file, Bug #15366
70f88b
70f88b
* Thu Aug  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
70f88b
- mark /etc/info-dir %%verify(not md5 size mime), Bug #14826
70f88b
70f88b
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
70f88b
- automatic rebuild
70f88b
70f88b
* Wed Jun 28 2000 Bill Nottingham <notting@redhat.com>
70f88b
- fix build wackiness with info page compressing
70f88b
70f88b
* Fri Jun 16 2000 Bill Nottingham <notting@redhat.com>
70f88b
- fix info-dir symlink
70f88b
70f88b
* Thu May 18 2000 Preston Brown <pbrown@redhat.com>
70f88b
- use FHS paths for info.
70f88b
70f88b
* Fri Mar 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
70f88b
- rebuild with current ncurses
70f88b
70f88b
* Wed Feb 09 2000 Preston Brown <pbrown@redhat.com>
70f88b
- wmconfig -> desktop
70f88b
70f88b
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
70f88b
- fix descriptions
70f88b
70f88b
* Wed Jan 26 2000 Bernhard Rosenkraenzer <bero@redhat.com>
70f88b
- move info-stnd.info* to the info package, /sbin/install-info it
70f88b
  in %%post (Bug #6632)
70f88b
70f88b
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
70f88b
- recompile to eliminate ncurses foul-up.
70f88b
70f88b
* Tue Nov  9 1999 Bernhard Rosenkränzer <bero@redhat.com>
70f88b
- 4.0
70f88b
- handle RPM_OPT_FLAGS
70f88b
70f88b
* Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
70f88b
- import version 3.12h into 6.1 tree from HJLu
70f88b
70f88b
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
70f88b
- auto rebuild in the new build environment (release 4)
70f88b
70f88b
* Wed Mar 17 1999 Erik Troan <ewt@redhat.com>
70f88b
- hacked to use zlib to get rid of the requirement on gzip
70f88b
70f88b
* Wed Mar 17 1999 Matt Wilson <msw@redhat.com>
70f88b
- install-info prerequires gzip
70f88b
70f88b
* Thu Mar 11 1999 Cristian Gafton <gafton@redhat.com>
70f88b
- version 3.12f
70f88b
- make /usr/info/dir to be a %%config(noreplace)
70f88b
70f88b
* Wed Nov 25 1998 Jeff Johnson <jbj@redhat.com>
70f88b
- rebuild to fix docdir perms.
70f88b
70f88b
* Thu Sep 24 1998 Cristian Gafton <gafton@redhat.com>
70f88b
- fix allocation problems in install-info
70f88b
70f88b
* Wed Sep 23 1998 Jeff Johnson <jbj@redhat.com>
70f88b
- /sbin/install-info should not depend on /usr/lib/libz.so.1 -- statically
70f88b
  link with /usr/lib/libz.a.
70f88b
70f88b
* Fri Aug 07 1998 Erik Troan <ewt@redhat.com>
70f88b
- added a prereq of bash to the info package -- see the comment for a
70f88b
  description of why that was done
70f88b
70f88b
* Tue Jun 09 1998 Prospector System <bugs@redhat.com>
70f88b
- translations modified for de
70f88b
70f88b
* Tue Jun  9 1998 Jeff Johnson <jbj@redhat.com>
70f88b
- add %%attr to permit non-root build.
70f88b
70f88b
* Thu May 07 1998 Prospector System <bugs@redhat.com>
70f88b
- translations modified for de, fr, tr
70f88b
70f88b
* Sun Apr 12 1998 Cristian Gafton <gafton@redhat.com>
70f88b
- added %%clean
70f88b
- manhattan build
70f88b
70f88b
* Wed Mar 04 1998 Cristian Gafton <gafton@redhat.com>
70f88b
- upgraded to version 3.12
70f88b
- added buildroot
70f88b
70f88b
* Sun Nov 09 1997 Donnie Barnes <djb@redhat.com>
70f88b
- moved /usr/info/dir to /etc/info-dir and made /usr/info/dir a
70f88b
  symlink to /etc/info-dir.
70f88b
70f88b
* Wed Oct 29 1997 Donnie Barnes <djb@redhat.com>
70f88b
- added wmconfig entry for info
70f88b
70f88b
* Wed Oct 01 1997 Donnie Barnes <djb@redhat.com>
70f88b
- stripped /sbin/install-info
70f88b
70f88b
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
70f88b
- added info-dir to filelist
70f88b
70f88b
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
70f88b
- added patch from sopwith to let install-info understand gzip'ed info files
70f88b
- use skeletal dir file from texinfo tarball (w/ bash entry to reduce
70f88b
  dependency chain) instead (and install-info command everywhere else)
70f88b
- patches install-info to handle .gz names correctly
70f88b
70f88b
* Tue Jun 03 1997 Erik Troan <ewt@redhat.com>
70f88b
- built against glibc
70f88b
70f88b
* Tue Feb 25 1997 Erik Troan <ewt@redhat.com>
70f88b
- patched install-info.c for glibc.
70f88b
- added /usr/bin/install-info to the filelist
70f88b
70f88b
* Tue Feb 18 1997 Michael Fulbright <msf@redhat.com>
70f88b
- upgraded to version 3.9.