Skip Menu |

This queue is for tickets about the Authen-Radius CPAN distribution.

Report information
The Basics
Id: 133490
Status: resolved
Priority: 0/
Queue: Authen-Radius

People
Owner: PORTAONE [...] cpan.org
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.31
Fixed in: 0.32



Subject: ExtUtils-MakeMaker-7.48 rejects invalid MIN_PERL_VERSION values
Building with ExtUtils-MakeMaker-7.48 fails. See CPAN RT#133489. An attached patch fixes it.
Subject: Authen-Radius-0.31-Fix-MIN_PERL_VERSION.patch
From bef8111189230a93c2e1c9d15575bca681c061b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Thu, 8 Oct 2020 12:18:25 +0200 Subject: [PATCH] Fix MIN_PERL_VERSION MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ExtUtils-MakeMaker-7.48 rejects invalid MIN_PERL_VERSION values. CPAN RT#133489 Signed-off-by: Petr Písař <ppisar@redhat.com> --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 45653ab..fbacf4c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ WriteMakefile( NAME => 'Authen::Radius', VERSION_FROM => 'Radius.pm', # finds $VERSION PPM_INSTALL_SCRIPT => 'install-radius-db.PL', - MIN_PERL_VERSION => "v5.10", + MIN_PERL_VERSION => "v5.10.0", BUILD_REQUIRES => { # Support for TEST_REQUIRES 'ExtUtils::MakeMaker' => "6.64", -- 2.25.4
On Thu Oct 08 06:24:17 2020, ppisar wrote: Show quoted text
> Building with ExtUtils-MakeMaker-7.48 fails. See CPAN RT#133489. An > attached patch fixes it.
Thank you for reporting the issue. A version 0.32 was released.