diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2001-04-20 14:23:40 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2001-04-20 14:23:40 +0000 |
commit | 0298a85bd237548cc12e247da259a0111d241851 (patch) | |
tree | 060574553abad1972ddc713ef6f476a66cf0e4fc /audio/p5-CDDB | |
parent | Update maintainer's email address. (diff) |
Update port to version 1.04.
This version will use freedb.org rather than cddb.com.
PR: 26693
Submitted by: Andrew &urger <arensb+fbsd-patch@ooblick.com>
Notes
Notes:
svn path=/head/; revision=41722
Diffstat (limited to 'audio/p5-CDDB')
-rw-r--r-- | audio/p5-CDDB/Makefile | 2 | ||||
-rw-r--r-- | audio/p5-CDDB/distinfo | 2 | ||||
-rw-r--r-- | audio/p5-CDDB/files/patch-aa | 42 |
3 files changed, 2 insertions, 44 deletions
diff --git a/audio/p5-CDDB/Makefile b/audio/p5-CDDB/Makefile index 212ed06dabfb..5b1c556e6ffb 100644 --- a/audio/p5-CDDB/Makefile +++ b/audio/p5-CDDB/Makefile @@ -6,7 +6,7 @@ # PORTNAME= CDDB -PORTVERSION= 1.03 +PORTVERSION= 1.04 CATEGORIES= audio perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR=../by-authors/id/R/RC/RCAPUTO diff --git a/audio/p5-CDDB/distinfo b/audio/p5-CDDB/distinfo index 1ece673339fe..d59ed72a69bf 100644 --- a/audio/p5-CDDB/distinfo +++ b/audio/p5-CDDB/distinfo @@ -1 +1 @@ -MD5 (CDDB-1.03.tar.gz) = a679c76fc4ce74c04c0c6e22398f399b +MD5 (CDDB-1.04.tar.gz) = e48a13e1a138b01397c7e8386e2ca8ab diff --git a/audio/p5-CDDB/files/patch-aa b/audio/p5-CDDB/files/patch-aa deleted file mode 100644 index 65cb6dfdf74d..000000000000 --- a/audio/p5-CDDB/files/patch-aa +++ /dev/null @@ -1,42 +0,0 @@ ---- CDDB.pm.orig Sun Apr 30 06:33:12 2000 -+++ CDDB.pm Mon Mar 12 15:11:35 2001 -@@ -15,9 +15,9 @@ - # list of known cddb servers - - my @cddb_hosts = -- ( [ 'cddb.cddb.com' => 8880 ], -- [ 'sj.ca.us.cddb.com' => 8880 ], -- [ 'sc.ca.us.cddb.com' => 8880 ], -+ ( [ 'freedb.freedb.org' => 8880 ], -+ [ 'ca.freedb.org' => 8880 ], -+ [ 'sk.freedb.org' => 8880 ], - ); - - #------------------------------------------------------------------------------ -@@ -177,7 +177,7 @@ - login => $login, - libname => 'CDDB.pm', - libver => $VERSION, -- cddbmail => 'cddb-test@submit.cddb.com', -+ cddbmail => 'freedb-submit@freedb.org', - debug => $debug, - host => $host, - port => $port, -@@ -615,7 +615,7 @@ - use CDDB; - - ### connect to the CDDB server -- my $cddb = new CDDB( Host => 'www.cddb.com', # default -+ my $cddb = new CDDB( Host => 'freedb.freedb.org', # default - Port => 8880, # default - Login => $login_id, # defaults to %ENV's - ) or die $!; -@@ -682,7 +682,7 @@ - protocol may require several separate connections (sometimes one per - query). - --C<new> accepts these parameters: Host (defaults to www.cddb.com), Port -+C<new> accepts these parameters: Host (defaults to freedb.freedb.org), Port - (defaults to 8880), Login (defaults to your login ID), and Debug - (defaults to boolean false) parameters. - |