Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to devel-xorg-modular grimoire by Vlad Glagolev (97d9427d38157b5472dd253224d5e18236b26a62)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to devel-xorg-modular grimoire by Vlad Glagolev (97d9427d38157b5472dd253224d5e18236b26a62)
  • Date: Sun, 12 Jun 2011 08:22:45 -0500

GIT changes to devel-xorg-modular grimoire by Vlad Glagolev
<stealth AT sourcemage.org>:

ChangeLog | 3 +++
audio-creation/mhwaveedit/DETAILS | 1 +
audio-creation/mhwaveedit/HISTORY | 5 +++++
audio-creation/mhwaveedit/PRE_BUILD | 4 ++++
audio-creation/mhwaveedit/alsa.patch | 11 +++++++++++
dev/null |binary
graphics-libs/opencv/HISTORY | 3 +++
graphics-libs/opencv/PRE_BUILD | 7 +++++++
python-pypi/baker/DEPENDS | 2 ++
python-pypi/baker/DETAILS | 13 +++++++++++++
python-pypi/baker/HISTORY | 4 ++++
video-libs/libv4l/DETAILS | 6 +++---
video-libs/libv4l/HISTORY | 3 +++
video-libs/libv4l/v4l-utils-0.8.3.tar.bz2.sig | 0
14 files changed, 59 insertions(+), 3 deletions(-)

New commits:
commit fb3395c46d4c8569790bfa0b75ecbefbcb1ec0d8
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

mhwaveedit: fixed recording with alsa

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

python-pypi/baker-1.1: new spell

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

opencv - fix build with gcc-4.7

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

libv4l: => 0.8.4

diff --git a/ChangeLog b/ChangeLog
index 25a174e..9049502 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
2011-06-12 Vlad Glagolev <stealth AT sourcemage.org>
* groups: added 'tape' group (required at least for udev)

+2011-06-11 Treeve Jelbert <treeve AT sourcemage.org>
+ * python-pypi/baker: new spell, commandline args for python
+
2011-06-07 Arjan Bouter <abouter AT sourcemage.org>
* windowmanagers/i3: new spell, tiling windowmanager
* wm-addons: i3lock: new spell, improved screen locker
diff --git a/audio-creation/mhwaveedit/DETAILS
b/audio-creation/mhwaveedit/DETAILS
index f28fd42..3c3e2c2 100755
--- a/audio-creation/mhwaveedit/DETAILS
+++ b/audio-creation/mhwaveedit/DETAILS
@@ -1,5 +1,6 @@
SPELL=mhwaveedit
VERSION=1.4.21
+ PATCHLEVEL=1
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_URL[0]=http://download.gna.org/$SPELL/$SOURCE

SOURCE_HASH=sha512:9d4f12cae243812f58d90dab1a1cef86ed62c0a2948f417bf5cfa4213621426dbd86e2293d514fdcc440d726851bd22d7e0728e60c1547fb9203672070864304
diff --git a/audio-creation/mhwaveedit/HISTORY
b/audio-creation/mhwaveedit/HISTORY
index d3f1e76..1bc81b9 100644
--- a/audio-creation/mhwaveedit/HISTORY
+++ b/audio-creation/mhwaveedit/HISTORY
@@ -1,3 +1,8 @@
+2011-06-12 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * PRE_BUILD: added, to apply the patch
+ * alsa.patch: fixed recording with event-driven i/o turned off
+
2011-05-08 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.4.21

