Skip to Content.
Sympa Menu

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

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 (c3a6c9bcc1599f76411da44fd31a4d6d9338096c)
  • Date: Fri, 21 Mar 2008 01:37:17 -0500

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

crypto/gnutls/DEPENDS | 7 ++
crypto/gnutls/HISTORY | 3 +
dev/null |binary
devel/guile/DETAILS | 7 +-
devel/guile/HISTORY | 7 ++
devel/guile/PRE_BUILD | 3 +
devel/guile/gcc43.patch | 91
+++++++++++++++++++++++++++++++
disk/quota/DETAILS | 10 +--
disk/quota/HISTORY | 4 +
disk/quota/quota-3.16.tar.gz.sig |binary
net/nfs-utils/DETAILS | 2
net/nfs-utils/HISTORY | 3 +
net/nfs-utils/nfs-utils-1.1.1.tar.gz.sig | 0
net/nfs-utils/nfs-utils-1.1.2.tar.gz.sig |binary
14 files changed, 127 insertions(+), 10 deletions(-)

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

gnutls: Optionally depends on guile

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

guile: Fix for gcc 4.3.0 (and gnutls using guile with gcc 4.3.0)

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

nfs-utils: Updated to 1.1.2

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

quota: Updated to 3.16

diff --git a/crypto/gnutls/DEPENDS b/crypto/gnutls/DEPENDS
index f928be4..772068c 100755
--- a/crypto/gnutls/DEPENDS
+++ b/crypto/gnutls/DEPENDS
@@ -20,4 +20,9 @@ optional_depends "lzo" \
optional_depends "libcfg+" \
"--without-included-libcfg" \
"--with-included-libcfg" \
- "to use external libcfg+"
+ "to use external libcfg+" &&
+
+optional_depends "guile" \
+ "--enable-guile" \
+ "--disable-guile" \
+ "for GNU Guile bindings"
diff --git a/crypto/gnutls/HISTORY b/crypto/gnutls/HISTORY
index 6b751a0..7e94418 100644
--- a/crypto/gnutls/HISTORY
+++ b/crypto/gnutls/HISTORY
@@ -1,3 +1,6 @@
+2008-03-20 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Optionally depends on guile
+
2008-03-03 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.2.2, make 2.2 default GNUTLS_BRANCH

diff --git a/devel/guile/DETAILS b/devel/guile/DETAILS
index e4af8ad..0a2c2a9 100755
--- a/devel/guile/DETAILS
+++ b/devel/guile/DETAILS
@@ -5,12 +5,13 @@
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$GNU_URL/$SPELL/$SOURCE
SOURCE2_URL[0]=$GNU_URL/$SPELL/$SOURCE2
- SOURCE_GPG=gnu-verified.gpg:$SOURCE2:VERIFIED_UPSTREAM_KEY
SOURCE2_IGNORE=signature
- WEB_SITE=http://www.gnu.org/software/guile
- ENTERED=20010922
+ SOURCE_GPG=gnu-verified.gpg:$SOURCE2:VERIFIED_UPSTREAM_KEY
LICENSE[0]=LGPL
+ PATCHLEVE=1
+ WEB_SITE=http://www.gnu.org/software/guile
KEYWORDS="devel"
+ ENTERED=20010922
SHORT="Portable, embeddable Scheme implementation"
cat << EOF
Guile is a portable, embeddable Scheme implementation written in C.
diff --git a/devel/guile/HISTORY b/devel/guile/HISTORY
index 0295731..6ed24e1 100644
--- a/devel/guile/HISTORY
+++ b/devel/guile/HISTORY
@@ -1,3 +1,10 @@
+2008-03-20 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Increment PATCHLEVEL to have this patch applied (for
gnutls)
+ * PRE_BUILD: Apply gcc43.patch
+ * gcc43.patch: Patch to work with gcc 4.3.0 (also fixes gnutls
building
+ against guile with gcc 4.3.0)
+ From http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=466778
+
2007-08-08 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* DEPENDS: added libtool #13933

