rpms/man-pages/devel man-pages-1.67-nscd_conf.patch, NONE, 1.1 man-pages-2.34-getrlimit.patch, NONE, 1.1 man-pages-2.34-libaio-includes.patch, NONE, 1.1 man-pages-2.34-nscd.patch, NONE, 1.1 man-pages-2.34-write.patch, NONE, 1.1 .cvsignore, 1.24, 1.25 man-pages.spec, 1.45, 1.46 sources, 1.24, 1.25 man-pages-2.20-nscd.conf.patch, 1.1, NONE man-pages-2.29-sigprocmask.patch, 1.1, NONE

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Jul 18 09:35:42 UTC 2006


Author: varekova

Update of /cvs/dist/rpms/man-pages/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv31551

Modified Files:
	.cvsignore man-pages.spec sources 
Added Files:
	man-pages-1.67-nscd_conf.patch man-pages-2.34-getrlimit.patch 
	man-pages-2.34-libaio-includes.patch man-pages-2.34-nscd.patch 
	man-pages-2.34-write.patch 
Removed Files:
	man-pages-2.20-nscd.conf.patch 
	man-pages-2.29-sigprocmask.patch 
Log Message:
- add nscd_conf options (nscd_conf.patch)
- added {create,query}_module.2, get_kernel_syms.2 man-pages
- added nscd, getrlimit, libaio and write patch
- remove sigprocmask patch
- update to 2.36



man-pages-1.67-nscd_conf.patch:
 nscd.conf.5 |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+)

--- NEW FILE man-pages-1.67-nscd_conf.patch ---
--- man-pages-1.67/man5/nscd.conf.5.pom	2003-11-11 18:02:18.000000000 +0100
+++ man-pages-1.67/man5/nscd.conf.5	2006-04-12 11:06:55.000000000 +0200
@@ -118,6 +118,48 @@
 .IR /etc/hosts .
 .RE
 
