import man-pages-4.15-6.el8

This commit is contained in:
CentOS Sources 2019-05-07 02:44:28 -04:00 committed by Andrew Lukoshko
commit da89ad8c54
12 changed files with 3465 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
SOURCES/man-pages-4.15.tar.xz
SOURCES/man-pages-additional-20140218.tar.xz
SOURCES/man-pages-posix-2013-a.tar.xz

3
.man-pages.metadata Normal file
View File

@ -0,0 +1,3 @@
05ec29cc69586f276fbeaccd3b466f3456292010 SOURCES/man-pages-4.15.tar.xz
315c9144f71c0edf1af823fb3f7735e93f6f17c3 SOURCES/man-pages-additional-20140218.tar.xz
91b5b10a7a596615789782dad0adb477a8bf9f84 SOURCES/man-pages-posix-2013-a.tar.xz

View File

@ -0,0 +1,17 @@
diff -up man-pages-3.59/man2/close.2.orig man-pages-3.59/man2/close.2
--- man-pages-3.59/man2/close.2.orig 2014-02-16 08:33:52.000000000 +0100
+++ man-pages-3.59/man2/close.2 2014-02-18 13:49:27.685917162 +0100
@@ -120,6 +120,13 @@ other threads in the same process.
Since a file descriptor may be reused,
there are some obscure race conditions
that may cause unintended side effects.
+.PP
+When dealing with sockets, you have to be sure that there is no
+.BR recv (2)
+still blocking on it on another thread, otherwise it might block forever,
+since no more messages will be send via the socket. Be sure to use
+.BR shutdown (2)
+to shut down all parts the connection before closing the socket.
.\" Date: Tue, 4 Sep 2007 13:57:35 +0200
.\" From: Fredrik Noring <noring@nocrew.org>
.\" One such race involves signals and ERESTARTSYS. If a file descriptor

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,29 @@
From b5f194248f0c38d0e254b71f98e1b9e9783198dd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Fri, 27 Jul 2018 17:15:47 +0200
Subject: [PATCH 2/5] host.conf.5: fix default value of multi option
---
man5/host.conf.5 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/man5/host.conf.5 b/man5/host.conf.5
index 1f65840..15e9aa7 100644
--- a/man5/host.conf.5
+++ b/man5/host.conf.5
@@ -65,9 +65,9 @@ appears in the
file,
instead of only the first.
This is
-.I off
-by default, as it may cause a substantial performance loss at sites
-with large hosts files.
+.I on
+by default.
+On systems with DNS, hosts files are much smaller and the performance loss of multiple search is negligible. On sites with large hosts files, turning it on may cause a substantial performance loss.
.TP
.I reorder
Valid values are
--
2.17.1

View File

@ -0,0 +1,37 @@
From 41b7763e490bddbc3308dfd32924bd19972c0604 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Tue, 15 May 2018 13:29:24 +0200
Subject: [PATCH] host.conf.5: Clarify glibc versions in which spoof options
were removed
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
The nospoof, spoofalert and spoof options as well as the
RESOLV_SPOOF_CHECK environment variable were all removed
from glibc in version 2.25 (with commit
7d68cdaa4f748e87ee921f587ee2d483db624b3d).
Signed-off-by: Nikola Forró <nforro@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
man5/host.conf.5 | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/man5/host.conf.5 b/man5/host.conf.5
index 15e9aa7..66e6fb4 100644
--- a/man5/host.conf.5
+++ b/man5/host.conf.5
@@ -150,7 +150,8 @@ Overrides the
.I order
command.
.PP
-Since glibc 2.0.7, the following keywords and environment variable have
+.\" commit 7d68cdaa4f748e87ee921f587ee2d483db624b3d
+Since glibc 2.0.7, and up through glibc 2.24, the following keywords and environment variable have
been recognized but never implemented:
.TP
.I nospoof
--
2.17.1

View File

