Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#20852 - [imagemagick] rebuild against latest Perl package
Attached to Project:
Arch Linux
Opened by Xyne (Xyne) - Wednesday, 15 September 2010, 04:04 GMT
Last edited by Eric Belanger (Snowman) - Saturday, 18 September 2010, 00:08 GMT
Opened by Xyne (Xyne) - Wednesday, 15 September 2010, 04:04 GMT
Last edited by Eric Belanger (Snowman) - Saturday, 18 September 2010, 00:08 GMT
|
DetailsThe current imagemagick package generates errors when using the Perl module. Details can be found in the following forum thread:
https://bbs.archlinux.org/viewtopic.php?id=102559 Rebuilding the package from source using the current PKGBUILD resolves the issue (for me at least, on x86_64). |
This task depends upon
Closed by Eric Belanger (Snowman)
Saturday, 18 September 2010, 00:08 GMT
Reason for closing: Fixed
Additional comments about closing: fixed in imagemagick-6.6.4.3-1
Saturday, 18 September 2010, 00:08 GMT
Reason for closing: Fixed
Additional comments about closing: fixed in imagemagick-6.6.4.3-1
This bug has had disastrous effects here, I have lost hundreds images ...
An example :
....
if ($res->is_success) {
my $image = Image::Magick->new;
$filename = "$Args{d}/$filename";
# Check if image is ok
$image->Read($filename);
unless ( ($x = $image->Write('/dev/null')) eq "" ) {
warn ($x);
unlink "$filename";
undef $filename;
}
}