Revision: 6235 http://ipcop.svn.sourceforge.net/ipcop/?rev=6235&view=rev Author: gespinasse Date: 2012-01-16 20:31:14 +0000 (Mon, 16 Jan 2012) Log Message: ----------- Upgrade coreutils to 8.15
Modified Paths: -------------- ipcop/trunk/config/rootfiles/common/coreutils ipcop/trunk/lfs/coreutils ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3 ipcop/trunk/updates/2.0.3/information.xml Removed Paths: ------------- ipcop/trunk/src/patches/coreutils-8.14_test-parse-datetime.patch Modified: ipcop/trunk/config/rootfiles/common/coreutils =================================================================== --- ipcop/trunk/config/rootfiles/common/coreutils 2012-01-16 18:40:42 UTC (rev 6234) +++ ipcop/trunk/config/rootfiles/common/coreutils 2012-01-16 20:31:14 UTC (rev 6235) @@ -63,6 +63,7 @@ #usr/bin/printenv #usr/bin/printf #usr/bin/ptx +#usr/bin/realpath #usr/bin/runcon usr/bin/seq usr/bin/sha1sum Modified: ipcop/trunk/lfs/coreutils =================================================================== --- ipcop/trunk/lfs/coreutils 2012-01-16 18:40:42 UTC (rev 6234) +++ ipcop/trunk/lfs/coreutils 2012-01-16 20:31:14 UTC (rev 6235) @@ -33,7 +33,7 @@ include Config PKG_NAME = coreutils -VER = 8.14 +VER = 8.15 HOST_ARCH = all OTHER_SRC = yes @@ -55,7 +55,7 @@ # LFS uname patch does not support more than x86, so use CLFS patch $(PATCH1) = http://svn.cross-lfs.org/svn/repos/patches/$(PKG_NAME)/$(PATCH1) -$(DL_FILE)_MD5 = bcb135ce553493a45aba01b39eb3920a +$(DL_FILE)_MD5 = 094909fafa86110140b32e4948941545 $(PATCH1)_MD5 = 56ad75fedac896082d96ab0bd5e6b32c install : $(TARGET) @@ -87,7 +87,7 @@ @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xf $(DIR_DL)/$(DL_FILE) # drop after 8.14, fix one test failure when DST boundary is crossed - cd $(DIR_APP)/gnulib-tests && patch -p2 -i $(DIR_PATCHES)/$(THISAPP)_test-parse-datetime.patch + #cd $(DIR_APP)/gnulib-tests && patch -p2 -i $(DIR_PATCHES)/$(THISAPP)_test-parse-datetime.patch ifeq "$(STAGE)" "toolchain" # hostname is used on base stage by coreutils configure and perl base tests Deleted: ipcop/trunk/src/patches/coreutils-8.14_test-parse-datetime.patch =================================================================== --- ipcop/trunk/src/patches/coreutils-8.14_test-parse-datetime.patch 2012-01-16 18:40:42 UTC (rev 6234) +++ ipcop/trunk/src/patches/coreutils-8.14_test-parse-datetime.patch 2012-01-16 20:31:14 UTC (rev 6235) @@ -1,92 +0,0 @@ -http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=commitdiff;h=56ddf0fdeb52ce76718e0594db4f567401e90a2c - -test-parse-datetime.c: avoid new DST-related false positive test failure - -authorJim Meyering <meyer...@redhat.com> - Sun, 30 Oct 2011 17:12:54 +0000 (18:12 +0100) -committerJim Meyering <meyer...@redhat.com> - Sun, 30 Oct 2011 17:12:54 +0000 (18:12 +0100) - - -* tests/test-parse-datetime.c (gmt_offset): Determine the "gmt_offset" based on the time/date we'll convert, not the current time. -Otherwise, the moment we cross a DST boundary like today's in Europe, (CEST to CET), that offset ends up being one hour off. - -diff --git a/tests/test-parse-datetime.c b/tests/test-parse-datetime.c - -index b9d08a6..22fe9bc 100644 (file) - - ---- a/tests/test-parse-datetime.c -+++ b/tests/test-parse-datetime.c -@@ -94,20 +94,17 @@ tm_diff (struct tm const *a, struct tm const *b) - #endif /* ! HAVE_TM_GMTOFF */ - - static long --gmt_offset () -+gmt_offset (time_t s) - { -- time_t now; - long gmtoff; - -- time (&now); -- - #if !HAVE_TM_GMTOFF -- struct tm tm_local = *localtime (&now); -- struct tm tm_gmt = *gmtime (&now); -+ struct tm tm_local = *localtime (&s); -+ struct tm tm_gmt = *gmtime (&s); - - gmtoff = tm_diff (&tm_local, &tm_gmt); - #else -- gmtoff = localtime (&now)->tm_gmtoff; -+ gmtoff = localtime (&s)->tm_gmtoff; - #endif - - return gmtoff; -@@ -123,16 +120,17 @@ main (int argc _GL_UNUSED, char **argv) - const char *p; - int i; - long gmtoff; -+ time_t ref_time = 1304250918; - - set_program_name (argv[0]); - -- gmtoff = gmt_offset (); -+ gmtoff = gmt_offset (ref_time); - - - /* ISO 8601 extended date and time of day representation, - 'T' separator, local time zone */ - p = "2011-05-01T11:55:18"; -- expected.tv_sec = 1304250918 - gmtoff; -+ expected.tv_sec = ref_time - gmtoff; - expected.tv_nsec = 0; - ASSERT (parse_datetime (&result, p, 0)); - LOG (p, expected, result); -@@ -142,7 +140,7 @@ main (int argc _GL_UNUSED, char **argv) - /* ISO 8601 extended date and time of day representation, - ' ' separator, local time zone */ - p = "2011-05-01 11:55:18"; -- expected.tv_sec = 1304250918 - gmtoff; -+ expected.tv_sec = ref_time - gmtoff; - expected.tv_nsec = 0; - ASSERT (parse_datetime (&result, p, 0)); - LOG (p, expected, result); -@@ -153,7 +151,7 @@ main (int argc _GL_UNUSED, char **argv) - /* ISO 8601, extended date and time of day representation, - 'T' separator, UTC */ - p = "2011-05-01T11:55:18Z"; -- expected.tv_sec = 1304250918; -+ expected.tv_sec = ref_time; - expected.tv_nsec = 0; - ASSERT (parse_datetime (&result, p, 0)); - LOG (p, expected, result); -@@ -163,7 +161,7 @@ main (int argc _GL_UNUSED, char **argv) - /* ISO 8601, extended date and time of day representation, - ' ' separator, UTC */ - p = "2011-05-01 11:55:18Z"; -- expected.tv_sec = 1304250918; -+ expected.tv_sec = ref_time; - expected.tv_nsec = 0; - ASSERT (parse_datetime (&result, p, 0)); - LOG (p, expected, result); Modified: ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3 =================================================================== --- ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3 2012-01-16 18:40:42 UTC (rev 6234) +++ ipcop/trunk/updates/2.0.3/ROOTFILES.i486-2.0.3 2012-01-16 20:31:14 UTC (rev 6235) @@ -29,6 +29,68 @@ /usr/lib/pppd/2.4.5/capiplugin.so /usr/lib/pppd/2.4.5/userpass.so ## +## coreutils-8.15 +/bin/cat +/bin/chgrp +/bin/chmod +/bin/chown +/bin/cp +/bin/date +/bin/dd +/bin/df +/bin/echo +/bin/false +/bin/head +/bin/ln +/bin/ls +/bin/mkdir +/bin/mknod +/bin/mv +/bin/nice +/bin/pwd +/bin/readlink +/bin/rm +/bin/rmdir +/bin/sleep +/bin/stty +/bin/sync +/bin/true +/bin/uname +/usr/bin/[ +/usr/bin/basename +/usr/bin/cut +/usr/bin/dirname +/usr/bin/du +/usr/bin/env +/usr/bin/expr +/usr/bin/groups +/usr/bin/hostid +/usr/bin/id +/usr/bin/install +/usr/bin/join +/usr/bin/md5sum +/usr/bin/mkfifo +/usr/bin/mktemp +/usr/bin/nohup +/usr/bin/paste +/usr/bin/seq +/usr/bin/sha1sum +/usr/bin/sort +/usr/bin/split +/usr/bin/stat +/usr/bin/tail +/usr/bin/tee +/usr/bin/test +/usr/bin/touch +/usr/bin/tr +/usr/bin/tty +/usr/bin/uniq +/usr/bin/wc +/usr/bin/who +/usr/bin/whoami +/usr/bin/yes +/usr/sbin/chroot +## ## conntrack-tools-1.0.1 /usr/sbin/conntrack ## Modified: ipcop/trunk/updates/2.0.3/information.xml =================================================================== --- ipcop/trunk/updates/2.0.3/information.xml 2012-01-16 18:40:42 UTC (rev 6234) +++ ipcop/trunk/updates/2.0.3/information.xml 2012-01-16 20:31:14 UTC (rev 6235) @@ -8,7 +8,8 @@ Patch krb5-1.9.2 against MITKRB5-SA-2011-007.<br /> More gnupg-1.4.11 hardening. Patched ulogd-1.24.<br /> Language updates.<br /> - Upgrade acpid to 2.0.13, bash to 4.2.20, conntrack-tools to 1.0.1, DBD-SQLite to 1.35, diffutils to 3.2, + Upgrade acpid to 2.0.13, bash to 4.2.20, coreutils to 8.15, + conntrack-tools to 1.0.1, DBD-SQLite to 1.35, diffutils to 3.2, freetype to 2.4.8, gmp to 5.0.2, grep to 2.10, iproute2 to 3.1.0, iptables to 1.4.12.2, iw to 3.2, kbd to 1.15.3, kernel to 2.6.32.54, libnetfilter_conntrack to 1.0.0, libnl to 3.2.3, libpcap to 1.2.1, ntp to 4.2.6p5, openssl to 1.0.0f, smartmontools to 5.42, Solos PCI to 1.03, sqlite to 3.7.9, squid to 3.1.18, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ RSA(R) Conference 2012 Mar 27 - Feb 2 Save $400 by Jan. 27 Register now! http://p.sf.net/sfu/rsa-sfdev2dev2 _______________________________________________ Ipcop-svn mailing list Ipcop-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipcop-svn