debian/0000755000000000000000000000000012231164545007171 5ustar debian/watch0000644000000000000000000000026111635116403010216 0ustar version=3 opts=dversionmangle=s/\+dfsg// \ http://search.cpan.org/dist/Audio-Scan/ .*/Audio-Scan-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ \ debian sh debian/repack.stub debian/rules0000755000000000000000000000003611635116403010245 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000001373611635116403011133 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Andy Grundman Source: http://search.cpan.org/dist/Audio-Scan/ Name: Audio-Scan Files: * Copyright: 2010, Logitech, Inc. License: GPL-2+ Files: src/ape.c, include/ape.h Copyright: 2007 Jeremy Evans License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: src/buffer.c, include/buffer.h Copyright: 1995, Tatu Ylonen License: other As far as I am concerned, the code I have written for this software can be used freely for any purpose. Any derived versions of this software must be clearly marked as such, and if the derived work is incompatible with the protocol description in the RFC file, it must be called by a name other than "ssh" or "Secure Shell". Files: src/id3_frametype.c, src/id3_frametype.gperf src/id3_genre.dat Copyright: 2000-2004, Underbit Technologies, Inc. License: GPL-2+ Files: src/jenkins_hash.c Copyright: Public Domain License: public-domain by Bob Jenkins, May 2006, Public Domain. Files: src/md5.c, include/md5.h Copyright: 1999-2002, Aladdin Enterprises License: Zlib This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Files: src/mpc.c, include/mpc.h Copyright: 2005, The Musepack Development Team License: BSD-3-clause Files: include/printtyps.h Copyright: 2006, Alexander Chemeris License: BSD-3-clause Files: include/ppport.h Copyright: 2004-2010, Marcus Holland-Moritz 2001, Paul Marquess (Version 2.x) 1999, Kenneth Albanowski (Version 1.x) License: Artistic or GPL-1+ Files: include/pstdint.h Copyright: 2005-2007 Paul Hsieh License: BSD-3-clause Files: debian/* Copyright: 2010-2011, Jonathan Yu 2011, Maximilian Gass License: GPL-2+ 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'. 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; version 2 dated June, 1991, or (at your option) any later version. . On Debian systems, the complete text of version 2 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2' License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. The name of the author may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,ยท WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/source/0000755000000000000000000000000011635116403010466 5ustar debian/source/format0000644000000000000000000000001411635116403011674 0ustar 3.0 (quilt) debian/repack.stub0000644000000000000000000000325111635116403011333 0ustar #!/bin/sh : <<=cut =pod =head1 NAME repack.stub - script to repack upstream tarballs from uscan =head1 INSTRUCTIONS put this in debian/repack.stub and add "debian sh debian/repack.stub" to the end of the line in debian/watch. you will also need to add a version mangle to debian/watch. then create a debian/repack.local. this is a shell script that is sourced under "set -e", so be careful to check returns codes. =head1 FUNCTIONS =over 4 =item rm rm is replaced by a function that does some magic ("rm -rv" by default), but also changes MANIFEST if $MANIFEST is 1 =item mv mv is replaced by a function that just does mv (by default), but also changes MANIFEST if $MANIFEST is 1 =item requires_version requires_version is there for future usage for requiring certain versions of the script =back =head1 VARIABLES =over 4 =item SUFFIX defaults to +dfsg what to append to the upstream version =item RM_OPTS defaults to -vrf options to pass to rm =item MANIFEST defaults to 0, set to 1 to turn on. this will manipulate MANIFEST files in CPAN tarballs. =item UP_BASE this is the directory where the upstream source is. =back =cut if [ -z "$REPACK_SH" ]; then if [ -f ../../scripts/repack.sh ]; then REPACK_SH=../../scripts/repack.sh fi if [ -z "$REPACK_SH" ] && which repack.sh > /dev/null; then REPACK_SH=$(which repack.sh) fi fi if [ ! -f "$REPACK_SH" ]; then echo "Couldn't find a repack.sh. please put it in your PATH, put it at ../../scripts/repack.sh, or put it somewhere else and set the REPACK_SH variable" echo "You can get it from http://svn.debian.org/viewsvn/pkg-perl/scripts/repack.sh" exit 1 fi exec "$REPACK_SH" "$@" debian/patches/0000755000000000000000000000000011635116403010615 5ustar debian/patches/series0000644000000000000000000000004111635116403012025 0ustar disable-failing-test-sparc.patch debian/patches/disable-failing-test-sparc.patch0000644000000000000000000000105411635116403016733 0ustar Description: Disable a test failing on sparc Origin: vendor Author: Alessandro Ghedini Last-Update: 2011-09-17 --- a/t/mp4.t +++ b/t/mp4.t @@ -179,7 +179,11 @@ my $tags = $s->{tags}; is( $tags->{COVR}, 2103, 'COVR with AUDIO_SCAN_NO_ARTWORK ok' ); - is( $tags->{COVR_offset}, 1926, 'COVR with AUDIO_SCAN_NO_ARTWORK offset ok' ); + + TODO: { + local $TODO = "test failing on sparc"; + is( $tags->{COVR_offset}, 1926, 'COVR with AUDIO_SCAN_NO_ARTWORK offset ok' ); + } } # File with array keys that are integers, bug 14462 debian/compat0000644000000000000000000000000211635116403010364 0ustar 8 debian/control0000644000000000000000000000171311635116403010573 0ustar Source: libaudio-scan-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8), perl, libtest-warn-perl, zlib1g-dev Maintainer: Debian Perl Group Uploaders: Jonathan Yu , Maximilian Gass , Alessandro Ghedini Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Audio-Scan/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libaudio-scan-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libaudio-scan-perl.git Package: libaudio-scan-perl Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends} Description: module for reading metadata from common audio file formats Audio::Scan is a Perl module for extracting file metadata and tag information from several of the most common file formats, including: MP3, MP4, Musepack, Ogg Vorbis, FLAC, ASF, WAV, AIFF, Monkey's Audio, and WavPack. debian/changelog0000644000000000000000000000515412231164545011050 0ustar libaudio-scan-perl (0.93+dfsg-2build2) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 09:44:21 +0100 libaudio-scan-perl (0.93+dfsg-2build1) precise; urgency=low * Rebuild for Perl 5.14. -- Colin Watson Tue, 15 Nov 2011 17:12:34 +0000 libaudio-scan-perl (0.93+dfsg-2) unstable; urgency=low * Team upload. * Remove unneeded hunk about missing newline at the end of file from the patch. dpkg-source from squeeze chokes over it. -- gregor herrmann Sat, 17 Sep 2011 15:06:07 +0200 libaudio-scan-perl (0.93+dfsg-1) unstable; urgency=low * New upstream release * Add disable-failing-test-sparc.patch to disable a failing test on sparc -- Alessandro Ghedini Sat, 17 Sep 2011 12:47:26 +0200 libaudio-scan-perl (0.92+dfsg-1) unstable; urgency=low * New upstream release * Add copyright info for src/jenkins_hash.c -- Alessandro Ghedini Mon, 12 Sep 2011 11:10:14 +0200 libaudio-scan-perl (0.91+dfsg-1) unstable; urgency=low [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ Alessandro Ghedini ] * New upstream release -- Alessandro Ghedini Wed, 07 Sep 2011 10:58:55 +0200 libaudio-scan-perl (0.90+dfsg-1) unstable; urgency=low * New upstream release -- Alessandro Ghedini Thu, 04 Aug 2011 18:59:47 +0200 libaudio-scan-perl (0.88+dfsg-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Alessandro Ghedini ] * New upstream release * Bump Standards-Version to 3.9.2 * Re-order (Build-)Depends (just cosmetics) * Fix BSD-3-clause license paragraphs * Fix Expat and Zlib licenses formatting -- Alessandro Ghedini Tue, 02 Aug 2011 16:10:27 +0200 libaudio-scan-perl (0.87+dfsg-1) unstable; urgency=low * New upstream release * Rewrite control description * No longer run POD tests * Refresh copyright information -- Jonathan Yu Mon, 21 Mar 2011 23:10:41 -0400 libaudio-scan-perl (0.86+dfsg-1) unstable; urgency=low * New upstream release * Build-Depends-Indep on libtest-warn-perl, libtest-pod-perl and libtest-pod-coverage-perl * Add myself to Uploaders * Enable tests on POD -- Alessandro Ghedini Sat, 19 Mar 2011 13:40:46 +0100 libaudio-scan-perl (0.85+dfsg-1) unstable; urgency=low * Initial release (closes: #524789) -- Maximilian Gass Wed, 02 Mar 2011 21:09:13 +0100 debian/repack.local0000644000000000000000000000001111635116403011437 0ustar rm win32