Blame SPECS/man-pages.spec

a51974
%global posix_version 2003
a51974
%global posix_release a
a51974
%global posix_name man-pages-posix-%{posix_version}-%{posix_release}
a51974
%global additional_version 20130731
a51974
%global additional_name man-pages-additional-%{additional_version}
a51974
a51974
Summary: Man (manual) pages from the Linux Documentation Project
a51974
Name: man-pages
a51974
Version: 3.53
a51974
Release: 2%{?dist}
a51974
License: GPL+ and GPLv2+ and BSD and MIT and Copyright only and IEEE
a51974
Group: Documentation
a51974
URL: http://www.kernel.org/doc/man-pages/
a51974
Source: http://www.kernel.org/pub/linux/docs/man-pages/man-pages-%{version}.tar.xz
a51974
# POSIX man pages
a51974
Source1: http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/%{posix_name}.tar.xz
a51974
# additional man-pages, the source tarball is fedora only
a51974
Source2: %{additional_name}.tar.xz
a51974
a51974
## Patches ##
a51974
a51974
# POSIX man pages
a51974
Patch00: man-pages-posix-2003-awk.patch
a51974
Patch01: man-pages-posix-2003-man.patch
a51974
Patch02: man-pages-posix-2003-printf.patch
a51974
# resolves: #723578
a51974
Patch03: man-pages-posix-2003-readlink3p.patch
a51974
a51974
# Regular man pages
a51974
# resolves: #698149
a51974
Patch20: man-pages-3.32-host.patch
a51974
# resolves: #650985
a51974
Patch21: man-pages-3.42-close.patch
a51974
# resolves: #392431
a51974
Patch22: man-pages-3.42-connect.patch
a51974
# resolves: #771540
a51974
Patch23: man-pages-3.43-tcp-congestion.patch
a51974
# resolves: #990049
a51974
Patch24: man-pages-3.53-proc.patch
a51974
a51974
a51974
Autoreq: false
a51974
BuildArch: noarch
a51974
# resolves: #655961
a51974
Conflicts: quota < 3.17-14
a51974
a51974
%description
a51974
A large collection of man pages (documentation) from the Linux
a51974
Documentation Project (LDP).
a51974
a51974
%prep
a51974
%setup -q -a 1 -a 2
a51974
a51974
%patch00 -p1
a51974
%patch01 -p1
a51974
%patch02 -p1
a51974
%patch03 -p1
a51974
a51974
%patch20 -p1
a51974
%patch21 -p1
a51974
%patch22 -p1
a51974
%patch23 -p1
a51974
%patch24 -p1
a51974
a51974
## Remove man pages we are not going to use ##
a51974
a51974
# part of libattr-devel
a51974
rm man2/{,f,l}{get,list,remove,set}xattr.2
a51974
a51974
# problem with db x db4 (#198597) - man pages are obsolete
a51974
rm man3/{db,btree,dbopen,hash,mpool,recno}.3
a51974
a51974
# deprecated
a51974
rm man2/pciconfig_{write,read,iobase}.2
a51974
a51974
# we do not have sccs (#203302)
a51974
rm %{posix_name}/man1p/{admin,delta,get,prs,rmdel,sact,sccs,unget,val,what}.1p
a51974
a51974
a51974
%build
a51974
# nothing to build
a51974
a51974
%install
a51974
%{__cp} -r %{additional_name}/man? .
a51974
%{__mv} %{posix_name}/man?p .
a51974
instdir=$RPM_BUILD_ROOT%{_mandir}
a51974
for sec in 0p 1 1p 2 3 3p 4 5 6 7 8; do
a51974
    %{__mkdir} -p $instdir{,/en}/man$sec