diff --git a/audio-creation/mhwaveedit/PRE_BUILD
b/audio-creation/mhwaveedit/PRE_BUILD
new file mode 100755
index 0000000..0186409
--- /dev/null
+++ b/audio-creation/mhwaveedit/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+patch -p0 < "$SPELL_DIRECTORY/alsa.ptch"
diff --git a/audio-creation/mhwaveedit/alsa.patch
b/audio-creation/mhwaveedit/alsa.patch
new file mode 100644
index 0000000..abc9a60
--- /dev/null
+++ b/audio-creation/mhwaveedit/alsa.patch
@@ -0,0 +1,11 @@
+--- src/sound-alsalib.c.orig 2011-05-08 02:40:52.000000000 +0400
++++ src/sound-alsalib.c 2011-06-12 17:20:28.262160147 +0400
+@@ -230,7 +230,7 @@
+ alsa_data.ready_func();
+ alsa_data.inside_ready_func = FALSE;
+ if (alsa_data.rw_call_count == i) return -1;
+- if (!alsa_data.eventdriv && alsa_output_want_data()) {
++ if (!alsa_data.eventdriv && alsa_data.whand!=NULL &&
alsa_output_want_data()) {
+ if (alsa_data.csource == NULL)
+ alsa_data.csource =
mainloop_constant_source_add(csource_func,NULL,FALSE);
+ mainloop_constant_source_enable(alsa_data.csource,TRUE);
diff --git a/graphics-libs/opencv/HISTORY b/graphics-libs/opencv/HISTORY
index b39405d..567407c 100644
--- a/graphics-libs/opencv/HISTORY
+++ b/graphics-libs/opencv/HISTORY
@@ -1,3 +1,6 @@
+2011-06-12 Treeve Jelbert <treeve AT sourcemage.org>
+ * PRE_BUILD: added, fix compile with gcc-4.7
+
2010-12-05 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.2.0
* DEPENDS: add bzip2, optional libpng,qt4, numpy, eigen2
diff --git a/graphics-libs/opencv/PRE_BUILD b/graphics-libs/opencv/PRE_BUILD
new file mode 100755
index 0000000..da010f2
--- /dev/null
+++ b/graphics-libs/opencv/PRE_BUILD
@@ -0,0 +1,7 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+# fix for gcc-4.7
+sed -i '/\<complex/a \
+#include <cstddef>
+' modules/core/include/opencv2/core/core.hpp
+#patch -p0 < $SPELL_DIRECTORY/xxx.diff
diff --git a/python-pypi/baker/DEPENDS b/python-pypi/baker/DEPENDS
new file mode 100755
index 0000000..84a0acc
--- /dev/null
+++ b/python-pypi/baker/DEPENDS
@@ -0,0 +1,2 @@
+depends python &&
+depends SETUPTOOLS
diff --git a/python-pypi/baker/DETAILS b/python-pypi/baker/DETAILS
new file mode 100755
index 0000000..7737c89
--- /dev/null
+++ b/python-pypi/baker/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=baker
+ SPELLX=Baker
+ VERSION=1.1
+
SOURCE_HASH=sha512:0c3111a82392570218e427ab22aaad082feb6c3551e887605db81cd5e48ba79d9bc1e6fb70528d13543d9ea32470394ec471dcab7ef8befc9345cee4637cd4e0
+ SOURCE=$SPELLX-$VERSION.tar.gz
+ SOURCE_URL[0]=http://pypi.python.org/packages/source/B/$SPELLX/$SOURCE
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELLX-$VERSION"
+ WEB_SITE=http://pypi.python.org/pypi/Baker
+ LICENSE[0]='APACHE'
+ SHORT='Easy, powerful access to Python functions from the command
line'
+cat << EOF
+Easy, powerful access to Python functions from the command line
+EOF
diff --git a/python-pypi/baker/HISTORY b/python-pypi/baker/HISTORY
new file mode 100644
index 0000000..c8a19ca
--- /dev/null
+++ b/python-pypi/baker/HISTORY
@@ -0,0 +1,4 @@
+2011-06-11 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.1
+ spell created
+
diff --git a/video-libs/libv4l/DETAILS b/video-libs/libv4l/DETAILS
index 0fc25eb..865a00e 100755
--- a/video-libs/libv4l/DETAILS
+++ b/video-libs/libv4l/DETAILS
@@ -1,9 +1,9 @@
SPELL=libv4l
SPELLX=v4l-utils
- VERSION=0.8.3
-#
SOURCE_HASH=sha512:f89f33c525a0f9afbd1da44bf45a9b455abd411de50ab8267a9953fc87263189b5917fffe4340f26372665e3370411b0ef149ae766aceb7577de53c6c0ba7b5f
+ VERSION=0.8.4
+
SOURCE_HASH=sha512:12a0423c8f3c9c606968d81804f2d95838f1dbbb7431b8902e5a6093868748fb9374cd01c8a82f8a9511d426ba8062a1d0dc39ee5928dff0269ad619e94638f9
SOURCE="${SPELLX}-${VERSION}.tar.bz2"
- SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
+# SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
SOURCE_URL[0]=http://linuxtv.org/downloads/$SPELLX/$SOURCE
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
WEB_SITE=http://freshmeat.net/projects/libv4l
diff --git a/video-libs/libv4l/HISTORY b/video-libs/libv4l/HISTORY
index 4616266..2cd6b21 100644
--- a/video-libs/libv4l/HISTORY
+++ b/video-libs/libv4l/HISTORY
@@ -1,3 +1,6 @@
+2011-06-11 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.8.4
+
2011-05-12 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 0.8.3
Now works with Linux headers 2.6.38+
diff --git a/video-libs/libv4l/v4l-utils-0.8.3.tar.bz2.sig
b/video-libs/libv4l/v4l-utils-0.8.3.tar.bz2.sig
deleted file mode 100644
index 1475b4d..0000000
Binary files a/video-libs/libv4l/v4l-utils-0.8.3.tar.bz2.sig and /dev/null
differ



  • [SM-Commit] GIT changes to devel-xorg-modular grimoire by Vlad Glagolev (97d9427d38157b5472dd253224d5e18236b26a62), Vlad Glagolev, 06/12/2011

Archive powered by MHonArc 2.6.24.

Top of Page