Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-rc-0.13 grimoire by Eric Sandall (6413b5de22ae252c40fa1518f48f2a7298fd8c54)

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 stable-rc-0.13 grimoire by Eric Sandall (6413b5de22ae252c40fa1518f48f2a7298fd8c54)
  • Date: Tue, 7 Aug 2007 22:30:54 -0500

GIT changes to stable-rc-0.13 grimoire by Eric Sandall
<sandalle AT sourcemage.org>:

ChangeLog | 4 ++++
audio-libs/libofa/DEPENDS | 4 ++++
audio-libs/libofa/DETAILS | 24 ++++++++++++++++++++++++
audio-libs/libofa/HISTORY | 5 +++++
audio-libs/libofa/PRE_BUILD | 3 +++
audio-libs/libofa/tnt.diff | 36 ++++++++++++++++++++++++++++++++++++
audio-libs/libtunepimp/DEPENDS | 4 ++--
audio-libs/libtunepimp/DETAILS | 4 ++--
audio-libs/libtunepimp/HISTORY | 4 ++++
9 files changed, 84 insertions(+), 4 deletions(-)

New commits:
commit 6413b5de22ae252c40fa1518f48f2a7298fd8c54
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libofa-0.9.3

commit 87404c1f8aa63a57bc9344f170417b1ef46be7d0
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libtunepimp-0.5.3
(cherry picked from commit 3bc6ceb5cb0ec4f1c1a70b4c34acb5baefe5fe8c)

diff --git a/ChangeLog b/ChangeLog
index f213871..bf06fa4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-09 Treeve Jelbert <treeve AT sourcemage.org>
+ * audio-libs/libofa: new spell : music fingerprints
+ needed by latet libtunepimp
+
2007-07-30 Juuso Alasuutari <iuso AT sourcemage.org>
* security/zzuf: New spell, an application input fuzzer.

