r27940 - in /trunk/libautodie-perl/debian: ./ changelog compat control copyright rules watch

jeremiah-guest at users.alioth.debian.org jeremiah-guest at users.alioth.debian.org
Tue Dec 9 13:26:04 UTC 2008


Author: jeremiah-guest
Date: Tue Dec  9 13:26:01 2008
New Revision: 27940

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

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

Added: trunk/libautodie-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libautodie-perl/debian/changelog?rev=27940&op=file
==============================================================================
--- trunk/libautodie-perl/debian/changelog (added)
+++ trunk/libautodie-perl/debian/changelog Tue Dec  9 13:26:01 2008
@@ -1,0 +1,5 @@
+libautodie-perl (1.997-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #508242)
+
+ -- Jeremiah C. Foster <jeremiah at jeremiahfoster.com>  Tue, 09 Dec 2008 13:58:04 +0100

Added: trunk/libautodie-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libautodie-perl/debian/compat?rev=27940&op=file
==============================================================================
--- trunk/libautodie-perl/debian/compat (added)
+++ trunk/libautodie-perl/debian/compat Tue Dec  9 13:26:01 2008
@@ -1,0 +1,1 @@
+7

Added: trunk/libautodie-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libautodie-perl/debian/control?rev=27940&op=file
==============================================================================
--- trunk/libautodie-perl/debian/control (added)
+++ trunk/libautodie-perl/debian/control Tue Dec  9 13:26:01 2008
@@ -1,0 +1,27 @@
+Source: libautodie-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl (>= 5.8.0)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jeremiah C. Foster <jeremiah at jeremiahfoster.com>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/autodie/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libautodie-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libautodie-perl/
+
+Package: libautodie-perl
+Architecture: all
+Depends: perl (>= 5.8.0), ${misc:Depends}
+Description: Replace functions with ones that succeed or die with lexical scope
+ The autodie pragma provides a convenient way to replace functions 
+ that normally return false on failure with equivalents that throw 
+ an exception on failure.
+ .
+ The autodie pragma has lexical scope, meaning that functions and 
+ subroutines altered with autodie will only change their behaviour 
+ until the end of the enclosing block, file, or eval.
+ .
+ If system is specified as an argument to autodie, then it uses 
+ IPC::System::Simple to do the heavy lifting. See the description 
+ of that module for more information.

Added: trunk/libautodie-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libautodie-perl/debian/copyright?rev=27940&op=file
==============================================================================
--- trunk/libautodie-perl/debian/copyright (added)
+++ trunk/libautodie-perl/debian/copyright Tue Dec  9 13:26:01 2008
@@ -1,0 +1,30 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Paul Fenwick <pjf at cpan.org>
+Upstream-Source: http://search.cpan.org/dist/autodie/
+Upstream-Name: autodie
+
+Files: *
+Copyright: 2008, Paul Fenwick <pjf at cpan.org>, All rights reserved.
+License-Alias: Perl
+License: Artistic | GPL-1+
+ This program is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+
+Files: debian/*
+Copyright: 2008, Jeremiah C. Foster <jeremiah at jeremiahfoster.com>
+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/libautodie-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libautodie-perl/debian/rules?rev=27940&op=file
==============================================================================
--- trunk/libautodie-perl/debian/rules (added)
+++ trunk/libautodie-perl/debian/rules Tue Dec  9 13:26:01 2008
@@ -1,0 +1,25 @@
+#!/usr/bin/make -f
+
+build: build-stamp
+build-stamp:
+	dh build
+	touch $@
+
+clean:
+	dh $@
+
+install: install-stamp
+	find debian/libautodie-perl/ -type f -name .packlist | xargs rm -f
+
+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/libautodie-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libautodie-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libautodie-perl/debian/watch?rev=27940&op=file
==============================================================================
--- trunk/libautodie-perl/debian/watch (added)
+++ trunk/libautodie-perl/debian/watch Tue Dec  9 13:26:01 2008
@@ -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/autodie/   .*/autodie-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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