r8365 - in /trunk/libhtml-display-perl/debian: ./ changelog compat control copyright rules watch

hanska-guest at users.alioth.debian.org hanska-guest at users.alioth.debian.org
Fri Oct 19 21:41:59 UTC 2007


Author: hanska-guest
Date: Fri Oct 19 21:41:59 2007
New Revision: 8365

URL: http://svn.debian.org/wsvn/?sc=1&rev=8365
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libhtml-display-perl/debian/
    trunk/libhtml-display-perl/debian/changelog
    trunk/libhtml-display-perl/debian/compat
    trunk/libhtml-display-perl/debian/control
    trunk/libhtml-display-perl/debian/copyright
    trunk/libhtml-display-perl/debian/rules   (with props)
    trunk/libhtml-display-perl/debian/watch

Added: trunk/libhtml-display-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libhtml-display-perl/debian/changelog?rev=8365&op=file
==============================================================================
--- trunk/libhtml-display-perl/debian/changelog (added)
+++ trunk/libhtml-display-perl/debian/changelog Fri Oct 19 21:41:59 2007
@@ -1,0 +1,9 @@
+libhtml-display-perl (0.38-1) unstable; urgency=low
+
+  NEEDS MORE COPYRIGHT INFO: SEE debian/copyright FOR REFERENCE.
+  NEEDS FIX FOR "use parent" WHICH IS NOT WORKING (*hint*, *hint*)
+   -- /me is not a Perl guru. :@
+  
+  * Initial Release.
+
+ -- David Paleino <d.paleino at gmail.com>  Fri, 19 Oct 2007 23:10:06 +0200

Added: trunk/libhtml-display-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libhtml-display-perl/debian/compat?rev=8365&op=file
==============================================================================
--- trunk/libhtml-display-perl/debian/compat (added)
+++ trunk/libhtml-display-perl/debian/compat Fri Oct 19 21:41:59 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libhtml-display-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libhtml-display-perl/debian/control?rev=8365&op=file
==============================================================================
--- trunk/libhtml-display-perl/debian/control (added)
+++ trunk/libhtml-display-perl/debian/control Fri Oct 19 21:41:59 2007
@@ -1,0 +1,25 @@
+Source: libhtml-display-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-11.1)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: David Paleino <d.paleino at gmail.com>
+Standards-Version: 3.7.2
+Homepage: http://search.cpan.org/dist/HTML-Display/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhtml-display-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libhtml-display-perl/
+
+Package: libhtml-display-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libhtml-tokeparser-simple-perl (>= 2), liburi-perl,
+ libwww-perl (>= 5.69)
+Description: capture STDOUT and STDERR into global variables
+ This module abstracts the task of displaying HTML to the user. The displaying
+ is done by launching a browser and navigating it to either a temporary file
+ with the HTML stored in it, or, if possible, by pushing the HTML directly into
+ the browser window.
+ .
+ The module tries to automagically select the "correct" browser, but if it
+ doesn't find a good browser, you can modify the behaviour by setting some
+ environment variables.

Added: trunk/libhtml-display-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libhtml-display-perl/debian/copyright?rev=8365&op=file
==============================================================================
--- trunk/libhtml-display-perl/debian/copyright (added)
+++ trunk/libhtml-display-perl/debian/copyright Fri Oct 19 21:41:59 2007
@@ -1,0 +1,19 @@
+This is the debian package for the HTML-Display module.
+It was created by David Paleino <d.paleino at gmail.com> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/HTML-Display/
+
+The upstream author is: 
+
+Max Maischein ( corion at cpan.org )
+All code ripped from pod2test by M. Schwern.
+
+<!--
+MISSING COPYRIGHT INFORMATION, PLEASE REFER TO
+
+http://rt.cpan.org/Public/Bug/Display.html?id=30130
+
+-->
+
+The Debian packaging is (C) 2007, David Paleino <d.paleino at gmail.com> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libhtml-display-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libhtml-display-perl/debian/rules?rev=8365&op=file
==============================================================================
--- trunk/libhtml-display-perl/debian/rules (added)
+++ trunk/libhtml-display-perl/debian/rules Fri Oct 19 21:41:59 2007
@@ -1,0 +1,70 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> 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
+
+	$(PERL) Makefile.PL INSTALLDIRS=vendor \
+		INSTALLVENDORARCH=/usr/share/perl5/ \
+		VENDORARCHEXP=/usr/share/perl5/
+	$(MAKE)
+#	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	touch $@
+
+binary-arch:
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs 
+	dh_installchangelogs Changes
+	dh_perl
+	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

Propchange: trunk/libhtml-display-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libhtml-display-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libhtml-display-perl/debian/watch?rev=8365&op=file
==============================================================================
--- trunk/libhtml-display-perl/debian/watch (added)
+++ trunk/libhtml-display-perl/debian/watch Fri Oct 19 21:41:59 2007
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/HTML-Display/ .*/HTML-Display-([\.\d]+)\.(?:tar\.gz|tar|tgz)$




More information about the Pkg-perl-cvs-commits mailing list