summaryrefslogtreecommitdiff
path: root/audio/musicbrainz
diff options
context:
space:
mode:
authorrxg <rxg@pkgsrc.org>2006-01-02 15:52:01 +0000
committerrxg <rxg@pkgsrc.org>2006-01-02 15:52:01 +0000
commitbc23bfb57adb5b50b3ea5738b87455103a6241c7 (patch)
treecad70292d202ce071d02ccb635e48acb6ab5496b /audio/musicbrainz
parentbc277bccbc9a152d63f240cf4255257a761cd317 (diff)
downloadpkgsrc-bc23bfb57adb5b50b3ea5738b87455103a6241c7.tar.gz
Updated musicbrainz to 2.1.2.
Changes for libmusicbrainz 2.1.2 ------------------------------------- - Since expat is now installed on most systems we removed our internal copy and now rely on the system installed version. - Juergen Kreileder Supplied minimal patch for making sure that mb_client sti ll works when CDO_CHECK_TYPE is defined - Fixed a C++ style variable declaration inside the album.c C module - On linux the cdrom drive is now opened in non-blocking mode - Fixed bug #834541: Tagger setting track no. is 0 - possibly due to trm mixu p? - Added support for parsing AdvancedRelationship date. Also added new getrels.c example program. - Re-added the python bindings and changed the binding's version number to match the version of this lib. - Fixed bug # 1224562: libmusicbrainz fails to post large RDF. This fixes problems looking up CDs with large numbers of tracks. (This was also bug # 725701 ignores blank tracks) The included perl bindings had the following changes: - Updated bindings to match up to 2.1.1 - Fixed int size cast warning - Fixed #6431: unmatched bootstrap parameter - Updated req for MusicBrainz::Queries to 0.07 The included python bindings had the following changes: - Fixed #957393: Python Bindings type bug - Fixed #1206514: Python bindings to select release not up-to-date
Diffstat (limited to 'audio/musicbrainz')
-rw-r--r--audio/musicbrainz/Makefile5
-rw-r--r--audio/musicbrainz/distinfo10
-rw-r--r--audio/musicbrainz/patches/patch-aa22
-rw-r--r--audio/musicbrainz/patches/patch-ab11
4 files changed, 6 insertions, 42 deletions
diff --git a/audio/musicbrainz/Makefile b/audio/musicbrainz/Makefile
index 6c87e22ae27..d36e2aa3edc 100644
--- a/audio/musicbrainz/Makefile
+++ b/audio/musicbrainz/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.15 2005/08/20 11:17:52 grant Exp $
+# $NetBSD: Makefile,v 1.16 2006/01/02 15:52:01 rxg Exp $
-DISTNAME= libmusicbrainz-2.1.1
+DISTNAME= libmusicbrainz-2.1.2
PKGNAME= ${DISTNAME:S/lib//}
-PKGREVISION= 1
CATEGORIES= audio
MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/
diff --git a/audio/musicbrainz/distinfo b/audio/musicbrainz/distinfo
index cc9c2ac473d..db7d5adaceb 100644
--- a/audio/musicbrainz/distinfo
+++ b/audio/musicbrainz/distinfo
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.9 2005/10/10 14:23:53 joerg Exp $
+$NetBSD: distinfo,v 1.10 2006/01/02 15:52:01 rxg Exp $
-SHA1 (libmusicbrainz-2.1.1.tar.gz) = 83fb98534da266eb8c87d0cc14fb5f95a5feb37c
-RMD160 (libmusicbrainz-2.1.1.tar.gz) = 9592c9e697087685b8937fe03dfb8e6f7d9b5860
-Size (libmusicbrainz-2.1.1.tar.gz) = 528162 bytes
-SHA1 (patch-aa) = 46b43c389f4445b5e7175041131cbdb0d6506b01
-SHA1 (patch-ab) = 0d81af6efb8fc2557a1b92d304deaf5499615e35
+SHA1 (libmusicbrainz-2.1.2.tar.gz) = 935e05850da03731a39d0c91082487aeb9fac9f3
+RMD160 (libmusicbrainz-2.1.2.tar.gz) = d1a243b42a6092b6fbf0c3e543bed9c8a403e9b7
+Size (libmusicbrainz-2.1.2.tar.gz) = 504432 bytes
SHA1 (patch-ac) = dcf113aed1c15ac3656e92a2493af6263cf4bdb1
diff --git a/audio/musicbrainz/patches/patch-aa b/audio/musicbrainz/patches/patch-aa
deleted file mode 100644
index d76b465129f..00000000000
--- a/audio/musicbrainz/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2004/08/25 22:06:40 markd Exp $
-
---- examples/getalbum.c.orig 2004-08-26 09:42:15.000000000 +1200
-+++ examples/getalbum.c
-@@ -30,7 +30,7 @@ int main(int argc, char *argv[])
- {
- musicbrainz_t o;
- char error[256], data[256], temp[256], *args[2];
-- int ret, numTracks, trackNum, i, isMultipleArtist = 0;
-+ int ret, numDates, numTracks, trackNum, i, isMultipleArtist = 0;
-
- if (argc < 2)
- {
-@@ -141,7 +141,7 @@ int main(int argc, char *argv[])
- if (mb_GetResultData(o, MBE_AlbumGetAmazonCoverartURL, data, 256))
- printf("CoverartURL: %s\n", data);
-
-- int numDates = mb_GetResultInt(o, MBE_AlbumGetNumReleaseDates);
-+ numDates = mb_GetResultInt(o, MBE_AlbumGetNumReleaseDates);
- for(i = 1; i <= numDates; i++)
- {
- // Select the first release date
diff --git a/audio/musicbrainz/patches/patch-ab b/audio/musicbrainz/patches/patch-ab
deleted file mode 100644
index 17db7906fcd..00000000000
--- a/audio/musicbrainz/patches/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/08/20 11:17:52 grant Exp $
-
---- libmusicbrainz.pc.in.orig 2004-01-11 20:26:17.000000000 +1100
-+++ libmusicbrainz.pc.in
-@@ -7,5 +7,5 @@ Name: libmusicbrainz
- Description: The Musicbrainz Client Library.
- Version: @VERSION@
- Requires:
--Libs: -L${libdir} -lmusicbrainz -lstdc++ -lm
-+Libs: -L${libdir} -lmusicbrainz -lm
- Cflags: -I${includedir}