diff --git a/audio-libs/libofa/DEPENDS b/audio-libs/libofa/DEPENDS
new file mode 100755
index 0000000..216a760
--- /dev/null
+++ b/audio-libs/libofa/DEPENDS
@@ -0,0 +1,4 @@
+depends g++ &&
+depends expat &&
+depends curl &&
+depends fftw
diff --git a/audio-libs/libofa/DETAILS b/audio-libs/libofa/DETAILS
new file mode 100755
index 0000000..d78cbc9
--- /dev/null
+++ b/audio-libs/libofa/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=libofa
+ VERSION=0.9.3
+
SOURCE_HASH=sha512:058fb43ea296325d2f7ad1762e1fd3f2ad772754b5d53dbaa1c5cd91ac5041ef82c7ea9ac580825e2391fa7db6803ff7fd5b24faf319280211a4641516126967
+ SOURCE=$SPELL-$VERSION.tar.gz
+# SOURCE2=$SOURCE.sig
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://www.musicip.com/dns/files/$SOURCE
+# SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
+# SOURCE_GPG=gnu.gpg:$SOURCE.sig:UPSTREAM_KEY
+# SOURCE2_IGNORE=signature
+ WEB_SITE=http://www.musicip.com
+# WEB_SITE=http://search.cpan.org/search?query=$SPELL
+# SOURCE_URL[0]=http://.../$SOURCE
+# SOURCE_URL[0]=$WEB_SITE/$SOURCE
+ LICENSE[0]=GPL
+ ENTERED=20070708
+ KEYWORDS="sound"
+ SHORT="acoustic fingerprint"
+cat << EOF
+Open Fingerprint Architecture normalizes, extracts frequencies, and creates
+an array representing the frequency data in an audio file.
+This data-chunk (so called acoustic fingerprint) was designed for use with
+the MusicDNS service.
+EOF
diff --git a/audio-libs/libofa/HISTORY b/audio-libs/libofa/HISTORY
new file mode 100644
index 0000000..bc6e88f
--- /dev/null
+++ b/audio-libs/libofa/HISTORY
@@ -0,0 +1,5 @@
+2007-08-03 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.9.3
+ * PRE_BUILD, tnt.diff: apply upstream patch
+ spell created
+
diff --git a/audio-libs/libofa/PRE_BUILD b/audio-libs/libofa/PRE_BUILD
new file mode 100755
index 0000000..fe8ace5
--- /dev/null
+++ b/audio-libs/libofa/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch -p0 < $SPELL_DIRECTORY/tnt.diff
diff --git a/audio-libs/libofa/tnt.diff b/audio-libs/libofa/tnt.diff
new file mode 100644
index 0000000..57425a1
--- /dev/null
+++ b/audio-libs/libofa/tnt.diff
@@ -0,0 +1,36 @@
+--- lib/JAMA/tnt_math_utils.h 2007-08-07 23:11:47.000000000 +0200
++++ tnt_math_utils.h 2007-08-07 23:03:47.000000000 +0200
+@@ -19,6 +19,16 @@
+
+ namespace TNT
+ {
++
++/**
++ @returns the absolute value of a real (no-complex) scalar.
++*/
++template <class Real>
++Real abs(const Real &a)
++{
++ return (a > 0 ? a : -a);
++}
++
+ /**
+ @returns hypotenuse of real (non-complex) scalars a and b by
+ avoiding underflow/overflow
+@@ -55,16 +65,7 @@
+ return a > b ? a : b;
+ }
+ */
+-
+-/**
+- @returns the absolute value of a real (no-complex) scalar.
+-*/
+-template <class Real>
+-Real abs(const Real &a)
+-{
+- return (a > 0 ? a : -a);
+ }
+
+-}
+ #endif
+ /* MATH_UTILS_H */
diff --git a/audio-libs/libtunepimp/DEPENDS b/audio-libs/libtunepimp/DEPENDS
index 0b8a050..c9bcca1 100755
--- a/audio-libs/libtunepimp/DEPENDS
+++ b/audio-libs/libtunepimp/DEPENDS
@@ -1,8 +1,8 @@
depends libmusicbrainz &&
if [[ "${LIBTUNEPIMP_PYTHON}" == "y" ]]
then depends python
-fi &&
-
+fi &&
+depends libofa &&
optional_depends libmad "" "" "mp3 support?" &&
optional_depends libvorbis "" "" "ogg support?" &&
optional_depends flac "" "" "FLAC support?" &&
diff --git a/audio-libs/libtunepimp/DETAILS b/audio-libs/libtunepimp/DETAILS
index 22036fb..7ada868 100755
--- a/audio-libs/libtunepimp/DETAILS
+++ b/audio-libs/libtunepimp/DETAILS
@@ -1,8 +1,8 @@
SPELL=libtunepimp
- VERSION=0.4.2
+ VERSION=0.5.3
+
SOURCE_HASH=sha512:77529a25148d12a6e269aa0986b09335a9158a7bdea698eaebdfbea775d4812cb4409d2c5119c84ffbcafa98adaad37345f3e58da63df3fabc257fd5317a4d47
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[1]=ftp://ftp.musicbrainz.org/pub/musicbrainz/$SOURCE
-
SOURCE_HASH=sha512:bdc15a0bea538f21cce2d07ea0725923064c05d674d8b05060434b8248207a1a06c8094027dabb8154d1c13ffcb8c7b4556e6eeabcbc958efe52d8935b0452c2
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
WEB_SITE=http://musicbrainz.org/docs/tunepimp/index.html
ENTERED=20051105
diff --git a/audio-libs/libtunepimp/HISTORY b/audio-libs/libtunepimp/HISTORY
index a3a837b..d41bb53 100644
--- a/audio-libs/libtunepimp/HISTORY
+++ b/audio-libs/libtunepimp/HISTORY
@@ -1,3 +1,7 @@
+2007-08-02 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.5.3
+ * DEPENDS: add libofa
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.




  • [SM-Commit] GIT changes to stable-rc-0.13 grimoire by Eric Sandall (6413b5de22ae252c40fa1518f48f2a7298fd8c54), Eric Sandall, 08/08/2007

Archive powered by MHonArc 2.6.24.

Top of Page