Hello community,

here is the log from the commit of package man-pages for openSUSE:12.3 checked 
in at 2013-02-04 20:53:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.3/man-pages (Old)
 and      /work/SRC/openSUSE:12.3/.man-pages.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "man-pages", Maintainer is "pgaj...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:12.3/man-pages/man-pages.changes 2013-01-31 
01:26:52.000000000 +0100
+++ /work/SRC/openSUSE:12.3/.man-pages.new/man-pages.changes    2013-02-04 
20:53:50.000000000 +0100
@@ -1,0 +2,189 @@
+Mon Feb  4 07:33:41 CET 2013 - pgaj...@suse.cz
+
+- update to version 3.46
+  * New and rewritten pages
+      kcmp.2
+        New page for kcmp(2)
+  * Newly documented interfaces in existing pages
+      init_module.2
+        Document finit_module(2)
+        Document finit_module() 'flags' argument
+            Document MODULE_INIT_IGNORE_MODVERSIONS and
+            MODULE_INIT_IGNORE_VERMAGIC. (Some edits by mtk.)
+  * New and changed links
+      finit_module.2
+        New link to init_module.2
+      __after_morecore_hook.3
+      __free_hook.3
+      __malloc_initialize_hook.3
+      __memalign_hook.3
+      __realloc_hook.3
+        New link to malloc_hook.3
+  * Global changes
+  * Various pages
+        Global fix: s/tty/terminal/
+  * Changes to individual pages
+      clone.2
+        Add kernel versions for various CLONE_* constants
+        CLONE_NEWIPC governs mechanisms that don't have filesystem pathnames
+        CLONE_NEWIPC doesn't mount the POSIX MQ file system
+        Add an example program (CLONE_NEWUTS)
+        Some reworking of CLONE_NEWIPC text
+            No substantial content changes.
+        SEE ALSO: add kcmp(2)
+        SEE ALSO: add setns(2)
+      fallocate.2
+        FALLOC_FL_* flags are defined in glibc only since 2.18
+      getxattr.2
+      removexattr.2
+      setxattr.2
+        Note that ENOATTR is a synonym for ENODATA
+            Various people have pointed out that strace(1) shows ENODATA
+            for the case where the named attribute does not exist, or
+            the process has no access to this attribute. ENODATA
+            and ENOATTR are in fact defined as synonyms. Point this out
+            in the man page, so that people understand the strace(1) info.
+            See https://bugzilla.kernel.org/show_bug.cgi?id=51871
+      getxattr.2
+      listxattr.2
+      removexattr.2
+      setxattr.2
+        Put errors under ERRORS section
+            The errno values on these pages were listed in a nonstandard
+            way under the RETURN VALUE section. Put them in ERRORS sections.
+      init_module.2
+        ERRORS: Add errors for module signatures (EBADMSG, ENOKEY)
+      link.2
+      mkdir.2
+      mknod.2
+      open.2
+      rename.2
+      symlink.2
+      write.2
+      mkfifo.3
+        Document EDQUOT error
+            The return error EDQUOT is not documented in open(2), write(2),
+            symlink(2) etc.
+            Whether inodes or disk blocks are required for each function
+            is something I based on received wisdom and BSD documentation,
+            rather than tracing the code to the kernel. For symlink(2)
+            this certainly depends on the file system type.
+      listxattr.2
+        Fix RETURN VALUE description
+            On success, 0 may be returned, so change wording from
+            "positive number" to "nonnegative number".
+      outb.2
+        Add SYNOPSIS
+      prctl.2
+        Document PR_SET_PTRACER
+            Document the Yama LSM's prctl handler that allows processes to
+            declare ptrace restriction exception relationships via
+            PR_SET_PTRACER.
+        Make it explicit that PR_SET_PTRACER replaces previous setting
+            The attribute is a scalar, not a list.
+        Document EINVAL error for PR_SET_PTRACER
+        Document PR_GET_TID_ADDRESS
+      ptrace.2
+        Document PTRACE_O_EXITKILL
+        Place PTRACE_SETOPTIONS list in alphabetical order
+      query_module.2
+        Must be called using syscall(2)
+            Yes, the call is way obsolete, but add this info
+            for completeness.
+      recvmmsg.2
+        Add/correct kernel version info for recvmmsg() and MSG_WAITFORNONE
+            This patch isolates the since/version related fixes as requested.
+            This change introduces the following delta:
+             * The page states it was added in 2.6.32 but it is only added
+                2.6.33 (ref: http://kernelnewbies.org/Linux_2_6_33)
+             * The MSG_WAITFORONE flag was in turn only added in 2.6.34
+               (ref: http://kernelnewbies.org/Linux_2_6_34)
+        Add an example program
+      setns.2
+        Add example program
+      sigaction.2
+        Note feature test macro requirements for 'siginfo_t'
+            See https://bugzilla.kernel.org/show_bug.cgi?id=52931
+      syscalls.2
+        Add kern_features(2)
+        Add utrap_install(2)
+            Sparc-specific, present since ancient times
+        Add finit_module(2)
+      sysctl.2
+        ERRORS: EACCES as a synonym for EPRM
+            See https://bugzilla.kernel.org/show_bug.cgi?id=46731
+            and http://thread.gmane.org/gmane.linux.ltp/11413/focus=957635
+                From: Garrett Cooper <yanegomi <at> gmail.com>
+                Subject: Re: [LTP] [PATCH] sysctl03: sysctl returns EACCES 
after 2.6.33-rc1
+                Newsgroups: gmane.linux.kernel, gmane.linux.ltp
+                Date: 2010-03-04 18:35:33 GMT
+      unshare.2
+        Update NOTES on unimplemented flags
+        Fix text problems in description of CLONE_FS
+        SEE ALSO: add kcmp(2)
+        SEE ALSO: add setns(2)
+        Reorder CLONE_NEWUTS entry in list
+      difftime.3
+        Remove crufty text about 'time_t' on "other systems"
+            Back in 2006, some text came in via Debian patches that seems
+            crufty. Remove it.
+            See https://bugzilla.kernel.org/show_bug.cgi?id=46731
+      getaddrinfo.3
+      getnameinfo.3
+        Fix some confused references to function names
+            See https://bugzilla.kernel.org/show_bug.cgi?id=52741
+      getspnam.3
+        ERRORS: Add EACCES
+            See https://bugzilla.kernel.org/show_bug.cgi?id=52681
+      __setfpucw.3
+        Add proper page cross refs for alternate functions
+      core.5
+      proc.5
+        Clarify suid_dumpable versus core_pattern
+            In Linux 3.6, additional requirements were placed on core_pattern
+            when suid_dumpable is set to 2. Document this and include commit
+            references.
+      proc.5
+        statm's "shared" field refers to pages backed by files
+            I noticed that statm's "shared" field doesn't match the sum of
+            all the "shared" entries in smaps [1].
+            The kernel docs explain that statm's "shared" field is "number of
+            pages that are shared (i.e. backed by a file)" [2].  smaps appears
+            to call a page shared if it's mapped by at least two processes,
+            which explains this discrepancy.
+            I'm not a kernel hacker, but it appears to me they do mean "i.e."
+            and not "e.g." in the statm description: In
+            fs/proc/task_mmu.c::task_statm, I see
+                *shared = get_mm_counter(mm, MM_FILEPAGES);
+            Here's a patch which updates the man page to match the (hopefully
+            correct) kernel docs.
+            [1] https://bugzilla.mozilla.org/show_bug.cgi?id=807181
+            [2] 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=blob;f=Documentation/filesystems/proc.txt;h=a1793d670cd01bd374eddf54ffdfc768504291ff;hb=HEAD
+      proc.5
+        Put /proc/sys/kernel/hotplug in alphabetical order
+        Document /proc/sys/kernel/dmesg_restrict
+        Linux 3.4 changed permissions needed to change kptr_restrict
+        Add field numbers for /proc/PID/stat
+            See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=553413
+        Add numbering to /proc/stat "cpu" fields
+            See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=553413
+        Reorganize text describing /proc/stat "cpu" fields
+        Rewording of suid_dumpable text after comments from Kees Cook
+        Add field numbers for /proc/[pid]/statm
+            See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=553413
+        Document /proc/stat "cpu" "nice_guest" field
+            Info taken from commit ce0e7b28fb75cb003cfc8d0238613aaf1c55e797
+        Document /prod/[pid]/oom_score_adj
+            Text taken directly from Documentation/filesystems/proc.txt,
+            with some light editing.
+            See https://bugzilla.kernel.org/show_bug.cgi?id=50421
+      shells.5
+        Add /etc/bash to list of example shells
+      ttytype.5
+        Add proper xref for termcap and terminfo pages
+      capabilities.7
+        Add kcmp(2) under CAP_SYS_PTRACE
+      man-pages.7
+        Update description of Section 7
+
+-------------------------------------------------------------------

Old:
----
  man-pages-3.45.tar.bz2

New:
----
  man-pages-3.46.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ man-pages.spec ++++++
--- /var/tmp/diff_new_pack.E2rVrz/_old  2013-02-04 20:53:50.000000000 +0100
+++ /var/tmp/diff_new_pack.E2rVrz/_new  2013-02-04 20:53:50.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package man-pages
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 Name:           man-pages
 BuildRequires:  fdupes
 Url:            http://www.kernel.org/doc/man-pages/download.html
-Version:        3.45
+Version:        3.46
 Release:        0
 Summary:        Linux  Manual Pages
 License:        BSD-3-Clause and GPL-2.0+ and MIT

++++++ man-pages-3.45.tar.bz2 -> man-pages-3.46.tar.bz2 ++++++
++++ 15438 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to