SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,15 @@
Data::Alias is broken with Perl 5.24.1, do not use it.
https://rt.cpan.org/Public/Bug/Display.html?id=118854
Index: lib/Data/Visitor.pm
--- lib/Data/Visitor.pm.orig
+++ lib/Data/Visitor.pm
@@ -22,7 +22,7 @@ use namespace::clean -except => 'meta';
# the double not makes this no longer undef, so exempt from useless constant warnings in older perls
use constant DEBUG => not not our $DEBUG || $ENV{DATA_VISITOR_DEBUG};
-use constant HAS_DATA_ALIAS => load_optional_class('Data::Alias');
+use constant HAS_DATA_ALIAS => 0;
has tied_as_objects => (
isa => "Bool",

View file

@ -0,0 +1,12 @@
Index: t/weak.t
--- t/weak.t.orig
+++ t/weak.t
@@ -3,7 +3,7 @@
use strict;
use warnings;
-use Test::More;
+use Test::More skip_all => 'Data::Alias is broken';
use Test::Requires 'Data::Alias';