This is an automated email from the git hooks/post-receive script. carnil pushed a commit to branch master in repository libimage-info-perl.
commit b06a47a609ee2532b91b887e0b016593c82f0b1f Merge: cb37bd7 0d5cd89 Author: Don Armstrong <d...@debian.org> Date: Sat Nov 4 17:18:49 2006 -0800 Import Debian patch 1.23-1 CHANGES | 5 + CREDITS | 2 +- Info.pm.tmpl | 426 --------------------- MANIFEST | 4 +- META.yml | 27 +- Makefile.PL | 5 +- SIGNATURE | 56 +-- debian/changelog | 9 + debian/patches/01_ignore_thumbnail_data.diff | 23 -- .../01_use_data_dumper_instead_of_data_dump.diff | 15 - debian/patches/02_exif_e_link_fix.diff | 77 ---- debian/rules | 27 -- debian/watch | 2 +- dev/Info.pm.tmpl | 2 +- img/test.svg | 4 +- inc/Module/AutoInstall.pm | 33 +- inc/Module/Install.pm | 2 +- inc/Module/Install/AutoInstall.pm | 2 +- inc/Module/Install/Base.pm | 2 +- inc/Module/Install/Build.pm | 2 +- inc/Module/Install/Can.pm | 2 +- inc/Module/Install/Fetch.pm | 2 +- inc/Module/Install/Include.pm | 2 +- inc/Module/Install/Makefile.pm | 2 +- inc/Module/Install/Metadata.pm | 2 +- inc/Module/Install/Win32.pm | 2 +- inc/Module/Install/WriteAll.pm | 2 +- lib/Image/Info.pm | 5 +- t/svg.t | 17 +- 29 files changed, 116 insertions(+), 645 deletions(-) diff --cc debian/changelog index ca6e223,0000000..86a6fd0 mode 100644,000000..100644 --- a/debian/changelog +++ b/debian/changelog @@@ -1,68 -1,0 +1,77 @@@ ++libimage-info-perl (1.23-1) unstable; urgency=low ++ ++ * New upstream release ++ * Remove patch targets and obsolete patches ++ * Strip out the DTD so XML::Simple et al. stop looking for it. ++ (closes: #395228) ++ ++ -- Don Armstrong <d...@debian.org> Sat, 4 Nov 2006 17:18:49 -0800 ++ +libimage-info-perl (1.22-1) unstable; urgency=low + + * New upstream release + - Fix build issues on amd64 (closes: #379777); thanks to Andreas + Jochens for verifying fix. + + -- Don Armstrong <d...@debian.org> Fri, 28 Jul 2006 21:12:57 -0700 + +libimage-info-perl (1.21-2) unstable; urgency=low + + * Fix some typos in Image::Info pod (closes: #369245) + * Indicate where the documentation of the image_info options is (closes: + #369246) + * Fix EXIF parsing in some TIFFs due to a typo (closes: #378419); thanks + to Steinar H. Gunderson. + + -- Don Armstrong <d...@debian.org> Sat, 22 Jul 2006 02:35:05 -0700 + +libimage-info-perl (1.21-1) unstable; urgency=low + + * New upstream release + * Upgrade standards version to 3.7.2, no changes necessary + + -- Don Armstrong <d...@debian.org> Fri, 26 May 2006 14:11:11 -0700 + +libimage-info-perl (1.17-2) unstable; urgency=low + + * Add suport for the Nikon D70s to Image::TIFF (closes: #351728) + * Update watch file to support the change in maintainer + + -- Don Armstrong <d...@debian.org> Mon, 6 Feb 2006 17:55:58 -0800 + +libimage-info-perl (1.17-1) unstable; urgency=low + + * New upstream release (closes: #351600) + * Upgrade standards version; no changes necessary + + -- Don Armstrong <d...@debian.org> Mon, 6 Feb 2006 14:06:03 -0800 + +libimage-info-perl (1.16-2) unstable; urgency=low + + * Use Data::Dumper instead of Data::Dump (closes: #284001) + * Fix busted links to exif-e.html (closes: #27837) + * Don't bother to parse information in thumbnails if ilen is 0 (closes: #281967) + + -- Don Armstrong <d...@debian.org> Mon, 7 Mar 2005 16:53:19 -0800 + +libimage-info-perl (1.16-1) unstable; urgency=low + + * New upstream release (closes: #174846) + * Fix debian/copyright problems (closes: #157596) + * New maintainer adopting this package (closes: #274131) + * Depend on libimage-base-perl [Image::Xbm, Image::Xpm] + * Depend on libxml-simple-perl [Image::Info::Svg] + + -- Don Armstrong <d...@donarmstrong.com> Wed, 6 Oct 2004 16:07:04 -0700 + +libimage-info-perl (1.09-2) unstable; urgency=low + + * Fix problem with build prereqs. + + -- Michael Alan Dorman <mdor...@debian.org> Thu, 21 Feb 2002 12:02:18 -0500 + +libimage-info-perl (1.09-1) unstable; urgency=low + + * Initial packaging + + -- Michael Alan Dorman <mdor...@debian.org> Thu, 21 Feb 2002 11:53:56 -0500 diff --cc debian/rules index 3ecebce,0000000..d7b802d mode 100755,000000..100755 --- a/debian/rules +++ b/debian/rules @@@ -1,86 -1,0 +1,59 @@@ +#!/usr/bin/make -f + +PERL ?= /usr/bin/perl + +DEST_DIR := $(shell pwd)/debian/libimage-info-perl + - patch: patch-stamp - patch-stamp: - dh_testdir - - if [ -e debian/patches ]; then \ - for a in `ls debian/patches/*.diff`; do \ - patch -f -p0 < $$a; \ - done; \ - fi; - - rm -f unpatch-stamp; - touch $@ - - unpatch: unpatch-stamp - unpatch-stamp: - dh_testdir - - if [ -e debian/patches ]; then \ - for a in `ls debian/patches/*.diff`; do \ - patch -f -p0 -R < $$a; \ - done; \ - fi; - - rm -f patch-stamp - touch $@ - - +binary: binary-indep binary-arch + +binary-arch: build install + + +binary-indep: binary-indep-stamp +binary-indep-stamp: install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs CHANGES + dh_fixperms + dh_installdeb + dh_perl + dh_compress + dh_gencontrol + dh_md5sums + dh_builddeb + touch $@ + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f *-stamp + if [ -e Makefile ]; then \ + $(MAKE) -i distclean;\ + fi + dh_clean + + +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install PREFIX=$(DEST_DIR)/usr +# Install exifdump and imgdump into the examples directory + install -m755 -d $(DEST_DIR)/usr/share/doc/libimage-info-perl/examples + install -m755 exifdump imgdump $(DEST_DIR)/usr/share/doc/libimage-info-perl/examples + rmdir --ignore-fail-on-non-empty --parents $(DEST_DIR)/usr/lib/perl5 + touch install-stamp + +.PHONY: binary binary-arch binary-indep clean install diff --cc debian/watch index be6d488,0000000..b966a33 mode 100644,000000..100644 --- a/debian/watch +++ b/debian/watch @@@ -1,3 -1,0 +1,3 @@@ +# format version number, currently 2; this line is compulsory! +version=2 - http://archive.progeny.com/CPAN/modules/by-module/Image/Image-Info-(.+)\.tar\.gz ++http://search.cpan.org/CPAN/authors/id/T/TE/TELS/image/Image-Info-(.+)\.tar\.gz diff --cc img/test.svg index fa8520b,fa8520b..330ac61 --- a/img/test.svg +++ b/img/test.svg @@@ -1,6 -1,6 +1,6 @@@ <?xml version="1.0" standalone="yes"?> <svg width="4in" height="3in" -- xmlns="http://www.w3.org/2000/svg"> ++ > <desc xmlns:mydoc="http://example.org/mydoc"> <mydoc:title>This is an example SVG file</mydoc:title> <mydoc:para>The global description uses markup from the @@@ -9,4 -9,4 +9,4 @@@ <g> <!-- the picture goes here --> </g> --</svg> ++</svg> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libimage-info-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list Pkg-perl-cvs-commits@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits