r52932 - in /trunk/libdevel-caller-perl: Caller.xs Changes META.yml debian/changelog debian/compat debian/control debian/copyright debian/rules lib/Devel/Caller.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Feb 17 02:30:26 UTC 2010


Author: jawnsy-guest
Date: Wed Feb 17 02:30:20 2010
New Revision: 52932

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52932
Log:
* New upstream release
* Standards-Version 3.8.4 (drop perl version dep)
* Add myself to Uploaders and Copyright
* Use new short debhelper 7 rules format
* Rewrite control description
* Update copyright to DEP5 format

Modified:
    trunk/libdevel-caller-perl/Caller.xs
    trunk/libdevel-caller-perl/Changes
    trunk/libdevel-caller-perl/META.yml
    trunk/libdevel-caller-perl/debian/changelog
    trunk/libdevel-caller-perl/debian/compat
    trunk/libdevel-caller-perl/debian/control
    trunk/libdevel-caller-perl/debian/copyright
    trunk/libdevel-caller-perl/debian/rules
    trunk/libdevel-caller-perl/lib/Devel/Caller.pm

Modified: trunk/libdevel-caller-perl/Caller.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/Caller.xs?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/Caller.xs (original)
+++ trunk/libdevel-caller-perl/Caller.xs Wed Feb 17 02:30:20 2010
@@ -12,8 +12,8 @@
     PERL_CONTEXT *cx = INT2PTR(PERL_CONTEXT *, SvIV(context));
     CV *cur_cv;
 
-    if (cx->cx_type != CXt_SUB)
-        croak("cx_type is %d not CXt_SUB\n", cx->cx_type);
+    if (CxTYPE(cx) != CXt_SUB)
+        croak("cx_type is %d not CXt_SUB\n", CxTYPE(cx));
 
     cur_cv = cx->blk_sub.cv;
     if (!cur_cv)

Modified: trunk/libdevel-caller-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/Changes?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/Changes (original)
+++ trunk/libdevel-caller-perl/Changes Wed Feb 17 02:30:20 2010
@@ -1,3 +1,7 @@
+2.04 Tuesday 16th February, 2010
+	Use CxTYPE macro rather than directly inspecting cx->cx_type
+	http://rt.cpan.org/Public/Bug/Display.html?id=33005
+
 2.03 Tuesday 8th January, 2008
 	Rerelease from a linux host to avoid hateful OSX and its
 	hateful resource forks http://rt.cpan.org/Ticket/Display.html?id=32154

Modified: trunk/libdevel-caller-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/META.yml?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/META.yml (original)
+++ trunk/libdevel-caller-perl/META.yml Wed Feb 17 02:30:20 2010
@@ -1,12 +1,22 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Devel-Caller
-version:      2.03
-version_from: lib/Devel/Caller.pm
-installdirs:  site
+--- #YAML:1.0
+name:               Devel-Caller
+version:            2.04
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
 requires:
-    PadWalker:                     0.08
-    Test::More:                    0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+    PadWalker:   0.08
+    Test::More:  0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
+meta-spec:
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libdevel-caller-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/debian/changelog?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/debian/changelog (original)
+++ trunk/libdevel-caller-perl/debian/changelog Wed Feb 17 02:30:20 2010
@@ -1,13 +1,20 @@
-libdevel-caller-perl (2.03-2) UNRELEASED; urgency=low
+libdevel-caller-perl (2.04-1) UNRELEASED; urgency=low
 
+  [ Jonathan Yu ]
+  * New upstream release
+  * Standards-Version 3.8.4 (drop perl version dep)
   * Removed Alexis Sukrieh from Uploaders (Closes: #536132)
+  * Add myself to Uploaders and Copyright
+  * Use new short debhelper 7 rules format
+  * Rewrite control description
+  * Update copyright to DEP5 format
 
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
   * Change my email address.
 
- -- Jonathan Yu <frequency at cpan.org>  Tue, 07 Jul 2009 11:36:43 -0400
+ -- Jonathan Yu <jawnsy at cpan.org>  Tue, 16 Feb 2010 21:48:27 -0500
 
 libdevel-caller-perl (2.03-1) unstable; urgency=low
 

Modified: trunk/libdevel-caller-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/debian/compat?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/debian/compat (original)
+++ trunk/libdevel-caller-perl/debian/compat Wed Feb 17 02:30:20 2010
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libdevel-caller-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/debian/control?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/debian/control (original)
+++ trunk/libdevel-caller-perl/debian/control Wed Feb 17 02:30:20 2010
@@ -1,11 +1,10 @@
 Source: libdevel-caller-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0), perl (>= 5.8.8-7),
- libpadwalker-perl (>= 0.08)
+Build-Depends: debhelper (>= 7), perl, libpadwalker-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Niko Tyni <ntyni at debian.org>
-Standards-Version: 3.7.3
+Uploaders: Niko Tyni <ntyni at debian.org>, Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/Devel-Caller/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdevel-caller-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdevel-caller-perl/
@@ -13,11 +12,11 @@
 Package: libdevel-caller-perl
 Architecture: any
 Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends},
