--- libtemplate-plugin-clickable-perl-0.06.orig/debian/watch +++ libtemplate-plugin-clickable-perl-0.06/debian/watch @@ -0,0 +1,6 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# Site Directory Pattern Version Script +version=2 +http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Template-Plugin-Clickable-(\d+\.\d+)\.tar\.gz debian uupdate --- libtemplate-plugin-clickable-perl-0.06.orig/debian/changelog +++ libtemplate-plugin-clickable-perl-0.06/debian/changelog @@ -0,0 +1,20 @@ +libtemplate-plugin-clickable-perl (0.06-1) unstable; urgency=low + + * New upstream release + * Switched to my debian.org email address + + -- Stephen Quinney Thu, 23 Feb 2006 21:41:00 +0000 + +libtemplate-plugin-clickable-perl (0.05-1) unstable; urgency=low + + * New upstream release - updated documentation. + * First upload: closes: #286970. + + -- Stephen Quinney Wed, 29 Dec 2004 13:30:58 +0000 + +libtemplate-plugin-clickable-perl (0.04-1) unstable; urgency=low + + * Initial packaging. + + -- Stephen Quinney Thu, 23 Dec 2004 12:00:41 +0000 + --- libtemplate-plugin-clickable-perl-0.06.orig/debian/control +++ libtemplate-plugin-clickable-perl-0.06/debian/control @@ -0,0 +1,19 @@ +Source: libtemplate-plugin-clickable-perl +Section: perl +Priority: optional +Maintainer: Stephen Quinney +Build-Depends: debhelper (>= 4) +Build-Depends-Indep: perl (>= 5.6.0-16), libuniversal-exports-perl, liburi-find-perl (>= 0.13), libtemplate-perl (>= 2.07), libtest-simple-perl (>= 0.32) | perl (>= 5.8.3) +Standards-Version: 3.6.2 + +Package: libtemplate-plugin-clickable-perl +Architecture: all +Depends: ${perl:Depends}, libuniversal-exports-perl, liburi-find-perl (>= 0.13), libtemplate-perl (>= 2.07) +Description: Make URLs clickable in HTML + This is a plugin for the Perl Template Toolkit which allows you to + filter HTML to make any embedded URLs clickable. The basic idea is + that it searches the text for any http:// and https:// URLs that are + not marked up and adds the correct HTML anchor tags to make them into + hyperlinks. + + --- libtemplate-plugin-clickable-perl-0.06.orig/debian/rules +++ libtemplate-plugin-clickable-perl-0.06/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# Define the perl interpreter + +PACKAGE = $(shell dh_listpackages) + +TMP =`pwd`/debian/$(PACKAGE) + +PERL = /usr/bin/perl + +configure: configure-stamp +configure-stamp: + dh_testdir + + perl Makefile.PL verbose INSTALLDIRS=vendor + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + $(MAKE) test + touch build-stamp + +clean: + dh_testdir + dh_testroot + + [ ! -e Makefile ] || $(MAKE) distclean + + dh_clean build-stamp configure-stamp + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install PREFIX=$(TMP)/usr + + # Remove any empty directories + + find $(TMP) -type d -empty -print0 | xargs --no-run-if-empty --null rmdir -p --ignore-fail-on-non-empty + +# Build architecture-independent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_perl + dh_installdocs README + dh_installman + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- libtemplate-plugin-clickable-perl-0.06.orig/debian/copyright +++ libtemplate-plugin-clickable-perl-0.06/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by Stephen Quinney on +Thu, 23 Dec 2004 12:01:05 +0000 + +It was downloaded from http://www.cpan.org/authors/id/M/MI/MIYAGAWA/ + +Upstream Author: Tatsuhiko Miyagawa + +Copyright: + + 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'. --- libtemplate-plugin-clickable-perl-0.06.orig/debian/compat +++ libtemplate-plugin-clickable-perl-0.06/debian/compat @@ -0,0 +1 @@ +4