debian/0000755000000000000000000000000012231167204007164 5ustar debian/watch0000644000000000000000000000030411621577110010215 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 opts="uversionmangle=s/(\d)\.(\d{2})(\d+)/$1.$2.$3/" \ http://www.cpan.org/modules/by-module/GD/GD-([\d+\.]+)\.tar\.gz debian/README.source0000644000000000000000000000361311621577110011351 0ustar Building this package for Debian -------------------------------- This source package need no special handling for normal package builds. Developing this package for Debian ---------------------------------- The source of this package is developed using git and the helper tool git-buildpackage, with all official releases tagged and signed and binary diffs of tarballs stored using pristine-tar. This is documented below /usr/share/doc/git-buildpackage/manual-html/ . A custom build target shows current upstream and packaging versions: debian/rules print-version Current upstream tarball can be prepared using this other build target: debian/rules get-orig-source To switch to newer upstream source, first add a dummy changelog entry and comment out DEB_UPSTREAM_TARBALL_MD5 before getting the source: dch -v ${new_upstream_version}-1 "Dummy changelog entry" sed -i -e 's/^\(DEB_UPSTREAM_TARBALL_MD5\b\)/#\1/' debian/rules debian/rules get-orig-source Store new md5sum to help ensure identical source is received later. Setting DEB_MAINTAINER_MODE=1 enables additional build routines helpful during development of the package, but unfit for normal builds. This typically includes the CDBS feature of auto-updating debian/control with CDBS-related build-dependencies, which is forbidden by Debian Policy as build environment must not change during automated builds. Maintaining packaging build routines ------------------------------------ This source package wraps debhelper commands and other tedious parts of the build routines using the CDBS framework. Please refer to the actual makefile snippets included from debian/rules for details on their purpose and ways to override defaults. Additionally, makefile snippets included from below /usr/share/cdbs may also be documented in /usr/share/doc/cdbs/cdbs-doc.pdf.gz . -- Jonas Smedegaard Thu, 26 Feb 2009 21:28:29 +0100 debian/control.in0000644000000000000000000000334412161272716011207 0ustar Source: libgd-gd2-noxpm-perl Section: perl Priority: extra Maintainer: Debian Perl Group Uploaders: Jonas Smedegaard Build-Depends: @cdbs@ Vcs-Git: git://git.debian.org/git/pkg-perl/packages/libgd-gd2-noxpm-perl Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libgd-gd2-noxpm-perl.git Standards-Version: 3.9.1 Homepage: http://search.cpan.org/dist/GD/ Package: libgd-gd2-noxpm-perl Architecture: any Depends: ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends} Conflicts: libgd-noxpm-perl, libgd-perl, libgd-gd1-perl, libgd-gd1-noxpm-perl, libgd-gd2-xpm-perl Description: Perl module wrapper for libgd - gd2 variant without XPM support This is a autoloadable interface module for libgd, a popular library for creating and manipulating PNG files. With this library you can create PNG images on the fly or modify existing files. Features include: . * Lines, polygons, rectangles and arcs, both filled and unfilled * Flood fills * The use of arbitrary images as brushes and as tiled fill patterns * Line styling (dashed lines and the like) * Horizontal and vertical text rendering * Support for transparency and interlacing * Support for TrueType font rendering, via libfreetype. * Support for spline curves, via GD::Polyline * Support for symbolic font names, such as "helvetica:italic" * Support for symbolic color names, such as "green", via GD::Simple * Produces output in png, gif, jpeg and xbm format * Produces output in svg format via GD::SVG. . Included with the example code is the perl script qd.pl with QuickDraw routines for generating PICT2 files (used on Apple Macintosh). . This package is linked against libgd2, without Xpm (X pixmap) support. debian/rules0000755000000000000000000000457411621577110010261 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2003-2008, 2010 Jonas Smedegaard # Description: Main Debian packaging script for GD # # 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 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . -include /usr/share/cdbs/1/rules/upstream-tarball.mk -include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/rules/debhelper.mk # Put perlmodule.mk last to dh_clean temporary files not in MANIFEST include /usr/share/cdbs/1/class/perlmodule.mk # Silence optional build-dependencies to ease backporting CDBS_BUILD_DEPENDS_rules_upstream-tarball = CDBS_BUILD_DEPENDS_rules_utils_copyright-check = DEB_UPSTREAM_PACKAGE = GD DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/GD DEB_UPSTREAM_TARBALL_MD5 = 15d523ea72b552863453882f7d132712 # Suppress some graphics (in addition to default stuff) DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^\./(demos/font_list\.png|t/test.out.*|debian/(changelog|copyright(|_hints|_newhints)))$ DEB_INSTALL_DOCS_ALL += README.unix README.QUICKDRAW DEB_INSTALL_EXAMPLES_ALL = demos bdf_scripts qd.pl DEB_INSTALL_EXAMPLES_libgd-gd2-perl = $(DEB_INSTALL_EXAMPLES_ALL) DEB_INSTALL_EXAMPLES_libgd-gd2-noxpm-perl = $(DEB_INSTALL_EXAMPLES_ALL) # qd.pl and bdf2gdfont.pl are installed as example scripts instead common-binary-post-install-arch:: find "$(DEB_DESTDIR)" -type f -and '(' -name '*qd.pl*' -or -name '*bdf2gdfont.pl*' ')' -and -not -path '*/usr/share/doc/*' -exec rm -r '{}' ';' find "$(DEB_DESTDIR)" -type f -exec sed -i 's,/usr/local/bin/perl,/usr/bin/perl,' '{}' ';' # Remove stray empty dirs (due to MakeMaker stupidity and above cleanup) common-binary-post-install-arch:: find "$(DEB_DESTDIR)" -empty -depth -exec rm -rf '{}' ';' # Needed for by upstream build process CDBS_BUILD_DEPENDS += , libgd2-noxpm-dev (>= 2.0.28), libjpeg62-dev, libpng12-dev, libz-dev, libfreetype6-dev debian/copyright0000644000000000000000000000441011621577110011121 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135 Name: GD Contact: Lincoln D. Stein Source: http://www.cpan.org/modules/by-module/GD/ Copyright: 1995-2010, Lincoln D. Stein License: Artistic or GPL-1+ Files: ./bdf_scripts/* Copyright: 2004, Cold Spring Harbor Laboratory License: Artistic or GPL-1+ Files: ./GD/Polyline.pm Copyright: 2002, Daniel J. Harasty License: Artistic or GPL-1+ The Polyline.pm module is copyright 2002, Daniel J. Harasty. It is distributed under the same terms as Perl itself. See the "Artistic License" in the Perl source code distribution for licensing terms. Files: ./debian/* Copyright: 2003-2008, 2010 Jonas Smedegaard License: GPL-2+ License: Artistic The GD.pm interface is copyright 1995-2004, Lincoln D. Stein. It is covered by the Perl "Artistic License", which allows for free usage and redistribution. See the Artistic License in the Perl source package for details. License-comments: On Debian systems the Artistic License is located in '/usr/share/common-licenses/Artistic'. 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. License-comments: Perl is licensed under either the Artistic license or the GNU General Public License, version 1 or later. . On Debian systems the Artistic License is located in '/usr/share/common-licenses/Artistic', and the GNU General Public License (GPL) version 1 in '/usr/share/common-licenses/GPL-1'. License: GPL-2+ 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 2, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. License-comments: On Debian systems the GNU General Public License (GPL) version 2 is located in '/usr/share/common-licenses/GPL-2'. . You should have received a copy of the GNU General Public License along with this program. If not, see . debian/copyright_hints0000644000000000000000000000346311621577110012335 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135 X-Draft: Autogenerated by CDBS snippet copyright-check.mk Files: ./ChangeLog, ./GD/Group.pm, ./MANIFEST, ./META.yml, ./Makefile.PL, ./README.QUICKDRAW, ./README.unix, ./bdf_scripts/README, ./debian/README.source, ./debian/compat, ./debian/control, ./debian/control.in, ./debian/gbp.conf, ./debian/source/format, ./debian/source/local-options, ./debian/watch, ./demos/brushes.pl, ./demos/copies.pl, ./demos/fills.pl, ./demos/fonttest, ./demos/gd_example.cgi, ./demos/polyline.pl, ./demos/polys.pl, ./demos/shapes.pl, ./demos/tile.png, ./demos/transform.pl, ./demos/truetype_test, ./demos/ttf.pl, ./qd.pl, ./t/GD.t, ./t/Generic.ttf, ./t/Polyline.t, ./t/frog.jpg, ./t/frog.xpm, ./t/palettemap.png, ./t/tile.gif, ./t/tile.jpeg, ./t/tile.png, ./typemap Copyright: *No copyright* License: UNKNOWN FIXME Files: ./GD/Polygon.pm, ./GD/Simple.pm, ./README Copyright: 1995-2004, Lincoln D. Stein. It is 1995-2005, Lincoln D. Stein. It is 2004, Lincoln D. Stein. It is License: UNKNOWN FIXME Files: ./bdf_scripts/bdf2gdfont.PLS, ./bdf_scripts/bdf2gdfont.pl Copyright: 2004, Cold Spring Harbor Laboratory = $value; } License: UNKNOWN FIXME Files: ./GD.pm, ./GD/Image.pm.PLS Copyright: 1995, Lincoln D. Stein. See accompanying README file for 1995-2005, Lincoln D. Stein. It is 1995-2007, Lincoln D. Stein. It is License: UNKNOWN FIXME Files: ./debian/rules Copyright: 2003-2008, 2010 Jonas Smedegaard License: GPL FIXME Files: ./bdf_scripts/bdftogd Copyright: = $value; } License: UNKNOWN FIXME Files: ./GD/Polyline.pm Copyright: 2002, Daniel J. Harasty. It is License: UNKNOWN FIXME Files: ./GD.xs Copyright: 1995, - 1998, Lincoln D. Stein. See accompanying README file for License: UNKNOWN FIXME debian/source/0000755000000000000000000000000012152473571010475 5ustar debian/source/format0000644000000000000000000000001411621577110011675 0ustar 3.0 (quilt) debian/source/include-binaries0000644000000000000000000000020512152473571013632 0ustar t/test.out.2.png-2 t/test.out.3.png-2 t/test.out.4.png-3 t/test.out.5.png-2 t/test.out.6.png-2 t/test.out.7.png-2 t/test.out.9.png-3 debian/patches/0000755000000000000000000000000011621577110010616 5ustar debian/patches/use-config-ccflags.patch0000644000000000000000000000116011621577110015274 0ustar Description: add $Config{ccflags} to CCFLAGS Origin: vendor Bug-Debian: http://bugs.debian.org/637730 Forwarded: no Author: gregor herrmann Last-Update: 2011-08-14 --- a/Makefile.PL +++ b/Makefile.PL @@ -245,7 +245,7 @@ 'PL_FILES' => {'bdf_scripts/bdf2gdfont.PLS' => 'bdf_scripts/bdf2gdfont.pl', 'GD/Image.pm.PLS' => 'GD/Image.pm', }, - 'CCFLAGS' => '-Wformat=0', + 'CCFLAGS' => "-Wformat=0 $Config{ccflags}", 'EXE_FILES' => ['bdf_scripts/bdf2gdfont.pl'], 'AUTHOR' => 'Lincoln Stein (lstein@cshl.org)', 'ABSTRACT' => 'Interface to Gd Graphics Library', debian/patches/disable-jpeg-test0000644000000000000000000000131011621577110014037 0ustar Description: disable the JPEG check in test-suite it is a work-around #565919 until fixed upstream Author: Bill Allombert Bug-Debian: http://bugs.debian.org/565919 Forwarded: not-needed Index: libgd-gd2-noxpm-perl/t/GD.t =================================================================== --- libgd-gd2-noxpm-perl.orig/t/GD.t 2011-07-29 17:01:54.168391503 +0200 +++ libgd-gd2-noxpm-perl/t/GD.t 2011-07-29 17:09:28.934143162 +0200 @@ -76,7 +76,8 @@ } if (GD::Image->can('newFromJpeg')) { - compare(test10('frog.jpg'),10); +# compare(test10('frog.jpg'),10); + print "ok ",10," # Skip, JPEG test disabled\n"; } else { print "ok ",10," # Skip, no JPEG support\n"; } debian/patches/pod-fixes.patch0000644000000000000000000000153411621577110013540 0ustar Description: fix errors reported by pod2man There are a couple missing =back's and =over's Author: Damyan Ivanov Index: libgd-gd2-noxpm-perl/GD.pm =================================================================== --- libgd-gd2-noxpm-perl.orig/GD.pm 2011-07-30 09:44:27.416238216 +0200 +++ libgd-gd2-noxpm-perl/GD.pm 2011-07-30 09:45:13.033890388 +0200 @@ -460,6 +460,8 @@ NOTE: The libgd library is unable to read certain XPM files, returning an all-black image instead. +=back + =head1 GD::Image Methods Once a GD::Image object is created, you can draw with it, copy it, and @@ -472,6 +474,8 @@ The following methods convert the internal drawing format into standard output file formats. +=over + =item B<$pngdata = $image-Epng([$compression_level])> This returns the image data in PNG format. You can then print it, debian/patches/series0000644000000000000000000000007311621577110012033 0ustar disable-jpeg-test pod-fixes.patch use-config-ccflags.patch debian/compat0000644000000000000000000000000211621577110010365 0ustar 6 debian/control0000644000000000000000000000354512161272721010601 0ustar Source: libgd-gd2-noxpm-perl Section: perl Priority: extra Maintainer: Debian Perl Group Uploaders: Jonas Smedegaard Build-Depends: cdbs, debhelper (>= 6), dh-buildinfo, perl, libgd2-noxpm-dev (>= 2.0.28), libjpeg-dev, libpng12-dev, libz-dev, libfreetype6-dev Vcs-Git: git://git.debian.org/git/pkg-perl/packages/libgd-gd2-noxpm-perl Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libgd-gd2-noxpm-perl.git Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/GD/ Package: libgd-gd2-noxpm-perl Architecture: any Depends: ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends} Conflicts: libgd-noxpm-perl, libgd-perl, libgd-gd1-perl, libgd-gd1-noxpm-perl, libgd-gd2-xpm-perl Description: Perl module wrapper for libgd - gd2 variant without XPM support This is a autoloadable interface module for libgd, a popular library for creating and manipulating PNG files. With this library you can create PNG images on the fly or modify existing files. Features include: . * Lines, polygons, rectangles and arcs, both filled and unfilled * Flood fills * The use of arbitrary images as brushes and as tiled fill patterns * Line styling (dashed lines and the like) * Horizontal and vertical text rendering * Support for transparency and interlacing * Support for TrueType font rendering, via libfreetype. * Support for spline curves, via GD::Polyline * Support for symbolic font names, such as "helvetica:italic" * Support for symbolic color names, such as "green", via GD::Simple * Produces output in png, gif, jpeg and xbm format * Produces output in svg format via GD::SVG. . Included with the example code is the perl script qd.pl with QuickDraw routines for generating PICT2 files (used on Apple Macintosh). . This package is linked against libgd2, without Xpm (X pixmap) support. debian/gbp.conf0000644000000000000000000000014611621577110010607 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/changelog0000644000000000000000000003161712231167204011046 0ustar libgd-gd2-noxpm-perl (1:2.46-2.1build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 10:06:12 +0100 libgd-gd2-noxpm-perl (1:2.46-2.1) unstable; urgency=low * Non-maintainer upload. * Add regression test files matching libgd 2.1.0-rc1, confirmed to be visually indistinguishable (closes: #709047). -- Colin Watson Sat, 22 Jun 2013 11:00:52 +0100 libgd-gd2-noxpm-perl (1:2.46-2) unstable; urgency=low * Team upload. * Add a patch to include $Config{ccflags} in CCFLAGS. (Closes: #637730) -- gregor herrmann Sun, 14 Aug 2011 00:43:46 +0200 libgd-gd2-noxpm-perl (1:2.46-1) unstable; urgency=low * Team upload * Imported Upstream version 2.46 * build-depend on libjpeg-dev instead of libjpeg62-dev (not available anymore) (Closes: #635487) * update copyright info * add patch from Bill Allombert disabling the JPEG check in the test suite untill it is addressed upstream. Closes: #565919 -- tests fail with libjpeg8 * fix interpreter path in examples. thanks, lintian. * add pod-fixes.patch fixing errors reported by pod2man * Standards-Version: 3.9.2 (no changes necessary) * do not ship converted GD.html -- Damyan Ivanov Sat, 30 Jul 2011 15:57:08 +0200 libgd-gd2-noxpm-perl (1:2.41-1) unstable; urgency=low * New upstream release. * Drop locally included CDBS snippets: included in main cdbs now. * Packaging moved to Git: + Update Vcs stanzas. + Add git-buildpackage configfile, enabling signed tags and use of pristine-tar. + Use source format 3.0 (quilt), with suitable local-options. + Git-ignore quilt .pc dir. * Drop Sean Finney as uploader, to reflect reality. * Add proper licensing header to debian/rules. Extend copyright years. * Add README.source. Drop custom hints about CDBS. * Strip now obsolete suffices from watch file. * Ease backporting to Debian stable: Relax inclusion of CDBS snippets required only in DEB_MAINTAINER_MODE, and suppress related build- dependencies. * Rewrite copyright file using draft rev135 of DEP5 format. * Suppress some graphics from copyright-check. * Update README.source to not mention quilt: Source format 3.0 use it internally, but there it is standard and thus need no mention here. * Bump Policy compliance to standards-version 3.9.1. -- Jonas Smedegaard Mon, 18 Oct 2010 02:07:09 +0200 libgd-gd2-noxpm-perl (1:2.39-2) unstable; urgency=medium * Invoke svn-upgrade (not uupdate) in debian/watch. * Set urgency=medium as 1:2.39-2 included a FTBFS bugfix (similar to bug#487066). -- Jonas Smedegaard Sat, 28 Jun 2008 20:37:48 +0200 libgd-gd2-noxpm-perl (1:2.39-1) unstable; urgency=low * New upstream release. * Really advertise README.cdbs-tweaks as promised in -1. * Add Vcs-Svn and Vcs-Browser fields to debian/control. * Move Homepage to own field (from pseudo-field in long description). * Update local cdbs tweaks: + Major updates to copyright-check.mk, most importantly relax to only warn by default. + Various updates to update-tarball.mk, including changed wget options to work with recent versions of wget. + Drop buildcore.mk (set hints manually instead as needed). + Cosmetic updates to README.cdbs-tweaks. * Update debian/copyright-hints. * Bump debhelper compatibility level to 6. * Fix double cdbs build-dependencies in debian/rules. * Semi-auto-update debian/control to update build-dependencies: DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean -- Jonas Smedegaard Fri, 27 Jun 2008 20:00:34 +0200 libgd-gd2-noxpm-perl (1:2.35-1) unstable; urgency=low * New upstream release. * Switch to team maintainance using Alioth project pkg-gd, and myself and Sean Finney as uploaders. If you (yes, you!) want to help packaging GD and related packages for Debian, please get in touch with us at pgk-gd-devel@lists.alioth.debian.org . * Update CDBS tweaks: + Replace auto-update.mk with overloading buildcore.mk. + Fix applying buildinfo only once. + Fix race condition: check copyright strings in pre-build target (not clean target). Closes: bug#424513, thanks to Lucas Nussbaum for discovering and Patrick Winnertz for reporting. + Add upstream-tarball.mk to implement get-orig-source target. + Add debian/README.cdbs-tweaks and advertise it in debian/rules. * Declare build-dependencies in debian/rules. * Semi-auto-update debian/control: DEB_BUILD_OPTIONS=cdbs-autoupdate fakeroot debian/rules pre-build -- Jonas Smedegaard Sun, 12 Aug 2007 18:25:00 +0200 libgd-gd2-noxpm-perl (1:2.34-2) unstable; urgency=high * Rebuild against non-broken libgd-noxpm-dev. Closes: bug#402546. * High urgency: Wants to reach etch, as the wrong package dependencies defeat the very purpose of this package. -- Jonas Smedegaard Sat, 23 Dec 2006 12:57:02 +0100 libgd-gd2-noxpm-perl (1:2.34-1) unstable; urgency=low * New upstream release. * Bump standards-version to 3.7.2 (no changes needed). * Advertise search.cpan.org as Homepage (not "Website") in long description. * Bump watch file version and use uversionmangle to chop 3-digit minor version into manageable pieces (2.041->2.04.1 is lower than 2.05). * Add local cdbs snippet copyright-check.mk. * Move cdbs auto-update activation to local snippet auto-update.mk. * Update local cdbs snippet buildinfo.mk to use correct namespace. * Quote a couple of install paths (even though cdbs itself does not claim to support funny characters in builddir). * Update debian/copyright, thanks to copyright-check.mk: bdf2gdfont.pl has different owner, but same license. -- Jonas Smedegaard Sun, 16 Jul 2006 20:15:47 +0200 libgd-gd2-noxpm-perl (1:2.30-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Sun, 30 Oct 2005 13:05:01 +0100 libgd-gd2-noxpm-perl (1:2.28-1) unstable; urgency=low * New upstream release. * Raise to standards version 3.6.2 (no changes needed). * Use cdbs auto-update feature (enabled only when environment includes DEB_BUILD_OPTIONS=update). * Auto-update build-dependencies (and manually rip out build-essential buggily sneaking in). -- Jonas Smedegaard Wed, 14 Sep 2005 13:10:53 +0200 libgd-gd2-noxpm-perl (1:2.23-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Sat, 26 Mar 2005 04:13:01 +0100 libgd-gd2-noxpm-perl (1:2.19-1) unstable; urgency=low * New upstream release. + Tests updated, which closes: Bug#280456 (thanks to Roland Stigge ). * Improve debian/rules: + Correctly install qd.pl as example code. + Invoke dh-buildinfo from cdbs snippet (included locally for now). + Clean temporary files slightly more agressively. + Install bdf2gdfont.pl only as example script (not below /usr/bin). + Add more comments. + Make it generic: same file for both libgd-gd2-noxpm-perl and libgd-gd2-perl. * Tighten build-dependency on debhelper to please linda. * Rewrite long description: Mention some of the features and supported graphics formats. -- Jonas Smedegaard Fri, 26 Nov 2004 22:51:43 +0100 libgd-gd2-noxpm-perl (1:2.16-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Thu, 2 Sep 2004 11:58:41 +0200 libgd-gd2-noxpm-perl (1:2.15-1) unstable; urgency=low * New upstream source. + This release supports GIF (the LZW patent has expired). * Tighten dependency on libgd2 to ensure GIF support gets compiled in. * Stop explicit setting configure options (libgd-config is used now). * Cleaned up debian/copyright: + Replace info contained in changelog with note on "GNU systems". + Declare each topic more strictly. + Mention "licensing info" together with copyright. * Improved long descriptions: + Website URL added * Standards-Version: 3.6.1. * Add more comments to debian/rules. * Improve watch file: + Add hint on usage + Tweak regex slightly -- Jonas Smedegaard Sat, 24 Jul 2004 00:15:02 +0200 libgd-gd2-noxpm-perl (1:2.12-1) unstable; urgency=low * New upstream release. * Add epoch to get back to sane version number again. * Use "debian" as current version in watch file. -- Jonas Smedegaard Fri, 16 Apr 2004 17:58:30 +0200 libgd-gd2-noxpm-perl (2.110-1) unstable; urgency=low * New upstream release. * Update watch file. -- Jonas Smedegaard Sun, 19 Oct 2003 23:16:40 +0200 libgd-gd2-noxpm-perl (2.070-2) unstable; urgency=low * Rebuild against latest libpng12. * Switch to packaging using cdbs. * Hack watch file to avoid not-newer 2.041. * Standards version 3.6.0 (no changes needed). * Include (and build-depend on) dh_buildinfo. * Add bdf_scripts as example files. -- Jonas Smedegaard Thu, 24 Jul 2003 11:59:52 +0200 libgd-gd2-noxpm-perl (2.070-1) unstable; urgency=low * New upstream release. * Tighten build-dependency on libgd2 (required by new features in this release). * All tests succeed now compiled against libgd2 2.0.12, which closes: Bug#191889 (thanks to Daniel Schepler ). * Use new command-line options instead of patching Makefile.PL. * Use debhelper v4. Tighten build-dependency, switch debhelper hint from DH_COMPAT to debian/compat, and include ${misc:Depends}. * Avoid including -g build option twice. * Lower build-dependency on perl as described in perl-policy 3.3 to allow building on woody. * Bump up Standards-Version to 3.5.9. * Change section to perl. -- Jonas Smedegaard Sun, 4 May 2003 23:06:50 +0200 libgd-gd2-noxpm-perl (2.060-2) unstable; urgency=low * Recover the correct changelog (accidentally overwrote it with the changelog from libgd-gd2-perl). -- Jonas Smedegaard Sun, 16 Feb 2003 14:24:13 +0100 libgd-gd2-noxpm-perl (2.060-1) unstable; urgency=low * New upstream release (append a zero to avoid using an epoch). * Build-depend on libgd-gd2-perl at least version 2.0.5 to pass all tests (and because it claims to require it ;-) ). * Reenable test 8 (it is relaxed upstream now). * Update Makefile.PL patch(es). * Install qd.pl only as example. -- Jonas Smedegaard Sun, 16 Feb 2003 04:30:03 +0100 libgd-gd2-noxpm-perl (2.041-2) unstable; urgency=low * Claim to be in compliance with policy 3.5.8.0. + Stricten build-dependency on debhelper to at least 3.0.18. + Include debug info and respect noopt option at build time. -- Jonas Smedegaard Sun, 1 Dec 2002 01:46:03 +0100 libgd-gd2-noxpm-perl (2.041-1) unstable; urgency=low * New upstream release. * Enable all tests (except test 8, probably failing because of Debian-specific FreeType patches) again - tests corrected/updated upstream. * Tighten build-depends on libgd2-xpm-dev to at least 2.0.4-4 (which has a proper shlibs file and correct dependencies). * Add watch file. * Change build-depends from libpng3-dev to libpng12-dev, and from zlib1g-dev to libz-dev. * Tighten build-dependencies on perl and debhelper. * Rewrite debian/rules inspired by newer dh-make-perl template: + Credit where credit is due. + Use debhelper v3 + Support DESTDIR and DEB_BUILD_OPTIONS debug. + Separate install target. + Remove unnecessary debhelper calls. * Remove virtual package libgd-perl (now provided as a transitional package by source-package libgd-perl (>= 1.41-3)). * Conflict on all other libgd-*-perl variants. * Correct XPM -> Xpm in description. * Change wording in copyright about location of Artstic License to silence lintian (it was in fact correct already as it was). -- Jonas Smedegaard Wed, 6 Nov 2002 04:59:20 +0100 libgd-gd2-noxpm-perl (2.01-2) unstable; urgency=low * Add build-dependency on perl (>= 5.8) to force building against new perl on all platforms. * Update debian/copyright. -- Jonas Smedegaard Thu, 29 Aug 2002 06:16:20 +0200 libgd-gd2-noxpm-perl (2.01-1) unstable; urgency=low * New upstream release. * Change source URL to use cpan.org. -- Jonas Smedegaard Mon, 19 Aug 2002 22:03:33 +0200 libgd-gd2-noxpm-perl (1.40-2) unstable; urgency=low * Mention the lack of XPM support in description. -- Jonas Smedegaard Sun, 18 Aug 2002 23:23:53 +0200 libgd-gd2-noxpm-perl (1.40-1) unstable; urgency=low * New variant of libgd-perl, built against libgd2 without XPM support. * disable tests 2, 3, 6 and 10 and get in touch with upstream... * See libgd-perl for older changes. * Build against libpng3 (thanks to Junichi Uekawa for cleaning up the mess finally!). * Tighten ependency on libgd2-noxpm-dev to ensure libpng3-only build environment. -- Jonas Smedegaard Sun, 18 Aug 2002 22:48:30 +0200 t/test.out.2.png-20000644000000000000000000000241312152470542011003 0ustar PNG  IHDR,,SFPLTEܸ L$} pHYs+IDATxڽn@`R5q EԜիo7{g490$%!Mp8Sv܆)˴m4mQ#Q\U._U+T_+\vq+R1b\c*j S+.ڐJT >qa*R+.|\ ڸr[V(kǕ K/1~\`e̥₶5F5 kU.֠2ӏNN\,R`2,Z\ -JXӈ,ѡ]EXNÜXɰhVkaɸ`ZqXaMq[X,HXS\XѰƸ˕ӡhQƸȲ7>"rua q鰒aqYZ,r!bth`6{:ºX?,R\Vji2:ZڬE=du˳\dZr;u:d:v_Xټ!,?#Y'gyF"tYpKYded},:miec?'uez J 2vx27~sV`%Y;b5v۫U)S2{o&K!vZU X{Ed%KVaCn{)vvz$+٢ZY;/W VEZ`V4.,w1VzVEW>kX.xJ`;ldZ"Xru3 %° %| m-?z8oэK իd\^Xfen?z?'_XErTk˪ѩ \EenS8Vy2k z i< 55ĺbc,Ea]p̸31WeX{7Ч70Y@UyVb!nnO?$ ǯ mǤL/6MJ_mش/ߦ?l6MٞB۟mm*i킏͟c¶uWC`ۮm/ `~Xo;wƦ`AcSz&l B~E~LmL-{c[mJǶ?mKېn6NE9g|uo{<ۚ{ͤۑYζFw yxhS(% PYa3َlʳiMr!uTAL8VjL8n/Ϲ)OϹ69 J97㕺u;u[ֻJܴ 877ҧ7o ݕ )7jo}ss fz?7B; v\ZDn%n[̾ESsktR n»n0`IsmdJL v[Ŝ[pW䶉9)鶉nӏW;B#m1=mg9f_ (;77oj仩%znsob-qt[Dnv^mp.Kƹ%p%vc^pnT%#tZF?v{dns27ILW8[^Qj$`P-ź$Xtw]˕W9׷{ȔylkTmw\ci2ćnSQԻQ5R*:8sJ[TӸ͇KyS[j!rSvVx77ylmdn?CM"s֍TMa7Ÿi.hn r-Uo#/즻uZ듛X-KQ[9: VI%*TsZ;EkU"i*S>B- Y0gj4UL h!c(}stN--,dV~JχUwք2˞v5٭ B m` Ǻ302JlY9Kk jh§HUxkeOH՝?^UZUghUejE*?c5}kS\}kZgVtRKT2-@ :fkR}ޏf-Z@*>dR|ڢS"'W:.jj opߏN&޶XCf2fZgsvZKk @ViO9/UZgr-lnR^i%]j׺ke{DT{xr'#-f?2X+߻Vw%jP!%ɴpT?|OMFHGjnZ!oR(׋D4H !}VNmϞ\JO_EZ|ZܵZ={ܚTXc4hiҳE+L| ZD_VXuժ :~J-觵7FZޫqhc.i-F ==L k%DosZL*eZ}UWk-٣Yg]t V!u`ma0%Ʋ 72D1e -ߍEm_}7V0Mk|X.%QR. &aSt@-~t%dknX_Z/ >j5'L.K9KOiŕNJlGre*Ł\9,EPQܹF<,d{=peh*ŝj,*(I/L cҋJЏ0rX8b2XڣJt E(2XdEQ<]i,v(.,?ݓ>ppX"N(&r1ExV6Ʈ V&CߋXϋ?brTQr+,5 nx'b,"D2߆x 0R?XpC,ocFXmXrlac62GF)uXz^!y  xkQr=/ؗ'q{ VY/H*⥻%Q 0]7C65_%M |\(Wcɦ .]Nrm>{ЃNUDÁO[sXwwQ|LX?V&;qX,9-&o F`1\8Xjl~p1V؄wNt[ϩ T5xZGyVhr呑6_$oR[dv7-? nJ{aխznX XfXK,XUW]ɱ*frfDՀ1V4٫OV;1]ðj^QK#V>QX]~<9X[(ao߃q[(V`ݾKb,+=CڣXuPW[ @2,Gjb`5E XEW `5EK ZXXQE9Gj0(|*VCaEK˱(ł(j+`Dq,VueXUEVL%jH(`a*>*c18]oaaQ?/R1s:zIENDB`t/test.out.4.png-30000644000000000000000000000044212152470542011006 0ustar PNG  IHDRd2[- PLTE3J pHYs+IDAT8 0 E ̓z =0@6ʊD&?cۘKjGUOςx|pvrՑ3 9l`deVM2lh8ceB{"r{ܩ?Oy(k> S϶M(IENDB`t/test.out.5.png-20000644000000000000000000000122212152470542011003 0ustar PNG  IHDRV PLTE͠?[; pHYs+)IDATxIn0 ᤹@}'( t=n)~K`xe~0^ms :AԩSRę {Suw;uCN꜇"ߛEJek87}]lcٌ ]%+naj5K]:&5)0L]M&ǧIf 4йT?3ԭ اbS1f3LvS3f|F9O͉u-@o}Y;5rf\yOऱ*3k3K<52#%|fS#3D@OH3`=0ǣY2\{Qt{5c!2po)Xvm@=tr(zQ#tNBTm]/q9̖ dqfosC< ql Yy Fx)mv 2H3j3{pfsqfM9YIf +7{̔@3ʚIT0{f0O]శmp2=콥܇j; &?ҎgOxYz,"W%l3K<411 Rh80")3Z3'4<6}H!@W3\"-yf\f@d{3zDYEH̼Q*ѶcEQ̤{-T?iS\b[ˬp)b&(MܥZVԨ`}f_zYW k]$t)2㺈Q뷂\4 tL1XJ'a:' VbY,ku f)F,$Z<9asus K9YՆI>:H}%V;Iǎ6,Xm.Y[jr[o@sN29 x^<sL+,e'S>BXb,%,JĢ8Y+bIV%,e$^%'IXh'Xy'K1,$1 VI"/lvB*BCa!abapN"PNgT,Bb ,M|mXdkf¦Y>XoU]kX73n9^ުeL`!܋nگ> ϗ" *uOA|uH"\c%Zyc%UC:v(Cl?8_WֱrwNy9'f S3G/|]Q a9{SH,'KXR;9mW$KFXcQܰ4Ywִc{_SM6, `f>VU잙Xwf󰪂cߎXXu(EEjZ@՝?vZXU]kV͹h,99MŢ&*~X3$L(P9,ߛ`^< >|+!$|;EJW[R^Z,(`pc<ޟۖf5>\<:}K Fϱ'}&K o+ۑNr-~2_8WWIbm1)<,-X=ZRX=&,bQV*V,Ja*E,%,J+j"jQH~N V,Bċ"d+GBZ*īt͊{5+V>XXxᓢoݭX3 >+|ZN$c^H"V.V:`- `B Xp ,LpX۱Rw"B,ہCbskFdo4lDˆIw >p$õ߻oiʴncw6ZAZ olno,CVI SQEhE-Ii%´xh"G+pjBT6Rn&&l2ks9Gʄ;{{,A .s2|c"?LU\x5>U/Gc9Jk U"VVňר~M/ HXYC^3FqY{!}h]@ZPQJGԯ JLk=TQDL f娨y%Vb;+P1^JHxt<OWL+,䄫'~rO+a_}Z`E*.V6X'+ I/_ꨢKaOZ`uTQ띧OŀVUbZأ ^i3ߤ˧Ub%ׇ ΟBkXZi*~3-D'xb7O؅RDK$Vu6?Қ*Nl,W fASW~Q:b+)^NcТm#b@hU<e՞Sv7Ͼ^*ޣہϮ5S++w;F;~Go)فדh`&osNG&7,ڍA~wS>D| G%lh3=f%x|dD}L}<A ~@W8rܨ7';H[dwabGݍ#L'z&"#1{GKֻA=8~TGOakN>6uM>]c/œV XO$w+C䂢 -x[map{ R?ѩ { , ~8thrkW\j 5Ov罃Oz{Mى-.f݀w'=xh7B=W0t62b-QovW{h;o#qptN?PEdoA/}&{clzkI3Cm@]v;tKSWCnG7RKiZ՛G _zcT uw]WnrwtՎf_\i^f=W9ir~KNݨN5,ˢVk.A]'v.kIKP}$׫k4v*>_"&W,} w7|-B+-kL= dp]KVv{nj_즋I]OYvv?۰KulSV˛j;N/{*b? of%rʮV4Kھ٥% .I yCtʼnr$^/_o=mpy=O\פnV?2&۷kbWx]ˊ3',=/e߯ھU{3Xg?"ras=({m:ꃽlj{j{wK5nti?>|g6/".>n͛cnqX`W+.\`˖ ɦR;!B!B!B!B!B!B!B!vRdT3^IENDB`t/test.out.9.png-30000644000000000000000000000541112152470542011014 0ustar PNG  IHDR00` PLTE@LG32(0ߊ pHYs+IDATHmT XS>Ŀ:U~$2 hpg ▌ECb"nOhtZnSeb)86թ-s}}{~}<Zv}WIyV+y=|mV,l LaO N[:v6f;npjn7nhj˳4h_mOlX-]ugrlVr46]/"rsBP}˅!lq1ONˆgMC=77n$:yr[@!E|VVVkVA]yMúp&"ȠLN '5 VU&|{kVʦ[8}:y]ܼJ 궶ի>-b<ص!E6\w`iK9r:qۍZn0VmMujv!l=ޑv#7{7p3Zc-qn㍖~/۞(Ε46G{n7Yw{7n}w-їaa {7w3qjI D&9]uu/y'x/OsXtiX bO f4׮31Ղ׳'ZPa<&)b|T#ˉT=nt΄WɟffS8^!ݝ =j^$ǣ~9իǛ%8pv{{ཁ13PbԦj!0(ynNǯF C {` Ff2 L Ё+0yGH,bEqqTh&xAzRuzσpyU&65Cű9_I`c$l#  #r@e-ǎ5/<֘_HgI6l% ¬^V߯psv疔@% "4V4pK`J%'0QrSX3I#RL& KL$U_xU߈B` ȷW2`N. *6 @xL N:2 $=^Z"u(e b9?\^Nc~Cr/;^82)| N u2!׵x|ba7Ѝw}sW7pN%gIm oX*~,0!S|^4|( >Nu/0_T[/JaːX ݇K47'\c(dKSBWǒP 3p}2s_& /&)dnTsJpϰKv=^ܤ;QQ!$PoG}h<`ĥJ)tśVK\+ܷ&wŹm\wЮ{ S r0c0_)xR)1J R6EmUT5f؝ )йvsoc杊]ko5|pgެKe"Mt‚Ec VT_\P(hZϐд"D*+];?%.nE-rj E94]VUfPt33sپf`8RTԟ37tNΓxdeo\S54T4jhpUU`QE1:*)PH'$ ,*,^UV&eeejDkGi ͗Х,  PC(zE{/ZLW4tict4X*IMezTﺯ^7lY1i²KsB5?XTD2茜aQ.!!9Aij3,H$'FϠ