r15945 - in /trunk/libtest-xml-simple-perl/debian: ./ changelog compat control copyright rules watch

jaldhar at users.alioth.debian.org jaldhar at users.alioth.debian.org
Fri Feb 29 02:40:31 UTC 2008


Author: jaldhar
Date: Fri Feb 29 02:40:30 2008
New Revision: 15945

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

Added:
    trunk/libtest-xml-simple-perl/debian/
    trunk/libtest-xml-simple-perl/debian/changelog
    trunk/libtest-xml-simple-perl/debian/compat
    trunk/libtest-xml-simple-perl/debian/control
    trunk/libtest-xml-simple-perl/debian/copyright
    trunk/libtest-xml-simple-perl/debian/rules   (with props)
    trunk/libtest-xml-simple-perl/debian/watch

Added: trunk/libtest-xml-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtest-xml-simple-perl/debian/changelog?rev=15945&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/changelog (added)
+++ trunk/libtest-xml-simple-perl/debian/changelog Fri Feb 29 02:40:30 2008
@@ -1,0 +1,5 @@
+libtest-xml-simple-perl (0.09-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #468421)
+
+ -- Jaldhar H. Vyas <jaldhar at debian.org>  Thu, 28 Feb 2008 15:54:40 -0500

Added: trunk/libtest-xml-simple-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libtest-xml-simple-perl/debian/compat?rev=15945&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/compat (added)
+++ trunk/libtest-xml-simple-perl/debian/compat Fri Feb 29 02:40:30 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libtest-xml-simple-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libtest-xml-simple-perl/debian/control?rev=15945&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/control (added)
+++ trunk/libtest-xml-simple-perl/debian/control Fri Feb 29 02:40:30 2008
@@ -1,0 +1,19 @@
+Source: libtest-xml-simple-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.0-7), libxml-libxml-perl, libtest-tester-perl, libtest-longstring-perl, libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Test-XML-Simple/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-xml-simple-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-xml-simple-perl/
+
+Package: libtest-xml-simple-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libxml-libxml-perl, libtest-simple-perl, libtest-longstring-perl
+Description:  easy testing for XML
+ Test::XML::Simple is a very basic class for testing XML. It uses the XPath
+ syntax to locate nodes within the XML. You can also check all or part of the
+ structure vs. an XML fragment.

Added: trunk/libtest-xml-simple-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libtest-xml-simple-perl/debian/copyright?rev=15945&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/copyright (added)
+++ trunk/libtest-xml-simple-perl/debian/copyright Fri Feb 29 02:40:30 2008
@@ -1,0 +1,23 @@
+This is the debian package for the Test-XML-Simple module.
+It was created by Jaldhar H. Vyas <jaldhar at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Test-XML-Simple/
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: Joe McMahon, <mcmahon at cpan.org>.
+
+Copyright:  (c) 2005 by Yahoo!
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself, either Perl version 5.6.1 or, at
+your option, any later version of Perl 5 you may have available.
+
+The Artistic and GPL licences under which Perl is distributed can be found
+in /usr/share/common-licenses/ . See /usr/share/doc/perl/copyright for
+the license of Perl itself.
+
+The Debian packaging is (C) 2008, Jaldhar H. Vyas <jaldhar at debian.org> and
+is licensed under the same terms as the software itself (see above).

Added: trunk/libtest-xml-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtest-xml-simple-perl/debian/rules?rev=15945&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/rules (added)
+++ trunk/libtest-xml-simple-perl/debian/rules Fri Feb 29 02:40:30 2008
@@ -1,0 +1,76 @@
+#!/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)
+	$(MAKE) test
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	dh_clean build-stamp install-stamp
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into $(TMP) here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installexamples
+	dh_installdocs README
+	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/libtest-xml-simple-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtest-xml-simple-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libtest-xml-simple-perl/debian/watch?rev=15945&op=file
==============================================================================
--- trunk/libtest-xml-simple-perl/debian/watch (added)
+++ trunk/libtest-xml-simple-perl/debian/watch Fri Feb 29 02:40:30 2008
@@ -1,0 +1,3 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+http://search.cpan.org/dist/Test-XML-Simple/ .*/Test-XML-Simple-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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