[SM-Commit] GIT changes to master grimoire by Eric Sandall (fe220ac3f98f872660147208ae2e2ca8c7c03b76)

Eric Sandall scm at sourcemage.org
Tue Jul 1 06:20:53 EDT 2008


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

 dev/null                        |binary
 libs/libx86/BUILD               |    8 +++++++-
 libs/libx86/HISTORY             |    5 +++++
 utils/linux32/BUILD             |    2 +-
 utils/linux32/DETAILS           |    4 ++--
 utils/linux32/HISTORY           |    6 ++++++
 utils/memconf/DETAILS           |    4 ++--
 utils/memconf/HISTORY           |    3 +++
 utils/memconf/memconf.gz.sig    |    0 
 utils/memconf/memconf.man.sig   |    0 
 utils/youtube-dl/DETAILS        |    2 +-
 utils/youtube-dl/HISTORY        |    3 +++
 utils/youtube-dl/youtube-dl.sig |    0 
 13 files changed, 30 insertions(+), 7 deletions(-)

New commits:
commit fe220ac3f98f872660147208ae2e2ca8c7c03b76
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    linux32: Shorten SHORT, for now copy SHORT for long description

commit 5da2e59db9d088951aee43471334f8bc6bb85acb
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    linux32: Compile with user-defined CFLAGS and LDFLAGS

commit 5e77b6090bafcf841299521de7df2f802603f330
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    libx86: Fix compilation on x86_64 (use x86emu backend)

commit 798510c83a797e8c85610c02f45689db31c99aec
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    libx86: Install using INSTALL_ROOT, compile using user-defined CFLAGS

commit 75f1181bcad2c153552550be82667d04a64e3ce0
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    youtube-dl: SOURCE is unversioned and changes often

commit d4c9da7c62dd0abaea3a7e916200b5ed593b2b15
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    memconf: SOURCE and SOURCE2 are unversioned and change often

diff --git a/libs/libx86/BUILD b/libs/libx86/BUILD
index 8f58e6d..d76dd49 100755
--- a/libs/libx86/BUILD
+++ b/libs/libx86/BUILD
@@ -1 +1,7 @@
-make
+if  [[  "${SMGL_COMPAT_ARCHS[1]}"  ==  "x86_64" ]]; then
+  OPTS="BACKEND=x86emu"
+else
+  OPTS=""
+fi  &&
+
+make  "LIBDIR=$INSTALL_ROOT/usr/lib  CFLAGS=$CFLAGS"  $OPTS
diff --git a/libs/libx86/HISTORY b/libs/libx86/HISTORY
index aa255ce..5a97dc8 100644
--- a/libs/libx86/HISTORY
+++ b/libs/libx86/HISTORY
@@ -1,3 +1,8 @@
+2008-06-27 Eric Sandall <sandalle at sourcemage.org>
+	* BUILD: Install using INSTALL_ROOT for LIBDIR
+	  Use user defined CFLAGS
+	  Fix compilation with x86_64 (build using x86emu backend)
+
 2008-06-04 Mathieu Lonjaret <lejatorn at sourcemage.org>
 	* BUILD, DETAILS, HISTORY: spell created
 
diff --git a/utils/linux32/BUILD b/utils/linux32/BUILD
index b834be4..ab0e3c3 100755
--- a/utils/linux32/BUILD
+++ b/utils/linux32/BUILD
@@ -1,2 +1,2 @@
 cd ${SOURCE_DIRECTORY} &&
-gcc -o linux32 linux32.c
+gcc $CFLAGS $LDFLAGS -o linux32 linux32.c
diff --git a/utils/linux32/DETAILS b/utils/linux32/DETAILS
index b3c39a3..88046ee 100755
--- a/utils/linux32/DETAILS
+++ b/utils/linux32/DETAILS
@@ -7,7 +7,7 @@
          WEB_SITE=ftp://ftp.x86-64.org/pub/linux/tools/linux32/
           ENTERED=20071124
           LICENSE=GPL
-            SHORT="Linux32 is a simple wrapper to do smart things on 64-bit"
+            SHORT="Simple wrapper to do smart things on 64-bit"
 cat << EOF
