Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (660e6a08fef5c54222db9e48d58bd2f9d58cb94a)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Sukneet Basuta <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (660e6a08fef5c54222db9e48d58bd2f9d58cb94a)
  • Date: Tue, 10 Apr 2012 23:12:08 -0500

GIT changes to master grimoire by Sukneet Basuta <sukneet AT sourcemage.org>:

audio-players/deadbeef/CONFIGURE | 1
audio-players/deadbeef/DEPENDS | 72
++++++++++++++++++++++----------
audio-players/deadbeef/DETAILS | 4 -
audio-players/deadbeef/HISTORY | 10 ++++
audio-players/deadbeef/PRE_BUILD | 3 +
audio-players/deadbeef/libzip.patch | 11 ++++
dev/null |binary
graphics/mcomix/DETAILS | 2
graphics/mcomix/HISTORY | 3 +
graphics/mcomix/mcomix-0.96.tar.bz2.sig | 0
graphics/mcomix/mcomix-0.98.tar.bz2.sig |binary
video/ffmpeg-svn/DETAILS | 2
video/ffmpeg-svn/HISTORY | 3 +
windowmanagers/i3/DETAILS | 2
windowmanagers/i3/HISTORY | 3 +
wm-addons/i3lock/DETAILS | 2
wm-addons/i3lock/HISTORY | 3 +
wm-addons/i3status/DETAILS | 2
wm-addons/i3status/HISTORY | 3 +
19 files changed, 98 insertions(+), 28 deletions(-)

New commits:
commit 660e6a08fef5c54222db9e48d58bd2f9d58cb94a
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

ffmpeg-svn: Change SOURCE_URL[0] to git, the official repo
This conflicts with the name, but I don't think we have a way to properly
rename spells yet.

commit 7e968d8844db1c549d6d5ac574b4087b5222bd86
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

i3status: => 2.4

commit e8c5e247e2e419953d7fe942b72409b0d278dc19
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

i3lock: => 2.4

commit 99f89bd9a3d94acc42b1b4706559479380971b92
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

i3: => 4.1.2

commit dd7705acbf463a51c90d0c8daec70261ee5d6a94
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

mcomix: => 0.98

commit 5be6f654db50c6ad0ec89f0a640059b160bb792c
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

deadbeef: => 0.5.2
DEPENDS: added depends for gtk+3 for gtk+2
added optional_depends for alsa, pulseaudio,
faad2, libzip, libsamplerate, libc11, & imlib2
added proper flags where applicable
CONFIGURE: Added for gtk+3 option
PRE_BUILD: Added to apply patch
libzip.patch: added to include proper path for zipconf.h

