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 cb37bd79b6122bbec0b09e32fd3d0f4f4649cd28
Merge: 645a40e 2d22cce
Author: Don Armstrong <d...@debian.org>
Date:   Fri Jul 28 21:12:57 2006 -0700

    Import Debian patch 1.22-1

 Changes => CHANGES                |  13 +++++++
 CREDITS                           |   3 +-
 MANIFEST                          |   7 ++--
 SIGNATURE                         |  72 ++++++++++++++++++++------------------
 TODO                              |   4 +++
 debian/changelog                  |   8 +++++
 debian/rules                      |   2 +-
 dev/Info.pm.tmpl                  |   3 +-
 img/graph.svg                     |  58 ++++++++++++++++++++++++++++++
 img/interlace.png                 | Bin 0 -> 4832 bytes
 img/test.jpg                      | Bin 71680 -> 29165 bytes
 img/test.png                      | Bin 41678 -> 6240 bytes
 inc/Module/AutoInstall.pm         |   6 ++--
 inc/Module/Install.pm             |  20 +++++++++--
 inc/Module/Install/AutoInstall.pm |  11 +++---
 inc/Module/Install/Base.pm        |   2 +-
 inc/Module/Install/Build.pm       |  13 ++++---
 inc/Module/Install/Can.pm         |   6 ++--
 inc/Module/Install/Fetch.pm       |   5 +--
 inc/Module/Install/Include.pm     |  11 +++---
 inc/Module/Install/Makefile.pm    |  16 +++++++--
 inc/Module/Install/Metadata.pm    |  21 ++++++-----
 inc/Module/Install/Win32.pm       |   5 +--
 inc/Module/Install/WriteAll.pm    |  11 +++---
 lib/Image/Info.pm                 |   3 +-
 lib/Image/Info/JPEG.pm            |   3 +-
 lib/Image/Info/SVG.pm             |  43 +++++++++++------------
 lib/Image/Info/TIFF.pm            |  26 +++++++++-----
 t/exif.t                          |   2 +-
 t/png.t                           |  36 +++++++++++++++----
 t/svg.t                           |  46 ++++++++++++++++++++++++
 31 files changed, 337 insertions(+), 119 deletions(-)

diff --cc debian/changelog
index f61e71b,0000000..ca6e223
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,60 -1,0 +1,68 @@@
++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 7c648cf,0000000..3ecebce
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,86 -1,0 +1,86 @@@
 +#!/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_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

-- 
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

Reply via email to