a51974
    for f in man$sec/*.$sec; do
a51974
        case $f in
a51974
            man$sec/'*'.$sec)
a51974
                # this dir is empty
a51974
                continue
a51974
                ;;
a51974
            man7/iso_8859-*.7)
a51974
                enc=ISO-8859-15
a51974
                LANG=en iconv -f $enc -t utf-8 $f | \
a51974
                    %{__sed} -e '1s/coding: *[^ ]* /coding: UTF-8 /' > $instdir/$f
a51974
                ;;
a51974
            man7/koi8-*.7 | man7/armscii-8.7 | man7/cp1251.7)
a51974
                enc=${f#man7/}
a51974
                enc=${enc%.7}
a51974
                LANG=en iconv -f $enc -t utf-8 $f | \
a51974
                    %{__sed} -e '1s/coding: *[^ ]* /coding: UTF-8 /' > $instdir/$f
a51974
                ;;
a51974
            *)
a51974
                LANG=en iconv -f latin1 -t utf-8 -o $instdir/en/$f $f
a51974
                LANG=en iconv -f utf-8 -t ascii//translit -o $instdir/$f $instdir/en/$f
a51974
                cmp -s $instdir/$f $instdir/en/$f && %{__rm} $instdir/en/$f
a51974
                ;;
a51974
        esac
a51974
    done
a51974
done
a51974
a51974
cd %{posix_name}
a51974
%{__mv} Changes %{posix_name}.Changes
a51974
%{__mv} README %{posix_name}.README
a51974
cd ..
a51974
a51974
%files
a51974
%doc README man-pages-%{version}.Announce Changes %{posix_name}/POSIX-COPYRIGHT %{posix_name}/%{posix_name}.{README,Announce,Changes}
a51974
%{_mandir}/man*/*
a51974
%lang(en) %{_mandir}/en/man*/*
a51974
a51974
%changelog
a51974
* Tue Aug 13 2013 Peter Schiffer <pschiffe@redhat.com> - 3.53-2
a51974
- resolves: #990049
a51974
  documented /proc/[pid]/io file on the proc(5) man page
a51974
a51974
* Wed Jul 31 2013 Peter Schiffer <pschiffe@redhat.com> - 3.53-1
a51974
- resolves: #990459
a51974
  updated to 3.53
a51974
a51974
* Mon Jul 22 2013 Peter Schiffer <pschiffe@redhat.com> - 3.52-1
a51974
- resolves: #981385
a51974
  updated to 3.52
a51974
- fixed broken sentence on the futex(7) man page
a51974
- resolves: #885740
a51974
  documented O_PATH flag on the open(2) man page
a51974
a51974
* Tue Apr 23 2013 Peter Schiffer <pschiffe@redhat.com> - 3.51-1
a51974
- resolves: #921911
a51974
  updated to 3.51
a51974
a51974
* Thu Mar  7 2013 Peter Schiffer <pschiffe@redhat.com> - 3.48-1
a51974
- resolves: #918417
a51974
  updated to 3.48
a51974
a51974
* Tue Feb 12 2013 Peter Schiffer <pschiffe@redhat.com> - 3.47-1
a51974
- resolves: #910268
a51974
  updated to 3.47
a51974
a51974
* Fri Feb  1 2013 Peter Schiffer <pschiffe@redhat.com> - 3.46-2
a51974
- related: #858703
a51974
  moved killpgrp(8) man page to the amanda-client package
a51974
a51974
* Mon Jan 28 2013 Peter Schiffer <pschiffe@redhat.com> - 3.46-1
a51974
- resolves: #904950
a51974
  updated to 3.46
a51974
a51974
* Wed Jan 16 2013 Peter Schiffer <pschiffe@redhat.com> - 3.45-2
a51974
- dropped some outdated patches, few patches updated
a51974
a51974
* Fri Dec 21 2012 Peter Schiffer <pschiffe@redhat.com> - 3.45-1
a51974
- resolves: #889446
a51974
  updated to 3.45
a51974
a51974
* Wed Nov 21 2012 Peter Schiffer <pschiffe@redhat.com> - 3.44-1
a51974
- resolves: #874650
a51974
  updated to 3.44
a51974
a51974
* Thu Oct 25 2012 Peter Schiffer <pschiffe@redhat.com> - 3.43-1
a51974
- resolves: #866874
a51974
  updated to 3.43
a51974
- added description of the TCP_CONGESTION on the tcp(7) man page
a51974
- added description of the IP_MULTICAST_ALL on the ip(7) man page
a51974
- updated additional man pages
a51974
a51974
* Wed Sep 19 2012 Peter Schiffer <pschiffe@redhat.com> - 3.42-1
a51974
- resolves: #847941
a51974
  update to 3.42
a51974
- updated additional man pages
a51974
- cleaned patches
a51974
- cleaned .spec file, fixed minor encoding issue
a51974
- resolves: #837090
a51974
  updated example on inet(3) man page - use fprintf(stderr,..) instead of perror
a51974
- resolves: #751429
a51974
  included initgroups database in the nsswitch.conf(5) man page
a51974
- removed the sccs-related man pages (#203302)
a51974
- added description of single-request-reopen to the resolv.conf(5) man page (#717770)
a51974
- added missing EIDRM error code description to the shmop(2) man page (#800256)
a51974
- added documentation of several source-specific multicast socket options to the ip(7) man page (#804003)
a51974
- improved explanation about calling listen or connect on the ip(7) man page (#787567)
a51974
- added information about incorrect use of getdents(2) call to the man page (#809490)
a51974
- removed man-pages-3.22-sched_setaffinity.patch because the problem it describes was fixed in the kernel. see #533811 for more info
a51974
- documented why to use shutdown() before close() when dealing with sockets on close(2) man page (#650985)
a51974
- updated description of /proc/sys/fs/file-nr file in proc(5) man page (#497197)
a51974
- updated zdump(8) man page to match current zdump usage (#517309)
a51974
- fixed one incorrect error code on connect(2) man page (#392431)
a51974
- fixed typo in sysconf(3) man page (#202092)
a51974
- removed additional uuname(1) man page - was moved to the uucp package (#858642)
a51974
- removed obsolete additional userisdnctl(8) man page
a51974
a51974
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.41-2
a51974
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a51974
a51974
* Thu May 17 2012 Peter Schiffer <pschiffe@redhat.com> - 3.41-1
a51974
- resolves: #820901
a51974
  update to 3.41
a51974
a51974
* Fri Apr 27 2012 Peter Schiffer <pschiffe@redhat.com> - 3.40-2
a51974
- related: #797857
a51974
  fixed broken source file
a51974
a51974
* Fri Apr 27 2012 Peter Schiffer <pschiffe@redhat.com> - 3.40-1
a51974
- resolves: #797857
a51974
  update to 3.40
a51974
a51974
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.35-2
a51974
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a51974
a51974
* Fri Nov 11 2011 Peter Schiffer <pschiffe@redhat.com> - 3.35-1
a51974
- resolves: #751620
a51974
  update to 3.35
a51974
- resolves: #723578
a51974
  typo in readlink(3p)
a51974
a51974
* Fri May 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-14
a51974
- resolves: #705888
a51974
  the man page for proc is missing an explanation for /proc/[pid]/cgroup
a51974
a51974
* Fri Apr 22 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-13
a51974
- resolves: #698149
a51974
  Remove documentation for "order" keyword in /etc/host.conf manpage
a51974
a51974
* Fri Apr 22 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-12
a51974
- resolves: #680214
a51974
  manpage for fallocate(2) is wrong
a51974
a51974
* Fri Mar 25 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-11
a51974
- resolves: #681781
a51974
  snprintf man page is wrong
a51974
a51974
* Wed Mar  9 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-10
a51974
- resolves: #675544
a51974
  perfmonctl(2) typo manpage fix
a51974
a51974
* Thu Feb 24 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-9
a51974
- resolves: #679899
a51974
  add scopev4 to gai.conf man page 
a51974
a51974
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.32-8
a51974
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a51974
a51974
* Mon Jan 31 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-7
a51974
- resolves: #673586
a51974
  fix the sed pages parsing
a51974
a51974
* Thu Jan 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-6
a51974
- resolves: #652869
a51974
  fix the necessary buffer limit in the man page for readdir_r
a51974
a51974
* Thu Jan 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-5
a51974
- resolves: #672348
a51974
  problems with the encoding of characters set man-pages
a51974
  thanks Denis Barbier for a patch
a51974
a51974
* Tue Jan 25 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-4
a51974
- resolves: #672377
a51974
  fix man-pages-2.48-passwd.patch remove trailing dots
a51974
a51974
* Tue Jan 25 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-3
a51974
- resolves: #652870
a51974
  fix strtol man-page
a51974
a51974
* Mon Jan  3 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-2
a51974
- update to 3.32
a51974
a51974
* Wed Nov 24 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-2
a51974
- resolves: #655961
a51974
  add the conflict tag
a51974
a51974
* Fri Nov 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-1
a51974
- update to 3.31
a51974
a51974
* Thu Nov 18 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.30-3
a51974
- resolves: #647269
a51974
  PR_SET_SECCOMP and _exit, documentation bug
a51974
a51974
* Thu Nov 11 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.30-2
a51974
- Resolves: #650257
a51974
  fix open.2 O_EXCL description
a51974
a51974
* Fri Nov  5 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.30-1
a51974
- update to 3.30
a51974
a51974
* Mon Oct 25 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.29-1
a51974
- update 3.29
a51974
  several bug fixes
a51974
a51974
* Wed Oct  6 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.28-3
a51974
- don't remove numa_maps, now the man page is not in numactl
a51974
- don't remove getipnodeby{name,addr}.3 and freehostent.3
a51974
  they are not more part of glibc-devel
a51974
- fix typo in gai_{error,suspend,cancel} pages
a51974
a51974
* Wed Oct  6 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.28-2
a51974
- add quotactl.2 to man-pages (the package was removed from quota - #640590)
a51974
a51974
* Wed Oct  6 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.28-1
a51974
- update to 3.28
a51974
- move all additional man-pages to one source
a51974
    (man-pages-additional-20101006.tar.bz2)
a51974
- remove additional man-pages without the info about license
a51974
a51974
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.27-3
a51974
- Resolves: #634626
a51974
  remove link to non-existing man page
a51974
a51974
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.27-2
a51974
- Resolves: #635869 
a51974
  remove the link to removed man page
a51974
a51974
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.27-1
a51974
- Update to 3.27
a51974
- remove obsolete patch
a51974
a51974
* Wed Sep  8 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.26-1
a51974
- Update to 3.26
a51974
- Resolves: 624399 (rresvport man entry misleading)
a51974
a51974
* Thu Jul  1 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.25-1
a51974
- Update to 3.25
a51974
a51974
* Thu Jun 24 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-7
a51974
- resolves: #606038
a51974
  filesystems.5 makes no mention of ext4
a51974
a51974
* Fri Jun  4 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-6
a51974
- Resolves: #596666
a51974
  Man page for mmap64 is confusing
a51974
a51974
* Mon May 31 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-5
a51974
- Resolves: #597429
a51974
  remove the duplicate info about error output (recv(2) man page)
a51974
a51974
* Mon May 10 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-4
a51974
- Resolves: #588620
a51974
  Typo in sysconf(3) Manual page
a51974
a51974
* Mon May  3 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-3
a51974
- fix atanh man-page bug in glibc was fixed so removed the info about it
a51974
a51974
* Fri Mar 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-2
a51974
- Resolves: #570703
a51974
  fix getnameinfo prototype
a51974
a51974
* Tue Mar  2 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-1
a51974
- update to 3.24
a51974
  Resolves: #569451
a51974
a51974
* Mon Feb 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-7
a51974
- Resolves: #564528
a51974
  Man page and "info" information on snprintf incomplete
a51974
a51974
* Wed Jan 27 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-6
a51974
- Resolves: #556199
a51974
  update iconv.1 man page
a51974
a51974
* Tue Jan 26 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-5
a51974
- Resolves: #557971
a51974
  remove unnecessary man-pages from man-pages_syscalls and man-pages_add
a51974
a51974
* Thu Dec  3 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-4
a51974
- fix typo in sched_setaffinity(2) patch
a51974
a51974
* Wed Dec  2 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-3
a51974
- fix sched_setaffinity(2) page - add an EXAMPLE and new NOTES
a51974
a51974
* Wed Nov 18 2009 Ivana Varekova <varekova@redhat.com> - 3.23-2
a51974
- fix ld.so man-page (#532629)
a51974
a51974
* Mon Oct  5 2009 Ivana Varekova <varekova@redhat.com> - 3.23-1
a51974
- update to 3.23
a51974
- fix proc description
a51974
a51974
* Wed Sep 16 2009 Ivana Varekova <varekova@redhat.com> - 3.22-6
a51974
- fix nsswitch.conf(5) man page
a51974
a51974
* Mon Sep 14 2009 Ivana Varekova <varekova@redhat.com> - 3.22-5
a51974
- fix strcpy.3 man page
a51974
- remove statfc64 man page from syscalls tarball
a51974
a51974
* Tue Aug 11 2009 Ivana Varekova <varekova@redhat.com> - 3.22-4
a51974
- fix gai.conf an page (#515347)
a51974
a51974
* Mon Jul 27 2009 Ivana Varekova <varekova@redhat.com> - 3.22-3
a51974
- update to 3.22
a51974
a51974
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21-3
a51974
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a51974
a51974
* Fri Jul 17 2009 Ivana Varekova <varekova@redhat.com> - 3.21-2
a51974
- fix major.3 man page
a51974
a51974
* Tue Apr 21 2009 Ivana Varekova <varekova@redhat.com> - 3.21-1
a51974
- update to 3.21
a51974
a51974
* Tue Mar 31 2009 Ivana Varekova <varekova@redhat.com> - 3.20-1
a51974
- update to 3.20
a51974
a51974
* Tue Mar 10 2009 Ivana Varekova <varekova@redhat.com> - 3.19-1
a51974
- update to 3.19
a51974
a51974
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16-2
a51974
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a51974
a51974
* Fri Jan 16 2009 Ivana Varekova <varekova@redhat.com> - 3.16-1
a51974
- update to 3.16
a51974
a51974
* Mon Dec  8 2008 Ivana Varekova <varekova@redhat.com> - 3.15-1
a51974
- update to 3.15
a51974
a51974
* Thu Nov 13 2008 Ivana Varekova <varekova@redhat.com> - 3.13-2
a51974
- fix relative path in proc.5
a51974
- not build yet
a51974
a51974
* Thu Nov 13 2008 Ivana Varekova <varekova@redhat.com> - 3.13-1
a51974
- update to 3.13
a51974
a51974
* Mon Sep 15 2008 Ivana Varekova <varekova@redhat.com> - 3.09-2
a51974
- remove numa_maps.5 man page (part of numactl)
a51974
a51974
* Fri Sep 12 2008 Ivana Varekova <varekova@redhat.com> - 3.09-1
a51974
- update to 3.09
a51974
a51974
* Thu Aug 14 2008 Ivana Varekova <varekova@redhat.com> - 3.07-1
a51974
- update to 3.07
a51974
- remove ncsa_auth.8 (#458498)
a51974
a51974
* Thu Aug  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.04-2
a51974
- fix license tag
a51974
a51974
* Tue Jul 22 2008 Ivana Varekova <varekova@redhat.com> - 3.04-1
a51974
- update to 3.04
a51974
- remove mmap, sched_setaffinity, crypt and prctl patches
a51974
- remove -f from rm commands
a51974
- remove unnecessary/bogus rm commands
a51974
a51974
* Wed Jun 18 2008 Ivana Varekova <varekova@redhat.com> - 3.00-1
a51974
- update to 3.00
a51974
- source files changes
a51974
a51974
* Wed Jun 11 2008 Ivana Varekova <varekova@redhat.com> - 2.80-2
a51974
- reformulate the malloc_hook patch
a51974
a51974
* Tue Jun 10 2008 Ivana Varekova <varekova@redhat.com> - 2.80-1
a51974
- update to 2.80
a51974
- Resolves: #450187
a51974
  deprecate malloc_hook(3) man page
a51974
a51974
* Fri Mar  7 2008 Ivana Varekova <varekova@redhat.com> - 2.78-2
a51974
- fix 436398:
a51974
  add information about unimplemented syscalls
a51974
a51974
* Fri Feb 22 2008 Ivana Varekova <varekova@redhat.com> - 2.78-1
a51974
- update to 2.78
a51974
a51974
* Tue Jan 29 2008 Ivana Varekova <varekova@redhat.com> - 2.76-1
a51974
- update to 2.76
a51974
- add new option to prctl man page
a51974
a51974
* Fri Jan 11 2008 Ivana Varekova <varekova@redhat.com> - 2.75-2
a51974
- update crypt.3 man page
a51974
a51974
* Fri Jan 11 2008 Ivana Varekova <varekova@redhat.com> - 2.75-1
a51974
- update to 2.75
a51974
- remove fs page patch
a51974
a51974
* Mon Dec 17 2007 Ivana Varekova <varekova@redhat.com> - 2.73-1
a51974
- update to 2.73
a51974
a51974
* Tue Dec  4 2007 Ivana Varekova <varekova@redhat.com> - 2.69-1
a51974
- update to 2.69
a51974
a51974
* Thu Nov 22 2007 Ivana Varekova <varekova@redhat.com> - 2.68-1
a51974
- update to 2.68
a51974
a51974
* Mon Oct 22 2007 Ivana Varekova <varekova@redhat.com> - 2.67-1
a51974
- update to 2.67
a51974
a51974
* Tue Oct  9 2007 Ivana Varekova <varekova@redhat.com> - 2.66-1
a51974
- update to 2.66
a51974
- add proc man-page patch
a51974
a51974
* Tue Sep 18 2007 Ivana Varekova <varekova@redhat.com> - 2.65-1
a51974
- update to 2.65
a51974
a51974
* Tue Aug 14 2007 Ivana Varekova <varekova@redhat.com> - 2.64-1
a51974
- update to 2.64
a51974
- remove obsolete patch
a51974
a51974
* Tue Aug  7 2007 Ivana Varekova <varekova@redhat.com> - 2.63-3
a51974
- add iconv patch (245040)
a51974
  thanks to Josef Kubin
a51974
a51974
* Fri Jul 20 2007 Ivana Varekova <varekova@redhat.com> - 2.63-2
a51974
- Resolves: #248655 
a51974
  add getent patch (thanks Ville Skyttä)
a51974
a51974
* Fri Jul 20 2007 Ivana Varekova <varekova@redhat.com> - 2.63-1
a51974
- update to 2.63
a51974
a51974
* Tue Jun 26 2007 Ivana Varekova <varekova@redhat.com> - 2.55-3
a51974
- remove ncsa_auth.8
a51974
a51974
* Mon Jun 11 2007 Stepan Kasal <skasal@redhat.com> - 2.55-2
a51974
- Add man-suid-bins.tar.bz2 and uuname.1 to document suid binaries
a51974
  (submitted through bug #196352).
a51974
- Add man-pages-2.51-sched_setaffinity.patch, fixing the prototypes.
a51974
- Remove sccs-related man pages.
a51974
- Add man-pages-2.55-syscalls-2.6.9.patch, updating syscalls.2 to kernel
a51974
  version 2.6.9.
a51974
- Add man-pages-2.55-clone2.patch; s/clone2/__&/, clone2 is not exported.
a51974
- Add man-pages-2.55-signal.patch; SIGRTMIN is not constant.
a51974
a51974
* Mon Jun 11 2007 Ivana Varekova <varekova@redhat.com> - 2.55-1
a51974
- update to 2.55
a51974
a51974
* Mon Jun  4 2007 Stepan Kasal <skasal@redhat.com> - 2.51-4
a51974
- Simplify the build and install phases; pages are now recoded during the
a51974
  install.
a51974
- Move the "rm" commands from build to prep.
a51974
- Add man-pages-2.51-epoll_pwait.patch to fix a circular link.
a51974
a51974
* Mon Jun  4 2007 Stepan Kasal <skasal@redhat.com> - 2.51-3
a51974
- Add man-pages-2.51-nscd-conf.patch, fixes #204596
a51974
- Fix typos, man-pages-2.51-typos.patch
a51974
a51974
* Thu May 31 2007 Ivana Varekova <varekova@redhat.com> 2.51-2
a51974
- remove mount page patch
a51974
- fix mmap patch
a51974
a51974
* Wed May 30 2007 Ivana Varekova <varekova@redhat.com> 2.51-1
a51974
- update to 2.51
a51974
a51974
* Mon May 21 2007 Ivana Varekova <varekova@redhat.com> 2.49-1
a51974
- update to 2.49
a51974
a51974
* Fri May 11 2007 Ivana Varekova <varekova@redhat.com> 2.48-1
a51974
- update to 2.48
a51974
a51974
* Mon Apr 30 2007 Ivana Varekova <varekova@redhat.com> 2.46-1
a51974
- update to 2.46
a51974
a51974
* Wed Apr 11 2007 Ivana Varekova <varekova@redhat.com> 2.44-1
a51974
- update to 2.44
a51974
a51974
* Mon Apr  2 2007 Steve Dickson <steved@redhat.com> 2.43-12
a51974
- Remove the rpcinfo man page (#228894).
a51974
a51974
* Fri Mar 16 2007 Ivana Varekova <varekova@redhat.com> 2.43-11
a51974
- Resolves: 230899
a51974
  Error in the man-pages.spec file: incorrect encoding convertation
a51974
a51974
* Mon Mar 12 2007 Ivana Varekova <varekova@redhat.com> 2.43-10
a51974
- change the default buildroot
a51974
a51974
* Mon Mar 12 2007 Ivana Varekova <varekova@redhat.com> 2.43-9
a51974
- add lang macro
a51974
a51974
* Tue Feb 27 2007 Ivana Varekova <varekova@redhat.com> 2.43-8
a51974
- fix 229870 - bug in fadvise(2)
a51974
- fix 229204 - bug in passwd(5)
a51974
a51974
* Thu Feb 15 2007 Ivana Varekova <varekova@redhat.com> 2.43-7
a51974
- fix rand.3 man page (#228662)
a51974
  thanks Mark Summerfield
a51974
a51974
* Tue Feb 13 2007 Ivana Varekova <varekova@redhat.com> 2.43-6
a51974
- Resolves: 227260
a51974
  fix iso-8859 (koi8-r) man pages
a51974
a51974
* Mon Jan 29 2007 Ivana Varekova <varekova@redhat.com> 2.43-4
a51974
- fix rt_sigprocmask.2 (#219074)
a51974
- remove pciconfig_{read,write,iobase}.2 (#219827)
a51974
- fix swapon.2 (#222493)
a51974
a51974
* Fri Jan 12 2007 Ivana Varekova <varekova@redhat.com> 2.43-3
a51974
- fix mmap2 man page
a51974
- spec file cleanup
a51974
a51974
* Fri Dec  8 2006 Ivana Varekova <varekova@redhat.com> 2.43-2
a51974
- remove old/wrong patches
a51974
- fix tgkill/tkill man pages inconsistency 
a51974
a51974
* Fri Dec  1 2006 Ivana Varekova <varekova@redhat.com> 2.43-1
a51974
- update to 2.43
a51974
- fix mount.2 man page (#211608)
a51974
a51974
* Fri Oct 20 2006 Ivana Varekova <varekova@redhat.com> 2.41-2
a51974
- fix mmap(2) man page
a51974
a51974
* Fri Oct 20 2006 Ivana Varekova <varekova@redhat.com> 2.41-1
a51974
- update to 2.41
a51974
a51974
* Mon Oct  2 2006 Ivana Varekova <varekova@redhat.com> 2.39-6
a51974
- add getunwind.2, kexec_load.2, move_pages.2, perfmonctl.2, 
a51974
  spu_create.2, spufs.2, spu_run.2 and  vserver.2 man pages
a51974
a51974
* Mon Aug 28 2006 Ivana Varekova <varekova@redhat.com> 2.39-5
a51974
- add the description clone2 syscall to clone.2 man page
a51974
- add multiplexer.2 man page 
a51974
a51974
* Wed Aug 23 2006 Ivana Varekova <varekova@redhat.com> 2.39-4
a51974
- add (get/set)_robust_list.2 man pages
a51974
- add add_key.2, keyctl.2, request_key.2 man pages 
a51974
    (removed from keyutils-libs-devel package)
a51974
- add tux.2 man page
a51974
    (removed from tux package)
a51974
a51974
* Mon Aug 14 2006 Marcela Maslanova <mmaslano@redhat.com> 2.39-3
a51974
- fix same bug better
a51974
a51974
* Wed Aug 09 2006 Marcela Maslanova <mmaslano@redhat.com> 2.39-2
a51974
- fix(#200681) typo
a51974
a51974
* Wed Aug 09 2006 Marcela Maslanova <mmaslano@redhat.com> 2.39-1
a51974
- new version 2.39
a51974
a51974
* Thu Jul 20 2006 Marcela Maslanova <mmaslano@redhat.com> 2.36-2
a51974
- fix (#198903)
a51974
a51974
* Fri Jul 14 2006 Ivana Varekova <varekova@redhat.com> 2.36-1
a51974
- add nscd_conf options (nscd_conf.patch)
a51974
- added {create,query}_module.2, get_kernel_syms.2 man-pages 
a51974
- added nscd, getrlimit, libaio and write patch
a51974
- remove sigprocmask patch
a51974
- update to 2.36
a51974
a51974
* Thu Jul 13 2006 Marcela Maslanova <mmaslano@redhat.com> 2.34-3
a51974
- fix small typo (#198663)
a51974
a51974
* Wed Jul 12 2006 Ivana Varekova <varekova@redhat.com> 2.34-2
a51974
- remove btree, dbopen, hash, mpool and recno man-pages
a51974
  (#198597)
a51974
a51974
* Thu Jun 29 2006 Ivana Varekova <varekova@redhat.com> 2.34-1
a51974
- update to 2.34
a51974
- add inet patch (#189147)
a51974
a51974
* Fri May 26 2006 Ivana Varekova <varekova@redhat.com> 2.32-2
a51974
- add nss.5 man page (#192142)
a51974
- add the man-pages directories (#192998)
a51974
a51974
* Mon May 15 2006 Ivana Varekova <varekova@redhat.com> 2.32-1
a51974
- update to 2.32
a51974
- add gai.conf.5 man page (#191656)
a51974
a51974
* Tue Apr 18 2006 Ivana Varekova <varekova@redhat.com> 2.29-1
a51974
- update to 2.29
a51974
- fix sigprocmask(2) man page (#189121)
a51974
a51974
* Thu Mar 16 2006 Ivana Varekova <varekova@redhat.com> 2.25-2
a51974
- fix MALLOC_CHECK_ description (#185502)
a51974
a51974
* Tue Mar 14 2006 Ivana Varekova <varekova@redhat.com> 2.25-1
a51974
- update to 2.25
a51974
- remove mbind and set_mempolicy files
a51974
- fix dbopen man page (#185310)
a51974
a51974
* Mon Jan 16 2006 Ivana Varekova <varekova@redhat.com> 2.21-1
a51974
- update to 2.21
a51974
- add the description of reload-count option (nscd.conf 
a51974
  man page - bug 177368)
a51974
a51974
* Fri Jan  6 2006 Ivana Varekova <varekova@redhat.com> 2.20-1
a51974
- update to 2.20
a51974
a51974
* Tue Dec 13 2005 Ivana Varekova <varekova@redhat.com> 2.16-2
a51974
- fix bug 174628 - mmap(2) CAN return mappings at location 0
a51974
a51974
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
a51974
- rebuilt
a51974
a51974
* Thu Dec  8 2005 Ivana Varekova <varekova@redhat.com> 2.16-1
a51974
- update to 2.16
a51974
a51974
* Thu Nov 10 2005 Ivana Varekova <varekova@redhat.com> 2.13-1
a51974
- update to 2.13
a51974
a51974
* Mon Oct 10 2005 Ivana Varekova <varekova@redhat.com> 2.08-1
a51974
- update to 2.08
a51974
a51974
* Thu Sep 29 2005 Ivana Varekova <varekova@redhat.com> 2.07-7
a51974
- fix typo in nsswitch.conf man page (bug 169309)
a51974
a51974
* Thu Sep 29 2005 Ivana Varekova <varekova@redhat.com> 2.07-6
a51974
- man pages updated for new audit system (added missing man-pages 
a51974
of some syscalls) (see bug 159225)
a51974
a51974
* Tue Sep 13 2005 Ivana Varekova <varekova@redhat.com> 2.07-5
a51974
- change termcap SEE ALSO part - bug 168131
a51974
a51974
* Mon Sep 12 2005 Ivana Varekova <varekova@redhat.com> 2.07-3
a51974
- fix socket.7 man page - fix information about SO_RCVLOWAT option
a51974
  (bug 163120)
a51974
a51974
* Tue Aug 23 2005 Ivana Varekova <varekova@redhat.com> 2.07-2
a51974
- add sln.8 man page (bug 10601)
a51974
a51974
* Mon Aug  8 2005 Ivana Varekova <varekova@redhat.com> 2.07-1
a51974
- update to 2.07
a51974
a51974
* Mon Jul 04 2005 Jiri Ryska <jryska@redhat.com> 2.05-1
a51974
- update to 2.05
a51974
- atanh(3) fix
a51974
- issue(5) fix
a51974
- ldd(1) fix
a51974
- removed man1p/{compress,uncompress,renice}.1p
a51974
a51974
* Mon Apr  4 2005 Jiri Ryska <jryska@redhat.com> 1.67-7
a51974
- io_setup() and io_destroy() pages now refers to header file
a51974
- fixed types for struct shmid_ds in shmget(2) and shmctl(2)
a51974
- fixed pages for readv(2) and writev(2)
a51974
a51974
* Mon Mar  7 2005 Jindrich Novy <jnovy@redhat.com> 1.67-6
a51974
- unify fs.5 patches together to get rid of the bogus
a51974
  fs.5.orig.gz shipped among man5 pages
a51974
- bump release to 6 to avoid conflicts with RHEL4/FC3 man-pages
a51974
a51974
* Wed Aug 25 2004 Adrian Havill <havill@redhat.com> 1.67-3
a51974
- make resolver clearer and less bind-focused (#126696)
a51974
a51974
* Fri Aug 20 2004 Adrian Havill <havill@redhat.com> 1.67-2
a51974
- updated to latest
a51974
- getrpcent/setrpcent typo (#73836)
a51974
- add new resolver.5 page (#126557)
a51974
- add SHM_HUGETLB option to shmget (#128837)
a51974
a51974
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
a51974
- rebuilt
a51974
a51974
* Fri Apr 16 2004 Adrian Havill <havill@redhat.com> 1.66-3
a51974
- fixed minor typo (#118169)
a51974
a51974
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
a51974
- rebuilt
a51974
a51974
* Wed Feb 11 2004 Adrian Havill <havill@redhat.com> 1.66-1
a51974
- update to 1.66
a51974
- add posix section processing for sections 0p, 1p, 3p (#114584)
a51974
a51974
* Mon Dec 15 2003 Adrian Havill <havill@redhat.com> 1.64-2
a51974
- update to 1.64
a51974
- convert iso-8859-1 en locale pages to UTF-8 for fc2 (#108991)
a51974
a51974
* Wed Sep 24 2003 Adrian Havill <havill@redhat.com> 1.60-4.1
a51974
- bump n-v-r
a51974
a51974
* Wed Sep 24 2003 Adrian Havill <havill@redhat.com> 1.60-4
a51974
- transliterated ALL pages with latin-1 characters that would be
a51974
  displayed as either a fallback from a ascii-superset locale or
a51974
  from the POSIX locale into ascii (according to glibc transliteration
a51974
  data for locale "en"). pages with non-ascii are moved into the "en"
a51974
  locale. (#103214)
a51974
a51974
* Thu Aug 28 2003 Adrian Havill <havill@redhat.com> 1.60-2
a51974
- transliterated Lichtmaier's first name for the sake of iconv (#103214)
a51974
a51974
* Thu Aug 28 2003 Adrian Havill <havill@redhat.com> 1.60-1.1
a51974
- bumped n-v-r
a51974
a51974
* Thu Aug 28 2003 Adrian Havill <havill@redhat.com> 1.60-1
a51974
- bumped version, removed no longer needed patches
a51974
- added #define for re_comp() and re_exec() (#79703)
a51974
- fixed typo in Era format specifier (#80025)
a51974
- fixed ftell info for fopen with mode "a+" (#81359)
a51974
- fixed prototype for shmget() (#86258)
a51974
- fixed spelling in wait.2 (#86450)
a51974
- obsoleted _init and _fini in dlopen() (#88408)
a51974
- fixed and merged double ext3 descriptions (#103198)
a51974
- issue to refer to mingetty (#86248)
a51974
- synced man page with actual ld params (#97176)
a51974
a51974
* Fri Aug 01 2003 Elliot Lee <sopwith@redhat.com> 1.58-2
a51974
- Remove libattr conflicts
a51974
a51974
* Wed Jul 30 2003 Adrian Havill <havill@redhat.com> 1.58-1
a51974
- Bumped version (which also solves n-v-r conflict with RHEL)
a51974
a51974
* Fri Jul 11 2003 Ernie Petrides <petrides@redhat.com>
a51974
- Modify mlock.2, mlockall.2, and shmctl.2 for change to locking
a51974
  permission semantics made in kernel's linux-2.4.21-mlock.patch.
a51974
a51974
* Tue Apr 29 2003 Ernie Petrides <petrides@redhat.com>
a51974
- Modify semop.2 for new semtimedop(2) and add semtimedop.2 link.
a51974
a51974
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
a51974
- rebuilt
a51974
a51974
* Wed Dec 11 2002 Tim Powers <timp@redhat.com> 1.53-2
a51974
- rebuild
a51974
a51974
* Tue Aug 27 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.53-1
a51974
- 1.53
a51974
- Fix #71750, #72754
a51974
a51974
* Thu Jul 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.52-2
a51974
- Fix reference in rpcgen(1) - #69740
a51974
a51974
* Wed Jul 24 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.52-1
a51974
- 1.52
a51974
a51974
* Thu Jul 18 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.51-5
a51974
- Fix #63547
a51974
a51974
* Tue Jul  9 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.51-4
a51974
- Mentium mem=nopentium in bootparam(7) - #60487
a51974
a51974
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
a51974
- automated rebuild
a51974
a51974
* Wed Jun 12 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.51-2
a51974
- Fix to iconv(1) - #66441
a51974
a51974
* Tue Jun 11 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.51-1
a51974
- 1.51
a51974
a51974
* Thu Jun  6 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.50-1
a51974
- 1.50
a51974
a51974
* Wed May 29 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.48-4
a51974
- Bump
a51974
a51974
* Thu May 23 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.48-3
a51974
- Ret value of iconv(3) was wrong (#65375)
a51974
a51974
* Thu Apr  4 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.48-2
a51974
- Remove getipnodebyname, getipnodebyname, freehostent - they were
a51974
  only briefly part of a glibc devel version (#62646)
a51974
a51974
* Wed Mar 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.48-1
a51974
- 1.48
a51974
a51974
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.47-2
a51974
- Rebuild
a51974
a51974
* Tue Jan 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.47-1
a51974
- 1.47
a51974
a51974
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
a51974
- automated rebuild
a51974
a51974
* Thu Dec  6 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.44-2
a51974
- Add entry on ext3 in fs.5 (#55945)
a51974
a51974
* Tue Dec  4 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.44-1
a51974
- 1.44
a51974
- No patches required anymore - get rid of them.
a51974
a51974
* Thu Nov 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.43-2
a51974
- Fix docs for setresuid/setresgid (#56038)
a51974
a51974
* Thu Nov  8 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.43-1
a51974
- 1.43
a51974
a51974
* Tue Oct 23 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.42-1
a51974
- 1.42
a51974
a51974
* Mon Oct 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.41-1
a51974
- 1.41
a51974
- Remove bug section in llseek.2, which claimed ext2 don't support
a51974
  files bigger than 2 GB (#54569)
a51974
a51974
* Tue Sep 25 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.40-1
a51974
- 1.40. Remove now included patches.
a51974
a51974
* Tue Sep  4 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.39-2
a51974
- New strptime.3, from the ftp site. Matches glibc better.
a51974
- Fix missing .br in netdevices.7 (#53091)
a51974
a51974
* Tue Aug  7 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.39
a51974
- Drop obsolete patches
a51974
a51974
* Tue Jul 24 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- s/NSF/NFS/ in initrd.4 - (#48322)
a51974
a51974
* Mon Jul  2 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- regcomp and friends support collating elements now (#46939)
a51974
a51974
* Thu Jun 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.38
a51974
a51974
* Fri Jun  8 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.37
a51974
a51974
* Thu Jun  7 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- Remove capset(2) - part of libcap (#43828)
a51974
a51974
* Fri Jun  1 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- Remove diff.1 - let diffutils include it instead
a51974
- Remove capget.2 - it's included in libcap
a51974
- Keep resolv.conf.5 - it's useful on systems without bind packages
a51974
- Fix bootparam.7 (patch from Tim Waugh (twaugh@redhat.com)
a51974
a51974
* Tue May 22 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.36
a51974
- drop some old patches, redo others
a51974
a51974
* Thu May 17 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- Work around bug in groff for latin1.7 (#41118)
a51974
a51974
* Wed Apr  4 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- use MS_SYNCHRONOUS instead of MS_SYNC in mount(2) (#34665)
a51974
a51974
* Tue Apr  3 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- roff fixes to multiple man pages
a51974
a51974
* Mon Apr  2 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- correct the URL for unicode in the charset manpage (#34291)
a51974
- roff fixes
a51974
- redo iconv patch, so we don't get a .orig from patch because of
a51974
  a two line offset
a51974
a51974
* Fri Mar 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- remove resolv.conf (bind-utils) and infnan (obsolete - #34171)
a51974
a51974
* Wed Mar 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- resurrect getnetent(3)
a51974
a51974
* Sun Mar 25 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.35, obsoletes patch for strsep
a51974
- move rpcinfo to section 8 (#33114)
a51974
a51974
* Fri Mar  9 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- Include man-pages on locales (#29713)
a51974
a51974
* Tue Feb 13 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- fix return value of strsep(3) call (#24789)
a51974
a51974
* Mon Jan 15 2001 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.34
a51974
a51974
* Fri Dec 15 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- 1.33
a51974
- obsolete some old, now included patches
a51974
- remove netman-cvs, it's now older than the mainstream
a51974
a51974
* Tue Nov 21 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- Identify two of the macros in stat(2) as GNU, not POSIX. (#21169)
a51974
a51974
* Wed Nov 08 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- don't delete the man pages for dlopen() and friends, 
a51974
  they are no longer part of another package
a51974
- include man pages for ld*
a51974
a51974
* Tue Oct 24 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- remove const from iconv function prototype (#19486)
a51974
a51974
* Tue Aug 29 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- reference wctype(3) instead of non-existing ctype(3)
a51974
  from regex(7) (#17037)
a51974
- 1.31
a51974
a51974
* Sun Aug 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- remove lilo man pages (now included in package)
a51974
  (#16984)
a51974
a51974
* Fri Aug 04 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- fixed bad header specification (#15364)
a51974
- removed obsolete patches from package
a51974
- updated the rest
a51974
a51974
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
a51974
- automatic rebuild
a51974
a51974
* Mon Jun 19 2000 Matt Wilson <msw@redhat.com>
a51974
- defattr before docs in filelist
a51974
a51974
* Sat Jun 17 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- updated to 1.30
a51974
a51974
* Tue Jun 06 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- use %%{_tmppath}
a51974
a51974
* Wed May 31 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- remove resolv.conf(5) - part of bind-utils
a51974
a51974
* Tue May 30 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- Remove resolver, dlclose, dlerror, dlopen, dlsym as these
a51974
  are included in other packages.
a51974
a51974
* Tue May 30 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- use %%{_mandir) instead of /usr/man
a51974
- verify and fix bug in mmap man page (#7382)
a51974
- verify and fix missing data in recvfrom man page (#1736)
a51974
- verify and fix missing data in putw man page (#10104)
a51974
- fixed sendfile(2) man page (#5599)
a51974
- fixed tzset man page (#11623)
a51974
a51974
* Mon May 15 2000 Trond Eivind Glomsrød <teg@redhat.com>
a51974
- updated to 1.29
a51974
- split off other languages into separate RPMS 
a51974
a51974
* Thu Mar 16 2000 Florian La Roche <Florian.LaRoche@redhat.com>
a51974
- do not use group "man"
a51974
a51974
* Fri Mar 03 2000 Cristian Gafton <gafton@redhat.com>
a51974
- don't apply the netman-cvs man pages anymore, as they seem to be really
a51974
  out of date
a51974
a51974
* Sat Feb 05 2000 Cristian Gafton <gafton@redhat.com>
a51974
- put back man3/resolver.3
a51974
a51974
* Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
a51974
- remove non-man pages (#7814)
a51974
a51974
* Fri Feb  4 2000 Matt Wilson <msw@redhat.com>
a51974
- exclude dir.1 and vdir.1 (these are in the fileutils package)
a51974
a51974
* Thu Feb 03 2000 Cristian Gafton <gafton@redhat.com>
a51974
- version 1.28
a51974
a51974
* Fri Nov 05 1999 Michael K. Johnson <johnsonm@redhat.com>
a51974
- Fixed SIGILL, SIGQUIT in signals.7
a51974
a51974
* Wed Oct 06 1999 Cristian Gafton <gafton@redhat.com>
a51974
- fix man page for getcwd
a51974
a51974
* Wed Sep 22 1999 Cristian Gafton <gafton@redhat.com>
a51974
- added man pages for set/getcontext
a51974
a51974
* Tue Sep 14 1999 Bill Nottingham <notting@redhat.com>
a51974
- remove some bad man pages
a51974
a51974
* Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
a51974
- czech, german, spanish, russian man pages
a51974
a51974
* Thu Sep 09 1999 Cristian Gafton <gafton@redhat.com>
a51974
- version 1.26
a51974
- add french man pages
a51974
- add italian man pages
a51974
a51974
* Fri Jul 23 1999 Jeff Johnson <jbj@redhat.com>
a51974
- update to 1.25.
a51974
a51974
* Fri Apr 16 1999 Cristian Gafton <gafton@redhat.com>
a51974
- fiox man page fro ftw
a51974
a51974
* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
a51974
- spellnig fixse
a51974
a51974
* Tue Mar 30 1999 Bill Nottingham <notting@redhat.com>
a51974
- updated to 1.23
a51974
a51974
* Thu Mar 25 1999 Cristian Gafton <gafton@redhat.com>
a51974
- added kernel net manpages
a51974
a51974
* Mon Mar 22 1999 Erik Troan <ewt@redhat.com>
a51974
- updated printf man page
a51974
- added rpcgen man page
a51974
a51974
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
a51974
- auto rebuild in the new build environment (release 6)
a51974
a51974
* Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
a51974
- leave the lilo man pages alone (oops)
a51974
a51974
* Fri Feb 12 1999 Michael Maher <mike@redhat.com>
a51974
- fixed bug #413
a51974
a51974
* Mon Jan 18 1999 Cristian Gafton <gafton@redhat.com>
a51974
- remove lilo man pages too
a51974
- got rebuilt for 6.0
a51974
a51974
* Tue Sep 08 1998 Cristian Gafton <gafton@redhat.com>
a51974
- version 1.21
a51974
a51974
* Sat Jun 20 1998 Jeff Johnson <jbj@redhat.com>
a51974
- updated to 1.20
a51974
a51974
* Wed May 06 1998 Cristian Gafton <gafton@redhat.com>
a51974
- get rid of the modutils man pages
a51974
- updated to 1.19
a51974
a51974
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
a51974
- translations modified for de, fr, tr
a51974
a51974
* Wed Apr 08 1998 Erik Troan <ewt@redhat.com>
a51974
- updated to 1.18
a51974
a51974
* Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
a51974
- updated to 1.17
a51974
- moved build root to /var
a51974
a51974
* Thu Jul 31 1997 Erik Troan <ewt@redhat.com>
a51974
- made a noarch package