Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (825cb885b0a60a7fa2deaeeaab6ea74cd546eadf)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (825cb885b0a60a7fa2deaeeaab6ea74cd546eadf)
  • Date: Thu, 5 Jul 2012 16:51:46 -0500

GIT changes to master grimoire by Ladislav Hagara <hgr AT vabo.cz>:

dev/null |binary
http/xombrero/DETAILS | 2 +-
http/xombrero/HISTORY | 4 ++++
http/xombrero/PRE_BUILD | 4 +++-
http/xombrero/xombrero-1.0.0.tgz.sig | 0
http/xombrero/xombrero-1.1.0.tgz.sig |binary
http/xombrero/xombrero-TAILQ_FOREACH_SAFE.patch | 19 +++++++++++++++++++
7 files changed, 27 insertions(+), 2 deletions(-)

New commits:
commit 825cb885b0a60a7fa2deaeeaab6ea74cd546eadf
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Ladislav Hagara <hgr AT vabo.cz>

xombrero 1.1.0

diff --git a/http/xombrero/DETAILS b/http/xombrero/DETAILS
index 875413c..3450822 100755
--- a/http/xombrero/DETAILS
+++ b/http/xombrero/DETAILS
@@ -1,5 +1,5 @@
SPELL=xombrero
- VERSION=1.0.0
+ VERSION=1.1.0
SOURCE=$SPELL-$VERSION.tgz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=https://opensource.conformal.com/snapshots/$SPELL/$SOURCE
diff --git a/http/xombrero/HISTORY b/http/xombrero/HISTORY
index a6e8d4b..cd9b47d 100644
--- a/http/xombrero/HISTORY
+++ b/http/xombrero/HISTORY
@@ -1,2 +1,6 @@
+2012-07-05 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.1.0
+ * PRE_BUILD, xombrero-TAILQ_FOREACH_SAFE.patch: upstream patch added
+
2012-06-03 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS, DEPENDS, PRE_BUILD, BUILD: spell created, version 1.0.0
diff --git a/http/xombrero/PRE_BUILD b/http/xombrero/PRE_BUILD
index ada9daf..6ece1cf 100755
--- a/http/xombrero/PRE_BUILD
+++ b/http/xombrero/PRE_BUILD
@@ -1,5 +1,7 @@
default_pre_build &&
cd $SOURCE_DIRECTORY &&

+patch -p1 < $SPELL_DIRECTORY/xombrero-TAILQ_FOREACH_SAFE.patch &&
+
sed -i "s:/local::" linux/Makefile &&
-sed -i 's:/usr/local/share/xombrero/:/usr/share/xombrero/:' xombrero.{c,conf}
+sed -i 's:/usr/local/share/xombrero/:/usr/share/xombrero/:' xombrero.conf
unix.c
diff --git a/http/xombrero/xombrero-1.0.0.tgz.sig
b/http/xombrero/xombrero-1.0.0.tgz.sig
deleted file mode 100644
index f075b80..0000000
Binary files a/http/xombrero/xombrero-1.0.0.tgz.sig and /dev/null differ
diff --git a/http/xombrero/xombrero-1.1.0.tgz.sig
b/http/xombrero/xombrero-1.1.0.tgz.sig
new file mode 100644
index 0000000..cf28fd5
Binary files /dev/null and b/http/xombrero/xombrero-1.1.0.tgz.sig differ
diff --git a/http/xombrero/xombrero-TAILQ_FOREACH_SAFE.patch
b/http/xombrero/xombrero-TAILQ_FOREACH_SAFE.patch
new file mode 100644
index 0000000..93cea4b
--- /dev/null
+++ b/http/xombrero/xombrero-TAILQ_FOREACH_SAFE.patch
@@ -0,0 +1,19 @@
+diff --git a/linux/util.h b/linux/util.h
+index 2f329bb..cce1453 100644
+--- a/linux/util.h
++++ b/linux/util.h
+@@ -39,6 +39,14 @@ int fmt_scaled(long long number, char *result);
+ #define TAILQ_END(head) NULL
+ #endif
+
++#ifndef TAILQ_FOREACH_SAFE
++#define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
++ for ((var) = TAILQ_FIRST(head); \
++ (var) != TAILQ_END(head) && \
++ ((tvar) = TAILQ_NEXT(var, field), 1); \
++ (var) = (tvar))
++#endif
++
+ /*
+ * fmt_scaled(3) specific flags. (from OpenBSD util.h)
+ */



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (825cb885b0a60a7fa2deaeeaab6ea74cd546eadf), Ladislav Hagara, 07/05/2012

Archive powered by MHonArc 2.6.24.

Top of Page