r76930 - in /trunk/libstruct-compare-perl/debian: ./ changelog compat control copyright rules

fabreg-guest at users.alioth.debian.org fabreg-guest at users.alioth.debian.org
Fri Jul 1 23:14:09 UTC 2011


Author: fabreg-guest
Date: Fri Jul  1 23:14:00 2011
New Revision: 76930

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

Added:
    trunk/libstruct-compare-perl/debian/
    trunk/libstruct-compare-perl/debian/changelog
    trunk/libstruct-compare-perl/debian/compat
    trunk/libstruct-compare-perl/debian/control
    trunk/libstruct-compare-perl/debian/copyright
    trunk/libstruct-compare-perl/debian/rules   (with props)

Added: trunk/libstruct-compare-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstruct-compare-perl/debian/changelog?rev=76930&op=file
==============================================================================
--- trunk/libstruct-compare-perl/debian/changelog (added)
+++ trunk/libstruct-compare-perl/debian/changelog Fri Jul  1 23:14:00 2011
@@ -1,0 +1,20 @@
+libstruct-compare-perl (1.0.1-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467894
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:09:11 +0100
+
+libstruct-compare-perl (1.0.1-2) unstable; urgency=low
+
+  * Fix debian/copyright and list the license. Lets hope this satifies Ganneff
+    to let this package through NEW.
+
+ -- Martin Zobel-Helas <zobel at debian.org>  Fri, 31 Aug 2007 18:22:04 +0200
+
+libstruct-compare-perl (1.0.1-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Martin Zobel-Helas <zobel at debian.org>  Thu, 16 Aug 2007 15:27:06 +0200
+

Added: trunk/libstruct-compare-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstruct-compare-perl/debian/compat?rev=76930&op=file
==============================================================================
--- trunk/libstruct-compare-perl/debian/compat (added)
+++ trunk/libstruct-compare-perl/debian/compat Fri Jul  1 23:14:00 2011
@@ -1,0 +1,1 @@
+5

Added: trunk/libstruct-compare-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstruct-compare-perl/debian/control?rev=76930&op=file
==============================================================================
--- trunk/libstruct-compare-perl/debian/control (added)
+++ trunk/libstruct-compare-perl/debian/control Fri Jul  1 23:14:00 2011
@@ -1,0 +1,17 @@
+Source: libstruct-compare-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.8-7)
+Maintainer: Martin Zobel-Helas <zobel at debian.org>
+Standards-Version: 3.7.2
+
+Package: libstruct-compare-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:  Recursive diff for perl structures.
+ Compares two values of any type and structure and returns true if they
+ are the same. It does a deep comparison of the structures, so a hash
+ of a hash of a whatever will be compared correctly.
+ .
+ This is especially useful for writing unit tests for your modules!

Added: trunk/libstruct-compare-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstruct-compare-perl/debian/copyright?rev=76930&op=file
==============================================================================
--- trunk/libstruct-compare-perl/debian/copyright (added)
+++ trunk/libstruct-compare-perl/debian/copyright Fri Jul  1 23:14:00 2011
@@ -1,0 +1,29 @@
+This is the debian package for the Struct::Compare module.
+It was created by Martin Zobel-Helas <zobel at debian.org> using dh-make-perl.
+
+The upstream author is: 
+
+Ryan Davis <ryand-cmp at zenspider.com>
+Zen Spider Software <http://www.zenspider.com/ZSS/>.
+
+This pice of software was published under the following license terms:
+
+Copyright (c) 2001 Ryan Davis, Zen Spider Software
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.

Added: trunk/libstruct-compare-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstruct-compare-perl/debian/rules?rev=76930&op=file
==============================================================================
--- trunk/libstruct-compare-perl/debian/rules (added)
+++ trunk/libstruct-compare-perl/debian/rules Fri Jul  1 23:14:00 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 
+	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/libstruct-compare-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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