Mon Jan 25 09:33:19 2021 UTC ()
perl: update to 5.32.1.

Incompatible Changes

There are no changes intentionally incompatible with Perl 5.32.0.
If any exist, they are bugs, and we request that you submit a
report. See "Reporting Bugs" below.

Modules and Pragmata

Updated Modules and Pragmata

    Data::Dumper has been upgraded from version 2.174 to 2.174_01.

    A number of memory leaks have been fixed.

    DynaLoader has been upgraded from version 1.47 to 1.47_01.

    Module::CoreList has been upgraded from version 5.20200620 to
    5.20210123.

    Opcode has been upgraded from version 1.47 to 1.48.

    A warning has been added about evaluating untrusted code with
    the perl interpreter.

    Safe has been upgraded from version 2.41 to 2.41_01.

    A warning has been added about evaluating untrusted code with
    the perl interpreter.

Documentation

New Documentation

perlgov

Documentation of the newly formed rules of governance for Perl.

perlsecpolicy

Documentation of how the Perl security team operates and how the
team evaluates new security reports.

Changes to Existing Documentation

We have attempted to update the documentation to reflect the changes
listed in this document. If you find any we have missed, open an
issue at https://github.com/Perl/perl5/issues.

Additionally, the following selected changes have been made:

perlop

    Document range op behaviour change.

Diagnostics

The following additions or changes have been made to diagnostic
output, including warnings and fatal error messages. For the complete
list of diagnostic messages, see perldiag.

