--- libclass-accessor-named-perl-0.008.orig/debian/control +++ libclass-accessor-named-perl-0.008/debian/control @@ -0,0 +1,31 @@ +Source: libclass-accessor-named-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.10-12), libtest-pod-coverage-perl, + libtest-pod-perl, libclass-accessor-perl, libsub-name-perl, + libuniversal-require-perl, libhook-lexwrap-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Class-Accessor-Named/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-accessor-named-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-accessor-named-perl/ + +Package: libclass-accessor-named-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libclass-accessor-perl, + libsub-name-perl, libuniversal-require-perl, libhook-lexwrap-perl +Description: better profiling output for Class::Accessor + Class::Accessor is a great way to automate the tedious task of generating + accessors and mutators. One small drawback is that due to the details of + the implemenetation, you only get one __ANON__ entry in profiling output. + That entry contains all your accessors, which can be a real pain if you're + attempting to figure out which of your accessors is being called six billion + times. + . + Class::Accessor::Names is a development aid which uses Hook::LexWrap and + Sub::Name to talk your accessors into identifying themselves. While + it shouldn't add much additional runtime overhead (as it acts only + Class::Accessor's generator functions), it has not been designed for + production deployment. --- libclass-accessor-named-perl-0.008.orig/debian/copyright +++ libclass-accessor-named-perl-0.008/debian/copyright @@ -0,0 +1,26 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=228 +Upstream-Name: Class-Accessor-Named +Upstream-Maintainer: Jesse Vincent +Upstream-Source: http://search.cpan.org/dist/Class-Accessor-Named/ + +Files: * +Copyright: Copyright (c) 2006, Best Practical Solutions, LLC +License: GPL-1+ | Artistic + This module is free software; you can redistribute it and/or modify it under + the same terms as Perl itself + +Files: inc/* +Copyright: Copyright 2002 - 2008 by Brian Ingerson, Audrey Tang and Adam Kennedy. +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + +Files: debian/* +Copyright: Copyright 2008, AGOSTINI Yves +License: GPL-1+ | Artistic + The Debian packaging is put under the same terms as the module 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'. --- libclass-accessor-named-perl-0.008.orig/debian/watch +++ libclass-accessor-named-perl-0.008/debian/watch @@ -0,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/Class-Accessor-Named/ .*/Class-Accessor-Named-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libclass-accessor-named-perl-0.008.orig/debian/compat +++ libclass-accessor-named-perl-0.008/debian/compat @@ -0,0 +1 @@ +7 --- libclass-accessor-named-perl-0.008.orig/debian/changelog +++ libclass-accessor-named-perl-0.008/debian/changelog @@ -0,0 +1,5 @@ +libclass-accessor-named-perl (0.008-1) unstable; urgency=low + + * Initial Release. (Closes: #499242) + + -- AGOSTINI Yves Fri, 26 Sep 2008 16:31:36 +0200 --- libclass-accessor-named-perl-0.008.orig/debian/rules +++ libclass-accessor-named-perl-0.008/debian/rules @@ -0,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: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build