debian/0000755000000000000000000000000012231170030007153 5ustar debian/watch0000644000000000000000000000026411642024716010224 0ustar # format version number, currently 3; this line is compulsory! version=3 http://search.cpan.org/dist/Image-LibRSVG/ .*/Image-LibRSVG-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/clean0000644000000000000000000000002211642024716010170 0ustar examples/test.png debian/rules0000755000000000000000000000122711642024716010253 0ustar #!/usr/bin/make -f PACKAGE = $(shell dh_listpackages) TMP = $(CURDIR)/debian/$(PACKAGE) CFLAGS:= $(shell dpkg-buildflags --get CFLAGS) CPPFLAGS:= $(shell dpkg-buildflags --get CPPFLAGS) LDFLAGS:= $(shell dpkg-buildflags --get LDFLAGS) export CFLAGS CPPFLAGS LDFLAGS override_dh_auto_configure: dh_auto_configure -- LIBS='-lrsvg-2' override_dh_auto_build: dh_auto_build -- OPTIMIZE="$(CFLAGS)" LD_RUN_PATH="" override_dh_auto_install: dh_auto_install rm -f $(TMP)/usr/lib/perl5/Image/examples.pl override_dh_installexamples: dh_installexamples -Xsvg.gz examples/* override_dh_compress: dh_compress --exclude=.svg --exclude=examples.pl %: dh $@ debian/copyright0000644000000000000000000000303411642024716011124 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=166 Upstream-Name: Image-LibRSVG Upstream-Contact: Tom Schindl Source: http://search.cpan.org/dist/Image-LibRSVG/ Files: * Copyright: 2004, Tom Schindl and bestsolution Systemhaus GmbH License: Artistic or GPL-1+ Files: ppport.h Copyright: 2001, Paul Marquess (Version 2.x) 1999, Kenneth Albanowski (Version 1.x) License: Artistic or GPL-1+ Files: debian/* Copyright: 2005, Antonio S. de A. Terceiro 2005, 2006, Niko Tyni 2006, Krzysztof Krzyzaniak 2007, Gunnar Wolf 2007-2010, gregor herrmann 2009, Nathan Handler 2009, Salvatore Bonaccorso 2011, Peter Pentchev 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/libimage-librsvg-perl.docs0000644000000000000000000000002311642024716014215 0ustar README examples.pl debian/source/0000755000000000000000000000000011642024716010471 5ustar debian/source/format0000644000000000000000000000001411642024716011677 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011642025317010616 5ustar debian/patches/format-security.diff0000644000000000000000000000076011642025317014610 0ustar From: Ansgar Burchardt Date: Sun, 02 Oct 2011 11:10:56 +0200 Subject: Fix format-security compiler warnings Bug-Debian: http://bugs.debian.org/643428 Origin: vendor Forwarded: no --- libimage-librsvg-perl.orig/LibRSVG.xs +++ libimage-librsvg-perl/LibRSVG.xs @@ -118,7 +118,7 @@ if (!f) { g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), - g_strerror (errno)); + "%s", g_strerror (errno)); return NULL; } debian/patches/init_rsvg.patch0000644000000000000000000000062511642024716013650 0ustar Description: Initializing RSVG at the XS constructor Bug-Debian: http://bugs.debian.org/430805 Forwarded: no Author: Niko Tyno Reviewed-by: gregor herrmann Last-Update: 2011-01-26 --- a/LibRSVG.xs +++ b/LibRSVG.xs @@ -383,6 +383,7 @@ new( CLASS ) CODE: Newz(0, RETVAL, 1, SVGLibRSVG); RETVAL->pixbuf = NULL; + rsvg_init(); OUTPUT: RETVAL debian/patches/series0000644000000000000000000000004511642025127012031 0ustar init_rsvg.patch format-security.diff debian/compat0000644000000000000000000000000211642024716010367 0ustar 8 debian/control0000644000000000000000000000204311642025542010571 0ustar Source: libimage-librsvg-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Antonio S. de A. Terceiro , Niko Tyni , Krzysztof Krzyzaniak (eloy) , Peter Pentchev Build-Depends: debhelper (>= 8), dpkg-dev (>= 1.15.7~), perl, librsvg2-dev Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Image-LibRSVG/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libimage-librsvg-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libimage-librsvg-perl.git Package: libimage-librsvg-perl Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${perl:Depends}, librsvg2-common Description: Perl binding for the GNOME librsvg SVG renderer library The Image::LibRSVG module provides a Perl interface to the librsvg GNOME library - an efficient renderer for Scalable Vector Graphics (SVG) images. This package allows Perl scripts to rasterize SVG drawings into bitmap images. debian/changelog0000644000000000000000000000767212231170030011041 0ustar libimage-librsvg-perl (0.07-6build2) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 10:12:56 +0100 libimage-librsvg-perl (0.07-6build1) precise; urgency=low * Rebuild for Perl 5.14. -- Colin Watson Tue, 15 Nov 2011 20:00:10 +0000 libimage-librsvg-perl (0.07-6) unstable; urgency=low * Team upload. * debian/control: Convert Vcs-* fields to Git. * Fix format-security compiler warnings. (Closes: #643428) + new patch: format-security.diff * Bumped Standards-Version to 3.9.2. -- Ansgar Burchardt Sun, 02 Oct 2011 11:14:52 +0200 libimage-librsvg-perl (0.07-5) unstable; urgency=low [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: XS- Vcs-Svn fields. * Split out the patch from 0.07-4 into a separate patch. * debian/watch: use dist-based URL. * debian/control: Added: ${misc:Depends} to Depends: field. * debian/control: change section to perl. * Remove Conflicts:/Replaces: libimage-rsvg-perl. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Salvatore Bonaccorso ] * debian/control: Changed: Replace versioned (build-)dependency on perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as permitted by Debian Policy 3.8.3). [ Peter Pentchev ] * Remove /usr/lib/perl5/Image/examples.pl. Closes: #611120 * Also remove a duplicate upstream example file. * Convert to the 3.0 (quilt) source format. * Add myself to Uploaders. * Reword the package description. * Refresh the copyright file: - refer to "Debian systems" and the GPL-1 file instead of the symlink - update it to the latest revision of the DEP 5 candidate format - add my copyright notice * Bump the debhelper compatibility level to 8 and minimize the rules file using override rules. * Use dpkg-buildflags from dpkg-dev 1.15.7 to obtain the default values for CPPFLAGS, CFLAGS and LDFLAGS. * Bump Standards-Version to 3.9.1 with no further changes. -- Peter Pentchev Thu, 27 Jan 2011 00:30:29 +0200 libimage-librsvg-perl (0.07-4) unstable; urgency=low * Initializing RSVG at the XS constructor, fixing FTBFS. Thanks to Niko Tyni for yet another great patch! (Closes: #430805) -- Gunnar Wolf Tue, 03 Jul 2007 13:55:39 -0500 libimage-librsvg-perl (0.07-3) unstable; urgency=low * Clean up unnecessary library dependencies. * Honor 'noopt' in DEB_BUILD_OPTIONS. * Upgrade to debhelper compatibility level 5. * Upgrade to Standards-Version 3.7.2. No changes needed. * Don't ignore the return value of 'make distclean'. -- Niko Tyni Tue, 17 Oct 2006 21:44:36 +0300 libimage-librsvg-perl (0.07-2) unstable; urgency=low * Drop dependencies from experimental -- Krzysztof Krzyzaniak (eloy) Mon, 20 Mar 2006 14:59:42 +0100 libimage-librsvg-perl (0.07-1) unstable; urgency=low * New upstream release -- Krzysztof Krzyzaniak (eloy) Wed, 15 Mar 2006 15:07:41 +0100 libimage-librsvg-perl (0.06-1) unstable; urgency=low * New upstream release (closes: #356239) * debian/control - added me to Uploaders -- Krzysztof Krzyzaniak (eloy) Mon, 13 Mar 2006 19:31:17 +0100 libimage-librsvg-perl (0.05-2) unstable; urgency=low * Add missing dependencies on shared libraries (${shlibs:Depends}). -- Niko Tyni Tue, 13 Dec 2005 21:31:25 +0000 libimage-librsvg-perl (0.05-1) unstable; urgency=low * Repackaging under the right name, conflicting & replacing with old package name libimage-rsvg-perl as said in Developer's Reference, 5.9.3 (Closes: #324419) * libimage-rsvg-perl must be removed, after this one enters the archive I'll request the removal -- Antonio S. de A. Terceiro Mon, 22 Aug 2005 10:44:02 -0300