-NEED SOMETHING HEAR!~
+Linux32 is a simple wrapper to do smart things on 64-bit.
 EOF
diff --git a/utils/linux32/HISTORY b/utils/linux32/HISTORY
index 203a1b2..6fd898d 100644
--- a/utils/linux32/HISTORY
+++ b/utils/linux32/HISTORY
@@ -1,2 +1,8 @@
+2008-06-27 Eric Sandall <sandalle at sourcemage.org>
+	* DETAILS: Shorten SHORT
+	  For now, copy SHORT to long description
+	* BUILD: Compile with user-defined CFLAGS and LDFLAGS
+
 2007-11-24 David Kowis<dkowis at shlrm.org>
 	* ALL: maked a spell for linux32
+
diff --git a/utils/memconf/DETAILS b/utils/memconf/DETAILS
index 086446e..e4aaaa7 100755
--- a/utils/memconf/DETAILS
+++ b/utils/memconf/DETAILS
@@ -5,8 +5,8 @@
 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
    SOURCE_URL[0]=http://myweb.cableone.net/4schmidts/unix/$SOURCE
   SOURCE2_URL[0]=http://myweb.cableone.net/4schmidts/unix/$SOURCE2
-      SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
-     SOURCE2_GPG="gurus.gpg:$SOURCE2.sig:WORKS_FOR_ME"
+   SOURCE_IGNORE=unversioned
+  SOURCE2_IGNORE=unversioned
       LICENSE[0]=GPL
         WEB_SITE=http://myweb.cableone.net/4schmidts/memconf.html
         KEYWORDS="utils"
diff --git a/utils/memconf/HISTORY b/utils/memconf/HISTORY
index b5b7e41..07884a1 100644
--- a/utils/memconf/HISTORY
+++ b/utils/memconf/HISTORY
@@ -1,3 +1,6 @@
+2008-06-27 Eric Sandall <sandalle at sourcemage.org>
+	* DETAILS: SOURCE and SOURCE2 are unversioned
+
 2008-01-14 Eric Sandall <sandalle at sourcemage.org>
 	* DETAILS, DEPENDS, PRE_BUILD, BUILD, INSTALL: Created
 
diff --git a/utils/memconf/memconf.gz.sig b/utils/memconf/memconf.gz.sig
deleted file mode 100644
index 221557b..0000000
Binary files a/utils/memconf/memconf.gz.sig and /dev/null differ
diff --git a/utils/memconf/memconf.man.sig b/utils/memconf/memconf.man.sig
deleted file mode 100644
index 22aaa2e..0000000
Binary files a/utils/memconf/memconf.man.sig and /dev/null differ
diff --git a/utils/youtube-dl/DETAILS b/utils/youtube-dl/DETAILS
index 7364e1f..ae5f0d4 100755
--- a/utils/youtube-dl/DETAILS
+++ b/utils/youtube-dl/DETAILS
@@ -3,7 +3,7 @@
           SOURCE=$SPELL
 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
    SOURCE_URL[0]=http://www.arrakis.es/~rggi3/$SPELL/$SOURCE
-      SOURCE_GPG=gurus.gpg:$SOURCE.sig:UPSTREAM_HASH
+   SOURCE_IGNORE=unversioned
       LICENSE[0]=BSD
         KEYWORDS="utils"
         WEB_SITE=http://www.arrakis.es/~rggi3/youtube-dl/
diff --git a/utils/youtube-dl/HISTORY b/utils/youtube-dl/HISTORY
index 0e6a88d..3164a37 100644
--- a/utils/youtube-dl/HISTORY
+++ b/utils/youtube-dl/HISTORY
@@ -1,3 +1,6 @@
+2008-06-27 Eric Sandall <sandalle at sourcemage.org>
+	* DETAILS: SOURCE is unversioned and changes often
+
 2008-06-12 Eric Sandall <sandalle at sourcemage.org>
 	* DETAILS: Updated to 2008.06.08
 
diff --git a/utils/youtube-dl/youtube-dl.sig b/utils/youtube-dl/youtube-dl.sig
deleted file mode 100644
index 7470c6f..0000000
Binary files a/utils/youtube-dl/youtube-dl.sig and /dev/null differ



More information about the SM-Commit mailing list