This is an automated email from the git hooks/post-receive script. dod pushed a commit to branch master in repository libopengl-image-perl.
commit f7fe9bba2dba35b75faa3b3c21c4e6220df022e1 Author: Dominique Dumont <[email protected]> Date: Sun Oct 5 10:24:23 2014 +0200 added patch to retrieve VERSION from Image::Magick::Q16 --- debian/patches/fix-im-version-check | 26 ++++++++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 27 insertions(+) diff --git a/debian/patches/fix-im-version-check b/debian/patches/fix-im-version-check new file mode 100644 index 0000000..4d68cc9 --- /dev/null +++ b/debian/patches/fix-im-version-check @@ -0,0 +1,26 @@ +Description: Fix Image::Magick version check + Now $VERSION is stored in Image::Magick::Q16 and + not in Image;:Magick. This patch fixes this problem. +Author: dod +--- a/Image/Magick.pm ++++ b/Image/Magick.pm +@@ -150,7 +150,7 @@ + # Get engine version + sub EngineVersion + { +- return $Image::Magick::VERSION; ++ return $Image::Magick::Q16::VERSION; + } + + # Get engine description +--- a/t/OpenGL-Image.t ++++ b/t/OpenGL-Image.t +@@ -39,7 +39,7 @@ + $exec = qq + { + use Image\::Magick; +- \$im_ver = \$Image::Magick::VERSION; ++ \$im_ver = \$Image::Magick::Q16::VERSION; + }; + eval($exec); + if ($@ || !$im_ver) diff --git a/debian/patches/series b/debian/patches/series index af2358e..f91a84e 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ +fix-im-version-check fix-pod -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libopengl-image-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