@ -0,0 +1,45 @@
From 260d71520ec0c96ef20670eca17d7b08cc9601ad Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Fri, 27 Jul 2018 17:10:43 +0200
Subject: [PATCH 1/5] nl_langinfo.3: note that Latin-1 is the default codeset
for en_US locale charsets.7: note that UTF-8 is the recommended encoding for
all locales
---
man3/nl_langinfo.3 | 6 ++++++
man7/charsets.7 | 2 ++
2 files changed, 8 insertions(+)
diff --git a/man3/nl_langinfo.3 b/man3/nl_langinfo.3
index e37f07b..63de5c2 100644
--- a/man3/nl_langinfo.3
+++ b/man3/nl_langinfo.3
@@ -167,6 +167,12 @@ or
.PP
POSIX specifies that the application may not modify
the string returned by these functions.
+.PP
+Codeset for en_US defaults to ISO-8859-1 (Latin-1).
+The Latin-1 default has historical reasons,
+since all Unix systems originally used only 8-bit character encoding.
+For more information about ISO-8859-1 see
+.BR charsets (7).
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
diff --git a/man7/charsets.7 b/man7/charsets.7
index 5f91784..9de88fe 100644
--- a/man7/charsets.7
+++ b/man7/charsets.7
@@ -29,6 +29,8 @@ ASCII, GB 2312, ISO 8859, JIS, KOI8-R, KS, and Unicode.
The primary emphasis is on character sets that were actually used by
locale character sets, not the myriad others that could be found in data
from other systems.
+.LP
+The recommended encoding in all settings and locales is UTF-8.
.SS ASCII
ASCII (American Standard Code For Information Interchange) is the original
7-bit character set, originally designed for American English.
--
2.17.1

View File

@ -0,0 +1,43 @@
From ca56d826dbaa05403454d8971b59fabe8b5642d5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Fri, 27 Jul 2018 17:23:26 +0200
Subject: [PATCH 3/5] nsswitch.conf.5: add information about sss service
---
man5/nsswitch.conf.5 | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/man5/nsswitch.conf.5 b/man5/nsswitch.conf.5
index 38ef64e..dcf09e6 100644
--- a/man5/nsswitch.conf.5
+++ b/man5/nsswitch.conf.5
@@ -165,6 +165,16 @@ may be 1 for glibc 2.0, or 2 for glibc 2.1 and later.
On systems with additional libraries installed, you may have access to
further services such as "hesiod", "ldap", "winbind" and "wins".
.PP
+If System Security Services Daemon (SSSD)
+is installed on your system, you can use
+this service with the "sss" keyword.
+SSSD supports the following databases:
+.BR passwd ,
+.BR group ,
+.BR services
+and
+.BR netgroup .
+.PP
An action may also be specified following a service specification.
The action modifies the behavior following a result obtained
from the preceding data source.
@@ -329,6 +339,9 @@ as the source for the pseudo-databases
.BR group_compat ,
and
.BR shadow_compat .
+.PP
+If SSSD is installed on your system, you can use "sss" as the source
+for these pseudo-databases.
.SH FILES
A service named
.I SERVICE
--
2.17.1

View File

