Files
gentoo/dev-perl/Net-ARP/files/Net-ARP-1.0.9-perl-5.26.patch
Kent Fredric b8215cc4b2 dev-perl/Net-ARP: EAPI6 + Tests
- EAPI6ify
- Enable tests
- Fix tests failing due to '.' in @INC
- Fix tests failing due to assumptions about root/network devices
- Document extended testing strategy

Package-Manager: Portage-2.3.18, Repoman-2.3.6
2017-12-13 22:50:20 +13:00

27 lines
589 B
Diff

From 56f7021306fe1dbd3b83981062acf2db7e296447 Mon Sep 17 00:00:00 2001
From: Kent Fredric <kentnl@gentoo.org>
Date: Wed, 13 Dec 2017 21:38:52 +1300
Subject: Fix loading ARP.pm on Perl 5.26
This is now broken without '.' in @INC
---
t/ARP.t | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/ARP.t b/t/ARP.t
index 9b3ef08..bab58aa 100755
--- a/t/ARP.t
+++ b/t/ARP.t
@@ -6,7 +6,7 @@
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More tests => 1;
-BEGIN { use_ok('ARP') };
+BEGIN { use_ok('Net::ARP') };
#########################
--
2.14.3