Blame SPECS/man-db.spec

b9042c
%global cache /var/cache/man
b9042c
%global gnulib_ver 20140202
b9042c
b9042c
Summary: Tools for searching and reading man pages
b9042c
Name: man-db
b9042c
Version: 2.7.6.1
b9042c
Release: 17%{?dist}
b9042c
# GPLv2+ .. man-db
b9042c
# GPLv3+ .. gnulib
b9042c
License: GPLv2+ and GPLv3+
b9042c
Group: System Environment/Base
b9042c
URL: http://www.nongnu.org/man-db/
b9042c
b9042c
Source0: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.xz
b9042c
Source1: man-db.crondaily
b9042c
Source2: man-db.sysconfig
b9042c
Source3: man-db-cache-update.service
b9042c
Patch0: man-db-2.7.6.1-change-owner-of-man-cache.patch
b9042c
b9042c
# http://lists.nongnu.org/archive/html/man-db-devel/2017-01/msg00013.html
b9042c
Patch1: man-db-2.7.6.1-fix-override-dir-handling.patch
b9042c
# http://lists.nongnu.org/archive/html/man-db-devel/2018-01/msg00005.html
b9042c
# https://bugzilla.redhat.com/show_bug.cgi?id=1495507
b9042c
Patch2: man-db-2.7.6.1-fix_rhbz1495507.patch
b9042c
b9042c
Patch3: man-db-2.7.6.1-coverity.patch
b9042c
b9042c
Obsoletes: man < 2.0
b9042c
Provides: man = %{version}
b9042c
Provides: man-pages-reader = %{version}
b9042c
# FPC exception for gnulib - copylib - https://fedorahosted.org/fpc/ticket/174
b9042c
Provides: bundled(gnulib) = %{gnulib_ver}
b9042c
b9042c
Requires: coreutils, grep, groff-base, gzip, less
b9042c
BuildRequires: systemd
b9042c
BuildRequires: gdbm-devel, gettext, groff, less, libpipeline-devel, zlib-devel
b9042c
BuildRequires: po4a, perl-interpreter, perl-version
b9042c
b9042c
%description
b9042c
The man-db package includes five tools for browsing man-pages:
b9042c
man, whatis, apropos, manpath and lexgrog. man formats and displays
b9042c
manual pages. whatis searches the manual page names. apropos searches the
b9042c
manual page names and descriptions. manpath determines search path
b9042c
for manual pages. lexgrog directly reads header information in
b9042c
manual pages.
b9042c
b9042c
%package cron
b9042c
Summary: Periodic update of man-db cache
b9042c
Group: System Environment/Base
b9042c
b9042c
Requires: %{name} = %{version}-%{release}
b9042c
Requires: crontabs
b9042c
b9042c
BuildArch: noarch
b9042c
b9042c
%description cron
b9042c
This package provides periodic update of man-db cache.
b9042c
b9042c
%prep
b9042c
%autosetup -p1
b9042c
b9042c
%build
b9042c
%configure \
b9042c
    --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p n l p o 1x 2x 3x 4x 5x 6x 7x 8x" \
b9042c
    --disable-setuid --disable-cache-owner \
b9042c
    --with-browser=elinks --with-lzip=lzip \
b9042c
    --with-override-dir=overrides
