--- libwebservice-musicbrainz-perl-0.93.orig/debian/changelog +++ libwebservice-musicbrainz-perl-0.93/debian/changelog @@ -0,0 +1,87 @@ +libwebservice-musicbrainz-perl (0.93-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "hardcodes /usr/lib/perl5": + pass create_packlist=0 to Build.PL, then we don't have to remove it later + (Closes: #752982) + + -- gregor herrmann Sat, 02 Aug 2014 19:25:04 +0200 + +libwebservice-musicbrainz-perl (0.93-1) unstable; urgency=low + + * New upstream release + * Bump Standards version. + + -- Michael Ablassmeier Sun, 06 Dec 2009 19:22:26 +0100 + +libwebservice-musicbrainz-perl (0.22-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Tue, 05 May 2009 21:16:49 +0200 + +libwebservice-musicbrainz-perl (0.21-1) unstable; urgency=low + + * New upstream release + * Bump standards-version + + -- Michael Ablassmeier Sun, 15 Mar 2009 14:24:42 +0100 + +libwebservice-musicbrainz-perl (0.20-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Wed, 14 Jan 2009 12:55:59 +0100 + +libwebservice-musicbrainz-perl (0.19-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Wed, 12 Nov 2008 09:25:21 +0100 + +libwebservice-musicbrainz-perl (0.17-1) unstable; urgency=low + + * New upstream release + * Add copyright notice to debian/copyright + * Conforms with Standard Version 3.7.3 + + -- Michael Ablassmeier Mon, 03 Mar 2008 11:02:50 +0100 + +libwebservice-musicbrainz-perl (0.16-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Thu, 06 Dec 2007 12:04:55 +0100 + +libwebservice-musicbrainz-perl (0.15-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Tue, 04 Dec 2007 08:33:54 +0100 + +libwebservice-musicbrainz-perl (0.13-1) unstable; urgency=low + + * New upstream release + + -- Michael Ablassmeier Mon, 03 Dec 2007 12:50:02 +0100 + +libwebservice-musicbrainz-perl (0.12-1) unstable; urgency=low + + * New upstream release + * dont install .packlist + * dont install empty /usr/lib/ directories. + + -- Michael Ablassmeier Sat, 17 Nov 2007 15:24:53 +0100 + +libwebservice-musicbrainz-perl (0.11-1) unstable; urgency=low + + * New upstream release + * Fix debian/copyright + + -- Michael Ablassmeier Tue, 10 Jul 2007 08:47:03 +0200 + +libwebservice-musicbrainz-perl (0.10-1) unstable; urgency=low + + * Initial Release. (Closes: #429545) + + -- Michael Ablassmeier Mon, 18 Jun 2007 19:48:09 +0200 --- libwebservice-musicbrainz-perl-0.93.orig/debian/compat +++ libwebservice-musicbrainz-perl-0.93/debian/compat @@ -0,0 +1 @@ +5 --- libwebservice-musicbrainz-perl-0.93.orig/debian/control +++ libwebservice-musicbrainz-perl-0.93/debian/control @@ -0,0 +1,15 @@ +Source: libwebservice-musicbrainz-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl +Build-Depends-Indep: perl (>= 5.8.8-7) +Maintainer: Michael Ablassmeier +Standards-Version: 3.8.3 + +Package: libwebservice-musicbrainz-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libxml-libxml-perl, libwww-perl, libclass-accessor-perl +Description: XML based Web service API to the MusicBrainz database + This library provides a simple, object oriented access to the XML based + MusicBrainz web service. This library should be used in favour of + libmusicbrainz-client-perl which will soon be obsolete. --- libwebservice-musicbrainz-perl-0.93.orig/debian/copyright +++ libwebservice-musicbrainz-perl-0.93/debian/copyright @@ -0,0 +1,18 @@ +This is the debian package for the WebService-MusicBrainz module. +It was created by Michael Ablassmeier using dh-make-perl. + +The upstream author is: Bob Faist . + +License: + +Copyright (C) 2007 by Bob Faist ( bob.faist at gmail.com ) + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself, either Perl version 5.8.4 or, +at your option, any later version of Perl 5 you may have available. + +Check the perl license in /usr/share/doc/perl/copyright. + +You can also read the General Public License and the Artistic License +in /usr/share/common-licenses/GPL and /usr/share/common-licenses/Artistic +respectively. --- libwebservice-musicbrainz-perl-0.93.orig/debian/rules +++ libwebservice-musicbrainz-perl-0.93/debian/rules @@ -0,0 +1,81 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. +# +# It was later modified by Jason Kohles +# http://www.jasonkohles.com/ to support Module::Build installed modules + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Build.PL installdirs=vendor create_packlist=0 + OPTIMIZE="-Wall -O2 -g" $(PERL) Build + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add commands to clean up after the build process here + [ ! -f Build ] || $(PERL) Build distclean + + dh_clean build-stamp install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into debian/$PACKAGE_NAME here + $(PERL) Build + $(PERL) Build install destdir=$(TMP) + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot +# dh_installcron +# dh_installmenu +# dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libwebservice-musicbrainz-perl-0.93.orig/debian/watch +++ libwebservice-musicbrainz-perl-0.93/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 2; this line is compulsory! +version=2 +http://www.cpan.org/modules/by-module/WebService/WebService-MusicBrainz-(.*).(tar.gz|tar|tgz)