Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (d435f8a02bbdae6376f2b934e8fa2dc59816daf3)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (d435f8a02bbdae6376f2b934e8fa2dc59816daf3)
  • Date: Wed, 13 Feb 2013 06:20:55 -0600

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

dev/null |binary
devel/ragel/DETAILS | 2
devel/ragel/HISTORY | 4 +
devel/ragel/PRE_BUILD | 4 -
devel/ragel/gcc-4.7.patch | 125
---------------------------------------
devel/ragel/ragel-6.7.tar.gz.sig | 0
utils/syslog-ng/DETAILS | 4 -
utils/syslog-ng/HISTORY | 3
8 files changed, 10 insertions(+), 132 deletions(-)

New commits:
commit d435f8a02bbdae6376f2b934e8fa2dc59816daf3
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

syslog-ng: => 3.4.1

commit b03cd5c624c72451ef79bf94c4e6a6a356f44f83
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

ragel: => 6.8

diff --git a/devel/ragel/DETAILS b/devel/ragel/DETAILS
index 7831dc3..711d197 100755
--- a/devel/ragel/DETAILS
+++ b/devel/ragel/DETAILS
@@ -1,5 +1,5 @@
SPELL=ragel
- VERSION=6.7
+ VERSION=6.8
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://www.cs.queensu.ca/~thurston/ragel/
diff --git a/devel/ragel/HISTORY b/devel/ragel/HISTORY
index 21219b3..1a53c55 100644
--- a/devel/ragel/HISTORY
+++ b/devel/ragel/HISTORY
@@ -1,3 +1,7 @@
+2013-02-13 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 6.8
+ * PRE_BUILD, gcc-4.7.patch: deleted
+
2012-06-12 Sukneet Basuta <sukneet AT sourcemage.org>
* PRE_BUILD: added, to apply patch
* gcc-4.7.patch: added, fix to compile with gcc 4.7
diff --git a/devel/ragel/PRE_BUILD b/devel/ragel/PRE_BUILD
deleted file mode 100755
index 9327cb8..0000000
--- a/devel/ragel/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-
-patch -p1 < $SPELL_DIRECTORY/gcc-4.7.patch
diff --git a/devel/ragel/gcc-4.7.patch b/devel/ragel/gcc-4.7.patch
deleted file mode 100644
index caa0c67..0000000
--- a/devel/ragel/gcc-4.7.patch
+++ /dev/null
@@ -1,125 +0,0 @@
---- ragel-6.7.orig/aapl/mergesort.h
-+++ ragel-6.7/aapl/mergesort.h
-@@ -110,7 +110,7 @@
- }
- else {
- /* Both upper and lower left. */
-- if ( compare(*lower, *upper) <= 0 )
-+ if ( this->compare(*lower, *upper) <= 0 )
- memcpy( dest++, lower++, sizeof(T) );
- else
- memcpy( dest++, upper++, sizeof(T) );
---- ragel-6.7.orig/aapl/avlcommon.h
-+++ ragel-6.7/aapl/avlcommon.h
-@@ -881,9 +881,9 @@
- }
-
- #ifdef AVL_BASIC
-- keyRelation = compare( *element, *curEl );
-+ keyRelation = this->compare( *element, *curEl );
- #else
-- keyRelation = compare( element->BASEKEY(getKey()),
-+ keyRelation = this->compare( element->BASEKEY(getKey()),
- curEl->BASEKEY(getKey()) );
- #endif
-
-@@ -920,7 +920,7 @@
- long keyRelation;
-
- while (curEl) {
-- keyRelation = compare( *element, *curEl );
-+ keyRelation = this->compare( *element, *curEl );
-
- /* Do we go left? */
- if ( keyRelation < 0 )
-@@ -969,7 +969,7 @@
- return element;
- }
-
-- keyRelation = compare( key, curEl->BASEKEY(getKey()) );
-+ keyRelation = this->compare( key, curEl->BASEKEY(getKey()) );
-
- /* Do we go left? */
- if ( keyRelation < 0 ) {
-@@ -1023,7 +1023,7 @@
- return element;
- }
-
-- keyRelation = compare(key, curEl->getKey());
-+ keyRelation = this->compare(key, curEl->getKey());
-
- /* Do we go left? */
- if ( keyRelation < 0 ) {
-@@ -1058,7 +1058,7 @@
- long keyRelation;
-
- while (curEl) {
-- keyRelation = compare( key, curEl->BASEKEY(getKey()) );
-+ keyRelation = this->compare( key, curEl->BASEKEY(getKey()) );
-
- /* Do we go left? */
- if ( keyRelation < 0 )
---- ragel-6.7.orig/aapl/bubblesort.h
-+++ ragel-6.7/aapl/bubblesort.h
-@@ -72,7 +72,7 @@
- changed = false;
- for ( long i = 0; i < len-pass; i++ ) {
- /* Do we swap pos with the next one? */
-- if ( compare( data[i], data[i+1] ) > 0 ) {
-+ if ( this->compare( data[i], data[i+1] ) > 0 ) {
- char tmp[sizeof(T)];
-
- /* Swap the two items. */
---- ragel-6.7.orig/aapl/bstcommon.h
-+++ ragel-6.7/aapl/bstcommon.h
-@@ -361,7 +361,7 @@
- }
-
- mid = lower + ((upper-lower)>>1);
-- keyRelation = compare(key, GET_KEY(*mid));
-+ keyRelation = this->compare(key, GET_KEY(*mid));
-
- if ( keyRelation < 0 )
- upper = mid - 1;
-@@ -373,12 +373,12 @@
-
- lower = mid - 1;
- while ( lower != lowEnd &&
-- compare(key, GET_KEY(*lower)) == 0 )
-+ this->compare(key, GET_KEY(*lower))
== 0 )
- lower--;
-
- upper = mid + 1;
- while ( upper != highEnd &&
-- compare(key, GET_KEY(*upper)) == 0 )
-+ this->compare(key, GET_KEY(*upper))
== 0 )
- upper++;
-
- low = (Element*)lower + 1;
-@@ -419,7 +419,7 @@
- }
-
- mid = lower + ((upper-lower)>>1);
-- keyRelation = compare(key, GET_KEY(*mid));
-+ keyRelation = this->compare(key, GET_KEY(*mid));
-
- if ( keyRelation < 0 )
- upper = mid - 1;
-@@ -457,7 +457,7 @@
- }
-
- mid = lower + ((upper-lower)>>1);
-- keyRelation = compare(key, GET_KEY(*mid));
-+ keyRelation = this->compare(key, GET_KEY(*mid));
-
- if ( keyRelation < 0 )
- upper = mid - 1;
-@@ -662,7 +662,7 @@
- }
-
- mid = lower + ((upper-lower)>>1);
-- keyRelation = compare(GET_KEY(el), GET_KEY(*mid));
-+ keyRelation = this->compare(GET_KEY(el), GET_KEY(*mid));
-
- if ( keyRelation < 0 )
- upper = mid - 1;
diff --git a/devel/ragel/ragel-6.7.tar.gz.sig
b/devel/ragel/ragel-6.7.tar.gz.sig
deleted file mode 100644
index 0b68201..0000000
Binary files a/devel/ragel/ragel-6.7.tar.gz.sig and /dev/null differ
diff --git a/utils/syslog-ng/DETAILS b/utils/syslog-ng/DETAILS
index 5941532..2c74405 100755
--- a/utils/syslog-ng/DETAILS
+++ b/utils/syslog-ng/DETAILS
@@ -1,6 +1,6 @@
SPELL=syslog-ng
- VERSION=3.3.7
-
SOURCE_HASH=sha512:e75d88b42c93a1b89465ffb19ac82d309ecda8ab4b92509c6ce6bd26e643a755e53f9c66d3ea154d4328a88de91c80a8ea1933c841cbdd0f9aeed121fc436a94
+ VERSION=3.4.1
+
SOURCE_HASH=sha512:5f9830f269cd612f3ee62a044a0dab4a38b33395a6b60669e84433410ad63f74b1711536b49fad13589f82986f55c9581433141f7a77eeae34056ec6344c9399
SOURCE=${SPELL}_${VERSION}.tar.gz
# SOURCE2=$SOURCE.asc
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/utils/syslog-ng/HISTORY b/utils/syslog-ng/HISTORY
index e6a1874..3794f77 100644
--- a/utils/syslog-ng/HISTORY
+++ b/utils/syslog-ng/HISTORY
@@ -1,3 +1,6 @@
+2013-02-13 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 3.4.1
+
2012-12-11 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 3.3.7




  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (d435f8a02bbdae6376f2b934e8fa2dc59816daf3), Treeve Jelbert, 02/13/2013

Archive powered by MHonArc 2.6.24.

Top of Page