debian/0000755000000000000000000000000011525567702007200 5ustar debian/copyright0000644000000000000000000000134111525567501011127 0ustar This package was originally debianized by Sam Johnston on Thu, 5 Feb 2004 02:28:44 +1100. It was downloaded from http://search.cpan.org/dist/Text-WikiFormat/ Upstream Author: chromatic Copyright: Copyright (c) 2002 - 2006, chromatic. "Some rights reserved." License: 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" See: /usr/share/common-licenses/Artistic /usr/share/common-licenses/GPL For more information regarding these licensing options debian/changelog0000644000000000000000000000312211525567702011050 0ustar libtext-wikiformat-perl (0.79-1) unstable; urgency=low * New upstream release. (Closes: #583317) * Fixed broken watch file. (Closes: #449734) * Move to new source format and update package in a various ways. * Suppress packlist. -- Benjamin Mako Hill Sat, 12 Feb 2011 14:44:49 -0500 libtext-wikiformat-perl (0.78-1) unstable; urgency=low * New maintainer. Closes: #419079 * Fixed manpage errors. Closes: #380563, #379925 -- Benjamin Mako Hill Wed, 18 Apr 2007 14:34:51 -0400 libtext-wikiformat-perl (0.78-0.1) unstable; urgency=low * Non-maintainer upload. * New upstream release. Closes: #367778. -- Dominic Hargreaves Wed, 30 Aug 2006 09:01:39 +0100 libtext-wikiformat-perl (0.76-1) unstable; urgency=low * New upstream release -- Sam Johnston Sat, 29 Oct 2005 14:55:06 +0100 libtext-wikiformat-perl (0.71-4.1) unstable; urgency=high * Non-maintainer upload. * Adds liburi-perl to Depends. Closes: #304122. -- Luk Claes Tue, 26 Apr 2005 20:39:36 +0200 libtext-wikiformat-perl (0.71-4) unstable; urgency=high * Updates section to 'perl' from 'interpreters' as per override file. -- Sam Johnston Wed, 18 Feb 2004 17:44:54 +1100 libtext-wikiformat-perl (0.71-2) unstable; urgency=high * Adds liburi-perl to Build-Depends. Closes: #233137. -- Sam Johnston Wed, 18 Feb 2004 17:00:04 +1100 libtext-wikiformat-perl (0.71-1) unstable; urgency=low * Initial Release. -- Sam Johnston Thu, 5 Feb 2004 02:28:44 +1100 debian/control0000644000000000000000000000140711525567501010602 0ustar Source: libtext-wikiformat-perl Section: perl Priority: optional Build-Depends: debhelper (>= 5) Build-Depends-Indep: perl (>= 5.6), libmodule-build-perl, liburi-perl Maintainer: Benjamin Mako Hill Standards-Version: 3.9.1 Package: libtext-wikiformat-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, liburi-perl Description: translates Wiki formatted text into other formats The original Wiki web site was intended to have a very simple interface to edit and to add pages. Its formatting rules are simple and easy to use. They are also easily translated into other, more complicated markup languages with this module. It creates HTML by default, but can be extended to produce valid POD, DocBook, XML, or any other format imaginable. debian/patches/0000755000000000000000000000000011525567501010624 5ustar debian/patches/series0000644000000000000000000000011311525567501012034 0ustar 0001-added-missing-newline-to-Blocks.pm.patch 0002-suppress-packlist.patch debian/patches/0001-added-missing-newline-to-Blocks.pm.patch0000644000000000000000000000116211525567501020640 0ustar From d0d7f448b262bfdfdb2b569d8228f08e91d159de Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 12 Feb 2011 14:54:18 -0500 Subject: added missing newline to Blocks.pm --- lib/Text/WikiFormat/Blocks.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/Text/WikiFormat/Blocks.pm b/lib/Text/WikiFormat/Blocks.pm index 8b414dd..471988d 100644 --- a/lib/Text/WikiFormat/Blocks.pm +++ b/lib/Text/WikiFormat/Blocks.pm @@ -142,6 +142,7 @@ package Text::WikiFormat::Blocks; 1; __END__ + =head1 NAME Text::WikiFormat::Blocks - blocktypes for Text::WikiFormat -- 1.7.2.3 debian/patches/0002-suppress-packlist.patch0000644000000000000000000000103311525567501015715 0ustar From 418afc6311d4f6e1fa9b7c08b4f26fbc43feb257 Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 12 Feb 2011 15:36:06 -0500 Subject: suppress packlist --- Build.PL | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Build.PL b/Build.PL index fe98a79..0e68bfc 100755 --- a/Build.PL +++ b/Build.PL @@ -44,6 +44,7 @@ my $build = $class->new( }, create_makefile_pl => 'traditional', sign => '1', + create_packlist => 0, ); $build->create_build_script(); -- 1.7.2.3 debian/source/0000755000000000000000000000000011525567501010475 5ustar debian/source/format0000644000000000000000000000001411525567501011703 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211525567501010373 0ustar 5 debian/watch0000644000000000000000000000012711525567501010226 0ustar version=3 http://www.cpan.org/modules/by-module/Text/Text-WikiFormat-([0-9].*)\.tar.gz debian/rules0000755000000000000000000000345511525567501010264 0ustar #!/usr/bin/make -f # -*- makefile -*- # 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 ifndef PERL PERL = /usr/bin/perl endif CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. $(PERL) Build.PL installdirs=vendor touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. -./Build clean rm -rf ./Build _build rm -rf MYMETA.yml dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/libtext-wikiformat-perl. ./Build test ./Build install destdir=$(CURDIR)/debian/libtext-wikiformat-perl # Build architecture-independent files here. binary-indep: build install dh_testdir dh_testroot dh_installchangelogs Changes dh_installdocs dh_installexamples # dh_install # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_installinit # dh_installcron # dh_installinfo dh_installman dh_link # dh_strip dh_compress dh_fixperms dh_perl # dh_python # dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb # Build architecture-dependent files here. # We have nothing to do by default. binary-arch: build install binary: binary-indep .PHONY: build clean binary-indep binary install configure