Skip to Content.
Sympa Menu

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

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 (0200ff9a47c34dc6c8e0ed254c7dd52fe35f0919)
  • Date: Thu, 20 Aug 2009 04:59:19 -0500

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

ChangeLog | 5 +++++
cluster/gearmand/DEPENDS | 5 +++++
cluster/gearmand/DETAILS | 21 +++++++++++++++++++++
cluster/gearmand/HISTORY | 4 ++++
cluster/gearmand/gearman.gpg |binary
graphics-libs/opencv/DEPENDS | 6 +++---
graphics-libs/opencv/HISTORY | 4 ++++
graphics-libs/opencv/PRE_BUILD | 3 ++-
libs/libdrizzle/DEPENDS | 1 +
libs/libdrizzle/DETAILS | 21 +++++++++++++++++++++
libs/libdrizzle/HISTORY | 4 ++++
libs/libdrizzle/drizzle.gpg |binary
libs/protobuf/DEPENDS | 3 +++
libs/protobuf/DETAILS | 15 +++++++++++++++
libs/protobuf/HISTORY | 4 ++++
net/strongswan/DETAILS | 2 +-
net/strongswan/HISTORY | 4 ++++
net/strongswan/swan.gpg |binary
video-libs/libavc1394/HISTORY | 3 +++
video-libs/libavc1394/TRIGGERS | 1 +
video-libs/xine-lib/DEPENDS | 5 +++--
video-libs/xine-lib/HISTORY | 4 ++++
video/dvgrab/HISTORY | 3 +++
video/dvgrab/TRIGGERS | 1 +
24 files changed, 112 insertions(+), 7 deletions(-)

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

gearmand-0.9

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

protobuf - 2.2.0

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

libdrizzle-0.4

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

strongswan: => 4.3.4

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

xine-lib - add depends jpeg

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

opencv - fix bcompile with gcc-4.4

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

opencv - extra depends

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

dvgrab - add trigger on libraw1394

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

libavc1394 - add trigger on libraw1394

diff --git a/ChangeLog b/ChangeLog
index 63021ac..dac7766 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * libs/libdrizzle: client and protocol library for the Drizzle project
+ * libs/protobuf: new spell , encoding structured data
+ * cluster/gearmand: new spell, manager for sharing work
+
2009-08-15 Finn Haedicke <finn_haedicke AT gmx.net>
* chat-im/pidgin-libnotify: new spell, notification plugin for pidgin

