pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/audio/libtunepimp Fix broken test by assuming pkgsrc h...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1bb8a7d92ed8
branches:  trunk
changeset: 589360:1bb8a7d92ed8
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Fri Jun 03 00:57:47 2011 +0000

description:
Fix broken test by assuming pkgsrc handles version check for us.
(Problem here is that 1.10 doesn't compare as bigger than 1.4.)

diffstat:

 audio/libtunepimp/distinfo                |   3 ++-
 audio/libtunepimp/patches/patch-configure |  16 ++++++++++++++++
 2 files changed, 18 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r e4901e91feab -r 1bb8a7d92ed8 audio/libtunepimp/distinfo
--- a/audio/libtunepimp/distinfo        Fri Jun 03 00:48:57 2011 +0000
+++ b/audio/libtunepimp/distinfo        Fri Jun 03 00:57:47 2011 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.10 2011/01/29 21:15:11 markd Exp $
+$NetBSD: distinfo,v 1.11 2011/06/03 00:57:47 wiz Exp $
 
 SHA1 (libtunepimp-0.5.3.tar.gz) = 1b904cd97ce009588fe57336f40e79b6edf9947e
 RMD160 (libtunepimp-0.5.3.tar.gz) = 6bc312591b98a5b74824fc3103137cbf60d4b012
@@ -19,3 +19,4 @@
 SHA1 (patch-an) = cbd5466e85dbfd38974759033b59a6147a2e62ba
 SHA1 (patch-ao) = 589faf81480e89c310fe1ae199e15657723923dc
 SHA1 (patch-ap) = cbbdc7d28ca083ec51720370bf4cbe81ec475609
+SHA1 (patch-configure) = d331e26e496e3e9b76ecfcef2537ec41ff85cab1
diff -r e4901e91feab -r 1bb8a7d92ed8 audio/libtunepimp/patches/patch-configure
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/libtunepimp/patches/patch-configure Fri Jun 03 00:57:47 2011 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-configure,v 1.1 2011/06/03 00:57:47 wiz Exp $
+
+Fix broken test by assuming pkgsrc handles version check for us.
+(Problem here is that 1.10 doesn't compare as bigger than 1.4.)
+
+--- configure.orig     2006-11-28 20:34:18.000000000 +0000
++++ configure
+@@ -21634,7 +21634,7 @@ fi
+     { echo "$as_me:$LINENO: checking for taglib >= 1.4" >&5
+ echo $ECHO_N "checking for taglib >= 1.4... $ECHO_C" >&6; }
+         VERSION_CHECK=`expr $TAGLIB_VERSION \>\= 1.4`
+-        if test "$VERSION_CHECK" = "1" ; then
++        if test "1" = "1" ; then
+             { echo "$as_me:$LINENO: result: yes" >&5
+ echo "${ECHO_T}yes" >&6; }
+             succeeded=yes



Home | Main Index | Thread Index | Old Index