--- libgtk2-ex-podviewer-perl-0.17.orig/debian/control +++ libgtk2-ex-podviewer-perl-0.17/debian/control @@ -0,0 +1,21 @@ +Source: libgtk2-ex-podviewer-perl +Section: perl +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Marc 'HE' Brockschmidt +Build-Depends: debhelper (>= 4), dpatch +Build-Depends-Indep: libgtk2-perl, libio-stringy-perl, libpod-simple-perl, libgtk2-ex-simple-list-perl, liblocale-gettext-perl +Standards-Version: 3.7.2 + +Package: libgtk2-ex-podviewer-perl +Replaces: libgtk2-podviewer-perl +Provides: podviewer +Conflicts: libgtk2-podviewer-perl +Architecture: all +Depends: perl (>= 5.8.0), libgtk2-perl, libio-stringy-perl, libpod-simple-perl, libgtk2-ex-simple-list-perl +Description: Perl Gtk2 widget for displaying Plain Old Documentation (POD) + libgtk2-podviewer-perl provides a Gtk2 widget for rendering Perl POD + documents. + . + It also provides the example script podviewer, which can be used to + browse your local Perl Documentation. --- libgtk2-ex-podviewer-perl-0.17.orig/debian/rules +++ libgtk2-ex-podviewer-perl-0.17/debian/rules @@ -0,0 +1,74 @@ +#!/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. + +PACKAGE=$(shell dh_listpackages) +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: patch build-stamp +build-stamp: + dh_testdir + + /usr/bin/perl Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" + + touch build-stamp + +clean: unpatch clean-unpatched +clean-unpatched: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + #As this is a architecture independent package, we are not supposed to install + #stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb: + rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_perl + dh_installchangelogs + 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 + +patch: patch-stamp +patch-stamp: + dpatch apply-all + #dpatch call-all -a=pkg-info >patch-stamp #I don't understand this one. + echo patched > patch-stamp + +unpatch: + dpatch deapply-all + rm -rf patch-stamp debian/patched + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary patch unpatch patch-stamp clean-unpatch --- libgtk2-ex-podviewer-perl-0.17.orig/debian/watch +++ libgtk2-ex-podviewer-perl-0.17/debian/watch @@ -0,0 +1,3 @@ +version=2 + +http://search.cpan.org/CPAN/authors/id/G/GB/GBROWN/Gtk2-Ex-PodViewer-([\d\.]+).tar.gz --- libgtk2-ex-podviewer-perl-0.17.orig/debian/changelog +++ libgtk2-ex-podviewer-perl-0.17/debian/changelog @@ -0,0 +1,99 @@ +libgtk2-ex-podviewer-perl (0.17-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable (LP: #185893). Remaining Ubuntu changes: + - Build-depend on liblocale-gettext-perl to avoid FTBFS + - Update Maintainer field as per spec + + -- Luca Falavigna Tue, 29 Jan 2008 15:08:33 +0100 + +libgtk2-ex-podviewer-perl (0.17-1) unstable; urgency=low + + * New upstream release (Closes: #451784) + * debian/control: + + Depend on libgtk2-ex-simple-list-perl (Closes: #369968) + + Bump Standards-Version (no changes needed) + + -- Marc 'HE' Brockschmidt Sun, 25 Nov 2007 23:14:36 +0100 + +libgtk2-ex-podviewer-perl (0.17-0ubuntu2) gutsy; urgency=low + + * debian/control: add missing liblocale-gettext-perl b-d (fixes FTBFS). + * debian/rules: call [ ! -f Makefile ] || $(MAKE) distclean instead of + -$(MAKE) distclean. + + -- Lionel Le Folgoc Sun, 05 Aug 2007 16:42:33 +0200 + +libgtk2-ex-podviewer-perl (0.17-0ubuntu1) gutsy; urgency=low + + * New upstream release + * Fix Depends of podbrowser (LP: #122392) + * Update Maintainer field to match Debian-Maintainer-Spec + + -- Arthur Loiret Wed, 27 Jun 2007 22:11:08 +0200 + +libgtk2-ex-podviewer-perl (0.14-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Change Gtk2::Ex::SimpleList to Gtk::SimpleList in podviewer + (Closes: #369968) + + -- Julien Danjou Sat, 10 Jun 2006 14:34:15 +0200 + +libgtk2-ex-podviewer-perl (0.14-2) unstable; urgency=low + + * Fix typo in Makefile.PL to ensure that build-deps are checked + correctly. Thanks for the bug and patch to stigge@antcom.de. (Closes: + #357222) + + -- Marc 'HE' Brockschmidt Mon, 3 Apr 2006 01:43:40 +0200 + +libgtk2-ex-podviewer-perl (0.14-1) unstable; urgency=low + + * New upstream release, including a renaming to move to the Gtk2::Ex + namespace for extensions to original Gtk2 bindings: (Closes: #328282) + + debian/control: We replace and conflict the old module. + + debian/copyright: Updated to reflect new URI + + debian/control: Now needs Pod::Simple, so add the dep + + debian/patches/01_INC_search_fix.dpatch: Removed, not needed anymore + * Bumped Standards-Version to 3.6.2 (no changes needed) + + -- Marc 'HE' Brockschmidt Sun, 25 Dec 2005 21:29:06 +0100 + +libgtk2-podviewer-perl (0.09-2) unstable; urgency=low + + * Now uses dpatch. + * Add patch to fix the search for the manpage source of a module. Now sorts + all *.pod files before *.pm files, where they're found. (Closes: #279919) + + -- Marc 'HE' Brockschmidt Wed, 22 Dec 2004 17:08:13 +0100 + +libgtk2-podviewer-perl (0.09-1) unstable; urgency=low + + * New upstream release. + + -- Marc 'HE' Brockschmidt Sat, 18 Sep 2004 00:27:16 +0200 + +libgtk2-podviewer-perl (0.08-1) unstable; urgency=low + + * New upstream release. (Closes: #269807) + + -- Marc 'HE' Brockschmidt Sun, 5 Sep 2004 17:19:05 +0200 + +libgtk2-podviewer-perl (0.07-1) unstable; urgency=low + + * New upstream release. + * debian/watch added. + + -- Marc 'HE' Brockschmidt Fri, 30 Apr 2004 23:03:59 +0200 + +libgtk2-podviewer-perl (0.06-1) unstable; urgency=low + + * New upstream release. + + -- Marc 'HE' Brockschmidt Mon, 29 Mar 2004 23:23:02 +0200 + +libgtk2-podviewer-perl (0.05-1) unstable; urgency=low + + * Initial Release. (Closes: #237309) + + -- Marc 'HE' Brockschmidt Sun, 14 Mar 2004 13:29:04 +0100 --- libgtk2-ex-podviewer-perl-0.17.orig/debian/compat +++ libgtk2-ex-podviewer-perl-0.17/debian/compat @@ -0,0 +1 @@ +4 --- libgtk2-ex-podviewer-perl-0.17.orig/debian/copyright +++ libgtk2-ex-podviewer-perl-0.17/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Marc Brockschmidt on +Sun, 14 Marc 2004 13:31:55 +0200. + +It was downloaded from http://search.cpan.org/dist/Gtk2-Ex-PodViewer/ + +The upstream Author is Gavin Brown . + +Copyright: (c) 2004-2005 Gavin Brown + +All rights reserved. This program is free software; you can +redistribute it and/or modify it under the same terms as Perl +itself (GPL and Artistic license) + +On Debian systems the complete text of the GPL and Artistic +licenses can be found at: + /usr/share/common-licenses/GPL and + /usr/share/common-licenses/Artistic