Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (28ce506b3ee30491959d930f902adc035aa316b7)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (28ce506b3ee30491959d930f902adc035aa316b7)
  • Date: Fri, 27 Jan 2017 18:57:20 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

audio-libs/taglib/DETAILS | 4 +-
audio-libs/taglib/HISTORY | 3 +
audio-libs/taglib/taglib-1.11.1.tar.gz.sig |binary
audio-players/ripperx/BUILD | 2 -
audio-players/ripperx/DEPENDS | 1
audio-players/ripperx/DETAILS | 9 ++---
audio-players/ripperx/HISTORY | 10 ++++++
audio-players/ripperx/PRE_BUILD | 2 +
audio-players/ripperx/gtk_cpp_workaround.h | 39
++++++++++++++++++++++++
audio-players/ripperx/ripperx-2.8.0.tar.bz2.sig |binary
10 files changed, 62 insertions(+), 8 deletions(-)

New commits:
commit 28ce506b3ee30491959d930f902adc035aa316b7
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ripperx: Updated to 2.8.0

Remove outdated UPDATED field.
SOURCE name now lowercase, use .bz2.
Depends on taglib
Missing gtk_cpp_workaround.h, see
https://sourceforge.net/p/ripperx/bugs/64
Add "-lz" to LIBS, see https://sourceforge.net/p/ripperx/bugs/66

commit d8c42d405e2df8057cfba99a3b514a319121ba3c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

taglib: Updated to 1.11.1

diff --git a/audio-libs/taglib/DETAILS b/audio-libs/taglib/DETAILS
index 4e32da9..142d286 100755
--- a/audio-libs/taglib/DETAILS
+++ b/audio-libs/taglib/DETAILS
@@ -1,7 +1,7 @@
SPELL=taglib
- VERSION=1.10
-
SOURCE_HASH=sha512:2257918743507fffae01b961c714aa8523d3a8c0c921af699b0160c2414b1c930778f19976965e3197571672120a6040dbb13a83304b70290970660abcf27820
+ VERSION=1.11.1
SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME"
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://taglib.github.io/releases/$SOURCE
WEB_SITE=https://taglib.github.io/
diff --git a/audio-libs/taglib/HISTORY b/audio-libs/taglib/HISTORY
index e0d4b8d..24b82f7 100644
--- a/audio-libs/taglib/HISTORY
+++ b/audio-libs/taglib/HISTORY
@@ -1,3 +1,6 @@
+2017-01-27 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 1.11.1
+
2016-04-14 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: fix typo

diff --git a/audio-libs/taglib/taglib-1.11.1.tar.gz.sig
b/audio-libs/taglib/taglib-1.11.1.tar.gz.sig
new file mode 100644
index 0000000..e89681b
Binary files /dev/null and b/audio-libs/taglib/taglib-1.11.1.tar.gz.sig differ
diff --git a/audio-players/ripperx/BUILD b/audio-players/ripperx/BUILD
index a908acd..a05ceaa 100755
--- a/audio-players/ripperx/BUILD
+++ b/audio-players/ripperx/BUILD
@@ -1 +1 @@
-LIBS+=" -lm" default_build
+LIBS+=" -lm -lz" default_build
diff --git a/audio-players/ripperx/DEPENDS b/audio-players/ripperx/DEPENDS
index f6dc7d2..d07fe4b 100755
--- a/audio-players/ripperx/DEPENDS
+++ b/audio-players/ripperx/DEPENDS
@@ -3,6 +3,7 @@ depends glib2 &&
depends gettext &&
depends id3lib &&
depends cdparanoia &&
+depends taglib &&

if [ "$MP3ENC" != "none" ]; then
depends $MP3ENC
diff --git a/audio-players/ripperx/DETAILS b/audio-players/ripperx/DETAILS
index 34fd84c..8cafbe5 100755
--- a/audio-players/ripperx/DETAILS
+++ b/audio-players/ripperx/DETAILS
@@ -1,12 +1,11 @@
SPELL=ripperx
- VERSION=2.7.3
- SOURCE=ripperX-$VERSION.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/ripperX-$VERSION
+ VERSION=2.8.0
+ SOURCE=$SPELL-$VERSION.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION

