r64747 - in /trunk/libmonkey-patch-perl/debian: ./ changelog compat control copyright patches/ patches/fix_pod.patch patches/series rules source/ source/format watch

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Thu Nov 11 00:07:38 UTC 2010


Author: emhn-guest
Date: Thu Nov 11 00:07:28 2010
New Revision: 64747

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

Added:
    trunk/libmonkey-patch-perl/debian/
    trunk/libmonkey-patch-perl/debian/changelog
    trunk/libmonkey-patch-perl/debian/compat
    trunk/libmonkey-patch-perl/debian/control
    trunk/libmonkey-patch-perl/debian/copyright
    trunk/libmonkey-patch-perl/debian/patches/
    trunk/libmonkey-patch-perl/debian/patches/fix_pod.patch
    trunk/libmonkey-patch-perl/debian/patches/series
    trunk/libmonkey-patch-perl/debian/rules   (with props)
    trunk/libmonkey-patch-perl/debian/source/
    trunk/libmonkey-patch-perl/debian/source/format
    trunk/libmonkey-patch-perl/debian/watch

Added: trunk/libmonkey-patch-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/changelog?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/changelog (added)
+++ trunk/libmonkey-patch-perl/debian/changelog Thu Nov 11 00:07:28 2010
@@ -1,0 +1,5 @@
+libmonkey-patch-perl (0.03-1) UNRELEASED; urgency=low
+
+  * Initial Release (Closes: 603039).
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve>  Sat, 6 Nov 2010 14:47:41 -0430

Added: trunk/libmonkey-patch-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/compat?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/compat (added)
+++ trunk/libmonkey-patch-perl/debian/compat Thu Nov 11 00:07:28 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libmonkey-patch-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/control?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/control (added)
+++ trunk/libmonkey-patch-perl/debian/control Thu Nov 11 00:07:28 2010
@@ -1,0 +1,22 @@
+Source: libmonkey-patch-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl, libsub-delete-perl, libsuper-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/Monkey-Patch/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmonkey-patch-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmonkey-patch-perl/
+
+Package: libmonkey-patch-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}, libsub-delete-perl, libsuper-perl
+Description: a scoped monkey-patching Perl module
+ Monkey patching is a way to extend or modify the runtime code of a
+ program or library without altering the original source code.
+ .
+ Monkey::Patch provides lexical scope monkey-patching so that you can wrap
+ any other package's subroutine with your own code and still have access
+ to the original subroutine.

Added: trunk/libmonkey-patch-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/copyright?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/copyright (added)
+++ trunk/libmonkey-patch-perl/debian/copyright Thu Nov 11 00:07:28 2010
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Paul Driver <frodwith at cpan.org>
+Source: http://search.cpan.org/dist/Monkey-Patch/
+Name: Monkey-Patch
+
+Files: *
+Copyright: © Paul Driver <frodwith at cpan.org>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2010, Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+License: Artistic or 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 version 1 of the
+ General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libmonkey-patch-perl/debian/patches/fix_pod.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/patches/fix_pod.patch?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/patches/fix_pod.patch (added)
+++ trunk/libmonkey-patch-perl/debian/patches/fix_pod.patch Thu Nov 11 00:07:28 2010
@@ -1,0 +1,65 @@
+--- a/lib/Monkey/Patch/Handle.pm
++++ b/lib/Monkey/Patch/Handle.pm
+@@ -111,6 +111,20 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Monkey::Patch::Handle - Handle for monkey-patched functions
++
++=head1 DESCRIPTION
++
++Monkey::Patch::Handle keeps a stack of subroutine references for
++each name (Foo::bar::baz type name), so that the coderef that lives
++at that name is always the top of the stack, and if the wrappers get
++uninstalled in a funky order all hell doesn't break loose.
++
++You should never need to use this directly, so read L(Monkey::Patch)
++instead.
++
+ =pod
+ 
+ =begin Pod::Coverage
+--- a/lib/Monkey/Patch/Handle/Class.pm
++++ b/lib/Monkey/Patch/Handle/Class.pm
+@@ -18,6 +18,18 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Monkey::Patch::Handle::Class - Handle for monkey-patching classes
++
++=head1 DESCRIPTION
++
++Monkey::Patch::Handle::Class provides the default Monkey::Patch::Handle
++for monkey-patching a whole class.
++
++You should never need to use this directly, so read L(Monkey::Patch)
++instead.
++
+ =pod
+ 
+ =begin Pod::Coverage
+--- a/lib/Monkey/Patch/Handle/Object.pm
++++ b/lib/Monkey/Patch/Handle/Object.pm
+@@ -15,6 +15,18 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Monkey::Patch::Handle::Object - Handle for monkey-patching objects
++
++=head1 DESCRIPTION
++
++Monkey::Patch::Handle::Object provides the default Monkey::Patch::Handle
++for monkey-patching a particular object.
++
++You should never need to use this directly, so read L(Monkey::Patch)
++instead.
++
+ =pod
+ 
+ =begin Pod::Coverage

Added: trunk/libmonkey-patch-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/patches/series?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/patches/series (added)
+++ trunk/libmonkey-patch-perl/debian/patches/series Thu Nov 11 00:07:28 2010
@@ -1,0 +1,1 @@
+fix_pod.patch

Added: trunk/libmonkey-patch-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/rules?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/rules (added)
+++ trunk/libmonkey-patch-perl/debian/rules Thu Nov 11 00:07:28 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libmonkey-patch-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libmonkey-patch-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/source/format?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/source/format (added)
+++ trunk/libmonkey-patch-perl/debian/source/format Thu Nov 11 00:07:28 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/libmonkey-patch-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmonkey-patch-perl/debian/watch?rev=64747&op=file
==============================================================================
--- trunk/libmonkey-patch-perl/debian/watch (added)
+++ trunk/libmonkey-patch-perl/debian/watch Thu Nov 11 00:07:28 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Monkey-Patch/   .*/Monkey-Patch-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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