--- libaudio-file-perl-0.11.orig/debian/control +++ libaudio-file-perl-0.11/debian/control @@ -0,0 +1,25 @@ +Source: libaudio-file-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7) +Build-Depends-Indep: perl, libaudio-flac-header-perl, + libogg-vorbis-header-pureperl-perl (>= 1.0-2), libmp3-tag-perl, + libmp3-info-perl +Standards-Version: 3.8.2 +Homepage: http://search.cpan.org/dist/Audio-File/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libaudio-file-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libaudio-file-perl/ + +Package: libaudio-file-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libaudio-flac-header-perl, + libogg-vorbis-header-pureperl-perl (>= 1.0-2), libmp3-tag-perl, libmp3-info-perl +Description: Perl audio file abstraction library + Audio::File abstracts a single audio file, independent of its format. + Using this module you can access a files meta-info like title, album, + etc. as well as the files audio-properties like its length and bitrate. + . + Currently only the formats flac, ogg vorbis and mp3 are supported, but + support for other formats may be easily added. --- libaudio-file-perl-0.11.orig/debian/copyright +++ libaudio-file-perl-0.11/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Florian Ragwitz +Upstream-Source: http://search.cpan.org/dist/Audio-File/ +Upstream-Name: Audio-File + +Files: * +Copyright: Florian Ragwitz +License: GPL-2+ + +Files: debian/* +Copyright: + 2004, 2006, Florian Ragwitz + 2008, Stephen Gran + 2008, 2009, gregor herrmann +License: GPL-2+ + +License: GPL-2 + 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 2 of the License, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License version 2 can be found in `/usr/share/common-licenses/GPL-2' --- libaudio-file-perl-0.11.orig/debian/watch +++ libaudio-file-perl-0.11/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Audio-File/ .+/Audio-File-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libaudio-file-perl-0.11.orig/debian/compat +++ libaudio-file-perl-0.11/debian/compat @@ -0,0 +1 @@ +7 --- libaudio-file-perl-0.11.orig/debian/README.source +++ libaudio-file-perl-0.11/debian/README.source @@ -0,0 +1,5 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +See /usr/share/doc/quilt/README.source for a detailed explanation. --- libaudio-file-perl-0.11.orig/debian/changelog +++ libaudio-file-perl-0.11/debian/changelog @@ -0,0 +1,63 @@ +libaudio-file-perl (0.11-3) unstable; urgency=low + + [ Nathan Handler ] + * debian/watch: Update to ignore development releases. + + [ gregor herrmann ] + * Remove Florian Ragwitz from Uploaders (closes: #523153). + * Add patch pod_audio_properties.patch: adjust documentation example to code + with regard to audio_properties; thanks to Reuben Thomas for the bug + report (closes: #524739). Add quilt framework. + * Minimize debian/rules. + * Set Standards-Version to 3.8.2 (no further changes). + + -- gregor herrmann Sun, 09 Aug 2009 17:09:34 +0200 + +libaudio-file-perl (0.11-2) unstable; urgency=low + + * Take over for the Debian Perl Group with maintainer's permission + (http://lists.debian.org/debian-perl/2008/06/msg00039.html) + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Changed: + Maintainer set to Debian Perl Group (was: Florian Ragwitz + ); Florian Ragwitz moved to + Uploaders. Added: ${misc:Depends} to Depends: field. + * Add debian/watch. + + * Make (build) dependency on libogg-vorbis-header-pureperl-perl versioned; + thanks to Daniel Schepler for the bug report (closes: #521966). + * Add /me to Uploaders. + * Set Standards-Version to 3.8.1 (no changes). + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: update formatting. + + -- gregor herrmann Thu, 02 Apr 2009 00:06:23 +0200 + +libaudio-file-perl (0.11-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Conditionally rmdir /usr/lib/perl5 (closes: #467668) + + -- Stephen Gran Sat, 05 Apr 2008 13:05:23 +0100 + +libaudio-file-perl (0.11-1) unstable; urgency=low + + * New upstream release. + * Uses Audio::FLAC::Header instead of Audio::FLAC + (Closes: #383709, #378870). + * Use DH_COMPAT 5. + * Update Standards-Version to 3.7.2 (no changes). + * Clean up debian/rules. + * Use my new mail address in the Maintainer field. + * Fixed build dependencies to make the full test suite pass. + + -- Florian Ragwitz Fri, 25 Aug 2006 15:33:23 +0200 + +libaudio-file-perl (0.08-1) unstable; urgency=low + + * Initial Release. + + -- Florian Ragwitz Wed, 15 Sep 2004 06:25:15 +0200 + --- libaudio-file-perl-0.11.orig/debian/rules +++ libaudio-file-perl-0.11/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh --with quilt $@ --- libaudio-file-perl-0.11.orig/debian/patches/pod_audio_properties.patch +++ libaudio-file-perl-0.11/debian/patches/pod_audio_properties.patch @@ -0,0 +1,15 @@ +Author: gregor herrmann +Bug-Debian: #524739 +Description: fix example in POD + +--- a/lib/Audio/File.pm ++++ b/lib/Audio/File.pm +@@ -15,7 +15,7 @@ + my $file = Audio::File->new( "foo.bar" ); + + print "The ". $file->type() ."-file ". $file->name +- ." is ". int $file->length() ." seconds long.\n"; ++ ." is ". int $file->audio_properties->length() ." seconds long.\n"; + + print "It's interpreted by ". $file->tag->artist() + ." and called ". $file->tag->title() ".\n"; --- libaudio-file-perl-0.11.orig/debian/patches/series +++ libaudio-file-perl-0.11/debian/patches/series @@ -0,0 +1 @@ +pod_audio_properties.patch