pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/coreutils Update "coreutils" package to versi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3f40dc25faef
branches:  trunk
changeset: 549219:3f40dc25faef
user:      tron <tron%pkgsrc.org@localhost>
date:      Wed Oct 29 22:34:18 2008 +0000

description:
Update "coreutils" package to version 6.12. Changes since version 6.11:
- chcon, runcon: --help output now includes the bug-reporting address
- cp -p copies permissions more portably.  For example, on MacOS X 10.5,
  "cp -p some-fifo some-file" no longer fails while trying to copy the
  permissions from the some-fifo argument.
- id with no options now prints the SELinux context only when invoked
  with no USERNAME argument.
- id and groups once again print the AFS-specific nameless group-ID (PAG).
  Printing of such large-numbered, kernel-only (not in /etc/group) group-IDs
  was suppressed in 6.11 due to ignorance that they are useful.
- uniq: avoid subtle field-skipping malfunction due to isblank misuse.
  In some locales on some systems, isblank(240) (aka &nbsp) is nonzero.
  On such systems, uniq --skip-fields=N would fail to skip the proper
  number of fields for some inputs.
- tac: avoid segfault with --regex (-r) and multiple files, e.g.,
  "echo > x; tac -r x x".
- install once again sets SELinux context, when possible

diffstat:

 sysutils/coreutils/Makefile.common  |   4 ++--
 sysutils/coreutils/PLIST            |   4 +++-
 sysutils/coreutils/distinfo         |   9 ++++-----
 sysutils/coreutils/patches/patch-ac |  17 -----------------
 4 files changed, 9 insertions(+), 25 deletions(-)

diffs (78 lines):

diff -r d6b1f97c4e31 -r 3f40dc25faef sysutils/coreutils/Makefile.common
--- a/sysutils/coreutils/Makefile.common        Wed Oct 29 22:20:28 2008 +0000
+++ b/sysutils/coreutils/Makefile.common        Wed Oct 29 22:34:18 2008 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile.common,v 1.1 2008/05/15 20:01:03 tnn Exp $
+# $NetBSD: Makefile.common,v 1.2 2008/10/29 22:34:18 tron Exp $
 # used by sysutils/coreutils/Makefile
 # used by misc/gnuls/Makefile
 
-DISTNAME=      coreutils-6.11
+DISTNAME=      coreutils-6.12
 CATEGORIES=    sysutils
 MASTER_SITES=  ${MASTER_SITE_GNU:=coreutils/}
 
diff -r d6b1f97c4e31 -r 3f40dc25faef sysutils/coreutils/PLIST
--- a/sysutils/coreutils/PLIST  Wed Oct 29 22:20:28 2008 +0000
+++ b/sysutils/coreutils/PLIST  Wed Oct 29 22:34:18 2008 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2008/05/13 09:22:46 tron Exp $
+@comment $NetBSD: PLIST,v 1.12 2008/10/29 22:34:18 tron Exp $
 bin/${GNU_PROGRAM_PREFIX}[
 bin/${GNU_PROGRAM_PREFIX}base64
 bin/${GNU_PROGRAM_PREFIX}basename
@@ -212,6 +212,7 @@
 share/locale/it/LC_MESSAGES/coreutils.mo
 share/locale/ja/LC_MESSAGES/coreutils.mo
 share/locale/ko/LC_MESSAGES/coreutils.mo
+share/locale/lt/LC_MESSAGES/coreutils.mo
 share/locale/ms/LC_MESSAGES/coreutils.mo
 share/locale/nb/LC_MESSAGES/coreutils.mo
 share/locale/nl/LC_MESSAGES/coreutils.mo
@@ -246,6 +247,7 @@
 share/locale/it/LC_TIME/coreutils.mo
 share/locale/ja/LC_TIME/coreutils.mo
 share/locale/ko/LC_TIME/coreutils.mo
+share/locale/lt/LC_TIME/coreutils.mo
 share/locale/ms/LC_TIME/coreutils.mo
 share/locale/nb/LC_TIME/coreutils.mo
 share/locale/nl/LC_TIME/coreutils.mo
diff -r d6b1f97c4e31 -r 3f40dc25faef sysutils/coreutils/distinfo
--- a/sysutils/coreutils/distinfo       Wed Oct 29 22:20:28 2008 +0000
+++ b/sysutils/coreutils/distinfo       Wed Oct 29 22:34:18 2008 +0000
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.15 2008/05/13 09:22:46 tron Exp $
+$NetBSD: distinfo,v 1.16 2008/10/29 22:34:18 tron Exp $
 
-SHA1 (coreutils-6.11.tar.gz) = 238dc7cb815659abe69ba52a1cbb7fb7f481dc0e
-RMD160 (coreutils-6.11.tar.gz) = 6a109d0fbab686d7258f933cfcbfde49f6faa68a
-Size (coreutils-6.11.tar.gz) = 9095150 bytes
+SHA1 (coreutils-6.12.tar.gz) = 1bb297fdf8b38ca19ab5252c6179b1b2aecd020e
+RMD160 (coreutils-6.12.tar.gz) = 95b941657242cfc3f67d721e582a60a4090802ec
+Size (coreutils-6.12.tar.gz) = 9001890 bytes
 SHA1 (patch-ab) = bc1e79814a6ebc177862eae1816a24e3a4a5c577
-SHA1 (patch-ac) = 83e271d8da9d8d70e1f9eb34129d2cbf1cd352fc
 SHA1 (patch-ad) = 145a88a6731fbec315037a140677f2fc763e5026
 SHA1 (patch-ag) = 3e24b8e025a151eb7bed4c778a326da5eed09ded
 SHA1 (patch-ah) = 33fe73aac79731f980fcbe1afda4c64537aff742
diff -r d6b1f97c4e31 -r 3f40dc25faef sysutils/coreutils/patches/patch-ac
--- a/sysutils/coreutils/patches/patch-ac       Wed Oct 29 22:20:28 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-$NetBSD: patch-ac,v 1.8 2007/12/02 12:55:10 wiz Exp $
-
---- src/stat.c.orig    2007-03-18 22:36:43.000000000 +0100
-+++ src/stat.c
-@@ -148,6 +148,12 @@ statfs (char const *filename, struct fs_
- #define hextobin(c) ((c) >= 'a' && (c) <= 'f' ? (c) - 'a' + 10 : \
-                    (c) >= 'A' && (c) <= 'F' ? (c) - 'A' + 10 : (c) - '0')
- 
-+#if (defined(__NetBSD__) && (__NetBSD_Version__ > 299000900)) || defined(__INTERIX)
-+#include <sys/statvfs.h>
-+#define       statfs                                  statvfs
-+#define       STATXFS_FILE_SYSTEM_TYPE_MEMBER_NAME    f_fstypename
-+#endif
-+
- #define PROGRAM_NAME "stat"
- 
- #define AUTHORS "Michael Meskes"



Home | Main Index | Thread Index | Old Index