--- libobject-declare-perl-0.22.orig/debian/control +++ libobject-declare-perl-0.22/debian/control @@ -0,0 +1,33 @@ +Source: libobject-declare-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0), libsub-override-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves , + Jaldhar H. Vyas , + gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Object-Declare/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libobject-declare-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libobject-declare-perl/ + +Package: libobject-declare-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libsub-override-perl +Description: Declarative object constructor + Object::Declare exports one function, declare, for building named + objects with a declarative syntax, similar to how Jifty::DBI::Schema + defines its columns. + . + In list context, declare returns a list of name/object pairs in the + order of declaration (allowing duplicates), suitable for putting into a hash. + In scalar context, declare returns a hash reference. + . + Example: function for defining some declarative object + . + sub do_declare { declare { + column x => + is rw, + is Very::Happy; + } }; --- libobject-declare-perl-0.22.orig/debian/copyright +++ libobject-declare-perl-0.22/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Audrey Tang +Upstream-Source: http://search.cpan.org/dist/Object-Declare/ +Upstream-Name: Object-Declare + +Files: * +Copyright: 2006, 2007 Audrey Tang +License: MIT + +Files: debian/* +Copyright: 2008-2009, various members of the Debian Perl Group, + cf. debian/changelog +License: MIT + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. --- libobject-declare-perl-0.22.orig/debian/watch +++ libobject-declare-perl-0.22/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-Declare/ .*/Object-Declare-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libobject-declare-perl-0.22.orig/debian/compat +++ libobject-declare-perl-0.22/debian/compat @@ -0,0 +1 @@ +7 --- libobject-declare-perl-0.22.orig/debian/changelog +++ libobject-declare-perl-0.22/debian/changelog @@ -0,0 +1,20 @@ +libobject-declare-perl (0.22-2) unstable; urgency=low + + * debian/control: + - replace tabs with spaces (closes: #479598) and improve spelling + - switch Vcs-Browser field to ViewSVN + - add /me to Uploaders + - mention module name in long description + * Set Standards-Version to 3.8.0 (no changes). + * Don't install README anymore, just a text version of the POD. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: switch to new format. + + -- gregor herrmann Fri, 02 Jan 2009 18:23:15 +0100 + +libobject-declare-perl (0.22-1) unstable; urgency=low + + * Initial Release (Closes: #476392) + + -- AGOSTINI Yves Wed, 16 Apr 2008 09:43:01 +0200 --- libobject-declare-perl-0.22.orig/debian/rules +++ libobject-declare-perl-0.22/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