diff --git a/devel/guile/PRE_BUILD b/devel/guile/PRE_BUILD
new file mode 100755
index 0000000..395873b
--- /dev/null
+++ b/devel/guile/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p1 < $SCRIPT_DIRECTORY/gcc43.patch
diff --git a/devel/guile/gcc43.patch b/devel/guile/gcc43.patch
new file mode 100644
index 0000000..0c93942
--- /dev/null
+++ b/devel/guile/gcc43.patch
@@ -0,0 +1,91 @@
+#
+# Fix for gnutls compiling with guile 1.8 with gcc 4.3.0
+#
+diff -urN guile-1.8-1.8.3+1.old/libguile/c-tokenize.c
guile-1.8-1.8.3+1/libguile/c-tokenize.c
+--- guile-1.8-1.8.3+1.old/libguile/c-tokenize.c 2007-06-13
22:00:56.000000000 +0000
++++ guile-1.8-1.8.3+1/libguile/c-tokenize.c 2008-02-23 01:40:11.000000000
+0000
+@@ -579,6 +579,8 @@
+ #include <stdlib.h>
+ #include <string.h>
+
++#define YY_NO_INPUT
++
+ int yylex(void);
+
+ int yyget_lineno (void);
+diff -urN guile-1.8-1.8.3+1.old/libguile/c-tokenize.lex
guile-1.8-1.8.3+1/libguile/c-tokenize.lex
+--- guile-1.8-1.8.3+1.old/libguile/c-tokenize.lex 2007-05-09
20:22:03.000000000 +0000
++++ guile-1.8-1.8.3+1/libguile/c-tokenize.lex 2008-02-23 01:39:42.000000000
+0000
+@@ -18,7 +18,9 @@
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <string.h>
+-
++
++#define YY_NO_INPUT
++
+ int yylex(void);
+
+ int yyget_lineno (void);
+diff -urN guile-1.8-1.8.3+1.old/libguile/inline.h
guile-1.8-1.8.3+1/libguile/inline.h
+--- guile-1.8-1.8.3+1.old/libguile/inline.h 2007-05-09 20:22:03.000000000
+0000
++++ guile-1.8-1.8.3+1/libguile/inline.h 2008-02-23 01:43:22.000000000
+0000
+@@ -55,6 +55,12 @@
+ extern unsigned scm_newcell2_count;
+ extern unsigned scm_newcell_count;
+
++#ifdef __GNUC_STDC_INLINE__
++#define SCM_C_GNU_INLINE SCM_C_INLINE __attribute__((__gnu_inline__))
++#else
++#define SCM_C_GNU_INLINE SCM_C_INLINE
++#endif
++
+ #if defined SCM_C_INLINE && ! defined SCM_INLINE_C_INCLUDING_INLINE_H
+ /* definitely inlining */
+ #ifdef __GNUC__
+@@ -62,7 +68,7 @@
+ #else
+ static
+ #endif
+-SCM_C_INLINE
++SCM_C_GNU_INLINE
+ #endif
+ SCM
+ scm_cell (scm_t_bits car, scm_t_bits cdr)
+@@ -138,7 +144,7 @@
+ #else
+ static
+ #endif
+-SCM_C_INLINE
++SCM_C_GNU_INLINE
+ #endif
+ SCM
+ scm_double_cell (scm_t_bits car, scm_t_bits cbr,
+@@ -213,7 +219,7 @@
+ #else
+ static
+ #endif
+-SCM_C_INLINE
++SCM_C_GNU_INLINE
+ #endif
+ SCM
+ scm_array_handle_ref (scm_t_array_handle *h, ssize_t p)
+@@ -228,7 +234,7 @@
+ #else
+ static
+ #endif
+-SCM_C_INLINE
++SCM_C_GNU_INLINE
+ #endif
+ void
+ scm_array_handle_set (scm_t_array_handle *h, ssize_t p, SCM v)
+@@ -243,7 +249,7 @@
+ #else
+ static
+ #endif
+-SCM_C_INLINE
++SCM_C_GNU_INLINE
+ #endif
+ int
+ scm_is_pair (SCM x)
+
diff --git a/disk/quota/DETAILS b/disk/quota/DETAILS
index 2d58ff6..9bea2f9 100755
--- a/disk/quota/DETAILS
+++ b/disk/quota/DETAILS
@@ -1,14 +1,14 @@
SPELL=quota
- VERSION=3.12
+ VERSION=3.16
SOURCE=${SPELL}-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-tools
SOURCE_URL[0]=$SOURCEFORGE_URL/linuxquota/$SOURCE
-
SOURCE_HASH=sha512:396af0d9c4b79c3a8be66e3879eb9c67b2e028490ab714bec0980d8b7aeb5584ce3cc6037b88363206f3ef79c1300db7eb873de6ca8ee50d50cf4b19905a8344
- WEB_SITE=http://sourceforge.net/projects/linuxquota/
- ENTERED=20020911
- UPDATED=20030822
+#
SOURCE_HASH=sha512:396af0d9c4b79c3a8be66e3879eb9c67b2e028490ab714bec0980d8b7aeb5584ce3cc6037b88363206f3ef79c1300db7eb873de6ca8ee50d50cf4b19905a8344
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
LICENSE[0]=BSD
+ WEB_SITE=http://sourceforge.net/projects/linuxquota/
KEYWORDS="disk"
+ ENTERED=20020911
SHORT="Tools and patches for the linux Diskquota system"
cat << EOF
Tools and patches for the Linux Diskquota system as part of the Linux kernel.
diff --git a/disk/quota/HISTORY b/disk/quota/HISTORY
index e9af9dc..ee95aa6 100644
--- a/disk/quota/HISTORY
+++ b/disk/quota/HISTORY
@@ -1,3 +1,7 @@
+2008-03-15 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 3.16
+ Removed UPDATED
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/disk/quota/quota-3.16.tar.gz.sig
b/disk/quota/quota-3.16.tar.gz.sig
new file mode 100644
index 0000000..9f52475
Binary files /dev/null and b/disk/quota/quota-3.16.tar.gz.sig differ
diff --git a/net/nfs-utils/DETAILS b/net/nfs-utils/DETAILS
index c6dcab7..d6a2901 100755
--- a/net/nfs-utils/DETAILS
+++ b/net/nfs-utils/DETAILS
@@ -1,5 +1,5 @@
SPELL=nfs-utils
- VERSION=1.1.1
+ VERSION=1.1.2
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/nfs/$SOURCE
diff --git a/net/nfs-utils/HISTORY b/net/nfs-utils/HISTORY
index ebbe416..69427c7 100644
--- a/net/nfs-utils/HISTORY
+++ b/net/nfs-utils/HISTORY
@@ -1,3 +1,6 @@
+2008-03-15 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 1.1.2
+
2007-11-29 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 1.1.1

diff --git a/net/nfs-utils/nfs-utils-1.1.1.tar.gz.sig
b/net/nfs-utils/nfs-utils-1.1.1.tar.gz.sig
deleted file mode 100644
index 67b4540..0000000
Binary files a/net/nfs-utils/nfs-utils-1.1.1.tar.gz.sig and /dev/null differ
diff --git a/net/nfs-utils/nfs-utils-1.1.2.tar.gz.sig
b/net/nfs-utils/nfs-utils-1.1.2.tar.gz.sig
new file mode 100644
index 0000000..0bccd20
Binary files /dev/null and b/net/nfs-utils/nfs-utils-1.1.2.tar.gz.sig differ



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

Archive powered by MHonArc 2.6.24.

Top of Page