@ -0,0 +1,43 @@
From 2d5049d33ee608c48efd0c02e48d135ddb766fa2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Mon, 23 Jul 2018 14:02:18 +0200
Subject: [PATCH 2/2] proc.5: Document /proc/[pid]/status
Speculation_Store_Bypass field
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Nikola Forró <nforro@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
man5/proc.5 | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/man5/proc.5 b/man5/proc.5
index 9ae9e02..dc83c22 100644
--- a/man5/proc.5
+++ b/man5/proc.5
@@ -2262,6 +2262,7 @@ CapBnd: ffffffffffffffff
CapAmb: 0000000000000000
NoNewPrivs: 0
Seccomp: 0
+Speculation_Store_Bypass: vulnerable
Cpus_allowed: 00000001
Cpus_allowed_list: 0
Mems_allowed: 1
@@ -2485,6 +2486,12 @@ This field is provided only if the kernel was built with the
.BR CONFIG_SECCOMP
kernel configuration option enabled.
.IP *
+.IR Speculation_Store_Bypass :
+.\" commit fae1fa0fc6cca8beee3ab8ed71d54f9a78fa3f64
+Speculation flaw mitigation state
+(since Linux 4.17, see
+.BR prctl (2)).
+.IP *
.IR Cpus_allowed :
Mask of CPUs on which this process may run
(since Linux 2.6.24, see
--
2.17.1

View File

@ -0,0 +1,36 @@
From 7285d6b10356c43c94a252c63ffcd332c4e54b4b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Wed, 11 Jul 2018 10:58:38 +0200
Subject: [PATCH 1/2] resolv.conf.5: Document no-reload (RES_NPRELOAD) option
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Nikola Forró <nforro@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
man5/resolv.conf.5 | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/man5/resolv.conf.5 b/man5/resolv.conf.5
index bc42004..93c6b47 100644
--- a/man5/resolv.conf.5
+++ b/man5/resolv.conf.5
@@ -302,6 +302,14 @@ Sets
in
.IR _res.options .
This option forces the use of TCP for DNS resolutions.
+.\" aef16cc8a4c670036d45590877d411a97f01e0cd
+.TP
+.BR no\-reload " (since glibc 2.26)"
+Sets
+.BR RES_NORELOAD
+in
+.IR _res.options .
+This option disables automatic reloading of a changed configuration file.
.RE
.PP
The \fIdomain\fP and \fIsearch\fP keywords are mutually exclusive.
--
2.17.1

View File

@ -0,0 +1,35 @@
From 0409c3370ddd08cec10586f6f52fe1fbe3c717ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nikola=20Forr=C3=B3?= <nforro@redhat.com>
Date: Tue, 24 Jan 2017 16:35:02 +0100
Subject: [PATCH] pthread_once.3p: fix return type of initialize_random()
function
---
man-pages-posix-2013-a/man3p/pthread_once.3p | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/man-pages-posix-2013-a/man3p/pthread_once.3p b/man-pages-posix-2013-a/man3p/pthread_once.3p
index 316b1e9..db83d63 100644
--- a/man-pages-posix-2013-a/man3p/pthread_once.3p
+++ b/man-pages-posix-2013-a/man3p/pthread_once.3p
@@ -86,7 +86,7 @@ on entry to a routine, as follows:
.nf
\fB
static int random_is_initialized = 0;
-extern int initialize_random();
+extern void initialize_random();
.P
int random_function()
{
@@ -125,7 +125,7 @@ becomes:
\fB
#include <pthread.h>
static pthread_once_t random_is_initialized = PTHREAD_ONCE_INIT;
-extern int initialize_random();
+extern void initialize_random();
.P
int random_function()
{
--
2.7.4

676
SPECS/man-pages.spec Normal file
View File

@ -0,0 +1,676 @@
%global posix_version 2013
%global posix_release a
%global posix_name man-pages-posix-%{posix_version}-%{posix_release}
%global additional_version 20140218
%global additional_name man-pages-additional-%{additional_version}
%global debug_package %{nil}
Summary: Linux kernel and C library user-space interface documentation
Name: man-pages
Version: 4.15
Release: 6%{?dist}
License: GPL+ and GPLv2+ and BSD and MIT and Copyright only and IEEE
Group: Documentation
URL: http://www.kernel.org/doc/man-pages/
Source: http://www.kernel.org/pub/linux/docs/man-pages/man-pages-%{version}.tar.xz
# POSIX man pages
Source1: http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/%{posix_name}.tar.xz
# additional man-pages, the source tarball is fedora/rhel only
Source2: %{additional_name}.tar.xz
# attr.5 man page was moved from attr to man-pages in attr-2.4.47-11
Conflicts: attr < 2.4.47-11
# keyrings.7, persistent-keyring.7, process-keyring.7, session-keyring.7,
# thread-keyring.7, user-keyring.7 and user-session-keyring.7 man pages
# were moved from keyutils-libs to man-pages in keyutils-libs-1.5.10
Conflicts: keyutils-libs < 1.5.10
Autoreq: false
## Patches ##
# POSIX man pages
# resolves: #1415757
Patch0: man-pages-posix-2013-a-pthread_once.patch
# Regular man pages
# resolves: #650985
# https://bugzilla.kernel.org/show_bug.cgi?id=53781
Patch21: man-pages-3.42-close.patch
# patches from MPO
Patch22: man-pages-4.15-nl_langinfo.3-charsets.7-codesets.patch
Patch23: man-pages-4.15-host.conf.5-multi.patch
Patch24: man-pages-4.15-nsswitch.conf.5-sss.patch
Patch25: man-pages-4.15-host.conf.5-spoof-options.patch
# aarch64 specific patch
Patch26: man-pages-4.15-aarch64-syscalls.patch
Patch27: man-pages-4.15-resolv.conf.5-no-reload.patch
Patch28: man-pages-4.15-proc.5-Speculation_Store_Bypass.patch
%description
A large collection of manual pages from the Linux Documentation Project (LDP).
%prep
%setup -q -a 1 -a 2
%patch0 -p1
%patch21 -p1
%patch22 -p1
%patch23 -p1
%patch24 -p1
%patch25 -p1
%ifarch aarch64
%patch26 -p1
%endif
%patch27 -p1
%patch28 -p1
# rename posix README so we don't have conflict
%{__mv} %{posix_name}/README %{posix_name}/%{posix_name}.README
## Remove man pages we are not going to use ##
# deprecated
%{__rm} man2/pciconfig_{write,read,iobase}.2
# problem with db x db4 (#198597) - man pages are obsolete
%{__rm} man3/{db,btree,dbopen,hash,mpool,recno}.3
# we are not using SystemV anymore
%{__rm} man7/boot.7
# we do not have sccs (#203302)
%{__rm} %{posix_name}/man1p/{admin,delta,get,prs,rmdel,sact,sccs,unget,val,what}.1p
# remove man pages deprecated by libxcrypt
%{__rm} man3/crypt{,_r}.3
%build
# nothing to build
%install
make install DESTDIR=$RPM_BUILD_ROOT
pushd %{posix_name}
make install DESTDIR=$RPM_BUILD_ROOT
popd
pushd %{additional_name}
make install DESTDIR=$RPM_BUILD_ROOT
popd
%files
%doc README man-pages-%{version}.Announce Changes
%doc %{posix_name}/POSIX-COPYRIGHT %{posix_name}/%{posix_name}.{README,Announce}
%{_mandir}/man*/*
%changelog
* Thu Aug 30 2018 Nikola Forró <nforro@redhat.com> - 4.15-6
- proc.5: document /proc/[pid]/status Speculation_Store_Bypass field
resolves: #1623808
* Thu Aug 30 2018 Nikola Forró <nforro@redhat.com> - 4.15-5
- resolv.conf.5: document no-reload option
resolves: #1623806
* Mon Aug 13 2018 Nikola Forró <nforro@redhat.com> - 4.15-4
- host.conf.5: clarify glibc versions in which spoof options were removed
resolves: #1615294
* Fri Aug 03 2018 Nikola Forró <nforro@redhat.com> - 4.15-3
- remove man pages deprecated by libxcrypt
* Tue Jul 31 2018 Nikola Forró <nforro@redhat.com> - 4.15-2
- add patches from MPO
- remove/adjust pages for syscalls deprecated on aarch64
* Sun Feb 04 2018 Nikola Forró <nforro@redhat.com> - 4.15-1
- update to 4.15
resolves #1541376
* Wed Nov 29 2017 Nikola Forró <nforro@redhat.com> - 4.14-1
- update to 4.14
* Mon Sep 18 2017 Nikola Forró <nforro@redhat.com> - 4.13-1
- update to 4.13
resolves #1492258
* Tue Aug 01 2017 Nikola Forró <nforro@redhat.com> - 4.12-1
- update to 4.12
resolves #1473875
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.11-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Thu May 04 2017 Nikola Forró <nforro@redhat.com> - 4.11-1
- update to 4.11
resolves #1447816
* Wed Mar 15 2017 Nikola Forró <nforro@redhat.com> - 4.10-2
- add conflict with keyutils-libs versions containing conflicting man pages
resolves #1432546
* Wed Mar 15 2017 Nikola Forró <nforro@redhat.com> - 4.10-1
- update to 4.10
resolves #1432268
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.09-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Tue Jan 24 2017 Nikola Forró <nforro@redhat.com> - 4.09-2
- pthread_once.3p: fix return type of initialize_random() function
resolves #1415757
* Tue Dec 13 2016 Nikola Forró <nforro@redhat.com> - 4.09-1
- update to 4.09
resolves #1403813
* Mon Oct 10 2016 Nikola Forró <nforro@redhat.com> - 4.08-1
- update to 4.08
resolves #1382985
* Thu Oct 06 2016 Richard W.M. Jones <rjones@redhat.com> - 4.07-2
- Bump release version and rebuild.
* Thu Jul 28 2016 Nikola Forró <nforro@redhat.com> - 4.07-1
- update to 4.07
resolves #1358060
* Mon Jun 13 2016 Tom Callaway <spot@fedoraproject.org> - 4.06-2
- remove non-free man-pages (bz#1334279)
* Tue May 10 2016 Nikola Forró <nforro@redhat.com> - 4.06-1
- update to 4.06
resolves #1334727
* Tue May 10 2016 Nikola Forró <nforro@redhat.com> - 4.05-3
- popen.3: RETURN VALUE: describe successful case
resolves #1331312
* Tue May 10 2016 Nikola Forró <nforro@redhat.com> - 4.05-2
- clone.2, fork.2: document ERESTARTNOINTR error code
resolves #1330663
* Wed Mar 16 2016 Nikola Forró <nforro@redhat.com> - 4.05-1
- update to 4.05
resolves #1317877
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.04-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Mon Jan 04 2016 Nikola Forró <nforro@redhat.com> - 4.04-1
- updated to 4.04
resolves #1294723
* Mon Dec 07 2015 Nikola Forró <nforro@redhat.com> - 4.03-1
- updated to 4.03
resolves #1288782
* Thu Oct 22 2015 Nikola Forró <nforro@redhat.com> - 4.02-2
- added conflict with attr versions containing attr.5 man page
resolves #1273702
* Mon Aug 10 2015 Nikola Forró <nforro@redhat.com> - 4.02-1
- updated to 4.02
resolves #1251780
resolves #1249444
* Fri Jul 24 2015 Nikola Forró <nforro@redhat.com> - 4.01-1
- updated to 4.01
resolves #1246298
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.00-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Fri May 22 2015 jchaloup <jchaloup@redhat.com> - 4.00-2
- rtld-audit.7: use the correct format character
resolves: #1222719
* Thu May 07 2015 jchaloup <jchaloup@redhat.com> - 4.00-1
- updated to 4.00
resolves: #1219478
* Mon Apr 20 2015 jchaloup <jchaloup@redhat.com> - 3.83-1
- updated to 3.83
resolves: #1213147
* Tue Mar 31 2015 jchaloup <jchaloup@redhat.com> - 3.82-1
- updated to 3.82
resolves: #1207665
* Tue Mar 03 2015 jchaloup <jchaloup@redhat.com> - 3.81-1
- updated to 3.81
resolves: #1197926
* Sun Feb 22 2015 jchaloup <jchaloup@redhat.com> - 3.80-1
- updated to 3.80
resolves: #1194974
* Mon Feb 02 2015 jchaloup <jchaloup@redhat.com> - 3.79-1
- updated to 3.79
resolves: #1188036
* Fri Jan 23 2015 jchaloup <jchaloup@redhat.com> - 3.78-1
- updated to 3.78
resolves: #1185309
* Thu Jan 15 2015 jchaloup <jchaloup@redhat.com> - 3.77-1
- updated to 3.77
resolves: #1181496
* Mon Jan 05 2015 jchaloup <jchaloup@redhat.com> - 3.76-1
- updated to 3.76
resolves: #1178355
* Sat Oct 18 2014 jchaloup <jchaloup@redhat.com> - 3.75-1
- updated to 3.75
resolves: #1154261
* Wed Oct 08 2014 jchaloup <jchaloup@redhat.com> - 3.74-1
updated to 3.74
- resolves: #1150489
* Mon Sep 22 2014 jchaloup <jchaloup@redhat.com> - 3.73-1
- resolves: #1145003
updated to 3.73
* Mon Sep 08 2014 jchaloup <jchaloup@redhat.com> - 3.72-1
- resolves: #1139140
updated to 3.72
* Fri Aug 22 2014 jchaloup <jchaloup@redhat.com> - 3.71-1
- resolves: #1132845
updated to 3.71
* Fri Jul 11 2014 jchaloup <jchaloup@redhat.com> - 3.70-1
- resolves: #1118632
updated to 3.70
* Mon Jun 16 2014 jchaloup <jchaloup@redhat.com> - 3.69-1
- resolves: #1111836
updated to 3.69
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.68-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Mon Jun 02 2014 jchaloup <jchaloup@redhat.com> - 3.68-1
- resolves: #1103158
updated to 3.68
* Tue May 27 2014 jchaloup <jchaloup@redhat.com> - 3.67-1
- resolves: #1100444
updated to 3.67
* Fri May 09 2014 Peter Schiffer <pschiffe@redhat.com> - 3.66-1
- resolves: #1095840
updated to 3.66
* Wed Apr 23 2014 Peter Schiffer <pschiffe@redhat.com> - 3.65-1
- resolves: #1071305
updated to 3.65
- resolves: #1082566
install *xattr.2 man pages
* Tue Feb 18 2014 Peter Schiffer <pschiffe@redhat.com> - 3.60-1
- updated to 3.60
* Tue Feb 18 2014 Peter Schiffer <pschiffe@redhat.com> - 3.59-1
- resolves: #1066332
updated to 3.59
- cleaned .spec file
* Tue Feb 11 2014 Peter Schiffer <pschiffe@redhat.com> - 3.58-1
- resolves: #1063754
updated to 3.58
* Wed Feb 5 2014 Peter Schiffer <pschiffe@redhat.com> - 3.57-2
- removed invalid patch for man(1p) man page
* Wed Jan 29 2014 Peter Schiffer <pschiffe@redhat.com> - 3.57-1
- resolves: #1058001
updated to 3.57
- resolves: #1056781
updated to POSIX.1 2013
* Wed Jan 15 2014 Peter Schiffer <pschiffe@redhat.com> - 3.56-1
- resolves: #1051765
updated to 3.56
* Mon Dec 16 2013 Peter Schiffer <pschiffe@redhat.com> - 3.55-1
- resolves: #1043074
updated to 3.55
* Wed Dec 4 2013 Peter Schiffer <pschiffe@redhat.com> - 3.54-2
- resolves: #1031703
removed pt_chown(5) man page
* Wed Oct 9 2013 Peter Schiffer <pschiffe@redhat.com> - 3.54-1
- resolves: #1009535
updated to 3.54
* Wed Jul 31 2013 Peter Schiffer <pschiffe@redhat.com> - 3.53-1
- resolves: #990459
updated to 3.53
* Mon Jul 22 2013 Peter Schiffer <pschiffe@redhat.com> - 3.52-1
- resolves: #981385
updated to 3.52
- fixed broken sentence on the futex(7) man page
- resolves: #885740
documented O_PATH flag on the open(2) man page
* Tue Apr 23 2013 Peter Schiffer <pschiffe@redhat.com> - 3.51-1
- resolves: #921911
updated to 3.51
* Thu Mar 7 2013 Peter Schiffer <pschiffe@redhat.com> - 3.48-1
- resolves: #918417
updated to 3.48
* Tue Feb 12 2013 Peter Schiffer <pschiffe@redhat.com> - 3.47-1
- resolves: #910268
updated to 3.47
* Fri Feb 1 2013 Peter Schiffer <pschiffe@redhat.com> - 3.46-2
- related: #858703
moved killpgrp(8) man page to the amanda-client package
* Mon Jan 28 2013 Peter Schiffer <pschiffe@redhat.com> - 3.46-1
- resolves: #904950
updated to 3.46
* Wed Jan 16 2013 Peter Schiffer <pschiffe@redhat.com> - 3.45-2
- dropped some outdated patches, few patches updated
* Fri Dec 21 2012 Peter Schiffer <pschiffe@redhat.com> - 3.45-1
- resolves: #889446
updated to 3.45
* Wed Nov 21 2012 Peter Schiffer <pschiffe@redhat.com> - 3.44-1
- resolves: #874650
updated to 3.44
* Thu Oct 25 2012 Peter Schiffer <pschiffe@redhat.com> - 3.43-1
- resolves: #866874
updated to 3.43
- added description of the TCP_CONGESTION on the tcp(7) man page
- added description of the IP_MULTICAST_ALL on the ip(7) man page
- updated additional man pages
* Wed Sep 19 2012 Peter Schiffer <pschiffe@redhat.com> - 3.42-1
- resolves: #847941
update to 3.42
- updated additional man pages
- cleaned patches
- cleaned .spec file, fixed minor encoding issue
- resolves: #837090
updated example on inet(3) man page - use fprintf(stderr,..) instead of perror
- resolves: #751429
included initgroups database in the nsswitch.conf(5) man page
- removed the sccs-related man pages (#203302)
- added description of single-request-reopen to the resolv.conf(5) man page (#717770)
- added missing EIDRM error code description to the shmop(2) man page (#800256)
- added documentation of several source-specific multicast socket options to the ip(7) man page (#804003)
- improved explanation about calling listen or connect on the ip(7) man page (#787567)
- added information about incorrect use of getdents(2) call to the man page (#809490)
- removed man-pages-3.22-sched_setaffinity.patch because the problem it describes was fixed in the kernel. see #533811 for more info
- documented why to use shutdown() before close() when dealing with sockets on close(2) man page (#650985)
- updated description of /proc/sys/fs/file-nr file in proc(5) man page (#497197)
- updated zdump(8) man page to match current zdump usage (#517309)
- fixed one incorrect error code on connect(2) man page (#392431)
- fixed typo in sysconf(3) man page (#202092)
- removed additional uuname(1) man page - was moved to the uucp package (#858642)
- removed obsolete additional userisdnctl(8) man page
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.41-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Thu May 17 2012 Peter Schiffer <pschiffe@redhat.com> - 3.41-1
- resolves: #820901
update to 3.41
* Fri Apr 27 2012 Peter Schiffer <pschiffe@redhat.com> - 3.40-2
- related: #797857
fixed broken source file
* Fri Apr 27 2012 Peter Schiffer <pschiffe@redhat.com> - 3.40-1
- resolves: #797857
update to 3.40
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.35-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Fri Nov 11 2011 Peter Schiffer <pschiffe@redhat.com> - 3.35-1
- resolves: #751620
update to 3.35
- resolves: #723578
typo in readlink(3p)
* Fri May 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-14
- resolves: #705888
the man page for proc is missing an explanation for /proc/[pid]/cgroup
* Fri Apr 22 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-13
- resolves: #698149
Remove documentation for "order" keyword in /etc/host.conf manpage
* Fri Apr 22 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-12
- resolves: #680214
manpage for fallocate(2) is wrong
* Fri Mar 25 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-11
- resolves: #681781
snprintf man page is wrong
* Wed Mar 9 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-10
- resolves: #675544
perfmonctl(2) typo manpage fix
* Thu Feb 24 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.32-9
- resolves: #679899
add scopev4 to gai.conf man page
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.32-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Jan 31 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-7
- resolves: #673586
fix the sed pages parsing
* Thu Jan 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-6
- resolves: #652869
fix the necessary buffer limit in the man page for readdir_r
* Thu Jan 27 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-5
- resolves: #672348
problems with the encoding of characters set man-pages
thanks Denis Barbier for a patch
* Tue Jan 25 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-4
- resolves: #672377
fix man-pages-2.48-passwd.patch remove trailing dots
* Tue Jan 25 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-3
- resolves: #652870
fix strtol man-page
* Mon Jan 3 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-2
- update to 3.32
* Wed Nov 24 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-2
- resolves: #655961
add the conflict tag
* Fri Nov 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.31-1
- update to 3.31
* Thu Nov 18 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.30-3
- resolves: #647269
PR_SET_SECCOMP and _exit, documentation bug
* Thu Nov 11 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.30-2
- Resolves: #650257
fix open.2 O_EXCL description
* Fri Nov 5 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.30-1
- update to 3.30
* Mon Oct 25 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.29-1
- update 3.29
several bug fixes
* Wed Oct 6 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.28-3
- don't remove numa_maps, now the man page is not in numactl
- don't remove getipnodeby{name,addr}.3 and freehostent.3
they are not more part of glibc-devel
- fix typo in gai_{error,suspend,cancel} pages
* Wed Oct 6 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.28-2
- add quotactl.2 to man-pages (the package was removed from quota - #640590)
* Wed Oct 6 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.28-1
- update to 3.28
- move all additional man-pages to one source
(man-pages-additional-20101006.tar.bz2)
- remove additional man-pages without the info about license
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.27-3
- Resolves: #634626
remove link to non-existing man page
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.27-2
- Resolves: #635869
remove the link to removed man page
* Thu Sep 23 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.27-1
- Update to 3.27
- remove obsolete patch
* Wed Sep 8 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.26-1
- Update to 3.26
- Resolves: 624399 (rresvport man entry misleading)
* Thu Jul 1 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.25-1
- Update to 3.25
* Thu Jun 24 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-7
- resolves: #606038
filesystems.5 makes no mention of ext4
* Fri Jun 4 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-6
- Resolves: #596666
Man page for mmap64 is confusing
* Mon May 31 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-5
- Resolves: #597429
remove the duplicate info about error output (recv(2) man page)
* Mon May 10 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-4
- Resolves: #588620
Typo in sysconf(3) Manual page
* Mon May 3 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-3
- fix atanh man-page bug in glibc was fixed so removed the info about it
* Fri Mar 19 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-2
- Resolves: #570703
fix getnameinfo prototype
* Tue Mar 2 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.24-1
- update to 3.24
Resolves: #569451
* Mon Feb 22 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-7
- Resolves: #564528
Man page and "info" information on snprintf incomplete
* Wed Jan 27 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-6
- Resolves: #556199
update iconv.1 man page
* Tue Jan 26 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-5
- Resolves: #557971
remove unnecessary man-pages from man-pages_syscalls and man-pages_add
* Thu Dec 3 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-4
- fix typo in sched_setaffinity(2) patch
* Wed Dec 2 2009 Ivana Hutarova Varekova <varekova@redhat.com> - 3.23-3
- fix sched_setaffinity(2) page - add an EXAMPLE and new NOTES
* Wed Nov 18 2009 Ivana Varekova <varekova@redhat.com> - 3.23-2
- fix ld.so man-page (#532629)
* Mon Oct 5 2009 Ivana Varekova <varekova@redhat.com> - 3.23-1
- update to 3.23
- fix proc description
* Wed Sep 16 2009 Ivana Varekova <varekova@redhat.com> - 3.22-6
- fix nsswitch.conf(5) man page
* Mon Sep 14 2009 Ivana Varekova <varekova@redhat.com> - 3.22-5
- fix strcpy.3 man page
- remove statfc64 man page from syscalls tarball
* Tue Aug 11 2009 Ivana Varekova <varekova@redhat.com> - 3.22-4
- fix gai.conf an page (#515347)
* Mon Jul 27 2009 Ivana Varekova <varekova@redhat.com> - 3.22-3
- update to 3.22
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.21-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Fri Jul 17 2009 Ivana Varekova <varekova@redhat.com> - 3.21-2
- fix major.3 man page
* Tue Apr 21 2009 Ivana Varekova <varekova@redhat.com> - 3.21-1
- update to 3.21
* Tue Mar 31 2009 Ivana Varekova <varekova@redhat.com> - 3.20-1
- update to 3.20
* Tue Mar 10 2009 Ivana Varekova <varekova@redhat.com> - 3.19-1
- update to 3.19
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Fri Jan 16 2009 Ivana Varekova <varekova@redhat.com> - 3.16-1
- update to 3.16
* Mon Dec 8 2008 Ivana Varekova <varekova@redhat.com> - 3.15-1
- update to 3.15
* Thu Nov 13 2008 Ivana Varekova <varekova@redhat.com> - 3.13-2
- fix relative path in proc.5
- not build yet
* Thu Nov 13 2008 Ivana Varekova <varekova@redhat.com> - 3.13-1
- update to 3.13
* Mon Sep 15 2008 Ivana Varekova <varekova@redhat.com> - 3.09-2
- remove numa_maps.5 man page (part of numactl)
* Fri Sep 12 2008 Ivana Varekova <varekova@redhat.com> - 3.09-1
- update to 3.09
* Thu Aug 14 2008 Ivana Varekova <varekova@redhat.com> - 3.07-1
- update to 3.07
- remove ncsa_auth.8 (#458498)
* Thu Aug 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.04-2
- fix license tag
* Tue Jul 22 2008 Ivana Varekova <varekova@redhat.com> - 3.04-1
- update to 3.04
- remove mmap, sched_setaffinity, crypt and prctl patches
- remove -f from rm commands
- remove unnecessary/bogus rm commands
* Wed Jun 18 2008 Ivana Varekova <varekova@redhat.com> - 3.00-1
- update to 3.00
- source files changes