--- libclass-accessor-lvalue-perl-0.11.orig/debian/rules +++ libclass-accessor-lvalue-perl-0.11/debian/rules @@ -0,0 +1,76 @@ +#!/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 + $(PERL) Build + $(PERL) Build test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + + # Add commands to clean up after the build process here + [ ! -f Build ] || $(PERL) Build distclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + # Add commands to install the package into $(TMP) here + $(PERL) Build install destdir=$(TMP) create_packlist=0 + + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + 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 install --- libclass-accessor-lvalue-perl-0.11.orig/debian/watch +++ libclass-accessor-lvalue-perl-0.11/debian/watch @@ -0,0 +1,4 @@ +version=3 + +http://search.cpan.org/dist/Class-Accessor-Lvalue/ \ + .*/Class-Accessor-Lvalue-(.*)\.(?:tar\.gz|tgz) --- libclass-accessor-lvalue-perl-0.11.orig/debian/compat +++ libclass-accessor-lvalue-perl-0.11/debian/compat @@ -0,0 +1 @@ +5 --- libclass-accessor-lvalue-perl-0.11.orig/debian/copyright +++ libclass-accessor-lvalue-perl-0.11/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Jose Luis Rivas on +Sun, 22 Apr 2007 03:42:04 -0400. + +It was downloaded from http://search.cpan.org/dist/Class-Accessor-Lvalue + +Upstream Author: Richard Clamp + +Copyright: Copyright (C) 2003 Richard Clamp. All Rights Reserved. + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL' and +the Artistic Licence in `/usr/share/common-licenses/Artistic'. + +The Debian packaging is (C) 2007, Jose Luis Rivas and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- libclass-accessor-lvalue-perl-0.11.orig/debian/changelog +++ libclass-accessor-lvalue-perl-0.11/debian/changelog @@ -0,0 +1,34 @@ +libclass-accessor-lvalue-perl (0.11-2) unstable; urgency=low + + [ Damyan Ivanov ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). + * re-make debian/rules from dh-make-perl templates + + use Module::Build for building + * remove cdbs from Build-Depends + * add libmodule-build-perl to B-D, move perl from B-D-I to B-D + * drop debian/docs, README is redundant + * install Changes as changelog + * drop redundan debian/dirs + * add myself to Uploaders + + [ Martín Ferrari ] + * debian/watch: + - Added by-dist URL. + * debian/control: + - Bumped Standards-Version. + - Moved José to Uploaders, put the Perl Group as maintainer. + - Added module name to the description to make it searchable. + - Removed homepage from description. + + [ gregor herrmann ] + * debian/rules: delete /usr/lib/perl5 only if it exists. + + -- Damyan Ivanov Fri, 01 Feb 2008 16:29:25 +0200 + +libclass-accessor-lvalue-perl (0.11-1) unstable; urgency=low + + * Initial release (Closes: #420483) + + -- Jose Luis Rivas Sun, 22 Apr 2007 03:42:04 -0400 + --- libclass-accessor-lvalue-perl-0.11.orig/debian/control +++ libclass-accessor-lvalue-perl-0.11/debian/control @@ -0,0 +1,20 @@ +Source: libclass-accessor-lvalue-perl +Section: perl +Priority: extra +Maintainer: Debian Perl Group +Uploaders: Jose Luis Rivas , + Damyan Ivanov +Build-Depends-Indep: libscalar-list-utils-perl, + libwant-perl, libclass-accessor-perl +Build-Depends: perl, libmodule-build-perl, debhelper (>= 5) +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Class-Accessor-Lvalue/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-accessor-lvalue-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-accessor-lvalue-perl/ + +Package: libclass-accessor-lvalue-perl +Architecture: all +Depends: ${perl:Depends}, libscalar-list-utils-perl, libwant-perl, libclass-accessor-perl +Description: Create Lvalue accessors + Class::Accessor::Lvalue subclasses Class::Accessor in order to provide + lvalue accessor makers.