File: 5.24.1.patch

package info (click to toggle)
libperl-apireference-perl 0.22-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,900 kB
  • ctags: 117
  • sloc: perl: 5,614; makefile: 21
file content (34 lines) | stat: -rw-r--r-- 925 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Description: add support for 5.24.1
Origin: vendor
Bug-Debian: https://bugs.debian.org/838934
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2016-09-26
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=118092
Bug: https://rt.cpan.org/Ticket/Display.html?id=118092

--- a/lib/Perl/APIReference.pm
+++ b/lib/Perl/APIReference.pm
@@ -18,10 +18,11 @@
 
 sub _par_loader_hint {
   require Perl::APIReference::Generator;
-  require Perl::APIReference::V5_024_000;
+  require Perl::APIReference::V5_024_001;
 }
 
 our %Perls = (
+  5.024001 => 'V5_024_001',
   5.024000 => 'V5_024_000',
   5.022002 => 'V5_022_002',
   5.022001 => 'V5_022_001',
@@ -64,8 +65,8 @@
   5.006    => 'V5_006_000',
 );
 
-our $NewestAPI       = '5.024000';
-our $NewestStableAPI = '5.024000';
+our $NewestAPI       = '5.024001';
+our $NewestStableAPI = '5.024001';
 
 $Perls{'5.024000'} = $Perls{5.024};
 $Perls{'5.022000'} = $Perls{5.022};