aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/perl-modules
diff options
context:
space:
mode:
authorStig Palmquist <stig@stig.io>2019-10-04 15:48:09 +0200
committerStig Palmquist <stig@stig.io>2019-10-04 16:00:57 +0200
commitbd4b0149632529167bdc08292a5ef37f52cddd40 (patch)
treef3e0fa69476f056d214f9d27fa40d2ec27ebffdb /pkgs/development/perl-modules
parent85b7d89892a4ea088d541a694addb2e363758e44 (diff)
perlPackages.DeviceMAC: init at 1.00
dependencies: - perlPackages.DeviceOUI: init at 1.04 Patch to prevent random test failures in Device::OUI is included: https://rt.cpan.org/Public/Bug/Display.html?id=109209 https://rt.cpan.org/Ticket/Attachment/1657288/889472/Device-OUI-1.04-hash.patch
Diffstat (limited to 'pkgs/development/perl-modules')
-rw-r--r--pkgs/development/perl-modules/Device-OUI-1.04-hash.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/perl-modules/Device-OUI-1.04-hash.patch b/pkgs/development/perl-modules/Device-OUI-1.04-hash.patch
new file mode 100644
index 000000000000..6133ab674756
--- /dev/null
+++ b/pkgs/development/perl-modules/Device-OUI-1.04-hash.patch
@@ -0,0 +1,11 @@
+--- Device-OUI-1.04/lib/Device/OUI.pm.orig 2009-03-07 02:23:17.000000000 +0000
++++ Device-OUI-1.04/lib/Device/OUI.pm 2016-08-09 08:19:00.642799675 +0100
+@@ -54,7 +54,7 @@
+ for my $x ( keys %hash ) {
+ if ( not defined $hash{ $x } ) { $hash{ $x } = '' }
+ }
+- return $handle->{ $oui } = join( "\0", %hash );
++ return $handle->{ $oui } = join( "\0", map {$_,$hash{$_}} sort keys %hash );
+ } elsif ( my $x = $handle->{ $oui } ) {
+ return { split( "\0", $x ) };
+ }