SOURCE_URL[0]=http://downloads.sourceforge.net/sourceforge/$SPELL/$SPELL/$VERSION/$SOURCE
-
SOURCE_HASH=sha512:fad4d8ee5e7ea37608b827230446f213c871d425920d0ffae5b0151e2270b36ca67156a78a530a3267141f8c5d0577a17647e4342468662472ea0f88bda69cea
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME"
WEB_SITE=http://sourceforge.net/projects/ripperx/
ENTERED=20020116
- UPDATED=20030330
LICENSE[0]=GPL
KEYWORDS="players audio"
SHORT="RipperX is a program to rip CD audio and encode mp3s"
diff --git a/audio-players/ripperx/HISTORY b/audio-players/ripperx/HISTORY
index ac284e5..f06d7b4 100644
--- a/audio-players/ripperx/HISTORY
+++ b/audio-players/ripperx/HISTORY
@@ -1,3 +1,13 @@
+2017-01-27 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 2.8.0
+ Remove outdated UPDATED field.
+ SOURCE name now lowercase, use .bz2.
+ * DEPENDS: Depends on taglib
+ * PRE_BUILD: Copy gtk_cpp_workaround.h
+ * gtk_cpp_workaround.h: Missing, see
https://sourceforge.net/p/ripperx/bugs/64
+ Added from
https://sourceforge.net/p/ripperx/git/ci/master/tree/src/gtk_cpp_workaround.h
+ * BUILD: Add "-lz" to LIBS, see
https://sourceforge.net/p/ripperx/bugs/66
+
2015-05-25 Thomas Orgis <sobukus AT sourcemage.org>
* DETAILS: remove SOURCEFORGE_URL usage (automated)

diff --git a/audio-players/ripperx/PRE_BUILD b/audio-players/ripperx/PRE_BUILD
new file mode 100755
index 0000000..24a5e62
--- /dev/null
+++ b/audio-players/ripperx/PRE_BUILD
@@ -0,0 +1,2 @@
+default_pre_build &&
+cp "${SPELL_DIRECTORY}"/gtk_cpp_workaround.h "${SOURCE_DIRECTORY}"/src
diff --git a/audio-players/ripperx/gtk_cpp_workaround.h
b/audio-players/ripperx/gtk_cpp_workaround.h
new file mode 100644
index 0000000..99a2eaf
--- /dev/null
+++ b/audio-players/ripperx/gtk_cpp_workaround.h
@@ -0,0 +1,39 @@
+#ifndef gtk_cpp_workaround_h
+#define gtk_cpp_workaround_h
+#ifdef __cplusplus
+//proto is wrong, override here for C++
+namespace
+{
+
+inline void gtk_table_attach (GtkTable *table,
+ GtkWidget *child,
+ guint left_attach,
+ guint right_attach,
+ guint top_attach,
+ guint bottom_attach,
+ //GtkAttachOptions xoptions,
+ //GtkAttachOptions yoptions,
+ guint xoptions, guint yoptions,
+ guint xpadding,
+ guint ypadding
+ )
+{
+ gtk_table_attach(table,
+ child,
+ left_attach,
+ right_attach,
+ top_attach,
+ bottom_attach,
+ (GtkAttachOptions)xoptions,
+ (GtkAttachOptions)yoptions,
+ xpadding,
+ ypadding
+ );
+
+ };
+
+
+}
+
+#endif
+#endif
diff --git a/audio-players/ripperx/ripperx-2.8.0.tar.bz2.sig
b/audio-players/ripperx/ripperx-2.8.0.tar.bz2.sig
new file mode 100644
index 0000000..bbfc531
Binary files /dev/null and b/audio-players/ripperx/ripperx-2.8.0.tar.bz2.sig
differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (28ce506b3ee30491959d930f902adc035aa316b7), Eric Sandall, 01/27/2017

Archive powered by MHonArc 2.6.24.

Top of Page