debian/0000755000000000000000000000000012217376746007205 5ustar debian/rules0000755000000000000000000000003612217376746010264 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000260312217376746010611 0ustar Source: libcddb-perl Maintainer: Debian Perl Group Uploaders: Martín Ferrari , Jonathan Yu Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libhttp-message-perl, libmailtools-perl (>= 2.04), libwww-perl (>= 6.05) Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libcddb-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcddb-perl.git Homepage: https://metacpan.org/release/CDDB/ Package: libcddb-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libhttp-message-perl, libwww-perl (>= 6.05) Suggests: libmailtools-perl Description: module to query CDDB and freedb servers CDDB protocol servers provide compact disc information for programs that need it. This allows such programs to display disc and track titles automatically and it provides extended information like liner notes and lyrics. With this module, a Perl program can identify and possibly gather details about a disc based on its "table of contents" (the disc's track times and offsets). . Disc details have been useful for generating CD catalogs, naming mp3 files, printing CD liners, or even just playing discs in an automated jukebox. debian/source/0000755000000000000000000000000012217376746010505 5ustar debian/source/format0000644000000000000000000000001412217376746011713 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000415412217376746011063 0ustar libcddb-perl (1.222-1) unstable; urgency=low * Team upload. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * Change search.cpan.org based URIs to metacpan.org based URIs [ Axel Beckert ] * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg- copyright" [ gregor herrmann ] * New upstream release. * Use debhelper 8. * Update (build) dependencies. * Update years of upstream copyright. * Refresh license stanzas. * Declare compliance with Debian Policy 3.9.4. -- gregor herrmann Sat, 21 Sep 2013 22:13:00 +0200 libcddb-perl (1.220-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Install examples provided in eg/ * Standards-Version 3.8.4 (no changes) * Use new 3.0 (quilt) source format * Update to new DEP5 copyright format [ Ryan Niebur ] * Update jawnsy's email address [ gregor herrmann ] * debian/control: add "Suggests: libmailtools-perl" to be able to submit new entries (closes: #563072). -- Jonathan Yu Mon, 08 Mar 2010 13:19:12 -0500 libcddb-perl (1.21-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release + Fix track offset calculations according to documented test input * Added myself to Uploaders and Copyright * Bumped debhelper compat to 7 (was 5) * Used new short rules format * Updated copyright file with latest clauses * Rewrote control description * Bumped Build-Depends-Indep perl >= 5.6.0-16 (from 5.6.0-12) per Perl policy * Standards-Version 3.8.2 * Wrote a patch to disable live tests unless HAS_INTERNET is true [ gregor herrmann ] * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ gregor herrmann ] * Set Standards-Version to 3.8.3 (no changes). -- Jonathan Yu Fri, 21 Aug 2009 13:44:54 -0400 libcddb-perl (1.17-1) unstable; urgency=low * Initial Release. (Closes: #482486) -- Martín Ferrari Fri, 23 May 2008 03:14:24 -0300 debian/compat0000644000000000000000000000000212217376746010403 0ustar 7 debian/libcddb-perl.examples0000644000000000000000000000000512217376746013263 0ustar eg/* debian/patches/0000755000000000000000000000000012217376746010634 5ustar debian/patches/disable-internet-tests.t0000644000000000000000000000113212217376746015407 0ustar Description: Disable tests requiring Internet By default, the test suite requires a connection to the CDDB server. This uses an environment variable, HAS_INTERNET to control whether live tests are run. Origin: vendor Forwarded: no Author: Jonathan Yu --- a/t/01_cddb.t +++ b/t/01_cddb.t @@ -7,12 +7,18 @@ use strict; use CDDB; -use Test::More tests => 25; +use Test::More; BEGIN { select(STDOUT); $|=1; }; +unless ($ENV{HAS_INTERNET}) { + plan skip_all => 'Set HAS_INTERNET to enable live tests'; +} + +plan tests => 25; + my ($i, $result); ### test connecting debian/patches/series0000644000000000000000000000003112217376746012043 0ustar disable-internet-tests.t debian/copyright0000644000000000000000000000207412217376746011143 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: CDDB Upstream-Contact: Rocco Caputo Source: https://metacpan.org/release/CDDB/ Files: * Copyright: 1998-2013, Rocco Caputo License: Artistic or GPL-1+ Files: debian/* Copyright: 2008, Martín Ferrari 2009-2010, Jonathan Yu 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/watch0000644000000000000000000000011612217376746010234 0ustar version=3 https://metacpan.org/release/CDDB/ .*/CDDB-v?(\d[\d.-]+)\.tar\.gz$