--- libwiki-toolkit-plugin-ping-perl-0.03.orig/debian/compat +++ libwiki-toolkit-plugin-ping-perl-0.03/debian/compat @@ -0,0 +1 @@ +5 --- libwiki-toolkit-plugin-ping-perl-0.03.orig/debian/rules +++ libwiki-toolkit-plugin-ping-perl-0.03/debian/rules @@ -0,0 +1,85 @@ +#!/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 + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-Wall -O2 -g" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + rm -f t/sqlite-test.db + rm -f Makefile.old + + 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 + $(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: + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(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_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 --- libwiki-toolkit-plugin-ping-perl-0.03.orig/debian/watch +++ libwiki-toolkit-plugin-ping-perl-0.03/debian/watch @@ -0,0 +1,3 @@ +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Wiki-Toolkit-Plugin-Ping/ .*/Wiki-Toolkit-Plugin-Ping-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libwiki-toolkit-plugin-ping-perl-0.03.orig/debian/changelog +++ libwiki-toolkit-plugin-ping-perl-0.03/debian/changelog @@ -0,0 +1,44 @@ +libwiki-toolkit-plugin-ping-perl (0.03-1) unstable; urgency=low + + * New upstream release + * Update Standards-Version (no changes) + * Install upstream Changes file + + -- Dominic Hargreaves Sun, 25 Oct 2009 16:36:11 +0000 + +libwiki-toolkit-plugin-ping-perl (0.01-5) unstable; urgency=low + + * Fix debian/rules rmdir bug (closes: #467762) + * Update Standards-Version (no changes) + * Add debian/watch file + * debian/control: add Homepage field + + -- Dominic Hargreaves Sun, 2 Mar 2008 18:13:59 +0000 + +libwiki-toolkit-plugin-ping-perl (0.01-4) unstable; urgency=low + + * Proper fix for #420359: + - Add Build-Depends-Indep on netbase (thanks to Niko Tyni) + - Re-enable tests + + -- Dominic Hargreaves Sun, 20 May 2007 22:27:00 +0100 + +libwiki-toolkit-plugin-ping-perl (0.01-3) unstable; urgency=low + + * Temporarily disable tests in order to fix FTBFS (closes: #420359) + + -- Dominic Hargreaves Thu, 17 May 2007 23:26:24 +0100 + +libwiki-toolkit-plugin-ping-perl (0.01-2) unstable; urgency=low + + * Fix FTBFS (closes: #420039) + * Remove old Makefile in clean target to ensure that repeated builds work + + -- Dominic Hargreaves Thu, 19 Apr 2007 18:13:21 +0100 + +libwiki-toolkit-plugin-ping-perl (0.01-1) unstable; urgency=low + + * Initial Release (closes: #401763) + + -- Dominic Hargreaves Tue, 5 Dec 2006 20:30:21 +0000 + --- libwiki-toolkit-plugin-ping-perl-0.03.orig/debian/control +++ libwiki-toolkit-plugin-ping-perl-0.03/debian/control @@ -0,0 +1,19 @@ +Source: libwiki-toolkit-plugin-ping-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-6.1), libwww-perl, libwiki-toolkit-perl, libdbd-sqlite3-perl, netbase +Maintainer: Dominic Hargreaves +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Wiki-Toolkit-Plugin-Ping/ + +Package: libwiki-toolkit-plugin-ping-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libwww-perl, libwiki-toolkit-perl +Description: "ping" various services when nodes are written + A plug-in for Wiki::Toolkit sites, which will "ping" various external services + when a node is written. A list of the services to ping, and where in their + URLs to add the URL of the node, are supplied when the plugin is created. + . + You need to tell it how to turn a node into a URL (node_to_url), and what + services to ping (services). --- libwiki-toolkit-plugin-ping-perl-0.03.orig/debian/copyright +++ libwiki-toolkit-plugin-ping-perl-0.03/debian/copyright @@ -0,0 +1,19 @@ +This is the debian package for the Wiki-Toolkit-Plugin-Ping module. +It was created by Dominic Hargreaves using dh-make-perl. + +It was downloaded from CPAN: +http://search.cpan.org/dist/Wiki-Toolkit-Plugin-Ping/ + +The upstream author is: + +The Wiki::Toolkit team (http://www.wiki-toolkit.org/). + +Copyright (C) 2006-2009 the Wiki::Toolkit team (http://www.wiki-toolkit.org/) + +This module is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. 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'.