r76906 - in /trunk/libhash-merge-perl/debian: ./ changelog compat control copyright rules source/ source/format watch

fabreg-guest at users.alioth.debian.org fabreg-guest at users.alioth.debian.org
Fri Jul 1 22:48:00 UTC 2011


Author: fabreg-guest
Date: Fri Jul  1 22:47:58 2011
New Revision: 76906

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76906
Log:
[svn-inject] Applying Debian modifications (0.12-1) to trunk

Added:
    trunk/libhash-merge-perl/debian/
    trunk/libhash-merge-perl/debian/changelog
    trunk/libhash-merge-perl/debian/compat
    trunk/libhash-merge-perl/debian/control
    trunk/libhash-merge-perl/debian/copyright
    trunk/libhash-merge-perl/debian/rules   (with props)
    trunk/libhash-merge-perl/debian/source/
    trunk/libhash-merge-perl/debian/source/format
    trunk/libhash-merge-perl/debian/watch

Added: trunk/libhash-merge-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/changelog?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/changelog (added)
+++ trunk/libhash-merge-perl/debian/changelog Fri Jul  1 22:47:58 2011
@@ -1,0 +1,40 @@
+libhash-merge-perl (0.12-1) unstable; urgency=low
+
+  * Imported Upstream version 0.12. (Closes: #584561)
+  * Make package lintian clean.
+    + Stick to source format 1.0.
+    + Add debian/watch file.
+  * Bump Standards-Version. No changes needed.
+
+ -- Martin Zobel-Helas <zobel at debian.org>  Mon, 07 Jun 2010 16:19:23 +0200
+
+libhash-merge-perl (0.11-1) unstable; urgency=low
+
+  * New Upstream Version.
+  * Acknowledge Mark's NMU (Closes: #467791).
+  * Fix debian/control to not include dh-make-perl boilerplate in long
+    description (Closes: #507468).
+  * Bump Standards Version. No changes needed.
+
+ -- Martin Zobel-Helas <zobel at debian.org>  Mon, 01 Jun 2009 17:42:31 +0200
+
+libhash-merge-perl (0.10-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467791
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:08:58 +0100
+
+libhash-merge-perl (0.10-2) unstable; urgency=low
+
+  * reupload with correct upstream source location. Let's hope this satisfies
+    Ganneff, to let this package through NEW.
+
+ -- Martin Zobel-Helas <zobel at debian.org>  Fri, 31 Aug 2007 18:15:57 +0200
+
+libhash-merge-perl (0.10-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Martin Zobel-Helas <zobel at debian.org>  Fri, 10 Aug 2007 15:04:41 +0200
+

Added: trunk/libhash-merge-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/compat?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/compat (added)
+++ trunk/libhash-merge-perl/debian/compat Fri Jul  1 22:47:58 2011
@@ -1,0 +1,1 @@
+5

Added: trunk/libhash-merge-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/control?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/control (added)
+++ trunk/libhash-merge-perl/debian/control Fri Jul  1 22:47:58 2011
@@ -1,0 +1,25 @@
+Source: libhash-merge-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-7), libclone-perl
+Maintainer: Martin Zobel-Helas <zobel at debian.org>
+Standards-Version: 3.8.4.0
+
+Package: libhash-merge-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libclone-perl
+Description:  Merges arbitrarily deep hashes into a single hash
+ Hash::Merge merges two arbitrarily deep hashes into a single hash.  That
+ is, at any level, it will add non-conflicting key-value pairs from one
+ hash to the other, and follows a set of specific rules when there are key
+ value conflicts (as outlined below).  The hash is followed recursively,
+ so that deeply nested hashes that are at the same level will be merged 
+ when the parent hashes are merged.  Please note that self-referencing
+ hashes, or recursive references, are not handled well by this method.
+ .
+ Values in hashes are considered to be either ARRAY references, 
+ HASH references, or otherwise are treated as SCALARs.  By default, the 
+ data passed to the merge function will be cloned using the Clone module; 
+ however, if necessary, this behavior can be changed to use as many of 
+ the original values as possible.  (See set_clone_behavior).

Added: trunk/libhash-merge-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/copyright?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/copyright (added)
+++ trunk/libhash-merge-perl/debian/copyright Fri Jul  1 22:47:58 2011
@@ -1,0 +1,20 @@
+This is the debian package for the Hash-Merge module.
+It was created by Martin Zobel-Helas <zobel at debian.org> using dh-make-perl.
+
+The upstream author is: 
+
+Michael K. Neylon <mneylon-pm at masemware.com>.
+
+
+Copyright (c) 2001,2002 Michael K. Neylon. All rights reserved.
+
+This library is free software.  You can redistribute it and/or modify it 
+under the same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  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'.
+
+Upstream source can be found at
+http://search.cpan.org/CPAN/authors/id/D/DM/DMUEY/Hash-Merge-0.12.tar.gz

Added: trunk/libhash-merge-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/rules?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/rules (added)
+++ trunk/libhash-merge-perl/debian/rules Fri Jul  1 22:47:58 2011
@@ -1,0 +1,83 @@
+#!/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
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	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/libhash-merge-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libhash-merge-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/source/format?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/source/format (added)
+++ trunk/libhash-merge-perl/debian/source/format Fri Jul  1 22:47:58 2011
@@ -1,0 +1,1 @@
+1.0

Added: trunk/libhash-merge-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhash-merge-perl/debian/watch?rev=76906&op=file
==============================================================================
--- trunk/libhash-merge-perl/debian/watch (added)
+++ trunk/libhash-merge-perl/debian/watch Fri Jul  1 22:47:58 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Hash-Merge/   .*/Hash-Merge-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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