--- libtext-wikicreole-perl-0.07.orig/debian/compat +++ libtext-wikicreole-perl-0.07/debian/compat @@ -0,0 +1 @@ +5 --- libtext-wikicreole-perl-0.07.orig/debian/control +++ libtext-wikicreole-perl-0.07/debian/control @@ -0,0 +1,17 @@ +Source: libtext-wikicreole-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.10-12) +Maintainer: Bernd Zeimetz +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Text-WikiCreole/ +Vcs-Browser: http://git.recluse.de/debian/pkg-libtext-wikicreole-perl.git/ +Vcs-Git: git://git.recluse.de/debian/pkg-libtext-wikicreole-perl.git + +Package: libtext-wikicreole-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Convert Wiki Creole 1.0 markup to XHTML + Text::WikiCreole implements the Wiki Creole markup language, + version 1.0. It reads Creole 1.0 markup and returns XHTML. --- libtext-wikicreole-perl-0.07.orig/debian/changelog +++ libtext-wikicreole-perl-0.07/debian/changelog @@ -0,0 +1,24 @@ +libtext-wikicreole-perl (0.07-1) unstable; urgency=low + + * New Upstream Version + * debian/control, debian/patches, debian/rules: + - Dropping all patches, applied by upstream. Also removing quilt + build-dependency and patch parts from debian/rules. + + -- Bernd Zeimetz Sun, 05 Oct 2008 23:45:37 +0200 + +libtext-wikicreole-perl (0.05-2) unstable; urgency=low + + * debian/rules, debian/control, debian/README.source: + - Adding quilt patch management system and document how to use it. + + * debian/patches: + - Adding creole-barelink.patch to allow custom handling of "bare" links. + + -- Bernd Zeimetz Sun, 22 Jun 2008 00:57:45 +0200 + +libtext-wikicreole-perl (0.05-1) unstable; urgency=low + + * Initial Release (Closes: #487020) + + -- Bernd Zeimetz Thu, 19 Jun 2008 10:27:55 +0200 --- libtext-wikicreole-perl-0.07.orig/debian/watch +++ libtext-wikicreole-perl-0.07/debian/watch @@ -0,0 +1,5 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +opts=filenamemangle=s/.*Text-WikiCreole/libtext-wikicreole-perl/ \ +http://search.cpan.org/dist/Text-WikiCreole/ .*/Text-WikiCreole-?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtext-wikicreole-perl-0.07.orig/debian/rules +++ libtext-wikicreole-perl-0.07/debian/rules @@ -0,0 +1,64 @@ +#!/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 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + + +build: build-stamp +build-stamp: + dh_testdir + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + # Add commands to install the package into $(TMP) here + $(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 README + dh_installchangelogs Changes + dh_perl + 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 --- libtext-wikicreole-perl-0.07.orig/debian/copyright +++ libtext-wikicreole-perl-0.07/debian/copyright @@ -0,0 +1,33 @@ +This is the debian package for the Text-WikiCreole module. +It was created by Bernd Zeimetz using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Text-WikiCreole/ + +Upstream author: + Jason Burnett + +Copyright: + Copyright (C) 2007 Jason Burnett + +License: + This program is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + + +The license Perl is distributed under is: + 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'. + + +The Debian packaging is (C) 2008, Bernd Zeimetz and +is licensed under the same terms as the software itself (see above). --- libtext-wikicreole-perl-0.07.orig/debian/README.source +++ libtext-wikicreole-perl-0.07/debian/README.source @@ -0,0 +1,8 @@ +libtext-wikicreole-perl (0.05-2) unstable; urgency=low + + * Since this version the package uses quilt to manage patches + at build time. Please install the package 'quilt' and see + /usr/share/doc/quilt/README.source + for details. + + -- Bernd Zeimetz Sat, 21 Jun 2008 02:44:11 +0200