r32087 - in /trunk/libtest-distmanifest-perl/debian: ./ changelog compat control copyright libtest-distmanifest-perl.docs libtest-distmanifest-perl.examples rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 15 11:59:28 UTC 2009


Author: jawnsy-guest
Date: Sun Mar 15 11:59:24 2009
New Revision: 32087

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

Added:
    trunk/libtest-distmanifest-perl/debian/
    trunk/libtest-distmanifest-perl/debian/changelog
    trunk/libtest-distmanifest-perl/debian/compat
    trunk/libtest-distmanifest-perl/debian/control
    trunk/libtest-distmanifest-perl/debian/copyright
    trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.docs
    trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.examples
    trunk/libtest-distmanifest-perl/debian/rules   (with props)
    trunk/libtest-distmanifest-perl/debian/watch

Added: trunk/libtest-distmanifest-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/changelog?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/changelog (added)
+++ trunk/libtest-distmanifest-perl/debian/changelog Sun Mar 15 11:59:24 2009
@@ -1,0 +1,5 @@
+libtest-distmanifest-perl (1.1.2-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #519657)
+
+ -- Jonathan Yu <frequency at cpan.org>  Sat, 14 Mar 2009 20:34:14 -0400

Added: trunk/libtest-distmanifest-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/compat?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/compat (added)
+++ trunk/libtest-distmanifest-perl/debian/compat Sun Mar 15 11:59:24 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libtest-distmanifest-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/control?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/control (added)
+++ trunk/libtest-distmanifest-perl/debian/control Sun Mar 15 11:59:24 2009
@@ -1,0 +1,36 @@
+Source: libtest-distmanifest-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), libmodule-build-perl
+Build-Depends-Indep: libmodule-manifest-perl (>= 0.05),
+  libtest-signature-perl (>= 1.10), libtest-kwalitee-perl (>= 1.01),
+  libtest-perl-critic-perl (>= 1.01), libperl-critic-perl (>= 1.098),
+  libtest-yaml-meta-perl (>= 0.11), libtest-kwalitee-perl (>= 1.01),
+  libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04),
+  libtest-nowarnings-perl (>= 0.084), perl (>= 5.6.0-12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <frequency at cpan.org>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Test-DistManifest/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-distmanifest-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-distmanifest-perl/
+
+Package: libtest-distmanifest-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+  libmodule-manifest-perl (>= 0.05)
+Description: Perl module for verifying CPAN MANIFEST files
+ Test::DistManifest provides a simple method of testing that a MANIFEST
+ matches the distribution. It is similar to Test::CheckManifest, but
+ differs in that it has native support for the MANIFEST.SKIP file.
+ .
+ It tests three things:
+ 1. Everything in MANIFEST exists
+ 2. Everything in the package is listed in MANIFEST, or subsequently
+    matches a regular expression mask in MANIFEST.SKIP
+ 3. Nothing exists in MANIFEST that also matches a mask in MANIFEST.SKIP
+    (this prevents an unsatisfiable condition)
+ .
+ Much of the functionality is provided by Module::Manifest, so developers
+ wishing to manipulate MANIFEST files in a similar way are encouraged to
+ look at that distribution.

Added: trunk/libtest-distmanifest-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/copyright?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/copyright (added)
+++ trunk/libtest-distmanifest-perl/debian/copyright Sun Mar 15 11:59:24 2009
@@ -1,0 +1,31 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Jonathan Yu <frequency at cpan.org>
+Upstream-Source: http://search.cpan.org/dist/Test-DistManifest/
+Upstream-Name: Test-DistManifest
+
+Files: *
+Copyright: Jonathan Yu <frequency at cpan.org>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Jonathan Yu <frequency at cpan.org>
+License: PD | Artistic | GPL-1+
+
+Files: t/*
+License: PD | 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-distmanifest-perl/debian/libtest-distmanifest-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.docs?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.docs (added)
+++ trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.docs Sun Mar 15 11:59:24 2009
@@ -1,0 +1,1 @@
+README

Added: trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.examples?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.examples (added)
+++ trunk/libtest-distmanifest-perl/debian/libtest-distmanifest-perl.examples Sun Mar 15 11:59:24 2009
@@ -1,0 +1,1 @@
+examples/*

Added: trunk/libtest-distmanifest-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/rules?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/rules (added)
+++ trunk/libtest-distmanifest-perl/debian/rules Sun Mar 15 11:59:24 2009
@@ -1,0 +1,23 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch:
+
+binary-indep: install
+	dh $@
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

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

Added: trunk/libtest-distmanifest-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-distmanifest-perl/debian/watch?rev=32087&op=file
==============================================================================
--- trunk/libtest-distmanifest-perl/debian/watch (added)
+++ trunk/libtest-distmanifest-perl/debian/watch Sun Mar 15 11:59:24 2009
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/Test-DistManifest/   .*/Test-DistManifest-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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