[Bug 1487209] perl-Graphics-TIFF-6-1.fc27 FTBFS: MagickCore/exception.c: 1034: ThrowMagickExceptionList: Assertion `exception->signature == MagickCoreSignature' failed

2018-11-28 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1487209

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |NOTABUG
Last Closed||2018-11-28 04:38:15



--- Comment #4 from Petr Pisar  ---
Fedora still has ImageMagick 6.9. No issue there.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1487209] perl-Graphics-TIFF-6-1.fc27 FTBFS: MagickCore/exception.c: 1034: ThrowMagickExceptionList: Assertion `exception->signature == MagickCoreSignature' failed

2018-11-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1487209



--- Comment #3 from Ben Cotton  ---
This message is a reminder that Fedora 27 is nearing its end of life.
On 2018-Nov-30  Fedora will stop maintaining and issuing updates for
Fedora 27. It is Fedora's policy to close all bug reports from releases
that are no longer maintained. At that time this bug will be closed as
EOL if it remains open with a Fedora  'version' of '27'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not 
able to fix it before Fedora 27 is end of life. If you would still like 
to see this bug fixed and are able to reproduce it against a later version 
of Fedora, you are encouraged  change the 'version' to a later Fedora 
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[Bug 1487209] perl-Graphics-TIFF-6-1.fc27 FTBFS: MagickCore/exception.c: 1034: ThrowMagickExceptionList: Assertion `exception->signature == MagickCoreSignature' failed

2017-11-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1487209



--- Comment #2 from Petr Pisar  ---
Fedora reverted ImageMagick to 6.9. This will be issue in the future.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1487209] perl-Graphics-TIFF-6-1.fc27 FTBFS:

2017-08-31 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1487209

Petr Pisar  changed:

   What|Removed |Added

External Bug ID||CPAN 122933



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1487209] perl-Graphics-TIFF-6-1.fc27 FTBFS: MagickCore/exception.c: 1034: ThrowMagickExceptionList: Assertion `exception->signature == MagickCoreSignature' failed

2017-08-31 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1487209

Petr Pisar  changed:

   What|Removed |Added

Summary|perl-Graphics-TIFF-6-1.fc27 |perl-Graphics-TIFF-6-1.fc27
   |FTBFS:  |FTBFS:
   ||MagickCore/exception.c:1034
   ||: ThrowMagickExceptionList:
   ||Assertion
   ||`exception->signature ==
   ||MagickCoreSignature' failed



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1487209] perl-Graphics-TIFF-6-1.fc27 FTBFS:

2017-08-31 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1487209

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED



--- Comment #1 from Petr Pisar  ---
The failure is:

$ perl -Iblib/{lib,arch} t/1.t 
1..43
ok 1 - use Graphics::TIFF;
ok 2 - version string
ok 3 - version
ok 4 - IsCODECConfigured
ok 5 - FileName
ok 6 - An object of class 'Graphics::TIFF' isa 'Graphics::TIFF'
ok 7 - Graphics::TIFF->can(...)
ok 8 - ReadDirectory
perl: MagickCore/exception.c:1034: ThrowMagickExceptionList: Assertion
`exception->signature == MagickCoreSignature' failed.
Aborted (core dumped)

It crashes in ReadEXIFDirectory() method call:

SKIP: {
skip 'Image::Magick not installed', 36 if $@;

my $image = Image::Magick->new;
$image->Read('rose:');
$image->Set( density => '72x72' );
$image->Write('test.tif');

my $tif = Graphics::TIFF->Open( 'test.tif', 'r' );
is( $tif->FileName, 'test.tif', 'FileName' );
isa_ok $tif, 'Graphics::TIFF';
can_ok $tif, qw(Close ReadDirectory GetField);

is( $tif->ReadDirectory, 0, 'ReadDirectory' );

→   is( $tif->ReadEXIFDirectory(0), 0, 'ReadEXIFDirectory' );
[...]
}

The assert comes from ImageMagick-perl package, but the ReadEXIFDirectory()
method is a binding to LibTFF's TIFFReadEXIFDirectory() function.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org