+.B reload-count
+.I unlimited|<number>
+.RS
+Sets the number of times a cached record is reloaded
+before it is pruned from the cache.
+Each cache record has a timeout, when that timeout expires,
+nscd will either reload it (query the NSS service again if the data
+hasn't changed), or drop it.
+.RE
+
+.B paranoia
+.I <yes|no>
+.RS
+Enables or disables restart of nscd every 
+.B restart-interval .
+.RE
+
+.B restart-interval
+.I <time in seconds>
+.RS
+Is interval in which nscd is restarted if option 
+.B paranoia 
+is set. The default value is 3600. 
+.RE
+ 
+.B persistent
+.I service <yes|no>
+.RS
+Enables or disables persistent storage of data. 
+Persistent caches are stored on the disk and therefore survive a nscd restart
+or e.g. machine reboot.
+.RE
+
+.B shared
+.I service <yes|no>
+.RS
+Enables or disables database saring among
+nscd clients (by being read-only mmapped in their address space, so the nscd
+client can directly do the lookup and only if an entry is not found there, ask
+nscd over socket to do the lookup).  
+.RE
+
 .SH "SEE ALSO"
 .BR nscd (8)
 .SH AUTHOR

man-pages-2.34-getrlimit.patch:
 getrlimit.2 |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE man-pages-2.34-getrlimit.patch ---
--- man-pages-2.34/man2/getrlimit.2.pom	2006-07-18 09:37:33.000000000 +0200
+++ man-pages-2.34/man2/getrlimit.2	2006-07-18 10:23:29.000000000 +0200
@@ -275,7 +275,7 @@
 .BR EMFILE .
 .TP
 .B RLIMIT_NPROC
-The maximum number of processes that can be created for the real user
+The maximum number of threads that can be created for the real user
 ID of the calling process.
 Upon encountering this limit, 
 .BR fork ()

man-pages-2.34-libaio-includes.patch:
 io_cancel.2    |    2 +-
 io_getevents.2 |    2 +-
 io_submit.2    |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

--- NEW FILE man-pages-2.34-libaio-includes.patch ---
--- man-pages-1.67/man2/io_submit.2.orig	2006-04-11 10:24:00.000000000 -0400
+++ man-pages-1.67/man2/io_submit.2	2006-04-11 10:24:01.000000000 -0400
@@ -27,7 +27,7 @@ io_submit \- Submit asynchronous I/O blo
 .ad l
 .hy 0
 
-#include <linux/aio.h>
+#include <libaio.h>
 .sp
 .HP 16
 long\ \fBio_submit\fR\ (aio_context_t\ \fIctx_id\fR, long\ \fInr\fR, struct\ iocb\ \fI**iocbpp\fR);
--- man-pages-1.67/man2/io_getevents.2.orig	2006-04-11 10:24:14.000000000 -0400
+++ man-pages-1.67/man2/io_getevents.2	2006-04-11 10:24:17.000000000 -0400
@@ -31,7 +31,7 @@ io_getevents \- Read asynchronous I/O ev
 
 .sp
 
-#include <linux/aio.h>
+#include <libaio.h>
 
 .sp
 .HP 19
--- man-pages-1.67/man2/io_cancel.2.orig	2006-04-11 10:24:05.000000000 -0400
+++ man-pages-1.67/man2/io_cancel.2	2006-04-11 10:24:09.000000000 -0400
@@ -27,7 +27,7 @@ io_cancel \- Cancel an outstanding async
 .ad l
 .hy 0
 
-#include <linux/aio.h>
+#include <libaio.h>
 .sp
 .HP 16
 long\ \fBio_cancel\fR\ (aio_context_t\ \fIctx_id\fR, struct\ iocb\ \fI*iocb\fR, struct\ io_event\ \fI*result\fR);

man-pages-2.34-nscd.patch:
 nscd.8 |    2 ++
 1 files changed, 2 insertions(+)

--- NEW FILE man-pages-2.34-nscd.patch ---
--- man-pages-2.34/man8/nscd.8.pom	2006-07-14 13:24:02.000000000 +0200
+++ man-pages-2.34/man8/nscd.8	2006-07-18 09:36:08.000000000 +0200
@@ -47,6 +47,8 @@
 Note that the shadow file is specifically not cached.
 .BR getspnam (3)
 calls remain uncached as a result.
+As a result of this behavior there is not possible to change non-nscd user
+to another non-nscd user via su service when nscd is running.
 
 .SH OPTIONS
 .TP

man-pages-2.34-write.patch:
 write.2 |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

--- NEW FILE man-pages-2.34-write.patch ---
--- man-pages-1.67/man2/write.2.pom	2002-08-04 14:01:34.000000000 +0200
+++ man-pages-1.67/man2/write.2	2006-04-27 10:55:41.000000000 +0200
@@ -52,7 +52,7 @@
 On success, the number of bytes written are returned (zero indicates
 nothing was written).  On error, \-1 is returned, and \fIerrno\fP is set
 appropriately.  If \fIcount\fP is zero and the file descriptor refers to
-a regular file, 0 will be returned without causing any other effect.
+a regular file, 0 may be returned, or an error could be detected.
 For a special file, the results are not portable.
 .SH ERRORS
 .TP


Index: .cvsignore
===================================================================
RCS file: /cvs/dist/rpms/man-pages/devel/.cvsignore,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- .cvsignore	29 Jun 2006 10:59:05 -0000	1.24
+++ .cvsignore	18 Jul 2006 09:35:39 -0000	1.25
@@ -1,3 +1,3 @@
 man-pages-extralocale.tar.bz2
 man2.tar.gz
-man-pages-2.34.tar.bz2
+man-pages-2.36.tar.bz2


Index: man-pages.spec
===================================================================
RCS file: /cvs/dist/rpms/man-pages/devel/man-pages.spec,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- man-pages.spec	13 Jul 2006 09:28:24 -0000	1.45
+++ man-pages.spec	18 Jul 2006 09:35:39 -0000	1.46
@@ -1,7 +1,7 @@
 Summary: Man (manual) pages from the Linux Documentation Project.
 Name: man-pages
-Version: 2.34
-Release: 3
+Version: 2.36
+Release: 1
 License: distributable
 Group: Documentation
 Source0: http://www.kernel.org/pub/linux/docs/manpages/man-pages-%{version}.tar.bz2
@@ -24,12 +24,15 @@
 Patch19: man-pages-2.32-termcap.patch
 Patch20: man-pages-2.13-aio.patch
 Patch21: man-pages-2.32-mmap.patch
-Patch22: man-pages-2.20-nscd.conf.patch
+Patch22: man-pages-1.67-nscd_conf.patch
 Patch23: man-pages-2.25-dbopen.patch
 Patch24: man-pages-2.25-malloc.patch
-Patch25: man-pages-2.29-sigprocmask.patch
 Patch26: man-pages-2.34-inet.patch
 Patch27: man-pages-2.34-typo.patch
+Patch28: man-pages-2.34-nscd.patch
+Patch29: man-pages-2.34-getrlimit.patch
+Patch30: man-pages-2.34-libaio-includes.patch
+Patch31: man-pages-2.34-write.patch
 
 Buildroot: %{_tmppath}/%{name}-%{version}-root
 Autoreq: false
@@ -64,9 +67,12 @@
 %patch22 -p1 
 %patch23 -p1
 %patch24 -p1
-%patch25 -p1
 %patch26 -p1
 %patch27 -p1
+%patch28 -p1
+%patch29 -p1
+%patch30 -p1
+%patch31 -p1
 
 %build
 
@@ -83,9 +89,9 @@
 # Part of quota
 rm -fv man2/quotactl.2
 
-# Part of modutils
-rm -fv man2/get_kernel_syms.2
-rm -fv man2/{create,query}_module.2
+## Part of modutils - now the man pages should be here
+#rm -fv man2/get_kernel_syms.2
+#rm -fv man2/{create,query}_module.2
 
 # Part of console-tools
 rm -fv man4/console.4
@@ -166,6 +172,13 @@
 %{_mandir}/en/man*
 
 %changelog
+* Fri Jul 14 2006 Ivana Varekova <varekova at redhat.com> 2.36-1
+- add nscd_conf options (nscd_conf.patch)
+- added {create,query}_module.2, get_kernel_syms.2 man-pages 
+- added nscd, getrlimit, libaio and write patch
+- remove sigprocmask patch
+- update to 2.36
+
 * Thu Jul 13 2006 Marcela Maslanova <mmaslano at redhat.com> 2.34-3
 - fix small typo (#198663)
 


Index: sources
===================================================================
RCS file: /cvs/dist/rpms/man-pages/devel/sources,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- sources	29 Jun 2006 10:59:05 -0000	1.24
+++ sources	18 Jul 2006 09:35:39 -0000	1.25
@@ -1,3 +1,3 @@
 57f2e0500d177e05647990eae439a8ee  man-pages-extralocale.tar.bz2
 af09d031dcee66929510e078d00066f2  man2.tar.gz
-fb8d9f55fef19ea5ab899437159c9420  man-pages-2.34.tar.bz2
+c661eb3ff67a3bfe45fe966d74dd22df  man-pages-2.36.tar.bz2


--- man-pages-2.20-nscd.conf.patch DELETED ---


--- man-pages-2.29-sigprocmask.patch DELETED ---




More information about the fedora-cvs-commits mailing list