diff --git a/audio-players/deadbeef/CONFIGURE
b/audio-players/deadbeef/CONFIGURE
new file mode 100755
index 0000000..6c9f390
--- /dev/null
+++ b/audio-players/deadbeef/CONFIGURE
@@ -0,0 +1 @@
+config_query GTK3 "Build with experimental GTK+3 support?" n
diff --git a/audio-players/deadbeef/DEPENDS b/audio-players/deadbeef/DEPENDS
index 64b13b4..c0589f9 100755
--- a/audio-players/deadbeef/DEPENDS
+++ b/audio-players/deadbeef/DEPENDS
@@ -1,30 +1,52 @@
-depends gtk+2 &&
-depends libsamplerate &&
-depends alsa-lib &&
+if [[ "$GTK3" == y ]]; then
+ depends gtk+3 "--enable-gtk3"
+else
+ depends gtk+2
+fi &&
+optional_depends alsa-lib \
+ "--enable-alsa" \
+ "--disable-alsa" \
+ "For alsa output plugin" &&
+optional_depends pulseaudio \
+ "--enable-pulse" \
+ "--disable-pulse" \
+ "For PulseAudio output plugin" &&
optional_depends libvorbis \
- "" \
- "" \
+ "--enable-vorbis" \
+ "--disable-vorbis" \
"For ogg vorbis playback" &&
optional_depends libmad \
- "" \
- "" \
+ "--enable-mad" \
+ "--disable-mad" \
"For mp1/2/3 playback" &&
optional_depends flac \
- "" \
- "" \
+ "--enable-flac" \
+ "--disable-flac" \
"For flac playback" &&
-optional_depends curl \
- "" \
- "" \
- "For lastfm scrobbler, shoutcast, icecast, podcast support"
&&
optional_depends wavpack \
- "" \
- "" \
+ "--enable-wavpack" \
+ "--disable-wavpack" \
"For wv playback" &&
optional_depends libsndfile \
- "" \
- "" \
+ "--enable-wavpack" \
+ "--disable-wavpack" \
"For wav playback" &&
+optional_depends LIBAVCODEC \
+ "--enable-ffmpeg" \
+ "--disable-ffmpeg" \
+ "For wma, mpc, shn, aa3, oma, ac3, etc" &&
+optional_depends faad2 \
+ "--enable-aac" \
+ "--disable-aac" \
+ "For aac playback" &&
+optional_depends libzip \
+ "--enable-vfs-zip" \
+ "--disable-vfs-zip" \
+ "To play files from zip files without unpacking" &&
+optional_depends libsamplerate \
+ "--enable-src" \
+ "--disable-src" \
+ "For resampler plugin" &&
optional_depends libcdio \
"" \
"" \
@@ -33,7 +55,15 @@ optional_depends libcddb \
"" \
"" \
"For audio cd playback" &&
-optional_depends LIBAVCODEC \
- "" \
- "" \
- "For aac, mpc, shn, aa3, oma, ac3, etc"
+optional_depends curl \
+ "--enable-vfs-curl --enable-lfm" \
+ "--disable-vfs-curl --disable-lfm" \
+ "For lastfm scrobbler, shoutcast, icecast, podcast support"
&&
+optional_depends libx11 \
+ "--enable-hotkeys" \
+ "--disable-hotkeys" \
+ "For global hotkeys plugin" &&
+optional_depends imlib2 \
+ "--enable-artwork-imlib2" \
+ "--disable-artwork-imlib2" \
+ "For artwork plugin"
diff --git a/audio-players/deadbeef/DETAILS b/audio-players/deadbeef/DETAILS
index b9bc7dc..81c5a04 100755
--- a/audio-players/deadbeef/DETAILS
+++ b/audio-players/deadbeef/DETAILS
@@ -1,8 +1,8 @@
SPELL=deadbeef
- VERSION=0.5.1
+ VERSION=0.5.2
SOURCE=${SPELL}-${VERSION}.tar.bz2
SOURCE_URL[0]=${SOURCEFORGE_URL}/${SPELL}/${SOURCE}
-
SOURCE_HASH=sha512:49c06b6a208d69ebc5e252289da998c64fdf441f2c52457884ede446b0e2346cd1b5163cf065f5fd85565c563b1b673462d8ded855b60deeb51d1d0b8b8d8327
+
SOURCE_HASH=sha512:8b0bd83f93d87116a4a6bc42ec4bc1e1e9debf57b6fec436b02d030a7b19646efce684e1996edfb957ec03ef6118e700ebdcf3f9d067e5316d94fbe2ff78e7ea
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://deadbeef.sourceforge.net/";
LICENSE[0]="GPLv2"
diff --git a/audio-players/deadbeef/HISTORY b/audio-players/deadbeef/HISTORY
index 70f6105..f1026c4 100644
--- a/audio-players/deadbeef/HISTORY
+++ b/audio-players/deadbeef/HISTORY
@@ -1,3 +1,13 @@
+2012-04-09 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: updated spell to 0.5.2
+ * DEPENDS: added depends for gtk+3 for gtk+2
+ added optional_depends for alsa, pulseaudio,
+ faad2, libzip, libsamplerate, libc11, & imlib2
+ added proper flags where applicable
+ * CONFIGURE: Added for gtk+3 option
+ * PRE_BUILD: Added to apply patch
+ * libzip.patch: added to include proper path for zipconf.h
+
2011-06-30 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.5.1