- libpadwalker-perl (>= 0.08)
-Description: Perl module for enhancing the caller() function
- Devel::Caller provides four functions for introspecting your code deeper than
- the internal function "caller()" does.
- .
- You can access arguments passed to a function or even the code reference of
- the subroutine being invoked at the call frame indicated by the given level.
+ libpadwalker-perl
+Description: module providing enhanced caller() support
+ Devel::Caller is a Perl module that provides several useful functions for
+ introspecting your code deeper than the internal function "caller()" does. It
+ allows you to access arguments passed to a function or even retrieve the code
+ reference of the subroutine being invoked at the call frame indicated by the
+ given level.
  

Modified: trunk/libdevel-caller-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/debian/copyright?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/debian/copyright (original)
+++ trunk/libdevel-caller-perl/debian/copyright Wed Feb 17 02:30:20 2010
@@ -1,28 +1,30 @@
-This is the debian package for the Devel-Caller module.
-It was created by Alexis Sukrieh <sukria at debian.org> using dh-make-perl.
-
-It was downloaded from http://search.cpan.org/dist/Devel-Caller/.
-
-The upstream author is:
- Richard Clamp <richardc at unixbeard.net> with close reference to PadWalker by
- Robin Houston.
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Richard Clamp <richardc at unixbeard.net>
+Source: http://search.cpan.org/dist/Devel-Caller/
+Name: Devel-Caller
 
 Files: *
-Copyright: © 2002, 2003, 2006, 2007, 2008 Richard Clamp.
-License: Artistic | GPL-1+
- All Rights Reserved. This module is free software. It may be used,
- redistributed and/or modified under the same terms as Perl itself.
-
-Perl is distributed under your choice of the GNU General Public License or
-the Artistic License.  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'.
+Copyright: 2002-2008, Richard Clamp <richardc at unixbeard.net>
+License: Artistic or GPL-1+
 
 Files: debian/*
-Copyright: © 2007 Martín Ferrari <martin.ferrari at gmail.com>
-           © 2007 gregor herrmann <gregoa at debian.org>
-           © 2007 Damyan Ivanov <dmn at debian.org>
-           © 2007 Alexis Sukrieh <sukria at debian.org>
-License: Artistic | GPL-1+
- This module is licensed under the same terms as the software itself (see
- above).
+Copyright: 2010, Jonathan Yu <jawnsy at cpan.org>
+ 2007-2008, Niko Tyni <ntyni at debian.org>
+ 2007, Alexis Sukrieh <sukria at debian.org>
+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 the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'

Modified: trunk/libdevel-caller-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/debian/rules?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/debian/rules (original)
+++ trunk/libdevel-caller-perl/debian/rules Wed Feb 17 02:30:20 2010
@@ -1,79 +1,4 @@
 #!/usr/bin/make -f
-# This debian/rules file is provided as a template for normal perl
-# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
-# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
-# be used freely wherever it is useful.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-# If set to a true value then MakeMaker's prompt function will
-# always return the default without waiting for user input.
-export PERL_MM_USE_DEFAULT=1
-
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
-
-# Allow disabling build optimation by setting noopt in
-# $DEB_BUILD_OPTIONS
-CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-        CFLAGS += -O0
-else
-        CFLAGS += -O2
-endif
-
-build: build-stamp
-build-stamp:
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
-	$(MAKE) test
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean build-stamp install-stamp
-
-install: install-stamp
-install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/share/perl5/ ] || \
-		rmdir --verbose --parents --ignore-fail-on-non-empty $(TMP)/usr/share/perl5/
-	touch $@
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs
-	dh_installchangelogs Changes
-	dh_shlibdeps
-	dh_strip
-	dh_perl
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-source diff:
-	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+%:
+	dh $@

Modified: trunk/libdevel-caller-perl/lib/Devel/Caller.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-caller-perl/lib/Devel/Caller.pm?rev=52932&op=diff
==============================================================================
--- trunk/libdevel-caller-perl/lib/Devel/Caller.pm (original)
+++ trunk/libdevel-caller-perl/lib/Devel/Caller.pm Wed Feb 17 02:30:20 2010
@@ -7,7 +7,7 @@
 use base qw( Exporter  );
 use 5.008;
 
-our $VERSION = '2.03';
+our $VERSION = '2.04';
 XSLoader::load __PACKAGE__, $VERSION;
 
 our @EXPORT_OK = qw( caller_cv caller_args caller_vars called_with called_as_method );
@@ -235,7 +235,8 @@
 
 =head1 COPYRIGHT
 
-Copyright (c) 2002, 2003, 2006, 2007, 2008 Richard Clamp. All Rights Reserved.
+Copyright (c) 2002, 2003, 2006, 2007, 2008, 2010 Richard Clamp. All Rights
+Reserved.
 This module is free software. It may be used, redistributed and/or
 modified under the same terms as Perl itself.
 




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