--- libdevel-refcount-perl-0.05.orig/debian/control +++ libdevel-refcount-perl-0.05/debian/control @@ -0,0 +1,25 @@ +Source: libdevel-refcount-perl +Section: perl +Priority: optional +Build-Depends: perl-modules (>= 5.10) | libmodule-build-perl, + debhelper (>= 7.2.10), libtest-exception-perl, perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Jonathan Yu +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Devel-Refcount/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdevel-refcount-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdevel-refcount-perl/ + +Package: libdevel-refcount-perl +Architecture: any +Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends} +Description: Perl module to obtain the reference count of a variable + Devel::Refcount provides a single function which obtains the reference count + of the object being pointed to by the passed reference value. + . + Internally, Perl maintains a count of the number of 'things' referring to each + variable, as a means of providing automatic memory management. Every time a + reference is made to a scalar value, for example, the reference count is + incremented; every time that reference is lost (eg. when a lexical variable + goes out of scope) then the reference count is decremented. + --- libdevel-refcount-perl-0.05.orig/debian/copyright +++ libdevel-refcount-perl-0.05/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Paul Evans +Upstream-Source: http://search.cpan.org/dist/Devel-Refcount/ +Upstream-Name: Devel-Refcount + +Files: * +Copyright: 2008, Paul Evans +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Jonathan Yu +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' --- libdevel-refcount-perl-0.05.orig/debian/watch +++ libdevel-refcount-perl-0.05/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/Devel-Refcount/ .*/Devel-Refcount-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libdevel-refcount-perl-0.05.orig/debian/compat +++ libdevel-refcount-perl-0.05/debian/compat @@ -0,0 +1 @@ +7 --- libdevel-refcount-perl-0.05.orig/debian/changelog +++ libdevel-refcount-perl-0.05/debian/changelog @@ -0,0 +1,5 @@ +libdevel-refcount-perl (0.05-1) unstable; urgency=low + + * Initial Release. (Closes: #527107) + + -- Jonathan Yu Tue, 5 May 2009 19:44:45 -0400 --- libdevel-refcount-perl-0.05.orig/debian/rules +++ libdevel-refcount-perl-0.05/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: install + dh $@ + +binary-indep: + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build