r33362 - in /trunk/libexporter-lite-perl/debian: ./ changelog compat control copyright rules watch

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Thu Apr 16 03:22:10 UTC 2009


Author: ryan52-guest
Date: Thu Apr 16 03:22:05 2009
New Revision: 33362

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

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

Added: trunk/libexporter-lite-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libexporter-lite-perl/debian/changelog?rev=33362&op=file
==============================================================================
--- trunk/libexporter-lite-perl/debian/changelog (added)
+++ trunk/libexporter-lite-perl/debian/changelog Thu Apr 16 03:22:05 2009
@@ -1,0 +1,75 @@
+libexporter-lite-perl (0.02-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/patches/01_add_whitespace.diff: Removed.
+
+ -- Bart Martens <bartm at knars.be>  Fri, 13 Apr 2007 18:42:01 +0200
+
+libexporter-lite-perl (0.01-9) unstable; urgency=low
+
+  * New maintainer, as agreed with Stephen.
+  * debian/*: Use cdbs.
+  * debian/copyright: Updated to add copyright notices.
+  * debian/watch: Updated to version 3.
+
+ -- Bart Martens <bartm at knars.be>  Sat, 18 Nov 2006 10:00:07 +0100
+
+libexporter-lite-perl (0.01-8) unstable; urgency=low
+
+  * Moved debhelper to Build-Depends
+  * Switched to my debian.org email address throughout
+
+ -- Stephen Quinney <sjq at debian.org>  Wed, 21 Jun 2006 18:37:05 +0100
+
+libexporter-lite-perl (0.01-7) unstable; urgency=low
+
+  * New maintainer, closes: #289431.
+  * debian/control
+     * Changed section to perl
+     * Updated to latest Standards-Version
+     * Increased build-dependency on debhelper to >= 4
+  * debian/compat - Added, in-line with current best practice
+  * debian/rules - Changed to my standard style
+  * debian/copyright - Clarified slightly
+  
+ -- Stephen Quinney <sjq at debian.org>  Fri, 14 Jan 2005 14:17:13 +0000
+
+libexporter-lite-perl (0.01-6) unstable; urgency=low
+
+  * debian/control: Bumped Standards-Version
+  * lib/Exporter/Lite.pm: Add whitespace before "=head1 NAME"
+
+ -- Dagfinn Ilmari Mannsaker <ilmari at ping.uio.no>  Tue, 26 Nov 2002 13:55:07 +0100
+
+libexporter-lite-perl (0.01-5) unstable; urgency=low
+
+  * Really fix debian/copyright
+
+ -- Dagfinn Ilmari Mannsaker <ilmari at ping.uio.no>  Fri,  9 Aug 2002 00:49:22 +0200
+
+libexporter-lite-perl (0.01-4) unstable; urgency=low
+
+  * debian/copyright: Add pointers to full license texts.
+
+ -- Dagfinn Ilmari Mannsaker <ilmari at ping.uio.no>  Wed, 24 Jul 2002 01:28:35 +0200
+
+libexporter-lite-perl (0.01-3) unstable; urgency=low
+
+  * Close ITP. (Closes: #153146)
+  * Removed pointless README.Debian.
+  * debian/changelog: Removed "Local Variables" section.
+  * debian/rules: Removed cruft from dh-make
+
+ -- Dagfinn Ilmari Mannsaker <ilmari at ping.uio.no>  Tue, 16 Jul 2002 15:11:59 +0200
+
+libexporter-lite-perl (0.01-2) unstable; urgency=low
+
+  * Fixed short description
+
+ -- Dagfinn Ilmari Mannsaker <ilmari at ping.uio.no>  Tue, 16 Jul 2002 13:18:44 +0200
+
+libexporter-lite-perl (0.01-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Dagfinn Ilmari Mannsaker <ilmari at ping.uio.no>  Tue, 16 Jul 2002 12:42:45 +0200

Added: trunk/libexporter-lite-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libexporter-lite-perl/debian/compat?rev=33362&op=file
==============================================================================
--- trunk/libexporter-lite-perl/debian/compat (added)
+++ trunk/libexporter-lite-perl/debian/compat Thu Apr 16 03:22:05 2009
@@ -1,0 +1,1 @@
+5

Added: trunk/libexporter-lite-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libexporter-lite-perl/debian/control?rev=33362&op=file
==============================================================================
--- trunk/libexporter-lite-perl/debian/control (added)
+++ trunk/libexporter-lite-perl/debian/control Thu Apr 16 03:22:05 2009
@@ -1,0 +1,28 @@
+Source: libexporter-lite-perl
+Section: perl
+Priority: optional
+Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.6.0-17)
+Maintainer: Bart Martens <bartm at knars.be>
+Standards-Version: 3.7.2
+
+Package: libexporter-lite-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Lightweight subset of Exporter
+ This is an alternative to Exporter intended to provide a lightweight
+ subset of its functionality.  It supports import(), @EXPORT and
+ @EXPORT_OK and not a whole lot else.
+ .
+ Unlike Exporter, it is not necessary to inherit from Exporter::Lite
+ (ie. no @ISA = qw(Exporter::Lite) mantra).  Exporter::Lite simply
+ exports its import() function.  This might be called a "mix-in".
+ .
+ Setting up a module to export its variables and functions is simple:
+ .
+ package My::Module;
+ use Exporter::Lite;
+ .
+ @EXPORT = qw($Foo bar);
+ .
+  Homepage: http://search.cpan.org/~mschwern/Exporter-Lite/

Added: trunk/libexporter-lite-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libexporter-lite-perl/debian/copyright?rev=33362&op=file
==============================================================================
--- trunk/libexporter-lite-perl/debian/copyright (added)
+++ trunk/libexporter-lite-perl/debian/copyright Thu Apr 16 03:22:05 2009
@@ -1,0 +1,24 @@
+This package was debianized by Dagfinn Ilmari Mannsker <ilmari at ping.uio.no>
+on Mon, 15 Jul 2002 21:50:54 +0200
+
+It was downloaded from http://www.cpan.org/modules/by-module/Exporter/
+
+The upstream author is: Michael G Schwern <schwern at pobox.com>.
+
+Copyright (c) 2001 by chromatic <chromatic at wgz.org>
+Copyright (c) 2001 Michael G Schwern <schwern at pobox.com>
+
+License:
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of either:
+
+    a) the GNU General Public License as published by the Free Software
+       Foundation; either version 1, or (at your option) any later
+       version, or
+
+    b) the "Artistic License" which comes with Perl.
+
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL' and
+    the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libexporter-lite-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libexporter-lite-perl/debian/rules?rev=33362&op=file
==============================================================================
--- trunk/libexporter-lite-perl/debian/rules (added)
+++ trunk/libexporter-lite-perl/debian/rules Thu Apr 16 03:22:05 2009
@@ -1,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/perlmodule.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+install/libexporter-lite-perl::
+	-rmdir debian/libexporter-lite-perl/usr/lib/perl5
+	-rmdir debian/libexporter-lite-perl/usr/lib

Propchange: trunk/libexporter-lite-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libexporter-lite-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libexporter-lite-perl/debian/watch?rev=33362&op=file
==============================================================================
--- trunk/libexporter-lite-perl/debian/watch (added)
+++ trunk/libexporter-lite-perl/debian/watch Thu Apr 16 03:22:05 2009
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/CPAN/authors/id/M/MS/MSCHWERN/Exporter-Lite-(.*)\.tar\.gz




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