update p5-NetAddr-IP to 4.078

This commit is contained in:
bluhm 2015-08-24 20:00:42 +00:00
parent eaf5cdb3db
commit b0a4f9dc68
3 changed files with 5 additions and 24 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.28 2015/08/17 18:29:15 bluhm Exp $
# $OpenBSD: Makefile,v 1.29 2015/08/24 20:00:42 bluhm Exp $
SHARED_ONLY = Yes
COMMENT = manages IPv4 and IPv6 addresses and subnets
DISTNAME = NetAddr-IP-4.077
DISTNAME = NetAddr-IP-4.078
CATEGORIES = net
@ -13,7 +13,7 @@ MAINTAINER = Alexander Bluhm <bluhm@openbsd.org>
# perl artistic / GPL
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c
WANTLIB = c
MODULES = cpan

View File

@ -1,2 +1,2 @@
SHA256 (NetAddr-IP-4.077.tar.gz) = cp6MCrm/9t/HO25PNVmxhLCH1K62ZbnwBVLWuAQWz9Y=
SIZE (NetAddr-IP-4.077.tar.gz) = 213230
SHA256 (NetAddr-IP-4.078.tar.gz) = uaEilOWNzs4BiWMN22km43Fpy7skx2CR8eYE5CbBlhQ=
SIZE (NetAddr-IP-4.078.tar.gz) = 213358

View File

@ -1,19 +0,0 @@
$OpenBSD: patch-Lite_Util_Makefile_PL,v 1.1 2015/08/17 18:29:15 bluhm Exp $
https://rt.cpan.org/Public/Bug/Display.html?id=106489
test_cc(), as changed in NetAddr-IP-4.077/Lite/Util/Makefile.PL,
does no longer find C compiler. within the foreach loop, test
should be for $CC, not $_
--- Lite/Util/Makefile.PL.orig Fri Aug 14 09:32:04 2015
+++ Lite/Util/Makefile.PL Mon Aug 17 19:55:35 2015
@@ -214,7 +214,7 @@ sub test_cc {
my $CC;
foreach $CC (($ENV{CC},$Config{ccname},$Config{cc})) {
- next unless $_;
+ next unless $CC;
my $command = qq|$CC compile.c -o compile.output|;
print F <<'EOF';