r34818 - in /trunk/libdevel-findref-perl/debian: ./ changelog compat control copyright rules watch
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Tue May 5 23:42:22 UTC 2009
Author: jawnsy-guest
Date: Tue May 5 23:42:17 2009
New Revision: 34818
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34818
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libdevel-findref-perl/debian/
trunk/libdevel-findref-perl/debian/changelog
trunk/libdevel-findref-perl/debian/compat
trunk/libdevel-findref-perl/debian/control
trunk/libdevel-findref-perl/debian/copyright
trunk/libdevel-findref-perl/debian/rules (with props)
trunk/libdevel-findref-perl/debian/watch
Added: trunk/libdevel-findref-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/changelog?rev=34818&op=file
==============================================================================
--- trunk/libdevel-findref-perl/debian/changelog (added)
+++ trunk/libdevel-findref-perl/debian/changelog Tue May 5 23:42:17 2009
@@ -1,0 +1,5 @@
+libdevel-findref-perl (1.4-1) UNRELEASED; urgency=low
+
+ * Initial Release. (Closes: #527116)
+
+ -- Jonathan Yu <frequency at cpan.org> Tue, 5 May 2009 19:23:58 -0400
Added: trunk/libdevel-findref-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/compat?rev=34818&op=file
==============================================================================
--- trunk/libdevel-findref-perl/debian/compat (added)
+++ trunk/libdevel-findref-perl/debian/compat Tue May 5 23:42:17 2009
@@ -1,0 +1,1 @@
+7
Added: trunk/libdevel-findref-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/control?rev=34818&op=file
==============================================================================
--- trunk/libdevel-findref-perl/debian/control (added)
+++ trunk/libdevel-findref-perl/debian/control Tue May 5 23:42:17 2009
@@ -1,0 +1,27 @@
+Source: libdevel-findref-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), 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.1
+Homepage: http://search.cpan.org/dist/Devel-FindRef/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdevel-findref-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdevel-findref-perl/
+
+Package: libdevel-findref-perl
+Architecture: any
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
+Description: Perl module to find variables referring to an object
+ Devel::FindRef is a module that can help developers track down reference
+ problems. Since Perl keeps track of everything internally, it is usually
+ possible to take an object/scalar/what-have-you and find everything that is
+ referring to it.
+ .
+ One common scenario is that some object goes out of scope and you expect it
+ to be destroyed, but there are still references to it that keep it from being
+ garbage collected.
+ .
+ This module can output a tree containing a list of variables that point to a
+ given value, along with some context about them, such as their scope and
+ where they are.
Added: trunk/libdevel-findref-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/copyright?rev=34818&op=file
==============================================================================
--- trunk/libdevel-findref-perl/debian/copyright (added)
+++ trunk/libdevel-findref-perl/debian/copyright Tue May 5 23:42:17 2009
@@ -1,0 +1,28 @@
+Format-Specification:
+ http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Marc Lehmann <pcg at goof.com>
+Upstream-Source: http://search.cpan.org/dist/Devel-FindRef/
+Upstream-Name: Devel-FindRef
+
+Files: *
+Copyright: 2007-2008, Marc Lehmann <pcg at goof.com>
+License-Alias: Perl
+License: Artistic | GPL-1+
+
+Files: debian/*
+Copyright: 2009, Jonathan Yu <frequency at cpan.org>
+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/libdevel-findref-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/rules?rev=34818&op=file
==============================================================================
--- trunk/libdevel-findref-perl/debian/rules (added)
+++ trunk/libdevel-findref-perl/debian/rules Tue May 5 23:42:17 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: install
+ dh $@
+
+binary-indep:
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build
Propchange: trunk/libdevel-findref-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: trunk/libdevel-findref-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-findref-perl/debian/watch?rev=34818&op=file
==============================================================================
--- trunk/libdevel-findref-perl/debian/watch (added)
+++ trunk/libdevel-findref-perl/debian/watch Tue May 5 23:42:17 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/Devel-FindRef/ .*/Devel-FindRef-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
More information about the Pkg-perl-cvs-commits
mailing list