update p5-XML-LibXML to 2.0203

no functional change
This commit is contained in:
bluhm 2020-03-12 22:50:41 +00:00
parent 1366828eef
commit a7b1bb06a7
3 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.61 2020/01/21 20:34:40 bluhm Exp $
# $OpenBSD: Makefile,v 1.62 2020/03/12 22:50:41 bluhm Exp $
COMMENT = perl binding for libxml2
DISTNAME = XML-LibXML-2.0202
DISTNAME = XML-LibXML-2.0203
EPOCH = 0
CATEGORIES = textproc

View File

@ -1,2 +1,2 @@
SHA256 (XML-LibXML-2.0202.tar.gz) = zCsCxemCnDYxc7/Pr5Mh+NcsMDAd8/iEK+NWd2Vp4q4=
SIZE (XML-LibXML-2.0202.tar.gz) = 463882
SHA256 (XML-LibXML-2.0203.tar.gz) = Kxf431e0T8rcOiF19rfprRJdUHb2pJnlkmfCPK/XDmk=
SIZE (XML-LibXML-2.0203.tar.gz) = 462667

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-Makefile_PL,v 1.7 2020/01/02 19:05:02 bluhm Exp $
$OpenBSD: patch-Makefile_PL,v 1.8 2020/03/12 22:50:41 bluhm Exp $
Alien::Build has been designed to build dependencies on the fly
when installing from CPAN. That does not make sense for our ports
@ -8,25 +8,25 @@ library from our libxml-2 package.
Index: Makefile.PL
--- Makefile.PL.orig
+++ Makefile.PL
@@ -17,12 +17,10 @@ use warnings;
@@ -17,13 +17,10 @@ use warnings;
require 5.008001;
-use Alien::Libxml2;
-use Alien::Base::Wrapper qw( Alien::Libxml2 );
use ExtUtils::MakeMaker;
use Config;
my %ConfigReqs = (
- "Alien::Libxml2" => 0,
- "Alien::Base::Wrapper" => 0,
"Config" => 0,
"ExtUtils::MakeMaker" => 0,
);
@@ -68,8 +66,9 @@ my %prereqs = (
@@ -69,7 +66,9 @@ my %prereqs = (
my %xsbuild = (
DEFINE => '-DHAVE_UTF8',
OBJECT => '$(O_FILES)',
- CCFLAGS => Alien::Libxml2->cflags . " $Config{ccflags}",
- LIBS => [ Alien::Libxml2->libs ],
- Alien::Base::Wrapper->mm_args,
+ CCFLAGS => $Config{ccflags} .
+ ' -I${LOCALBASE}/include -I${LOCALBASE}/include/libxml2',
+ LIBS => '-L${LOCALBASE}/lib -lxml2',