diff --git a/audio-players/deadbeef/PRE_BUILD
b/audio-players/deadbeef/PRE_BUILD
new file mode 100755
index 0000000..c1bd1a5
--- /dev/null
+++ b/audio-players/deadbeef/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+#include proper path for zipconf.h
+patch -p0 -d $SOURCE_DIRECTORY < $SPELL_DIRECTORY/libzip.patch
diff --git a/audio-players/deadbeef/libzip.patch
b/audio-players/deadbeef/libzip.patch
new file mode 100644
index 0000000..75dd988
--- /dev/null
+++ b/audio-players/deadbeef/libzip.patch
@@ -0,0 +1,11 @@
+--- plugins/vfs_zip/Makefile.in.o 2012-04-09 22:06:09.071334093 -0400
++++ plugins/vfs_zip/Makefile.in 2012-04-09 22:00:05.525321540 -0400
+@@ -81,7 +81,7 @@
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+ $(vfs_zip_la_LDFLAGS) $(LDFLAGS) -o $@
+ @HAVE_VFS_ZIP_TRUE@am_vfs_zip_la_rpath = -rpath $(pkglibdir)
+-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I/usr/lib/libzip/include
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
+ am__mv = mv -f
diff --git a/graphics/mcomix/DETAILS b/graphics/mcomix/DETAILS
index 21f7ac0..193f8c6 100755
--- a/graphics/mcomix/DETAILS
+++ b/graphics/mcomix/DETAILS
@@ -1,5 +1,5 @@
SPELL=mcomix
- VERSION=0.96
+ VERSION=0.98
SOURCE="${SPELL}-${VERSION}.tar.bz2"

SOURCE_URL[0]=http://sourceforge.net/projects/${SPELL}/files/MComix-${VERSION}/${SOURCE}
SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
diff --git a/graphics/mcomix/HISTORY b/graphics/mcomix/HISTORY
index 86c837e..bf8d5ff 100644
--- a/graphics/mcomix/HISTORY
+++ b/graphics/mcomix/HISTORY
@@ -1,3 +1,6 @@
+2012-04-09 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: updated spell to 0.98
+
2012-01-04 Sukneet Basuta <sukneet AT sourcemage.org>
* DETAILS: updated spell to 0.96

