--- libsys-hostname-long-perl-1.4.orig/debian/control
+++ libsys-hostname-long-perl-1.4/debian/control
@@ -0,0 +1,23 @@
+Source: libsys-hostname-long-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy@debian.org>,
+ gregor herrmann <gregor+debian@comodo.priv.at>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Sys-Hostname-Long/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libsys-hostname-long-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libsys-hostname-long-perl/
+
+Package: libsys-hostname-long-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends},
+Description: Figure out the long (fully-qualified) hostname
+ This module determines the host full name on multiple operating
+ systems (MacOS, Windows, Unix-like systems; more later.)
+ .
+ The Sys::Hostname class is the best and standard way to get the basic
+ hostname, but that may not be fully qualified. This module tries to
+ determine the host's fully qualified name.
--- libsys-hostname-long-perl-1.4.orig/debian/rules
+++ libsys-hostname-long-perl-1.4/debian/rules
@@ -0,0 +1,72 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc@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
+ $(MAKE)
+ $(MAKE) test
+
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+
+ dh_clean build-stamp install-stamp
+ [ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+ [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+ [ ! -f $(TMP)/usr/share/perl5/Sys/Hostname/testall.pl ] || rm -v $(TMP)/usr/share/perl5/Sys/Hostname/testall.pl
+
+ touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installexamples testall.pl
+ 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 install
--- libsys-hostname-long-perl-1.4.orig/debian/watch
+++ libsys-hostname-long-perl-1.4/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Sys-Hostname-Long/ .*/Sys-Hostname-Long-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
--- libsys-hostname-long-perl-1.4.orig/debian/copyright
+++ libsys-hostname-long-perl-1.4/debian/copyright
@@ -0,0 +1,17 @@
+Chip Salzenberg <chip@debian.org> created this Debian package using
+original module sources, as found on the Comprehensive Perl Archive
+Network (CPAN) <URL:http://cpan.org/>. The Debian Perl packaging tool
+"dh-make-perl" was of great help.
+
+The upstream author is Scott Penrose <scottp@dd.com.au>.
+
+The upstream source can be found at http://search.cpan.org/dist/Sys-Hostname-Long/
+
+Copyright and license:
+ Copyright (c) 2001,2004,2005 Scott Penrose. All rights reserved.
+ This program is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself.
+
+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'.
--- libsys-hostname-long-perl-1.4.orig/debian/compat
+++ libsys-hostname-long-perl-1.4/debian/compat
@@ -0,0 +1 @@
+5
--- libsys-hostname-long-perl-1.4.orig/debian/changelog
+++ libsys-hostname-long-perl-1.4/debian/changelog
@@ -0,0 +1,43 @@
+libsys-hostname-long-perl (1.4-2) unstable; urgency=low
+
+ * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
+ field (source stanza); Homepage field (source stanza). Removed: XS-
+ Vcs-Svn fields.
+ * debian/watch: use dist-based URL.
+ * debian/rules:
+ - delete /usr/lib/perl5 only if it exists (closes: #467967)
+ - update based on dh-make-perl's templates
+ - don't install almost empty README any more
+ - don't install testall.pl into /usr/share/perl5/ but as an example
+ - activate test suite
+ * Set Standards-Version to 3.7.3 (no changes).
+ * Set debhelper compatibility level to 5.
+ * Add /me to Uploaders.
+ * debian/copyright: add specific download URL and actual copyright notice.
+
+ -- gregor herrmann <gregor+debian@comodo.priv.at> Wed, 12 Mar 2008 20:25:12 +0100
+
+libsys-hostname-long-perl (1.4-1) unstable; urgency=low
+
+ * New upstream release, taking package for Debian Perl Group
+ (closes: #357088)
+ * debian/watch - added
+ * debian/control -
+ - Maintainer: changed to Debian Perl Group
+ - Uploaders: added me
+ - Standards-Version: increased to 3.6.2
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org> Wed, 15 Mar 2006 18:37:22 +0100
+
+libsys-hostname-long-perl (1.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Chip Salzenberg <chip@debian.org> Tue, 8 Mar 2005 12:20:03 -0500
+
+libsys-hostname-long-perl (1.0-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Chip Salzenberg <chip@debian.org> Thu, 11 Mar 2004 14:27:23 -0500
+