de5594a859
--------------------------------- 7.14 Sat Jun 24 01:44:19 CEST 2017 - fix a crash bug in AnyEvent::Handle with openssl 1.1.0 (patched by Paul Howarth and apparently tracked down by Mike McCauley). - AnyEvent::Handle->keepalive was documented (and defined) twice (found by Matt Merhar). - AnyEvent::Socket::tcp_bind/tcp_server would immediately unlink a unix listening socket unless a guard is used. Change this so that no cleanup will be performed unless a guard is used and document this more clearly. - make tcp_bind/tcp_server error messages more regular. - work around latest perl upstream breakage - this time, perl5porters were apparently bullied by a bogus CVE (CVE-2016-1238), and since distros stupidly apply anything that has "security fix" stamped on it, it's likely going to be a problem in practise (and working around it is trivial on windows and unix). - add TCP_FASTOPEN/MSG_FASTOPEN and MSG_NOSIGNAL/MSG_MORE/MSG_DONTWAIT to constants. - update warnings to common::sense 3.74 standards. (pkgsrc changes) - Drop recent patch for Makefile.PL to fix '. is not included @INC' issue, upstream fixed with similar change.
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.44 2017/06/25 05:09:18 mef Exp $
|
|
|
|
DISTNAME= AnyEvent-7.14
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=AnyEvent/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://software.schmorp.de/pkg/AnyEvent.html
|
|
COMMENT= Simple API for io, timer and completion callbacks
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PERL5_PACKLIST= auto/AnyEvent/.packlist
|
|
|
|
# Task::Weaken in perl 5.14
|
|
DEPENDS+= p5-Net-SSLeay>=1.33:../../security/p5-Net-SSLeay
|
|
DEPENDS+= p5-JSON>=2.09:../../converters/p5-JSON
|
|
DEPENDS+= p5-JSON-XS>=2.200:../../converters/p5-JSON-XS
|
|
DEPENDS+= p5-EV>=4:../../devel/p5-EV
|
|
DEPENDS+= p5-Guard>=1.020:../../devel/p5-Guard
|
|
DEPENDS+= p5-Async-Interrupt>=1:../../devel/p5-Async-Interrupt
|
|
|
|
# setup for make test (expecting PASS with several skipping items)
|
|
#BUILD_DEPENDS+= p5-AnyEvent-AIO-[0-9]*:../../devel/p5-AnyEvent-AIO
|
|
BUILD_DEPENDS+= p5-IO-Async-[0-9]*:../../devel/p5-IO-Async
|
|
|
|
TEST_ENV+= PERL_ANYEVENT_LOOP_TESTS=true
|
|
TEST_ENV+= PERL_ANYEVENT_NET_TESTS=true
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|