diff --git a/cluster/gearmand/DEPENDS b/cluster/gearmand/DEPENDS
new file mode 100755
index 0000000..e7ffbd3
--- /dev/null
+++ b/cluster/gearmand/DEPENDS
@@ -0,0 +1,5 @@
+depends libdrizzle &&
+depends libevent &&
+depends util-linux &&
+optional_depends sqlite '' '' 'database backend' &&
+optional_depends postgresql '' '' 'database backend'
diff --git a/cluster/gearmand/DETAILS b/cluster/gearmand/DETAILS
new file mode 100755
index 0000000..2f0b961
--- /dev/null
+++ b/cluster/gearmand/DETAILS
@@ -0,0 +1,21 @@
+ SPELL=gearmand
+ VERSION=0.9
+ VX=`echo $VERSION | cut -c-3`
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE2=$SOURCE.asc
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]="http://launchpad.net/$SPELL/trunk/$VX/+download/$SOURCE";
+ SOURCE2_URL[0]="${SOURCE_URL[0]}.asc"
+ SOURCE_GPG=gearman.gpg:$SOURCE.asc:UPSTREAM_KEY
+ SOURCE2_IGNORE=signature
+ WEB_SITE=https://launchpad.net/$SPELL
+ LICENSE[0]=GPL
+ ENTERED=20090820
+ KEYWORDS=""
+ SHORT="load balancing and high availability client/server"
+cat << EOF
+This is a rewrite (in C) of the Perl version found at
http://danga.com/gearman/. It includes the
+both a client/worker library, as well as the server. The server acts as a
bridge between workers
+(clients who can do work) and callers (clients who want work done). You
should run several servers
+(at least two) for both load balancing and high availability.
+EOF
diff --git a/cluster/gearmand/HISTORY b/cluster/gearmand/HISTORY
new file mode 100644
index 0000000..3cd1e1e
--- /dev/null
+++ b/cluster/gearmand/HISTORY
@@ -0,0 +1,4 @@
+2009-08-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.9
+ spell created
+
diff --git a/cluster/gearmand/gearman.gpg b/cluster/gearmand/gearman.gpg
new file mode 100644
index 0000000..09ccb47
Binary files /dev/null and b/cluster/gearmand/gearman.gpg differ
diff --git a/graphics-libs/opencv/DEPENDS b/graphics-libs/opencv/DEPENDS
index 3edd2c6..4048d9b 100755
--- a/graphics-libs/opencv/DEPENDS
+++ b/graphics-libs/opencv/DEPENDS
@@ -5,9 +5,9 @@ depends LIBAVCODEC '--with-ffmpeg --without-quicktime'
elif [[ $FFM = libquicktime ]];then
depends libquicktime '--with-quicktime --without-ffmpeg'
fi &&
-#optional_depends jpeg
-#optional_depends jasper
-#optional_depends tiff
+optional_depends jpeg '' '' 'JPEG support' &&
+optional_depends jasper '' '' 'JPEG-2000 support' &&
+optional_depends tiff '' '' 'TIFF support' &&
optional_depends python '--with-python' '--without-python' '' &&
optional_depends swig '--with-swig' '--without-swig' '' &&
optional_depends xine-lib '--with-xine' '--without-xine' '' &&
diff --git a/graphics-libs/opencv/HISTORY b/graphics-libs/opencv/HISTORY
index 203c3d3..4f9a3d9 100644
--- a/graphics-libs/opencv/HISTORY
+++ b/graphics-libs/opencv/HISTORY
@@ -1,3 +1,7 @@
+2009-08-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: add optional jpeg, jasper, tiff
+ * PRE_BUILD: add fix for gcc-4.4
+
2009-01-30 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: libquicktime and ffmpeg are mutually exclusive
* CONFIGURE, BUILD: added
diff --git a/graphics-libs/opencv/PRE_BUILD b/graphics-libs/opencv/PRE_BUILD
index cb1cdcc..90abccf 100755
--- a/graphics-libs/opencv/PRE_BUILD
+++ b/graphics-libs/opencv/PRE_BUILD
@@ -3,5 +3,6 @@ cd $SOURCE_DIRECTORY &&
# fix for recent ffmpeg
sed -i -e
's|ffmpeg/avc|libavcodec/avc|;s|ffmpeg/sw|libswscale/sw|;s|ffmpeg/avf|libavformat/avf|'
\
configure otherlibs/highgui/cvcap_ffmpeg.cpp
-
+# fix for gcc-4.4
+sed -i 's|^#elif$|#else|' cxcore/include/cxmisc.h
#patch -p0 < $SPELL_DIRECTORY/xxx.diff
diff --git a/libs/libdrizzle/DEPENDS b/libs/libdrizzle/DEPENDS
new file mode 100755
index 0000000..a5371c7
--- /dev/null
+++ b/libs/libdrizzle/DEPENDS
@@ -0,0 +1 @@
+optional_depends sqlite '' '' 'for example server'
diff --git a/libs/libdrizzle/DETAILS b/libs/libdrizzle/DETAILS
new file mode 100755
index 0000000..ecbc328
--- /dev/null
+++ b/libs/libdrizzle/DETAILS
@@ -0,0 +1,21 @@
+ SPELL=libdrizzle
+ VERSION=0.4
+ VX=`echo $VERSION | cut -c-3`
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE2=$SOURCE.asc
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]="http://launchpad.net/$SPELL/trunk/$VX/+download/$SOURCE";
+ SOURCE2_URL[0]="${SOURCE_URL[0]}.asc"
+ SOURCE_GPG=drizzle.gpg:$SOURCE.asc:UPSTREAM_KEY
+ SOURCE2_IGNORE=signature
+ WEB_SITE=https://launchpad.net/$SPELL
+ LICENSE[0]=GPL
+ ENTERED=20090819
+ KEYWORDS=""
+ SHORT="client and protocol library for the Drizzle projec"
+cat << EOF
+This is the the client and protocol library for the Drizzle project. The
server, drizzled, will
+use this as for the protocol library, as well as the client utilities and
any new projects that
+require low-level protocol communication (like proxies). Other language
interfaces (PHP
+extensions, SWIG, ...) should be built off of this interface.
+EOF
diff --git a/libs/libdrizzle/HISTORY b/libs/libdrizzle/HISTORY
new file mode 100644
index 0000000..8960278
--- /dev/null
+++ b/libs/libdrizzle/HISTORY
@@ -0,0 +1,4 @@
+2009-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.4
+ spell created
+
diff --git a/libs/libdrizzle/drizzle.gpg b/libs/libdrizzle/drizzle.gpg
new file mode 100644
index 0000000..86d86ed
Binary files /dev/null and b/libs/libdrizzle/drizzle.gpg differ
diff --git a/libs/protobuf/DEPENDS b/libs/protobuf/DEPENDS
new file mode 100755
index 0000000..03106a0
--- /dev/null
+++ b/libs/protobuf/DEPENDS
@@ -0,0 +1,3 @@
+depends g++ &&
+optional_depends "python" "" " "Python bindings"
+
diff --git a/libs/protobuf/DETAILS b/libs/protobuf/DETAILS
new file mode 100755
index 0000000..275247a
--- /dev/null
+++ b/libs/protobuf/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=protobuf
+ VERSION=2.2.0
+
SOURCE_HASH=sha512:b9ae5450fde3e322f8c3c617819b604ac360db845d46869623455fcb6b34b70beae573caa52863b402f53a6248867d3776dc8b6bc83325cc58964d9e5f81c96b
+ SOURCE=$SPELL-$VERSION.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=http://$SPELL.googlecode.com
+ SOURCE_URL[0]=http://$SPELL.googlecode.com/files/$SOURCE
+ LICENSE[0]=BSD
+ ENTERED=20090819
+ KEYWORDS=""
+ SHORT="encoding structured data"
+cat << EOF
+Protocol Buffers are a way of encoding structured data in an efficient yet
extensible format.
+Google uses Protocol Buffers for almost all of its internal RPC protocols
and file formats.
+EOF
diff --git a/libs/protobuf/HISTORY b/libs/protobuf/HISTORY
new file mode 100644
index 0000000..c633d12
--- /dev/null
+++ b/libs/protobuf/HISTORY
@@ -0,0 +1,4 @@
+2009-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.2.0
+ spell created
+
diff --git a/net/strongswan/DETAILS b/net/strongswan/DETAILS
index 5bd3e1a..15fcf48 100755
--- a/net/strongswan/DETAILS
+++ b/net/strongswan/DETAILS
@@ -1,5 +1,5 @@
SPELL=strongswan
- VERSION=4.3.2
+ VERSION=4.3.4
SOURCE=${SPELL}-${VERSION}.tar.bz2
SOURCE_URL[0]=http://download.strongswan.org/${SOURCE}
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
diff --git a/net/strongswan/HISTORY b/net/strongswan/HISTORY
index 5d0b78c..0875aa8 100644
--- a/net/strongswan/HISTORY
+++ b/net/strongswan/HISTORY
@@ -1,3 +1,7 @@
+2009-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 4.3.4
+ * swan.gpg: add key B34DBA77
+
2009-06-22 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 4.3.2
* DEPENDS: add libgcrypt, pkgconfig, openssh, openssl
diff --git a/net/strongswan/swan.gpg b/net/strongswan/swan.gpg
index 4e5aaf2..77dba10 100644
Binary files a/net/strongswan/swan.gpg and b/net/strongswan/swan.gpg differ
diff --git a/video-libs/libavc1394/HISTORY b/video-libs/libavc1394/HISTORY
index 6ebffd1..9b0b243 100644
--- a/video-libs/libavc1394/HISTORY
+++ b/video-libs/libavc1394/HISTORY
@@ -1,3 +1,6 @@
+2009-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * TRIGGERS: added
+
2006-05-22 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: updated to 0.5.3