b9042c
make CC="%{__cc} %{optflags}" %{?_smp_mflags} V=1
b9042c
b9042c
%check
b9042c
make check
b9042c
b9042c
%install
b9042c
make install DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} INSTALL='install -p'
b9042c
b9042c
# move the documentation to the relevant place
b9042c
mv $RPM_BUILD_ROOT%{_datadir}/doc/man-db/* ./
b9042c
b9042c
# remove creation timestamp to avoid multilib difference
b9042c
sed -i '/^%%%%CreationDate:.*$/d' man-db-manual.ps
b9042c
b9042c
# remove zsoelim man page - part of groff package
b9042c
rm $RPM_BUILD_ROOT%{_datadir}/man/man1/zsoelim.1
b9042c
b9042c
# remove libtool archives
b9042c
rm $RPM_BUILD_ROOT%{_libdir}/man-db/*.la
b9042c
b9042c
# install cache directory
b9042c
install -d -m 0755  $RPM_BUILD_ROOT%{cache}
b9042c
b9042c
# install cron script for man-db creation/update
b9042c
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/cron.daily
b9042c
install -D -p -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/cron.daily/man-db.cron
b9042c
b9042c
# config for cron script
b9042c
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
b9042c
install -D -p -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/man-db
b9042c
b9042c
# config for tmpfiles.d
b9042c
install -D -p -m 0644 init/systemd/man-db.conf $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/.
b9042c
b9042c
# man-db-cache-update.service
b9042c
install -D -p -m 0644 %{SOURCE3} $RPM_BUILD_ROOT%{_unitdir}/man-db-cache-update.service
b9042c
b9042c
%find_lang %{name}
b9042c
%find_lang %{name}-gnulib
b9042c
b9042c
# stop and disable timer from previous builds
b9042c
%pre
b9042c
if [ -e /usr/lib/systemd/system/mandb.timer ]; then
b9042c
  if test -d /run/systemd; then
b9042c
	systemctl stop man-db.timer
b9042c
	systemctl -q disable man-db.timer
b9042c
  fi
b9042c
fi
b9042c
b9042c
# clear the old cache
b9042c
%post
b9042c
%{__rm} -rf %{cache}/*
b9042c
b9042c
# update cache
b9042c
%transfiletriggerin -- %{_mandir}
b9042c
if [ -x /usr/bin/systemd-run -a -x /usr/bin/systemctl ]; then
b9042c
    /usr/bin/systemd-run /usr/bin/systemctl start man-db-cache-update >/dev/null 2>&1 || :
b9042c
fi
b9042c
b9042c
# update cache
b9042c
%transfiletriggerpostun -- %{_mandir}
b9042c
if [ -x /usr/bin/systemd-run -a -x /usr/bin/systemctl ]; then
b9042c
    /usr/bin/systemd-run /usr/bin/systemctl start man-db-cache-update >/dev/null 2>&1 || :
b9042c
fi
b9042c
b9042c
b9042c
%files -f %{name}.lang -f %{name}-gnulib.lang
b9042c
%{!?_licensedir:%global license %%doc}
b9042c
%license docs/COPYING
b9042c
%doc README man-db-manual.txt man-db-manual.ps ChangeLog NEWS
b9042c
%config(noreplace) %{_sysconfdir}/man_db.conf
b9042c
%config(noreplace) %{_sysconfdir}/sysconfig/man-db
b9042c
%config(noreplace) %{_tmpfilesdir}/man-db.conf
b9042c
%{_unitdir}/man-db-cache-update.service
b9042c
%{_sbindir}/accessdb
b9042c
%{_bindir}/man
b9042c
%{_bindir}/whatis
b9042c
%{_bindir}/apropos
b9042c
%{_bindir}/manpath
b9042c
%{_bindir}/lexgrog
b9042c
%{_bindir}/catman
b9042c
%{_bindir}/mandb
b9042c
%dir %{_libdir}/man-db
b9042c
%{_libdir}/man-db/*.so
b9042c
%dir %{_libexecdir}/man-db
b9042c
%{_libexecdir}/man-db/globbing
b9042c
%{_libexecdir}/man-db/manconv
b9042c
%{_libexecdir}/man-db/zsoelim
b9042c
%verify(not mtime) %dir %{cache}
b9042c
# documentation and translation
b9042c
%{_mandir}/man1/apropos.1*
b9042c
%{_mandir}/man1/lexgrog.1*
b9042c
%{_mandir}/man1/man.1*
b9042c
%{_mandir}/man1/manconv.1*
b9042c
%{_mandir}/man1/manpath.1*
b9042c
%{_mandir}/man1/whatis.1*
b9042c
%{_mandir}/man5/manpath.5*
b9042c
%{_mandir}/man8/accessdb.8*
b9042c
%{_mandir}/man8/catman.8*
b9042c
%{_mandir}/man8/mandb.8*
b9042c
%lang(da)   %{_datadir}/man/da/man*/*
b9042c
%lang(de)   %{_datadir}/man/de/man*/*
b9042c
%lang(es)   %{_datadir}/man/es/man*/*
b9042c
%lang(fr)   %{_datadir}/man/fr/man*/*
b9042c
%lang(id)   %{_datadir}/man/id/man*/*
b9042c
%lang(it)   %{_datadir}/man/it/man*/*
b9042c
%lang(ja)   %{_datadir}/man/ja/man*/*
b9042c
%lang(nl)   %{_datadir}/man/nl/man*/*
b9042c
%lang(pl)   %{_datadir}/man/pl/man*/*
b9042c
%lang(ru)   %{_datadir}/man/ru/man*/*
b9042c
%lang(sv)   %{_datadir}/man/sv/man*/*
b9042c
%lang(zh_CN)   %{_datadir}/man/zh_CN/man*/*
b9042c
b9042c
%files cron
b9042c
%config(noreplace) %{_sysconfdir}/cron.daily/man-db.cron
b9042c
b9042c
%changelog
b9042c
* Wed Nov 07 2018 Nikola Forró <nforro@redhat.com> - 2.7.6.1-17
b9042c
- avoid multilib difference in man-db-manual.ps
b9042c
- get rid of hardcoded path
b9042c
  related: #1607005
b9042c
b9042c
* Wed Oct 17 2018 Nikola Forró <nforro@redhat.com> - 2.7.6.1-16
b9042c
- fix important Covscan defects
b9042c
  resolves: #1607005
b9042c
b9042c
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 2.7.6.1-15
b9042c
- Rebuild with fixed binutils
b9042c
b9042c
* Wed Jul 25 2018 Petr Kubat <pkubat@redhat.com> - 2.7.6.1-14
b9042c
- Rebuilt for gdbm
b9042c
b9042c
* Sat Feb 03 2018 Todd Zullinger <tmz@pobox.com> - 2.7.6.1-13
b9042c
- Avoid noisy output from man-db-cache-update triggers
b9042c
b9042c
* Tue Jan 16 2018 Jiri Kucera <jkucera@redhat.com> - 2.7.6.1-12
b9042c
- fix segmentation fault caused by 'man -D?'
b9042c
  resolves: #1495507
b9042c
b9042c
* Tue Jan 16 2018 Nikola Forró <nforro@redhat.com> - 2.7.6.1-11
b9042c
- rebuild with gdbm-1.14
b9042c
b9042c
* Tue Dec 19 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-10
b9042c
- fix failure of man-db-cache-update service when configured not to run
b9042c
  resolves: #1526715
b9042c
b9042c
* Tue Nov 21 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-9
b9042c
- allow configuration of man-db-cache-update service through sysconfig
b9042c
  resolves: #1514909
b9042c
b9042c
* Tue Nov 21 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-8
b9042c
- set group of /var/cache/man to root and drop setgid bit
b9042c
  resolves: #1515823
b9042c
b9042c
* Thu Nov 16 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-7
b9042c
- make file trigger scriptlets not to fail in case systemd is unavailable
b9042c
- drop systemd dependency
b9042c
b9042c
* Wed Nov 08 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-6
b9042c
- run cache update in a transient service using systemd-run
b9042c
  resolves #1318058
b9042c
b9042c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.6.1-5
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b9042c
b9042c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.6.1-4
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b9042c
b9042c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.6.1-3
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b9042c
b9042c
* Thu Jan 19 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-2
b9042c
- set owner of man cache to root instead of man
b9042c
b9042c
* Thu Jan 19 2017 Nikola Forró <nforro@redhat.com> - 2.7.6.1-1
b9042c
- update to 2.7.6.1
b9042c
  resolves #1403618
b9042c
b9042c
* Mon Mar 14 2016 Nikola Forró <nforro@redhat.com> - 2.7.5-3
b9042c
- suppress potential locale warning when installing with glibc-minimal-langpack
b9042c
  resolves #1314633
b9042c
b9042c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.5-2
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b9042c
b9042c
* Tue Nov 10 2015 Nikola Forró <nforro@redhat.com> - 2.7.5-1
b9042c
- update to 2.7.5
b9042c
  resolves #1279867
b9042c
b9042c
* Tue Oct 13 2015 Nikola Forró <nforro@redhat.com> - 2.7.4-2
b9042c
- add cron subpackage
b9042c
b9042c
* Tue Oct 13 2015 Nikola Forró <nforro@redhat.com> - 2.7.4-1
b9042c
- update to 2.7.4
b9042c
  resolves #1270078
b9042c
b9042c
* Mon Sep 21 2015 Nikola Forró <nforro@redhat.com> - 2.7.3-3
b9042c
- fix replace.sed prerequisite syntax
b9042c
  resolves #1263930
b9042c
b9042c
* Thu Sep 10 2015 Nikola Forró <nforro@redhat.com> - 2.7.3-2
b9042c
- use file triggers instead of crontabs for updating cache
b9042c
b9042c
* Thu Sep 10 2015 Nikola Forró <nforro@redhat.com> - 2.7.3-1
b9042c
- update to 2.7.3
b9042c
  resolves #1261678
b9042c
b9042c
* Mon Aug 24 2015 Nikola Forró <nforro@redhat.com> - 2.7.2-3
b9042c
- try to get terminal width from /dev/tty
b9042c
  resolves #1255930
b9042c
b9042c
* Mon Aug 24 2015 Nikola Forró <nforro@redhat.com> - 2.7.2-2
b9042c
- rebuilt with latest libpipeline
b9042c
b9042c
* Mon Aug 24 2015 Nikola Forró <nforro@redhat.com> - 2.7.2-1
b9042c
- update to 2.7.2
b9042c
  resolves #1256177
b9042c
b9042c
* Tue Aug 04 2015 Nikola Forró <nforro@redhat.com> - 2.7.1-8
b9042c
- fix inaccurate description of "man -f"
b9042c
  resolves #1249377
b9042c
b9042c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.1-7
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b9042c
b9042c
* Wed May 20 2015 jchaloup <jchaloup@redhat.com> - 2.7.1-6
b9042c
- Test for /run/systemd only if mandb.timer is actually installed
b9042c
  resolves: #1223244
b9042c
b9042c
* Tue May 12 2015 Colin Walters <walters@redhat.com> - 2.7.1-5
b9042c
- Test for /run/systemd to detect systemd state rather than invoking
b9042c
  rpm in % pre - it is not really supported by rpm.
b9042c
b9042c
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.7.1-4
b9042c
- Rebuilt for Fedora 23 Change
b9042c
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
b9042c
b9042c
* Fri Jan 02 2015 jchaloup <jchaloup@redhat.com> - 2.7.1-3
b9042c
- switching back to crontabs
b9042c
  resolves: #1177993
b9042c
  resolves: #1171450
b9042c
- rpm verify reports for /var/cache/man
b9042c
  resolves: #1173496
b9042c
b9042c
* Thu Nov 13 2014 jchaloup <jchaloup@redhat.com> - 2.7.1-2
b9042c
- src/man.c (do_extern): Pass the -l option through
b9042c
  resolves: #1161747
b9042c
b9042c
* Wed Nov 12 2014 jchaloup <jchaloup@redhat.com> - 2.7.1-1
b9042c
- update to 2.7.1
b9042c
  resolves: #1163167
b9042c
b9042c
* Wed Oct 15 2014 jchaloup <jchaloup@redhat.com> - 2.7.0.2-5
b9042c
- switch man and root in init/systemd/man-db.conf
b9042c
  related: #1151558
b9042c
b9042c
* Mon Oct 13 2014 jchaloup <jchaloup@redhat.com> - 2.7.0.2-4
b9042c
- preun missing condition on number of man-db packages installed
b9042c
  related: #1151558
b9042c
b9042c
* Sun Oct 12 2014 jchaloup <jchaloup@redhat.com> - 2.7.0.2-3
b9042c
- remove executable flag for *.service and *.timer file
b9042c
  resolves: #1151558
b9042c
b9042c
* Wed Oct 08 2014 jchaloup <jchaloup@redhat.com> - 2.7.0.2-2
b9042c
- replacing cron with systemd.timer
b9042c
  resolves: #1148559
b9042c
- adding zsoelim to {_libexecdir}/man-db/zsoelim
b9042c
  related: #1145493
b9042c
b9042c
* Wed Oct 08 2014 jchaloup <jchaloup@redhat.com> - 2.7.0.2-1
b9042c
- Update to 2.7.0.2
b9042c
  resolves: #1145493
b9042c
b9042c
* Thu Sep 18 2014 jchaloup <jchaloup@redhat.com> - 2.6.7.1-7
b9042c
- resolves: #1043401
b9042c
  Don't store canonicalised versions of manpath elements
b9042c
b9042c
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.7.1-6
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b9042c
b9042c
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 2.6.7.1-5
b9042c
- fix license handling
b9042c
b9042c
* Tue Jul 01 2014 jchaloup <jchaloup@redhat.com> - 2.6.7.1-4
b9042c
- related: #1110274
b9042c
  swapping root for man in man-db.conf
b9042c
b9042c
* Wed Jun 25 2014 jchaloup <jchaloup@redhat.com> - 2.6.7.1-3
b9042c
- resolves: #1110274
b9042c
  Add systemd tmpfiles snippet to clean up old cat files after (upstream patch)
b9042c
b9042c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.7.1-2
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b9042c
b9042c
* Thu Apr 17 2014 Peter Schiffer <pschiffe@redhat.com> - 2.6.7.1-1
b9042c
- resolves: #1087279
b9042c
  updated to 2.6.7.1
b9042c
b9042c
* Wed Feb 19 2014 Peter Schiffer <pschiffe@redhat.com> - 2.6.6-1
b9042c
- resolves: #1057495
b9042c
  updated to 2.6.6
b9042c
b9042c
* Wed Aug 07 2013 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.6.5-3
b9042c
- Add a missing requirement on crontabs to spec file
b9042c
- Mark the cron job as config(noreplace)
b9042c
- Fix RHBZ#989077
b9042c
b9042c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.5-2
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b9042c
b9042c
* Thu Jun 27 2013 Peter Schiffer <pschiffe@redhat.com> - 2.6.5-1
b9042c
- updated to 2.6.5
b9042c
b9042c
* Tue Jun 25 2013 Peter Schiffer <pschiffe@redhat.com> - 2.6.4-1
b9042c
- resolves: #977255
b9042c
  updated to 2.6.4
b9042c
b9042c
* Mon Apr  8 2013 Peter Schiffer <pschiffe@redhat.com> - 2.6.3-6
b9042c
- resolves: #948695
b9042c
  fixed double free
b9042c
- fixed certain man pages to match options with --help and --usage
b9042c
b9042c
* Thu Mar 21 2013 Peter Schiffer <pschiffe@redhat.com> - 2.6.3-5
b9042c
- temporarily disabled one unstable unit test
b9042c
b9042c
* Thu Mar 21 2013 Peter Schiffer <pschiffe@redhat.com> - 2.6.3-4
b9042c
- fixed some compiler warnings and memory leaks
b9042c
b9042c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-3
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b9042c
b9042c
* Tue Oct 30 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.3-2
b9042c
- resolves: #870680
b9042c
  use less as the default pager
b9042c
b9042c
* Wed Oct 24 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.3-1
b9042c
- resolves: #858577
b9042c
  updated to 2.6.3
b9042c
- cleaned .spec file
b9042c
- resolves: #855632
b9042c
  fixed SIGABRT crash
b9042c
- adds support for man-pages-overrides
b9042c
b9042c
* Tue Jul 31 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.2-5
b9042c
- resolves: #841431
b9042c
  ignore cached man pages if they don't exist anymore
b9042c
b9042c
* Fri Jul 20 2012 Dan Horák <dan[at]danny.cz> - 2.6.2-4
b9042c
- fully patch the autotools files, fixes FTBFS due updated automake
b9042c
b9042c
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.2-3
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b9042c
b9042c
* Thu Jul 12 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.2-2
b9042c
- resolves: #829553
b9042c
  clear the old man cache on install or update
b9042c
b9042c
* Tue Jul 10 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.2-1
b9042c
- resolves: #833312
b9042c
  update to 2.6.2
b9042c
- resolves: #657409
b9042c
  fixed warning when invoking col by the mandb program in cron
b9042c
- resolves: #829935
b9042c
  enabled support for man pages compressed with lzip
b9042c
- resolves: #821778
b9042c
  added virtual provides for bundled gnulib library
b9042c
- resolves: #824825
b9042c
  apropos returns correct exit code for invalid man page
b9042c
b9042c
* Tue Apr 24 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.1-4
b9042c
- related: #693458
b9042c
  updated patch for .so links because previous one wasn't working very well
b9042c
b9042c
* Tue Apr 24 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.1-3
b9042c
- added autoconf, automake, libtool and gettext-devel to the build requires
b9042c
b9042c
* Tue Apr 24 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.1-2
b9042c
- resolves: #677669
b9042c
  added support for wildcards in path
b9042c
- resolves: #693458
b9042c
  fixed error with .so links
b9042c
b9042c
* Thu Apr 05 2012 Peter Schiffer <pschiffe@redhat.com> - 2.6.1-1
b9042c
- resolves: #790771
b9042c
  update to 2.6.1
b9042c
- resolves: #806086
b9042c
  removed hard-dependency on cron, update man db after install or update
b9042c
b9042c
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0.2-4
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b9042c
b9042c
* Wed Oct 05 2011 Peter Schiffer <pschiffe@redhat.com> - 2.6.0.2-3
b9042c
- resolves: #702904
b9042c
  fixed double free or corruption issue
b9042c
- resolves: #739207
b9042c
  require groff-base instead of groff
b9042c
- rebuilt for gdbm-1.9.1-1
b9042c
b9042c
* Sun May 29 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.6.0.2-2
b9042c
- Own the %%{_libdir}/man-db dir.
b9042c
b9042c
* Thu Apr 21 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 2.6.0.2-1
b9042c
- update to 2.6.0.2
b9042c
- remove obsolete patches
b9042c
- add libpipe dependency
b9042c
b9042c
* Wed Mar 23 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.9-6
b9042c
- Build with zlib support.
b9042c
- Use elinks as default HTML browser.
b9042c
   thanks Ville Skyttä
b9042c
b9042c
* Wed Mar 23 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.9-5
b9042c
* Resolves: #684977
b9042c
  backport upstream patch
b9042c
b9042c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.9-4
b9042c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b9042c
b9042c
* Thu Jan 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.9-3
b9042c
- Resolves: #659292
b9042c
  use ionice in man cron job
b9042c
b9042c
* Wed Nov 24 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.9-2
b9042c
- Resolves: #655385 - use old format of nroff output
b9042c
b9042c
* Mon Nov 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.9-1
b9042c
- update to 2.5.9
b9042c
b9042c
* Fri Oct  1 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.7-8
b9042c
- add less buildrequire
b9042c
b9042c
* Wed Sep 29 2010 jkeating - 2.5.7-7
b9042c
- Rebuilt for gcc bug 634757
b9042c
b9042c
* Fri Sep 24 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.7-6
b9042c
- Resolves: #630506 (change the description)
b9042c
- minor spec file changes
b9042c
b9042c
* Mon Aug 30 2010 Dennis Gilmore <dennis@ausil.us> - 2.5.7-5
b9042c
- Provide Versioned man
b9042c
b9042c
* Mon Aug 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.7-4
b9042c
- remove obsolete conflict flag
b9042c
b9042c
* Mon Aug 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.7-3
b9042c
- provides man tag
b9042c
- resolves: #621688
b9042c
  remove problematic man-pages (now in man-pages-de package)
b9042c
b9042c
* Fri Apr 16 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.7-2
b9042c
- add conflicts tag
b9042c
b9042c
* Wed Feb 17 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 2.5.7-1
b9042c
- initial build