[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, systemd, updated. clfs-2.1.0-740-g2b54a63

git git at cross-lfs.org
Mon Apr 14 14:25:38 PDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, systemd has been updated
       via  2b54a63ce1abe9a771adfd1d319ddcf3a0b3e261 (commit)
      from  0d68a5c26f0a87a97cbe7d0e3fc1338c2bcb31da (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2b54a63ce1abe9a771adfd1d319ddcf3a0b3e261
Author: Chris Staub <chris at beaker67.com>
Date:   Mon Apr 14 17:25:33 2014 -0400

    Removed old patches

diff --git a/patches/eglibc-2.17-qecvt-2.patch b/patches/eglibc-2.17-qecvt-2.patch
deleted file mode 100644
index 9acdb7f..0000000
--- a/patches/eglibc-2.17-qecvt-2.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-Submitted By: William Harrington kb0iic at cross-lfs dot org.
-Date: 2013-08-12
-Initial Package Version: 2.17
-Upstream Status: Applied to 2.18 
-Origin: http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4220c3ef773c0e7fff7c95ecd7cff69886fe4c0e
-Description: Fixes a mismatch of guards around qcvt and friends.
-
-Redone for eglibc-2.17 on 2013-08-12
-
-diff -Naur eglibc-2.17.orig/stdlib/bits/stdlib-ldbl.h eglibc-2.17/stdlib/bits/stdlib-ldbl.h
---- eglibc-2.17.orig/stdlib/bits/stdlib-ldbl.h	2012-02-18 02:24:59.000000000 +0000
-+++ eglibc-2.17/stdlib/bits/stdlib-ldbl.h	2013-08-11 22:09:07.000000000 +0000
-@@ -30,12 +30,10 @@
- __LDBL_REDIR1_DECL (strtold_l, strtod_l)
- #endif
- 
--#if defined __USE_SVID || defined __USE_XOPEN_EXTENDED
--# ifdef __USE_MISC
-+#ifdef __USE_MISC
- __LDBL_REDIR1_DECL (qecvt, ecvt)
- __LDBL_REDIR1_DECL (qfcvt, fcvt)
- __LDBL_REDIR1_DECL (qgcvt, gcvt)
- __LDBL_REDIR1_DECL (qecvt_r, ecvt_r)
- __LDBL_REDIR1_DECL (qfcvt_r, fcvt_r)
--# endif
- #endif
-diff -Naur eglibc-2.17.orig/stdlib/stdlib.h eglibc-2.17/stdlib/stdlib.h
---- eglibc-2.17.orig/stdlib/stdlib.h	2012-11-09 22:50:35.000000000 +0000
-+++ eglibc-2.17/stdlib/stdlib.h	2013-08-11 22:06:29.000000000 +0000
-@@ -819,8 +819,9 @@
- extern char *gcvt (double __value, int __ndigit, char *__buf)
-      __THROW __nonnull ((3)) __wur;
- 
-+#endif
- 
--# ifdef __USE_MISC
-+#ifdef __USE_MISC
- /* Long double versions of above functions.  */
- extern char *qecvt (long double __value, int __ndigit,
- 		    int *__restrict __decpt, int *__restrict __sign)
-@@ -849,9 +850,7 @@
- 		    int *__restrict __decpt, int *__restrict __sign,
- 		    char *__restrict __buf, size_t __len)
-      __THROW __nonnull ((3, 4, 5));
--# endif	/* misc */
--#endif	/* use MISC || use X/Open Unix */
--
-+#endif /* misc */
- 
- __BEGIN_NAMESPACE_STD
- /* Return the length of the multibyte character
diff --git a/patches/texinfo-4.13a-new_compressors-1.patch b/patches/texinfo-4.13a-new_compressors-1.patch
deleted file mode 100644
index 6a3dd06..0000000
--- a/patches/texinfo-4.13a-new_compressors-1.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-Submitted By: Jim Gifford <jim at cross-lfs dot org>
-Date: 2009-02-21
-Initial Package Version: 4.13a
-Upstream Status: Unknown
-Origin: Jim Gifford
-Description: For using xz compression
-
-diff -Naur texinfo-4.13.orig/doc/texinfo.txi texinfo-4.13/doc/texinfo.txi
---- texinfo-4.13.orig/doc/texinfo.txi	2008-09-18 11:31:57.000000000 -0700
-+++ texinfo-4.13/doc/texinfo.txi	2009-02-22 19:41:37.874296689 -0800
-@@ -16488,6 +16488,7 @@
- 
- @cindex Compressed dir files, reading
- @cindex Bzipped dir files, reading
-+ at cindex XZ-compressed dir files, reading
- @cindex LZMA-compressed dir files, reading
- @cindex Dir files, compressed
- If any input file is compressed with @code{gzip} (@pxref{Top,,,gzip,
-@@ -16495,8 +16496,8 @@
- for reading.  And if @var{dir-file} is compressed, @code{install-info}
- also automatically leaves it compressed after writing any changes.
- If @var{dir-file} itself does not exist, @code{install-info} tries to
--open @file{@var{dir-file}.gz}, @file{@var{dir-file}.bz2}, and 
-- at file{@var{dir-file}.lzma}, in that order.
-+open @file{@var{dir-file}.gz}, @file{@var{dir-file}.bz2},
-+ at file{@var{dir-file}.xz} and @file{@var{dir-file}.lzma}, in that order.
- 
- Options:
- 
-diff -Naur texinfo-4.13.orig/info/filesys.c texinfo-4.13/info/filesys.c
---- texinfo-4.13.orig/info/filesys.c	2008-06-12 05:39:20.000000000 -0700
-+++ texinfo-4.13/info/filesys.c	2009-02-22 19:41:37.874296689 -0800
-@@ -55,6 +55,7 @@
- static COMPRESSION_ALIST compress_suffixes[] = {
-   { ".gz", "gunzip" },
-   { ".bz2", "bunzip2" },
-+  { ".xz", "unxz" },
-   { ".lzma", "unlzma" },
-   { ".z", "gunzip" },
-   { ".Z", "uncompress" },
-diff -Naur texinfo-4.13.orig/install-info/install-info.c texinfo-4.13/install-info/install-info.c
---- texinfo-4.13.orig/install-info/install-info.c	2008-05-22 05:11:33.000000000 -0700
-+++ texinfo-4.13/install-info/install-info.c	2009-02-22 19:41:37.874296689 -0800
-@@ -739,15 +739,20 @@
- #else
-     *compression_program = "bzip";
- #endif
-+  else if (data[0] == '\xFD' && data[1] == '7' && data[2] == 'z'
-+               && data[3] == 'X' && data[4] == 'Z' && data[5] == 0x00)
-+#ifndef STRIP_DOT_EXE
-+    *compression_program = "xz.exe";
-+#else
-+    *compression_program = "xz";
-+#endif
-     /* We (try to) match against old lzma format (which lacks proper
--       header, two first matches), as well as the new format (last match).  */
-+       header, two first matches). */
-   else if ((data[9] == 0x00 && data[10] == 0x00 && data[11] == 0x00
-             && data[12] == 0x00)
-            || (data[5] == '\xFF' && data[6] == '\xFF' && data[7] == '\xFF'
-                && data[8] == '\xFF' && data[9] == '\xFF' && data[10] == '\xFF'
--               && data[11] == '\xFF' && data[12] == '\xFF') 
--           || (data[0] == '\xFF' && data[1] == 'L' && data[2] == 'Z'
--               && data[3] == 'M' && data[4] == 'A' && data[5] == 0x00))
-+               && data[11] == '\xFF' && data[12] == '\xFF'))
- #ifndef STRIP_DOT_EXE
-     *compression_program = "lzma.exe";
- #else

-----------------------------------------------------------------------

Summary of changes:
 patches/eglibc-2.17-qecvt-2.patch             |   51 ------------------
 patches/texinfo-4.13a-new_compressors-1.patch |   68 -------------------------
 2 files changed, 0 insertions(+), 119 deletions(-)
 delete mode 100644 patches/eglibc-2.17-qecvt-2.patch
 delete mode 100644 patches/texinfo-4.13a-new_compressors-1.patch


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list