Upstream changes: 0.72 2018-04-02 19:34:27 [CHANGES] * Expanded docs on Stream's on_read sub return values * Overridable timeout for IO::Async::Test::wait_for * Hide IO::Async::ChildManager as an internal implementation detail; move the docs into main IO::Async::Loop * Added $loop->open_process; suggest using that instead of ->open_child * Begin implementation of $loop->is_running method (part of RT123780) [BUGFIXES] * Make IO::Async::Future->await wait until it's ready * Fix calculation of periodic timer in 'skip' mode (RT124414) * Perform synchronous getaddrinfo shortcut even for service-less lookups * Make sure that errors from underlying read/write functions are debug-logged by IO::Async::Stream
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2018/04/23 07:12:48 wen Exp $
|
|
|
|
DISTNAME= IO-Async-0.72
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://metacpan.org/release/IO-Async
|
|
COMMENT= Asynchronous event-driven programming
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-Future>=0.18:../../devel/p5-Future
|
|
|
|
BUILD_DEPENDS+= p5-Test-Fatal-[0-9]*:../../devel/p5-Test-Fatal
|
|
BUILD_DEPENDS+= p5-Test-Identity-[0-9]*:../../devel/p5-Test-Identity
|
|
BUILD_DEPENDS+= p5-Test-Refcount-[0-9]*:../../devel/p5-Test-Refcount
|
|
BUILD_DEPENDS+= p5-Struct-Dumb-[0-9]*:../../devel/p5-Struct-Dumb
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_MODULE_TYPE= Module::Build
|
|
PERL5_PACKLIST= auto/IO/Async/.packlist
|
|
|
|
PERL5_REQD+= 5.7.3 # Storable >= 0
|
|
PERL5_REQD+= 5.7.3 # Time::HiRes >= 0
|
|
PERL5_REQD+= 5.10
|
|
PERL5_REQD+= 0 # IO::Poll >= 0
|
|
PERL5_REQD+= 2.007 # Socket >= 2.007
|
|
PERL5_REQD+= 5.4 # File::stat >= 0
|
|
PERL5_REQD+= 0 # IO::Socket::IP >= 0
|
|
PERL5_REQD+= 5.10.1 # Test::More >= 0.88
|
|
PERL5_REQD+= 5.6.1 # File::Temp >= 0
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|