--- libexception-class-trycatch-perl-1.12.orig/debian/control +++ libexception-class-trycatch-perl-1.12/debian/control @@ -0,0 +1,28 @@ +Source: libexception-class-trycatch-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), libmodule-build-perl, libexception-class-perl, libtest-pod-coverage-perl (>= 1.08), libtest-pod-perl (>= 1.22) +Build-Depends-Indep: perl (>= 5.005) +Maintainer: Debian Perl Group +Uploaders: Jaldhar H. Vyas , + Jose Luis Rivas +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Exception-Class-TryCatch/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libexception-class-trycatch-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libexception-class-trycatch-perl/ + +Package: libexception-class-trycatch-perl +Architecture: all +Depends: perl (>= 5.005), ${misc:Depends}, libexception-class-perl (>= 1.2) +Description: syntactic try/catch sugar for use with Exception::Class + Exception::Class::TryCatch provides syntactic sugar for use with + Exception::Class using the familiar keywords try and catch. Its + primary objective is to allow users to avoid dealing directly with $@ by + ensuring that any exceptions caught in an eval are captured as + Exception::Class objects, whether they were thrown objects to begin with or + whether the error resulted from die. This means that users may immediately + use isa and various Exception::Class methods to process the exception. + . + In addition, this module provides for a method to push errors onto a hidden + error stack immediately after an eval so that cleanup code or other error + handling may also call eval without the original error in $@ being lost. --- libexception-class-trycatch-perl-1.12.orig/debian/copyright +++ libexception-class-trycatch-perl-1.12/debian/copyright @@ -0,0 +1,39 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Author: David A Golden +Upstream-Name: Exception-Class-TryCatch +Packaged-By: Jaldhar H. Vyas +Original-Source-Location: http://search.cpan.org/dist/Exception-Class-TryCatch/ +Original-Source-Command: uscan --force-download +Original-Source-Depends: devscripts + +Files: * +Copyright © 2004-2008 by David A. Golden +License: Apache + +Files: debian/* +Copyright: © 2008 Jaldhar H. Vyas + © 2008 Jose Luis Rivas +License: GPL-1+ | Artistic + +License: Apache + Licensed under Apache License, Version 2.0 (the "License"). You may not + use this file except in compliance with the License. A copy of the + License was distributed with this file or you may obtain a copy of the + License from http://www.apache.org/licenses/LICENSE-2.0 + On Debian GNU/Linux systems, the complete text of the Apache License, + Version 2.0 can be found in /usr/share/common-licenses/Apache-2.0 + +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' --- libexception-class-trycatch-perl-1.12.orig/debian/watch +++ libexception-class-trycatch-perl-1.12/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/Exception-Class-TryCatch/ .*/Exception-Class-TryCatch-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libexception-class-trycatch-perl-1.12.orig/debian/compat +++ libexception-class-trycatch-perl-1.12/debian/compat @@ -0,0 +1 @@ +7 --- libexception-class-trycatch-perl-1.12.orig/debian/changelog +++ libexception-class-trycatch-perl-1.12/debian/changelog @@ -0,0 +1,21 @@ +libexception-class-trycatch-perl (1.12-1) unstable; urgency=low + + [ Jose Luis Rivas ] + * New upstream release + * Switched to debhelper 7. + * debian/control: added me as uploader. + * debian/copyright: Updated formatting. + + [ gregor herrmann ] + * debian/rules: use the template from dh-make-perl + * debian/copyright: add Upstream-Name field and reflect upstream's + re-licencing under the Apache 2.0 License. + * debian/control: start short description with lower-case letter. + + -- Jose Luis Rivas Tue, 04 Nov 2008 00:37:35 -0430 + +libexception-class-trycatch-perl (1.10-1) unstable; urgency=low + + * Initial Release. (Closes: #497460) + + -- Jaldhar H. Vyas Mon, 01 Sep 2008 17:15:33 -0400 --- libexception-class-trycatch-perl-1.12.orig/debian/rules +++ libexception-class-trycatch-perl-1.12/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