--- libgd-svg-perl-0.33.orig/debian/changelog +++ libgd-svg-perl-0.33/debian/changelog @@ -0,0 +1,18 @@ +libgd-svg-perl (0.33-1) unstable; urgency=low + + * New upstream version. + - Can now embed pixmap information inside an SVG (Lincoln Stein) + - Improvements to alpha support (Lincoln Stein) + - Ghost methods for more complete mapping to GD (Jason Stajich) + * Incremented Standards-Version in debian/control to reflect the + conformance with Policy 3.8.1 (no changes needed). + * Updated debian/copyright to a lighter version of the + machine-readable format. + + -- Charles Plessy Sun, 10 May 2009 12:19:33 -0400 + +libgd-svg-perl (0.32-1) unstable; urgency=low + + * Initial Release (Closes: #517206). + + -- Charles Plessy Thu, 26 Feb 2009 20:12:27 +0900 --- libgd-svg-perl-0.33.orig/debian/libgd-svg-perl.docs +++ libgd-svg-perl-0.33/debian/libgd-svg-perl.docs @@ -0,0 +1 @@ +README --- libgd-svg-perl-0.33.orig/debian/watch +++ libgd-svg-perl-0.33/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/GD-SVG/ .*/GD-SVG-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libgd-svg-perl-0.33.orig/debian/control +++ libgd-svg-perl-0.33/debian/control @@ -0,0 +1,20 @@ +Source: libgd-svg-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: libgd-gd2-perl, libsvg-perl, perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Charles Plessy +Standards-Version: 3.8.1 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libgd-svg-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libgd-svg-perl/ +Homepage: http://search.cpan.org/dist/GD-SVG/ + +Package: libgd-svg-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libgd-gd2-perl, libsvg-perl +Description: Seamlessly enable SVG output from scripts written using GD + GD::SVG painlessly enables scripts that utilize GD to export scalable vector + graphics (SVG). It accomplishes this task by wrapping SVG.pm with GD-styled + method calls. To enable this functionality, one need only change the "use GD" + call to "use GD::SVG" (and initial "new" method calls). --- libgd-svg-perl-0.33.orig/debian/libgd-svg-perl.examples +++ libgd-svg-perl-0.33/debian/libgd-svg-perl.examples @@ -0,0 +1 @@ +examples/* --- libgd-svg-perl-0.33.orig/debian/compat +++ libgd-svg-perl-0.33/debian/compat @@ -0,0 +1 @@ +7 --- libgd-svg-perl-0.33.orig/debian/copyright +++ libgd-svg-perl-0.33/debian/copyright @@ -0,0 +1,29 @@ +Format: Machine-readable license summary. + +Name: GD-SVG +Contact: Todd Harris +Source: http://search.cpan.org/CPAN/authors/id/T/TW/TWH/GD-SVG-0.33.tar.gz + +Copyright: © 2003–2009, Todd Harris , + © 2003–2009, the Cold Spring Harbor Laboratory +License: Artistic or GPL-1+ + This library is free software; you can redistribute it and/or modify + it under the same terms as Perl itself. + +Files: debian/* +Copyright: © 2009, Charles Plessy +License: Artistic or 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' --- libgd-svg-perl-0.33.orig/debian/rules +++ libgd-svg-perl-0.33/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