--- libdata-visitor-perl-0.15.orig/debian/changelog +++ libdata-visitor-perl-0.15/debian/changelog @@ -0,0 +1,102 @@ +libdata-visitor-perl (0.15-1) unstable; urgency=low + + [ Krzysztof Krzyżaniak (eloy) ] + * Added libtie-toobject-perl to dependencies. + + [ gregor herrmann ] + * New upstream release (closes: #462639). + + -- gregor herrmann Sat, 26 Jan 2008 14:25:35 +0100 + +libdata-visitor-perl (0.13-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/rules: delete /usr/lib/perl5 only if it exists. + + [ Jose Luis Rivas ] + * New upstrem release + * debian/compat: set to 6 + + -- Roberto C. Sanchez Sat, 12 Jan 2008 13:28:01 -0500 + +libdata-visitor-perl (0.12-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: Updated with upstream copyright dates. + * debian/rules: `touch @' instead of `touch *-stamp'. + + -- Jose Luis Rivas Tue, 08 Jan 2008 10:41:11 -0430 + +libdata-visitor-perl (0.10-1) unstable; urgency=low + + * New upstream release. + * Set Standards-Version to 3.7.3 (no changes needed). + * debian/watch: use dist-based URL. + * debian/control: remove unused libmodule-build-perl. + + -- gregor herrmann Wed, 26 Dec 2007 17:46:24 +0100 + +libdata-visitor-perl (0.09-1) unstable; urgency=low + + * New upstream release. + * Add Homepage field and myself to Uploaders in debian/control. + * Cleanup debian/rules (unused dh_* calls, unused compiler args, move + tests to build). + * Remove empty /usr/lib/perl5 directory from binary package. + * Mention the Debian Perl Group and the canonical upstream URL in + debian/copyright. + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza). Removed: XS-Vcs-Svn fields. + + -- gregor herrmann Tue, 09 Oct 2007 22:28:35 +0200 + +libdata-visitor-perl (0.08-1) unstable; urgency=low + + * New upstream release + * debian/rules: don't ignore clean errors + + -- Krzysztof Krzyzaniak (eloy) Wed, 11 Jul 2007 10:17:08 +0200 + +libdata-visitor-perl (0.07-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Tue, 22 May 2007 20:04:47 +0200 + +libdata-visitor-perl (0.05-1) unstable; urgency=low + + * New upstream release + * debian/control: + + Standards-Version: increased to withour changes 3.7.2.1 + * debian/compat: + + increased to 5 + + -- Krzysztof Krzyzaniak (eloy) Wed, 26 Apr 2006 10:02:01 +0200 + +libdata-visitor-perl (0.04-1) unstable; urgency=low + + * New upstream release + * Not uploaded yet: ERROR: Version 1.00 of Test::MockObject is installed, + but we need version >= 1.04 (this version still not in debian) + + -- Krzysztof Krzyzaniak (eloy) Mon, 3 Apr 2006 13:06:41 +0200 + +libdata-visitor-perl (0.03-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Thu, 23 Mar 2006 10:32:30 +0100 + +libdata-visitor-perl (0.02-2) unstable; urgency=low + + * debian/control - added libclass-accessor-perl to dependencies + (closes: #358411) + + -- Krzysztof Krzyzaniak (eloy) Wed, 22 Mar 2006 23:40:50 +0100 + +libdata-visitor-perl (0.02-1) unstable; urgency=low + + * Initial Release (closes: #356385). + + -- Krzysztof Krzyzaniak (eloy) Sat, 11 Mar 2006 11:49:51 +0100 + --- libdata-visitor-perl-0.15.orig/debian/control +++ libdata-visitor-perl-0.15/debian/control @@ -0,0 +1,23 @@ +Source: libdata-visitor-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 6) +Build-Depends-Indep: perl (>= 5.8.0-7), libtest-use-ok-perl, + libtest-mockobject-perl (>= 1.05), libclass-accessor-perl, libtie-toobject-perl +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , + gregor herrmann +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-visitor-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-visitor-perl/ +Homepage: http://search.cpan.org/dist/Data-Visitor/ + +Package: libdata-visitor-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libtest-use-ok-perl, + libtest-mockobject-perl (>= 1.05), libclass-accessor-perl, libtie-toobject-perl +Description: A visitor for Perl data structures + Data::Visitor is a simple visitor implementation for Perl values. + . + It has a main dispatcher method, visit, which takes a single perl value and + then calls the methods appropriate for that value. --- libdata-visitor-perl-0.15.orig/debian/rules +++ libdata-visitor-perl-0.15/debian/rules @@ -0,0 +1,58 @@ +#!/usr/bin/make -f + +# 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 + if [ -r Makefile ]; then $(MAKE) distclean; fi; + +install: build install-stamp +install-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 by default. + +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 --- libdata-visitor-perl-0.15.orig/debian/compat +++ libdata-visitor-perl-0.15/debian/compat @@ -0,0 +1 @@ +6 --- libdata-visitor-perl-0.15.orig/debian/copyright +++ libdata-visitor-perl-0.15/debian/copyright @@ -0,0 +1,29 @@ +This is the debian package for the Data::Visitor module. It was created by +Krzysztof Krzyzaniak (eloy) using dh-make-perl and is +maintained by the Debian Perl Group. + +It was downloaded from: +http://mirrors.kernel.org/cpan/modules/by-module/Data/Data-Visitor-0.02.tar.gz + +The package's upstream URL for new releases is: +http://search.cpan.org/dist/Data-Visitor/ + +The upstream author is: +Yuval Kogman . + +Copyright (c) 2006-2008 Yuval Kogman. All rights reserved + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under licenses: + + 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'. --- libdata-visitor-perl-0.15.orig/debian/watch +++ libdata-visitor-perl-0.15/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Data-Visitor/ .*/Data-Visitor-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)