diff --git a/graphics/mcomix/mcomix-0.96.tar.bz2.sig
b/graphics/mcomix/mcomix-0.96.tar.bz2.sig
deleted file mode 100644
index 7f35a77..0000000
Binary files a/graphics/mcomix/mcomix-0.96.tar.bz2.sig and /dev/null differ
diff --git a/graphics/mcomix/mcomix-0.98.tar.bz2.sig
b/graphics/mcomix/mcomix-0.98.tar.bz2.sig
new file mode 100644
index 0000000..be44aac
Binary files /dev/null and b/graphics/mcomix/mcomix-0.98.tar.bz2.sig differ
diff --git a/video/ffmpeg-svn/DETAILS b/video/ffmpeg-svn/DETAILS
index 28158d5..5ebbe77 100755
--- a/video/ffmpeg-svn/DETAILS
+++ b/video/ffmpeg-svn/DETAILS
@@ -7,7 +7,7 @@ fi
FORCE_DOWNLOAD=on
SOURCE=$SPELL.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
- SOURCE_URL[0]=svn://svn.mplayerhq.hu/ffmpeg/trunk:$SPELL
+ SOURCE_URL[0]=git://source.ffmpeg.org/ffmpeg.git:$SPELL
SOURCE_IGNORE=volatile
#case $FFAMR in
# none);;
diff --git a/video/ffmpeg-svn/HISTORY b/video/ffmpeg-svn/HISTORY
index 23c228d..b241054 100644
--- a/video/ffmpeg-svn/HISTORY
+++ b/video/ffmpeg-svn/HISTORY
@@ -1,3 +1,6 @@
+2012-04-11 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: change source URL to git, the official repo
+
2011-09-25 Ismael Luceno <ismael AT sourcemage.org>
* PREPARE: Use prepare_select_branch
* DOWNLOAD: Remove, sorcery supports Subversion URLs now
diff --git a/windowmanagers/i3/DETAILS b/windowmanagers/i3/DETAILS
index 6c5ea8b..c61498a 100755
--- a/windowmanagers/i3/DETAILS
+++ b/windowmanagers/i3/DETAILS
@@ -1,5 +1,5 @@
SPELL=i3
- VERSION=4.1.1
+ VERSION=4.1.2
SOURCE="${SPELL}-${VERSION}.tar.bz2"
SOURCE2=$SOURCE.asc
SOURCE_URL[0]=http://${SPELL}wm.org/downloads/${SOURCE}
diff --git a/windowmanagers/i3/HISTORY b/windowmanagers/i3/HISTORY
index 23c3079..7495a30 100644
--- a/windowmanagers/i3/HISTORY
+++ b/windowmanagers/i3/HISTORY
@@ -1,3 +1,6 @@
+2012-04-09 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: updated spell to 4.1.2
+
2012-01-05 Sukneet Basuta <sukneet AT sourcemage.org>
* DEPENDS: added depends xcb-util-keysyms
and xcb-util-wm
diff --git a/wm-addons/i3lock/DETAILS b/wm-addons/i3lock/DETAILS
index f08d31e..c80a163 100755
--- a/wm-addons/i3lock/DETAILS
+++ b/wm-addons/i3lock/DETAILS
@@ -1,5 +1,5 @@
SPELL=i3lock
- VERSION=2.2
+ VERSION=2.4
SOURCE="${SPELL}-${VERSION}.tar.bz2"
SOURCE2=$SOURCE.asc
SOURCE_URL[0]=http://i3wm.org/${SPELL}/${SOURCE}
diff --git a/wm-addons/i3lock/HISTORY b/wm-addons/i3lock/HISTORY
index ee08439..2227530 100644
--- a/wm-addons/i3lock/HISTORY
+++ b/wm-addons/i3lock/HISTORY
@@ -1,3 +1,6 @@
+2012-04-09 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: updated spell to 2.4
+
2012-01-05 Sukneet Basuta <sukneet AT sourcemage.org>
* DEPENDS: added depends xcb-util-image
and xcb-util-keysyms
diff --git a/wm-addons/i3status/DETAILS b/wm-addons/i3status/DETAILS
index fb0ff0b..886031d 100755
--- a/wm-addons/i3status/DETAILS
+++ b/wm-addons/i3status/DETAILS
@@ -1,5 +1,5 @@
SPELL=i3status
- VERSION=2.3
+ VERSION=2.4
SOURCE="${SPELL}-${VERSION}.tar.bz2"
SOURCE2=$SOURCE.asc
SOURCE_URL[0]=http://i3wm.org/${SPELL}/${SOURCE}
diff --git a/wm-addons/i3status/HISTORY b/wm-addons/i3status/HISTORY
index a3af306..52ca5cf 100644
--- a/wm-addons/i3status/HISTORY
+++ b/wm-addons/i3status/HISTORY
@@ -1,3 +1,6 @@
+2012-04-09 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: updated spell to 2.4
+
2011-11-06 Sukneet Basuta <sukneet AT sourcemage.org>
* DETAILS, DEPENDS, BUILD: spell created
* 4AC8EE1D.gpg: added gpg keyring



  • [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (660e6a08fef5c54222db9e48d58bd2f9d58cb94a), Sukneet Basuta, 04/11/2012

Archive powered by MHonArc 2.6.24.

Top of Page