r33659 - in /trunk/libtest-signature-perl/debian: ./ changelog compat control copyright rules watch

roam-guest at users.alioth.debian.org roam-guest at users.alioth.debian.org
Tue Apr 21 12:56:31 UTC 2009


Author: roam-guest
Date: Tue Apr 21 12:56:26 2009
New Revision: 33659

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

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

Added: trunk/libtest-signature-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-signature-perl/debian/changelog?rev=33659&op=file
==============================================================================
--- trunk/libtest-signature-perl/debian/changelog (added)
+++ trunk/libtest-signature-perl/debian/changelog Tue Apr 21 12:56:26 2009
@@ -1,0 +1,5 @@
+libtest-signature-perl (1.10-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #519769)
+
+ -- Peter Pentchev <roam at ringlet.net>  Tue, 21 Apr 2009 15:47:11 +0300

Added: trunk/libtest-signature-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-signature-perl/debian/compat?rev=33659&op=file
==============================================================================
--- trunk/libtest-signature-perl/debian/compat (added)
+++ trunk/libtest-signature-perl/debian/compat Tue Apr 21 12:56:26 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libtest-signature-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-signature-perl/debian/control?rev=33659&op=file
==============================================================================
--- trunk/libtest-signature-perl/debian/control (added)
+++ trunk/libtest-signature-perl/debian/control Tue Apr 21 12:56:26 2009
@@ -1,0 +1,24 @@
+Source: libtest-signature-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.6.0-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Peter Pentchev <roam at ringlet.net>
+Standards-Version: 3.8.1
+Homepage: http://search.cpan.org/dist/Test-Signature/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-signature-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-signature-perl/
+
+Package: libtest-signature-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: Perl module that provides automatic SIGNATURE testing
+ "Module::Signature" allows you to verify that a distribution has not
+ been tampered with. "Test::Signature" lets that be tested as part of the
+ distribution's test suite.
+ .
+ IMPORTANT: This is not a substitute for the users verifying the
+ distribution themselves. By the time this module is run, the users will
+ have already run your Makefile.PL or Build.PL scripts which could have
+ been compromised.

Added: trunk/libtest-signature-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-signature-perl/debian/copyright?rev=33659&op=file
==============================================================================
--- trunk/libtest-signature-perl/debian/copyright (added)
+++ trunk/libtest-signature-perl/debian/copyright Tue Apr 21 12:56:26 2009
@@ -1,0 +1,30 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Audrey Tang <cpan at audreyt.org>
+Upstream-Source: http://search.cpan.org/dist/Test-Signature/
+Upstream-Name: Test-Signature
+
+Files: *
+Copyright: Audrey Tang <cpan at audreyt.org>
+Copyright: Copyright 2002, 2003 by Iain Truskett. All rights reserved.
+           Copyright 2003, 2007 by Audrey Tang <cpan at audreyt.org>.
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: Copyright (C) 2009  Peter Pentchev <roam at ringlet.net>
+License: Artistic | GPL-1+
+
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libtest-signature-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-signature-perl/debian/rules?rev=33659&op=file
==============================================================================
--- trunk/libtest-signature-perl/debian/rules (added)
+++ trunk/libtest-signature-perl/debian/rules Tue Apr 21 12:56:26 2009
@@ -1,0 +1,54 @@
+#!/usr/bin/make -f
+# debhelper rules for the Test::Signature Perl module
+
+# 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
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+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
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

Propchange: trunk/libtest-signature-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libtest-signature-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-signature-perl/debian/watch?rev=33659&op=file
==============================================================================
--- trunk/libtest-signature-perl/debian/watch (added)
+++ trunk/libtest-signature-perl/debian/watch Tue Apr 21 12:56:26 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Test-Signature/   .*/Test-Signature-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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