--- libobject-destroyer-perl-2.00.orig/debian/control +++ libobject-destroyer-perl-2.00/debian/control @@ -0,0 +1,25 @@ +Source: libobject-destroyer-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-12), libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Ansgar Burchardt +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Object-Destroyer/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libobject-destroyer-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libobject-destroyer-perl/ + +Package: libobject-destroyer-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: make objects with circular references DESTROY normally + Object::Destroyer allows for the creation of "Destroy" handles. The + handle is "attached" to a circular relationship, but is not a part of + it. When the destroy handle falls out of scope, it will be cleaned up + correctly, and while being cleaned up, it will also force the data + structure it is attached to to be destroyed as well. Object::Destroyer + can call a specified release method on an object (or method DESTROY by + default). Alternatively, it can execute an arbitrary user code passed to + constructor as a code reference. + --- libobject-destroyer-perl-2.00.orig/debian/copyright +++ libobject-destroyer-perl-2.00/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Adam Kennedy +Upstream-Source: http://search.cpan.org/dist/Object-Destroyer/ +Upstream-Name: Object-Destroyer + +Files: * +Copyright: © 2004-2006, Adam Kennedy +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: inc/* +Copyright: © 2002-2006, Brian Ingerson, Audrey Tang and Adam Kennedy. +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: © 2008, Ansgar Burchardt +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' --- libobject-destroyer-perl-2.00.orig/debian/watch +++ libobject-destroyer-perl-2.00/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/Object-Destroyer/ .*/Object-Destroyer-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libobject-destroyer-perl-2.00.orig/debian/libobject-destroyer-perl.lintian-overrides +++ libobject-destroyer-perl-2.00/debian/libobject-destroyer-perl.lintian-overrides @@ -0,0 +1,3 @@ +# false positive +libobject-destroyer-perl binary: description-contains-duplicated-word to to + --- libobject-destroyer-perl-2.00.orig/debian/compat +++ libobject-destroyer-perl-2.00/debian/compat @@ -0,0 +1 @@ +7 --- libobject-destroyer-perl-2.00.orig/debian/changelog +++ libobject-destroyer-perl-2.00/debian/changelog @@ -0,0 +1,5 @@ +libobject-destroyer-perl (2.00-1) unstable; urgency=low + + * Initial Release (Closes: 506248) + + -- Ansgar Burchardt Sat, 6 Dec 2008 12:35:29 +0100 --- libobject-destroyer-perl-2.00.orig/debian/rules +++ libobject-destroyer-perl-2.00/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + AUTOMATED_TESTING=1 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