--- libasa-perl-0.02.orig/debian/control +++ libasa-perl-0.02/debian/control @@ -0,0 +1,20 @@ +Source: libasa-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: Peter Pentchev +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/asa/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libasa-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libasa-perl/ + +Package: libasa-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module for expanding a class or object's list of base classes + The asa pragma attempts a new approach to bringing Java-style interfaces + or Perl 6-style roles to Perl 5. It allows a class or object to + look like a derivative of another class without actually specifying + it in the @ISA array. --- libasa-perl-0.02.orig/debian/copyright +++ libasa-perl-0.02/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/asa/ +Upstream-Name: asa + +Files: * +Copyright: 2006, Adam Kennedy +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: inc/* +Copyright: Copyright 2001-2006 by Brian Ingerson, Audrey Tang and Adam Kennedy +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Peter Pentchev +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' --- libasa-perl-0.02.orig/debian/watch +++ libasa-perl-0.02/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/asa/ .*/asa-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libasa-perl-0.02.orig/debian/compat +++ libasa-perl-0.02/debian/compat @@ -0,0 +1 @@ +7 --- libasa-perl-0.02.orig/debian/changelog +++ libasa-perl-0.02/debian/changelog @@ -0,0 +1,5 @@ +libasa-perl (0.02-1) unstable; urgency=low + + * Initial Release. (Closes: #526345) + + -- Peter Pentchev Thu, 30 Apr 2009 18:25:05 +0300 --- libasa-perl-0.02.orig/debian/rules +++ libasa-perl-0.02/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