Changes to Existing Diagnostics

    \K not permitted in lookahead/lookbehind in regex; marked by
    <-- HERE in m/%s/

    This error was incorrectly produced in some cases involving
    nested lookarounds. This has been fixed.

    [GH #18123]

Configuration and Compilation

    Newer 64-bit versions of the Intel C/C++ compiler are now
    recognized and have the correct flags set.

    We now trap SIGBUS when Configure checks for va_copy.

    On several systems the attempt to determine if we need va_copy
    or similar results in a SIGBUS instead of the expected SIGSEGV,
    which previously caused a core dump.

    [GH #18148]

Testing

Tests were added and changed to reflect the other additions and
changes in this release.

Platform Support

Platform-Specific Notes

MacOS (Darwin)

    The hints file for darwin has been updated to handle future
    macOS versions beyond 10. Perl can now be built on macOS Big
    Sur.

    [GH #17946, GH #18406] Minix

    Build errors on Minix have been fixed.

    [GH #17908]

Selected Bug Fixes

    Some list assignments involving undef on the left-hand side
    were over-optimized and produced incorrect results.

    [GH #16685, GH #17816]

    Fixed a bug in which some regexps with recursive subpatterns
    matched incorrectly.

    [GH #18096]

    Fixed a deadlock that hung the build when Perl is compiled for
    debugging memory problems and has PERL_MEM_LOG enabled.

    [GH #18341]

    Fixed a crash in the use of chained comparison operators when
    run under "no warnings 'uninitialized'".

    [GH #17917, GH #18380]

    Exceptions thrown from destructors during global destruction
    are no longer swallowed.

    [GH #18063]


(wiz)
diff -r1.267 -r1.268 pkgsrc/lang/perl5/Makefile
diff -r1.41 -r1.42 pkgsrc/lang/perl5/Makefile.common
diff -r1.167 -r1.168 pkgsrc/lang/perl5/distinfo
diff -r1.8 -r0 pkgsrc/lang/perl5/patches/patch-hints_darwin.sh

cvs diff -r1.267 -r1.268 pkgsrc/lang/perl5/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/perl5/Makefile 2020/09/04 14:07:51 1.267
+++ pkgsrc/lang/perl5/Makefile 2021/01/25 09:33:19 1.268
@@ -1,20 +1,18 @@ @@ -1,20 +1,18 @@
1# $NetBSD: Makefile,v 1.267 2020/09/04 14:07:51 wiz Exp $ 1# $NetBSD: Makefile,v 1.268 2021/01/25 09:33:19 wiz Exp $
2 2
3.include "license.mk" 3.include "license.mk"
4.include "Makefile.common" 4.include "Makefile.common"
5 5
6PKGREVISION= 1 
7 
8COMMENT= Practical Extraction and Report Language 6COMMENT= Practical Extraction and Report Language
9 7
10CONFLICTS+= perl-base-[0-9]* perl-thread-[0-9]* 8CONFLICTS+= perl-base-[0-9]* perl-thread-[0-9]*
11 9
12# when updating perl, you can remove packages that are included 10# when updating perl, you can remove packages that are included
13# in perl core, see 11# in perl core, see
14# corelist -diff ${PREV_PKGVERSION} ${PKGVERSION} 12# corelist -diff ${PREV_PKGVERSION} ${PKGVERSION}
15 13
16SUPERSEDES+= p5-Tie-File<=0.99 14SUPERSEDES+= p5-Tie-File<=0.99
17SUPERSEDES+= p5-Time-HiRes-[0-9]* 15SUPERSEDES+= p5-Time-HiRes-[0-9]*
18SUPERSEDES+= p5-DB_File-[0-9]* 16SUPERSEDES+= p5-DB_File-[0-9]*
19SUPERSEDES+= p5-Memoize<=1.03 17SUPERSEDES+= p5-Memoize<=1.03
20SUPERSEDES+= p5-I18N-LangTags<=0.39 18SUPERSEDES+= p5-I18N-LangTags<=0.39

cvs diff -r1.41 -r1.42 pkgsrc/lang/perl5/Makefile.common (expand / switch to unified diff)

--- pkgsrc/lang/perl5/Makefile.common 2020/08/31 18:00:37 1.41
+++ pkgsrc/lang/perl5/Makefile.common 2021/01/25 09:33:19 1.42
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.common,v 1.41 2020/08/31 18:00:37 wiz Exp $ 1# $NetBSD: Makefile.common,v 1.42 2021/01/25 09:33:19 wiz Exp $
2# 2#
3# used by lang/perl5/Makefile 3# used by lang/perl5/Makefile
4# used by databases/p5-gdbm/Makefile 4# used by databases/p5-gdbm/Makefile
5 5
6DISTNAME= perl-5.32.0 6DISTNAME= perl-5.32.1
7CATEGORIES= lang devel perl5 7CATEGORIES= lang devel perl5
8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:S,/modules/by-module/$,/src/5.0/,} 8MASTER_SITES= ${MASTER_SITE_PERL_CPAN:S,/modules/by-module/$,/src/5.0/,}
9DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} 9DISTFILES+= ${DISTNAME}${EXTRACT_SUFX}
10EXTRACT_SUFX= .tar.xz 10EXTRACT_SUFX= .tar.xz
11 11
12MAINTAINER= pkgsrc-users@NetBSD.org 12MAINTAINER= pkgsrc-users@NetBSD.org
13HOMEPAGE= https://www.perl.org/ 13HOMEPAGE= https://www.perl.org/
14LICENSE= ${PERL5_LICENSE} 14LICENSE= ${PERL5_LICENSE}

cvs diff -r1.167 -r1.168 pkgsrc/lang/perl5/distinfo (expand / switch to unified diff)

--- pkgsrc/lang/perl5/distinfo 2020/09/17 10:02:20 1.167
+++ pkgsrc/lang/perl5/distinfo 2021/01/25 09:33:19 1.168
@@ -1,19 +1,18 @@ @@ -1,19 +1,18 @@
1$NetBSD: distinfo,v 1.167 2020/09/17 10:02:20 mrg Exp $ 1$NetBSD: distinfo,v 1.168 2021/01/25 09:33:19 wiz Exp $
2 2
3SHA1 (perl-5.32.0.tar.xz) = 0426c89d8ad5542def3e0065c299d449230aeb6c 3SHA1 (perl-5.32.1.tar.xz) = 1fb4f710d139da1e1a3e1fa4eaba201fcaa8e18e
4RMD160 (perl-5.32.0.tar.xz) = d28af2b0b2fc762f9d0dbf267f81e16d5657bd60 4RMD160 (perl-5.32.1.tar.xz) = ad9013fa389e3e73940c90b7d4ffd542a0cafc70
5SHA512 (perl-5.32.0.tar.xz) = 1540247415893bbd94dfeede7b4fba6052688dc0bf27ced817f448246fcdc6e9a6486abc34577dec5b00bf02ed607b2d24ccd4977c3b3c51e8e6edfc0b81c760 5SHA512 (perl-5.32.1.tar.xz) = 3443c75aea91f0fe3712fee576239f1946d2301b8f7390b690e2f5d070fe71af8f9fa7769e42086c2d33d5f84370f80368fa9350b4f10cc0ac3e6c1f6209d8f9
6Size (perl-5.32.0.tar.xz) = 12717336 bytes 6Size (perl-5.32.1.tar.xz) = 12610988 bytes
7SHA1 (patch-Configure) = 5a27e10c3d5b4bb8e514480808b6f2fb009ceeb0 7SHA1 (patch-Configure) = 5a27e10c3d5b4bb8e514480808b6f2fb009ceeb0
8SHA1 (patch-Makefile.SH) = 56203aea57c429a94760f039a978463b8859b0a9 8SHA1 (patch-Makefile.SH) = 56203aea57c429a94760f039a978463b8859b0a9
9SHA1 (patch-Safe.pm) = bfeefb82d4cfe991e3a9a90cd87b894c9f4cc337 9SHA1 (patch-Safe.pm) = bfeefb82d4cfe991e3a9a90cd87b894c9f4cc337
10SHA1 (patch-caretx.c) = b76b4175a58123fa4dfd2adf36b2207dcb6cf65a 10SHA1 (patch-caretx.c) = b76b4175a58123fa4dfd2adf36b2207dcb6cf65a
11SHA1 (patch-cflags.SH) = e940e4452768ccc1bdf21d435094e7efffceb925 11SHA1 (patch-cflags.SH) = e940e4452768ccc1bdf21d435094e7efffceb925
12SHA1 (patch-cpan_ExtUtils-MakeMaker_lib_ExtUtils_MM__Unix.pm) = 3a2b39c9eb903e68ef7d03ae448c51c147c19aa1 12SHA1 (patch-cpan_ExtUtils-MakeMaker_lib_ExtUtils_MM__Unix.pm) = 3a2b39c9eb903e68ef7d03ae448c51c147c19aa1
13SHA1 (patch-hints_cygwin.sh) = 1b21d927d6b7379754c4cd64a2b05d3632c35470 13SHA1 (patch-hints_cygwin.sh) = 1b21d927d6b7379754c4cd64a2b05d3632c35470
14SHA1 (patch-hints_darwin.sh) = 0d7a86950877eab23450e80cd99178cf845be63f 
15SHA1 (patch-hints_linux.sh) = 4baa8f80695687abb53d4f4e1830cf86db5b2bf7 14SHA1 (patch-hints_linux.sh) = 4baa8f80695687abb53d4f4e1830cf86db5b2bf7
16SHA1 (patch-hints_netbsd.sh) = 0d549a48800372d75fe34b783529a78cba90f646 15SHA1 (patch-hints_netbsd.sh) = 0d549a48800372d75fe34b783529a78cba90f646
17SHA1 (patch-hints_solaris__2.sh) = 364a28ca57dbabe1f902b601e336532996db6a0e 16SHA1 (patch-hints_solaris__2.sh) = 364a28ca57dbabe1f902b601e336532996db6a0e
18SHA1 (patch-installperl) = 0ad5988b7cadfb13d9646a59a57f6cf884a6238a 17SHA1 (patch-installperl) = 0ad5988b7cadfb13d9646a59a57f6cf884a6238a
19SHA1 (patch-numeric.c) = 53dc8da40ad21d97072e8e2000f0a16c3353ff41 18SHA1 (patch-numeric.c) = 53dc8da40ad21d97072e8e2000f0a16c3353ff41

File Deleted: pkgsrc/lang/perl5/patches/Attic/patch-hints_darwin.sh