Skip Menu |

This queue is for tickets about the File-MMagic-XS CPAN distribution.

Report information
The Basics
Id: 63048
Status: resolved
Priority: 0/
Queue: File-MMagic-XS

People
Owner: dmaki [...] cpan.org
Requestors: TODDR [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.09006
Fixed in: 0.09007



Subject: deprecation message for qw() while running Makefile.PL
The version of Module::Install you currently ship with this package has a deprecation in the upcoming perl. The simple fix is to update M:I, make realcean; then make dist. This'll update the M:I you ship and remove the deprecation message. The new stable version of perl which will have this deprecation will be out in March.
On Tue Nov 16 16:47:30 2010, TODDR wrote: Show quoted text
> The version of Module::Install you currently ship with this package > has a deprecation in the > upcoming perl. The simple fix is to update M:I, make realcean; then > make dist. > > This'll update the M:I you ship and remove the deprecation message. > The new stable version of > perl which will have this deprecation will be out in March.
This is, as of perl 5.18, a fatal syntax error, preventing this distribution from building.
From: ppisar [...] redhat.com
Dne Út 16.lis.2010 11:47:30, TODDR napsal(a): Show quoted text
> The version of Module::Install you currently ship with this package > has a deprecation in the > upcoming perl. The simple fix is to update M:I, make realcean; then > make dist. >
Or apply this fix.
Subject: File-MMagic-XS-0.09006-qw-does-not-produce-array-context-anymore.patch
From 364c8b1b72bef1c77a78d861cdd2637782cdf7f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Fri, 19 Jul 2013 09:40:52 +0200 Subject: [PATCH] qw() does not produce array context anymore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit <https://rt.cpan.org/Public/Bug/Display.html?id=63048> Signed-off-by: Petr Písař <ppisar@redhat.com> --- inc/Module/Install/XSUtil.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Module/Install/XSUtil.pm b/inc/Module/Install/XSUtil.pm index 8c21436..82b1918 100644 --- a/inc/Module/Install/XSUtil.pm +++ b/inc/Module/Install/XSUtil.pm @@ -242,7 +242,7 @@ sub cc_assert_lib { if ( ! $self->{xsu_loaded_checklib} ) { my $loaded_lib = 0; - foreach my $checklib qw(inc::Devel::CheckLib Devel::CheckLib) { + foreach my $checklib (qw(inc::Devel::CheckLib Devel::CheckLib)) { eval "use $checklib 0.4"; if (!$@) { $loaded_lib = 1; -- 1.8.1.4
This ticket looks like it can be closed. Fixed in 0.09007