pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/libtunepimp Update to 0.5.2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1b433a1bcb42
branches:  trunk
changeset: 520520:1b433a1bcb42
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Oct 22 21:24:35 2006 +0000

description:
Update to 0.5.2:

version 0.5.2:

  - Case insensitive checking for the .mp3 extension. (#1515)
  - Fallback to TDRC if TDRL is not found, when reading ID3v2.3 tags. (#2190)
  - Ignore "MP3ext" in the padding area of ID3 tags. (#2123)
  - Fixes for DragonFly BSD and new versions of NetBSD. Patch
    by tk%giga.or.at@localhost (#2048)
  - Load plugins from "$(libdir)/tunepimp/plugins" instead of hard-coded
    path "$(prefix)/lib/tunepimp/plugins".

diffstat:

 audio/libtunepimp/Makefile         |   4 ++--
 audio/libtunepimp/distinfo         |  15 +++++++--------
 audio/libtunepimp/patches/patch-aa |  30 ------------------------------
 audio/libtunepimp/patches/patch-ab |   6 +++---
 audio/libtunepimp/patches/patch-ac |   6 +++---
 audio/libtunepimp/patches/patch-ad |  10 +++++-----
 6 files changed, 20 insertions(+), 51 deletions(-)

diffs (118 lines):

diff -r b67105d6a184 -r 1b433a1bcb42 audio/libtunepimp/Makefile
--- a/audio/libtunepimp/Makefile        Sun Oct 22 21:20:54 2006 +0000
+++ b/audio/libtunepimp/Makefile        Sun Oct 22 21:24:35 2006 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2006/08/13 22:04:18 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2006/10/22 21:24:35 wiz Exp $
 
-DISTNAME=              libtunepimp-0.5.1
+DISTNAME=              libtunepimp-0.5.2
 CATEGORIES=            audio
 MASTER_SITES=          ftp://ftp.musicbrainz.org/pub/musicbrainz/ \
                        http://ftp.musicbrainz.org/pub/musicbrainz/
diff -r b67105d6a184 -r 1b433a1bcb42 audio/libtunepimp/distinfo
--- a/audio/libtunepimp/distinfo        Sun Oct 22 21:20:54 2006 +0000
+++ b/audio/libtunepimp/distinfo        Sun Oct 22 21:24:35 2006 +0000
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.6 2006/08/13 22:04:18 wiz Exp $
+$NetBSD: distinfo,v 1.7 2006/10/22 21:24:35 wiz Exp $
 
-SHA1 (libtunepimp-0.5.1.tar.gz) = 4e2d1e726d7e9bb486de991d011ec903b7a7e0f7
-RMD160 (libtunepimp-0.5.1.tar.gz) = 776cd481d05f32a2803ecf5c734fa0710a856851
-Size (libtunepimp-0.5.1.tar.gz) = 1090492 bytes
-SHA1 (patch-aa) = 1c0e484dbe02309ab09ce153dcad710590aedcd1
-SHA1 (patch-ab) = eddb91c7fb533d9e2ca776c8953a3a72192de923
-SHA1 (patch-ac) = 1cf4f71b3eccb1efd137418365a7bb17684d80ce
-SHA1 (patch-ad) = 302d92ce4bd5ec6ddc686626fd60442a91b21ddb
+SHA1 (libtunepimp-0.5.2.tar.gz) = 9e562f7fb8445728ebf5d4d2cf33ab03c921a176
+RMD160 (libtunepimp-0.5.2.tar.gz) = ec2fe7b28b0d6550d698429df7f70f858c3fb5d8
+Size (libtunepimp-0.5.2.tar.gz) = 1076084 bytes
+SHA1 (patch-ab) = 5222b4c262222f002b7cf926981c6770bedd55ee
+SHA1 (patch-ac) = 087a8ceae1aabbcbd65d86c2e6832f04b39c5920
+SHA1 (patch-ad) = 644f00aa5767f510f89fef8bf63fe814524de4f9
diff -r b67105d6a184 -r 1b433a1bcb42 audio/libtunepimp/patches/patch-aa
--- a/audio/libtunepimp/patches/patch-aa        Sun Oct 22 21:20:54 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2006/04/16 22:10:25 markd Exp $
-
---- lib/write.cpp.orig 2006-01-20 10:05:11.000000000 +1300
-+++ lib/write.cpp
-@@ -35,9 +35,12 @@
- #  include <sys/stat.h>
- #  include <sys/types.h>
- #  include <fcntl.h>
--#  if defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
-+#  if defined(__APPLE__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
- #    include <sys/param.h>
- #    include <sys/mount.h>
-+#    if (defined(__NetBSD__) && __NetBSD_Version__ >= 299000900)
-+#      define HAVE_STATVFS 1
-+#    endif
- #  else
- #    include <sys/vfs.h>
- #  endif
-@@ -54,6 +57,11 @@
- #include "fileio.h"
- #include "utf8/utf8util.h"
- 
-+#if defined(HAVE_STATVFS)
-+#  define statfs statvfs
-+#  define f_bsize f_frsize
-+#endif
-+
- #ifdef WIN32
- const char *dirSep = "\\";
- const char dirSepChar = '\\';
diff -r b67105d6a184 -r 1b433a1bcb42 audio/libtunepimp/patches/patch-ab
--- a/audio/libtunepimp/patches/patch-ab        Sun Oct 22 21:20:54 2006 +0000
+++ b/audio/libtunepimp/patches/patch-ab        Sun Oct 22 21:24:35 2006 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.4 2006/07/24 13:01:16 joerg Exp $
+$NetBSD: patch-ab,v 1.5 2006/10/22 21:24:35 wiz Exp $
 
---- lib/threads/posix/Makefile.in.orig 2006-07-24 12:42:15.000000000 +0000
+--- lib/threads/posix/Makefile.in.orig 2006-09-30 13:57:41.000000000 +0000
 +++ lib/threads/posix/Makefile.in
-@@ -211,8 +211,7 @@ target_alias = @target_alias@
+@@ -212,8 +212,7 @@ target_alias = @target_alias@
  INCLUDES = -I$(top_srcdir)/include/tunepimp-0.5
  noinst_LTLIBRARIES = libtpthread.la
  libtpthread_la_SOURCES = mutex.cpp mutex.h thread.cpp thread.h semaphore.cpp semaphore.h
diff -r b67105d6a184 -r 1b433a1bcb42 audio/libtunepimp/patches/patch-ac
--- a/audio/libtunepimp/patches/patch-ac        Sun Oct 22 21:20:54 2006 +0000
+++ b/audio/libtunepimp/patches/patch-ac        Sun Oct 22 21:24:35 2006 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.2 2006/07/12 13:28:08 wiz Exp $
+$NetBSD: patch-ac,v 1.3 2006/10/22 21:24:35 wiz Exp $
 
---- examples/Makefile.in.orig  2006-07-01 14:30:11.000000000 +0000
+--- examples/Makefile.in.orig  2006-09-30 13:57:39.000000000 +0000
 +++ examples/Makefile.in
-@@ -205,7 +205,7 @@ target_alias = @target_alias@
+@@ -206,7 +206,7 @@ target_alias = @target_alias@
  #
  INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib -I$(top_srcdir)/lib/threads/posix
  puid_SOURCES = puid.c
diff -r b67105d6a184 -r 1b433a1bcb42 audio/libtunepimp/patches/patch-ad
--- a/audio/libtunepimp/patches/patch-ad        Sun Oct 22 21:20:54 2006 +0000
+++ b/audio/libtunepimp/patches/patch-ad        Sun Oct 22 21:24:35 2006 +0000
@@ -1,13 +1,13 @@
-$NetBSD: patch-ad,v 1.3 2006/08/13 22:04:18 wiz Exp $
+$NetBSD: patch-ad,v 1.4 2006/10/22 21:24:35 wiz Exp $
 
---- lib/Makefile.in.orig       2006-08-06 19:31:06.000000000 +0000
+--- lib/Makefile.in.orig       2006-09-30 13:57:40.000000000 +0000
 +++ lib/Makefile.in
-@@ -268,7 +268,7 @@ EXTRA_DIST = threads/win32/mutex.h threa
+@@ -269,7 +269,7 @@ EXTRA_DIST = threads/win32/mutex.h threa
  #  4:0:0 - TunePimp implementation for alpha releases of version 0.5.0
  #  5:0:0 - TunePimp implementation for version 0.5.0
  #  5:1:0 - TunePimp implementation for version 0.5.1
--libtunepimp_la_LDFLAGS = -version-info 5:1:0
-+libtunepimp_la_LDFLAGS = -version-info 5:1:0 ${PTHREAD_LDFLAGS}
+-libtunepimp_la_LDFLAGS = -version-info 5:2:0
++libtunepimp_la_LDFLAGS = -version-info 5:2:0 ${PTHREAD_LDFLAGS}
  libtunepimp_la_LIBADD = threads/posix/libtpthread.la utf8/libutf8.la $(LIBLTDL) -lm
  noinst_LTLIBRARIES = libpluginsupport.la
  libpluginsupport_la_SOURCES = metadata.cpp fileio.cpp



Home | Main Index | Thread Index | Old Index