Blame SPECS/man-db.spec

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