Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (ca0ef9bf0b314e036a6f1148c5423a2a69c80f5f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (ca0ef9bf0b314e036a6f1148c5423a2a69c80f5f)
  • Date: Thu, 20 Mar 2008 23:48:38 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

archive/cpio/HISTORY | 5 ++++
archive/cpio/PRE_BUILD | 3 ++
archive/cpio/gcc43.patch | 35
++++++++++++++++++++++++++++++
archive/lzma-utils/DETAILS | 9 ++++---
archive/lzma-utils/HISTORY | 5 ++++
archive/lzma-utils/lzma-4.32.5.tar.gz.sig |binary
6 files changed, 53 insertions(+), 4 deletions(-)

New commits:
commit ca0ef9bf0b314e036a6f1148c5423a2a69c80f5f
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

lzma-utils: Updated to 4.32.5 (now compiles with gcc 4.3.0)

commit b8c8a6d253e259073c5c7d4aa4242b0b10c903a4
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

cpio: Apply patch to work with gcc 4.3.0

diff --git a/archive/cpio/HISTORY b/archive/cpio/HISTORY
index 39813be..f956f1d 100644
--- a/archive/cpio/HISTORY
+++ b/archive/cpio/HISTORY
@@ -1,3 +1,8 @@
+2008-03-20 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_BUILD: Apply gcc43.patch
+ * gcc43: Patch to fix compilation with gcc 4.3.0 from
+
http://www.nabble.com/Patch%3A-compile-cpio-2.9-with-new-gcc-4.3-to12876731.html
+
2007-11-15 Remko van der Vossen <wich AT sourcemage.org>
* DETAILS: Version 2.9
* PRE_BUILD: Removed futimens patch, applied upstream
diff --git a/archive/cpio/PRE_BUILD b/archive/cpio/PRE_BUILD
new file mode 100755
index 0000000..1ecc0dc
--- /dev/null
+++ b/archive/cpio/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p0 < $SCRIPT_DIRECTORY/gcc43.patch
diff --git a/archive/cpio/gcc43.patch b/archive/cpio/gcc43.patch
new file mode 100644
index 0000000..ee41c8d
--- /dev/null
+++ b/archive/cpio/gcc43.patch
@@ -0,0 +1,35 @@
+#
+# Patch from Ladislav Michnovic:
+# from
http://www.nabble.com/Patch%3A-compile-cpio-2.9-with-new-gcc-4.3-to12876731.html
+#
+--- lib/argp.h.orig 2007-09-25 11:04:18.000000000 +0200
++++ lib/argp.h 2007-09-25 11:06:24.000000000 +0200
+@@ -580,7 +580,11 @@
+ # endif
+
+ # ifndef ARGP_EI
+-# define ARGP_EI extern __inline__
++# if defined __GNUC_STDC_INLINE__
++# define ARGP_EI extern __inline__ __attribute__((__gnu_inline__))
++# else
++# define ARGP_EI extern __inline__
++# endif
+ # endif
+
+ ARGP_EI void
+--- lib/argp-fmtstream.h.orig 2007-09-25 11:06:49.000000000 +0200
++++ lib/argp-fmtstream.h 2007-09-25 11:07:35.000000000 +0200
+@@ -198,8 +198,12 @@
+ #endif
+
+ #ifndef ARGP_FS_EI
++#ifdef __GNUC_STDC_INLINE__
++#define ARGP_FS_EI extern inline __attribute__((__gnu_inline__))
++#else
+ #define ARGP_FS_EI extern inline
+ #endif
++#endif
+
+ ARGP_FS_EI size_t
+ __argp_fmtstream_write (argp_fmtstream_t __fs,
+
diff --git a/archive/lzma-utils/DETAILS b/archive/lzma-utils/DETAILS
index a34edbe..ce64ae2 100755
--- a/archive/lzma-utils/DETAILS
+++ b/archive/lzma-utils/DETAILS
@@ -1,11 +1,12 @@
SPELL=lzma-utils
- VERSION=4.32.0beta3
+ VERSION=4.32.5
SOURCE="lzma-$VERSION.tar.gz"
- SOURCE_URL[0]=http://tukaani.org/lzma/$SOURCE
-
SOURCE_HASH=sha512:9cfc5dbafa8c936d92c44d9e3c73f78e83e730f967b1332f7e6f2c9b19a4b8f5290efc1dd4b6c857f04c486e1ce0955027705182637639ee5222d2e20f508fe9
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/lzma-$VERSION"
- WEB_SITE=http://tukaani.org/lzma/
+ SOURCE_URL[0]=http://tukaani.org/lzma/$SOURCE
+#
SOURCE_HASH=sha512:9cfc5dbafa8c936d92c44d9e3c73f78e83e730f967b1332f7e6f2c9b19a4b8f5290efc1dd4b6c857f04c486e1ce0955027705182637639ee5222d2e20f508fe9
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
LICENSE[0]=GPL
+ WEB_SITE=http://tukaani.org/lzma/
ENTERED=20061010
SHORT="A commandline LZMA compressor and other utilities."
cat << EOF
diff --git a/archive/lzma-utils/HISTORY b/archive/lzma-utils/HISTORY
index 5cbd8ed..1480f6f 100644
--- a/archive/lzma-utils/HISTORY
+++ b/archive/lzma-utils/HISTORY
@@ -1,2 +1,7 @@
+2008-03-20 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 4.32.5
+ Now compiles with gcc 4.3.0
+
2006-10-10 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS, HISTORY: created spell
+
diff --git a/archive/lzma-utils/lzma-4.32.5.tar.gz.sig
b/archive/lzma-utils/lzma-4.32.5.tar.gz.sig
new file mode 100644
index 0000000..364d040
Binary files /dev/null and b/archive/lzma-utils/lzma-4.32.5.tar.gz.sig differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (ca0ef9bf0b314e036a6f1148c5423a2a69c80f5f), Eric Sandall, 03/21/2008

Archive powered by MHonArc 2.6.24.

Top of Page