debian/0000755000000000000000000000000012231171353007164 5ustar debian/watch0000644000000000000000000000016111526521662010223 0ustar version=3 http://search.cpan.org/dist/Net-FreeDB/ .*/Net-FreeDB-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/rules0000755000000000000000000000036211562040570010247 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_test: # tests fail without internet access # set HAVE_INTERNET to 1 for manual builds # (and put a CD-RON into /dev/cdrom for the second part of the test suite) HAVE_INTERNET=0 dh_auto_test debian/copyright0000644000000000000000000000212511562042544011124 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: Net-FreeDB Upstream-Contact: Peter Pentchev Source: http://search.cpan.org/dist/Net-FreeDB/ Files: * Copyright: 2001, David Shultz , 2005-2006, Peter Pentchev License: Artistic or GPL-1+ Files: debian/* Copyright: 2011, TANIGUCHI Takaki 2011, gregor herrmann License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/source/0000755000000000000000000000000011562043066010471 5ustar debian/source/format0000644000000000000000000000001411562036537011704 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011562043066010620 5ustar debian/patches/no_internet.patch0000644000000000000000000000146011562042166014166 0ustar Description: Don't run tests that need internet access (or a physical CD-Rom) unless HAVE_INTERNET is set Origin: vendor Bug-Debian: http://bugs.debian.org/625840 Forwarded: no Author: gregor herrmann Last-Update: 2011-05-09 --- a/test.pl +++ b/test.pl @@ -7,7 +7,7 @@ use Test; use Data::Dumper; -BEGIN { plan tests => 10 }; +BEGIN { plan tests => ( $ENV{HAVE_INTERNET} ? 10 : 1) }; use Net::FreeDB; ok(1); # If we made it this far, we're ok. @@ -16,6 +16,8 @@ # Insert your test code below, the Test module is use()ed here so read # its man page ( perldoc Test ) for help writing this test script. +if ( $ENV{HAVE_INTERNET} ) { + ######################### ok($cddb = new Net::FreeDB('USER' => 'win32usr')); @@ -67,3 +69,5 @@ } ok($id->{NUM_TRKS}); + +} # end HAVE_INTERNET debian/patches/fix-pod.patch0000644000000000000000000000073511562042207013210 0ustar Description: fix POD syntax Origin: vendor Forwarded: no Author: gregor herrmann Last-Update: 2011-05-09 --- a/FreeDB.pm +++ b/FreeDB.pm @@ -297,6 +297,8 @@ =head2 METHODS +=over + =item new(HOST => $h, PORT => $p, USER => $u, HOSTNAME => $hn, TIMEOUT => $to) Constructor: @@ -400,6 +402,8 @@ NOTE: A different return type/design may be developed. +=back + =head1 BUGS The current version of getdiscid() and getdiscdata() debian/patches/series0000644000000000000000000000004011562041721012023 0ustar no_internet.patch fix-pod.patch debian/compat0000644000000000000000000000000211562042256010367 0ustar 8 debian/control0000644000000000000000000000167711562042341010602 0ustar Source: libnet-freedb-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8), libcddb-file-perl, perl Maintainer: Debian Perl Group Uploaders: TANIGUCHI Takaki , gregor herrmann Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Net-FreeDB/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-freedb-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-freedb-perl/ Package: libnet-freedb-perl Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libcddb-file-perl Description: Perl interface to freedb servers Net::FreeDB was inspired by Net::CDDB. And in-fact was designed as a replacement in-part by Net::CDDB's author Jeremy D. Zawodny. Net::FreeDB provides an OOP interface to the FreeDB servers as well as some basic CDROM functionality like determining disc ids, track offsets, etc. debian/changelog0000644000000000000000000000220512231171353011035 0ustar libnet-freedb-perl (0.08-2build2) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 10:24:59 +0100 libnet-freedb-perl (0.08-2build1) precise; urgency=low * Rebuild for Perl 5.14. -- Colin Watson Tue, 15 Nov 2011 20:05:46 +0000 libnet-freedb-perl (0.08-2) unstable; urgency=medium * Switch to source format 3.0 (quilt). * Add a patch to disable tests that need internet access (closes: #625840). * Add a patch to fix a POD syntax error. * Set Standards-Version to 3.9.2 (no changes). * Bump debhelper compatibility level to 8. * Add /me to Uploaders. * Remove version from libcddb-file-perl (build) dependency, nothing older in the archive. * Set urgency to medium (RC bug fix, perl 5.12 transition). * Don't install README and TODO (both more or less empty) anymore. * Add years of upstream copyright. -- gregor herrmann Mon, 09 May 2011 21:53:17 +0200 libnet-freedb-perl (0.08-1) unstable; urgency=low * Initial Release. (Closes: #490804) -- TANIGUCHI Takaki Fri, 04 Feb 2011 10:44:26 +0900