--- libperl6-export-perl-0.07.orig/debian/control +++ libperl6-export-perl-0.07/debian/control @@ -0,0 +1,22 @@ +Source: libperl6-export-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Allard Hoeve , Gunnar Wolf , gregor herrmann , Carlo Segre +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Perl6-Export/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libperl6-export-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libperl6-export-perl/ + +Package: libperl6-export-perl +Architecture: all +Depends: ${perl:Depends} +Description: Implements the Perl 6 'is export(...)' trait + This module prototypes the Perl 6 'exported' and 'exportable' traits + in Perl 5. + . + Instead of messing around with @EXPORT arrays, you just declare which + subs are to be exported (or are exportable on request) as part of + those subs. --- libperl6-export-perl-0.07.orig/debian/rules +++ libperl6-export-perl-0.07/debian/rules @@ -0,0 +1,70 @@ +#!/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. + +# 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 + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + 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 --- libperl6-export-perl-0.07.orig/debian/watch +++ libperl6-export-perl-0.07/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Perl6-Export/ .*/Perl6-Export-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libperl6-export-perl-0.07.orig/debian/copyright +++ libperl6-export-perl-0.07/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Allard Hoeve on +Thu, 22 Apr 2004 11:32:56 +0200. + +It was downloaded from http://www.cpan.org/modules/by-module/Perl6/ + +Upstream Author: Damian Conway + +Copyright: + +Copyright (C) 2003 Damian Conway + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +On a Debian system, the GNU public license can be found as +/usr/share/common-licenses/GPL and the Artistic license can be found in +/usr/share/common-licenses/Artistic. --- libperl6-export-perl-0.07.orig/debian/compat +++ libperl6-export-perl-0.07/debian/compat @@ -0,0 +1 @@ +5 --- libperl6-export-perl-0.07.orig/debian/changelog +++ libperl6-export-perl-0.07/debian/changelog @@ -0,0 +1,83 @@ +libperl6-export-perl (0.07-10) unstable; urgency=low + + [ Joachim Breitner ] + * Removed myself from uploaders. + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * Remove ./COPYRIGHT (not in upstream tarball), revert change to MANIFEST. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (closes: #467849) + - update based on dh-make-perl's templates + - don't install the "upstream" COPYRIGHT any more + * debian/watch: use dist-based URL. + * Set Standards-Version to 3.7.3 (no changes). + + -- gregor herrmann Tue, 11 Mar 2008 23:22:00 +0100 + +libperl6-export-perl (0.07-9) unstable; urgency=low + + * Use $(CURDIR) [make] instead of $(PWD) [sh] to fix issues with sudo. + + -- gregor herrmann Sun, 1 Oct 2006 14:39:16 +0200 + +libperl6-export-perl (0.07-8) unstable; urgency=low + + * Moved debhelper to Build-Depends. + * Set Standards-Version to 3.7.2 (no changes). + * Set Debhelper Compatibility Level to 5. + * Removed empty /usr/lib/perl5 from package. + + -- gregor herrmann Fri, 16 Jun 2006 16:46:02 +0200 + +libperl6-export-perl (0.07-7) unstable; urgency=low + + * Modified debian/watch so it does not get confused with modules + sharing the namespace (i.e. Perl6::Export::Attrs) + + -- Gunnar Wolf Thu, 1 Sep 2005 18:15:15 -0500 + +libperl6-export-perl (0.07-6) unstable; urgency=low + + * Fix dependencies: let dh_perl decide + (Thanks Brendan O'Dea ) + * Corrected: No longer a native package, upstream tarball uploaded + + -- Gunnar Wolf Sun, 28 Nov 2004 22:10:16 -0600 + +libperl6-export-perl (0.07-5) unstable; urgency=low + + * Small typo in package description (Closes: #262287) + + -- Gunnar Wolf Mon, 30 Aug 2004 17:10:20 -0500 + +libperl6-export-perl (0.07-4) unstable; urgency=low + + * Last version moved the man page from ".3pm" to ".3" - I stand + corrected, moved it back to ".3pm". Sorry. + + -- Gunnar Wolf Tue, 4 May 2004 13:43:02 -0500 + +libperl6-export-perl (0.07-3) unstable; urgency=low + + * Minor (aesthetic) fixes in debian/copyright, debian/control + * First version uploaded to Debian (Closes: #247244) + * Man file no longer has a "3pm" extension, now uses standard "3" + + -- Gunnar Wolf Mon, 3 May 2004 22:16:14 -0500 + +libperl6-export-perl (0.07-2) unstable; urgency=low + + * Add Uploaders: line to add Joachum, Gunnar and me + * Update Standards-Version: to 3.6.1 + + -- Allard Hoeve Mon, 26 Apr 2004 21:41:09 +0200 + +libperl6-export-perl (0.07-1) unstable; urgency=low + + * Initial Release. + + -- Allard Hoeve Thu, 22 Apr 2004 11:32:56 +0200 +