diff --git a/video-libs/libavc1394/TRIGGERS b/video-libs/libavc1394/TRIGGERS
new file mode 100755
index 0000000..ccea655
--- /dev/null
+++ b/video-libs/libavc1394/TRIGGERS
@@ -0,0 +1 @@
+on_cast libraw1394 check_self
diff --git a/video-libs/xine-lib/DEPENDS b/video-libs/xine-lib/DEPENDS
index d9cf039..0f57a2d 100755
--- a/video-libs/xine-lib/DEPENDS
+++ b/video-libs/xine-lib/DEPENDS
@@ -27,6 +27,7 @@ optional_depends "libcaca" "--with-caca" "--without-caca"
"for colored ascii ar
optional_depends "libxcb" "--with-xcb" "--without-xcb" "Build XCB video
out plugins" &&

# input codecs
+optional_depends "jpeg" '' '' 'JPEG support' &&
optional_depends "flac" "" "" "for FLAC audio decoding" &&
optional_depends "libogg" "" "" "for OGG/OGM file support" &&
optional_depends "libvorbis" "" "" "for OGG/Vorbis audio support" &&
@@ -40,8 +41,8 @@ optional_depends "libdvdcss" "" "" "to play encrypted
DVDs" &&
optional_depends "speex" "" "" "for speech compression" &&
optional_depends "libmodplug" "" "" "for mod playback support" &&
optional_depends "imagemagick" \
- "--enable-imagemagick" \
- "--disable-imagemagick" \
+ "--with-imagemagick" \
+ "--without-imagemagick" \
"for image loader" &&

# input plugins
diff --git a/video-libs/xine-lib/HISTORY b/video-libs/xine-lib/HISTORY
index cfa9242..95039b0 100644
--- a/video-libs/xine-lib/HISTORY
+++ b/video-libs/xine-lib/HISTORY
@@ -1,3 +1,7 @@
+2009-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: fix imagemagick flags
+ add optional jpeg
+
2009-08-02 Arjan Bouter <abouter AT sourcemage.org>
* PROVIDES: added as totem backend provider

diff --git a/video/dvgrab/HISTORY b/video/dvgrab/HISTORY
index c65d788..637e660 100644
--- a/video/dvgrab/HISTORY
+++ b/video/dvgrab/HISTORY
@@ -1,3 +1,6 @@
+2009-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * TRIGGERS: added
+
2009-07-03 Treeve Jelbert <treeve AT sourcemage.org>
* PRE_BUILD, gcc44.patch added (upstream patch)
fixes compile with gcc-4.4.0
diff --git a/video/dvgrab/TRIGGERS b/video/dvgrab/TRIGGERS
new file mode 100755
index 0000000..ccea655
--- /dev/null
+++ b/video/dvgrab/TRIGGERS
@@ -0,0 +1 @@
+on_cast libraw1394 check_self



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (0200ff9a47c34dc6c8e0ed254c7dd52fe35f0919), Treeve Jelbert, 08/20/2009

Archive powered by MHonArc 2.6.24.

Top of Page