SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
32
devel/p5-AnyEvent/Makefile
Normal file
32
devel/p5-AnyEvent/Makefile
Normal file
|
@ -0,0 +1,32 @@
|
|||
COMMENT = provide framework for multiple event loops
|
||||
|
||||
DISTNAME = AnyEvent-7.17
|
||||
EPOCH = 0
|
||||
REVISION = 2
|
||||
|
||||
CATEGORIES = devel
|
||||
|
||||
MAINTAINER = Alexander Bluhm <bluhm@openbsd.org>
|
||||
|
||||
# Perl
|
||||
PERMIT_PACKAGE = Yes
|
||||
|
||||
MODULES = cpan
|
||||
BUILD_DEPENDS = devel/p5-Canary-Stability
|
||||
RUN_DEPENDS = devel/p5-EV>=4.00
|
||||
TEST_DEPENDS = converters/p5-JSON-XS>=2.2 \
|
||||
converters/p5-JSON>=2.09 \
|
||||
devel/p5-Glib2 \
|
||||
devel/p5-Guard>=1.02 \
|
||||
devel/p5-POE \
|
||||
devel/p5-Task-Weaken \
|
||||
security/p5-Net-SSLeay>=1.33
|
||||
|
||||
MAKE_ENV = PERL_ANYEVENT_LOOP_TESTS=1
|
||||
|
||||
PKG_ARCH = *
|
||||
|
||||
MODCPAN_EXAMPLES = Yes
|
||||
MODCPAN_EXAMPLES_DIST = eg
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/p5-AnyEvent/distinfo
Normal file
2
devel/p5-AnyEvent/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (AnyEvent-7.17.tar.gz) = UL7qaJwJj+Sq64OAbEC5/n+UbVdprPmfhJ8JkJGkuYU=
|
||||
SIZE (AnyEvent-7.17.tar.gz) = 304845
|
14
devel/p5-AnyEvent/patches/patch-lib_AnyEvent_TLS_pm
Normal file
14
devel/p5-AnyEvent/patches/patch-lib_AnyEvent_TLS_pm
Normal file
|
@ -0,0 +1,14 @@
|
|||
LibreSSL uses TLS 1.3. This is not expected by AnyEvent. Especially
|
||||
an EPIPE error confuses the t/80_ssltest.t test.
|
||||
|
||||
Index: lib/AnyEvent/TLS.pm
|
||||
--- lib/AnyEvent/TLS.pm.orig
|
||||
+++ lib/AnyEvent/TLS.pm
|
||||
@@ -629,6 +629,7 @@ sub new {
|
||||
|
||||
my $op = Net::SSLeay::OP_ALL ();
|
||||
|
||||
+ $op |= Net::SSLeay::OP_NO_TLSv1_3 (); # LibreSSL EPIPE is not expected
|
||||
$op |= Net::SSLeay::OP_NO_SSLv2 () unless $arg{sslv2};
|
||||
$op |= Net::SSLeay::OP_NO_SSLv3 () if exists $arg{sslv3} && !$arg{sslv3};
|
||||
$op |= Net::SSLeay::OP_NO_TLSv1 () if exists $arg{tlsv1} && !$arg{tlsv1};
|
5
devel/p5-AnyEvent/pkg/DESCR
Normal file
5
devel/p5-AnyEvent/pkg/DESCR
Normal file
|
@ -0,0 +1,5 @@
|
|||
AnyEvent provides a uniform interface to various event loops. This
|
||||
allows module authors to use event loop functionality without forcing
|
||||
module users to use a specific event loop implementation (since
|
||||
more than one event loop cannot coexist peacefully). The interface
|
||||
itself is vaguely similar, but not identical to the Event module.
|
75
devel/p5-AnyEvent/pkg/PLIST
Normal file
75
devel/p5-AnyEvent/pkg/PLIST
Normal file
|
@ -0,0 +1,75 @@
|
|||
${P5ARCH}/AE.pm
|
||||
${P5ARCH}/AnyEvent/
|
||||
${P5ARCH}/AnyEvent.pm
|
||||
${P5ARCH}/AnyEvent/DNS.pm
|
||||
${P5ARCH}/AnyEvent/Debug.pm
|
||||
${P5ARCH}/AnyEvent/FAQ.pod
|
||||
${P5ARCH}/AnyEvent/Handle.pm
|
||||
${P5ARCH}/AnyEvent/IO/
|
||||
${P5ARCH}/AnyEvent/IO.pm
|
||||
${P5ARCH}/AnyEvent/IO/IOAIO.pm
|
||||
${P5ARCH}/AnyEvent/IO/Perl.pm
|
||||
${P5ARCH}/AnyEvent/Impl/
|
||||
${P5ARCH}/AnyEvent/Impl/Cocoa.pm
|
||||
${P5ARCH}/AnyEvent/Impl/EV.pm
|
||||
${P5ARCH}/AnyEvent/Impl/Event.pm
|
||||
${P5ARCH}/AnyEvent/Impl/EventLib.pm
|
||||
${P5ARCH}/AnyEvent/Impl/FLTK.pm
|
||||
${P5ARCH}/AnyEvent/Impl/Glib.pm
|
||||
${P5ARCH}/AnyEvent/Impl/IOAsync.pm
|
||||
${P5ARCH}/AnyEvent/Impl/Irssi.pm
|
||||
${P5ARCH}/AnyEvent/Impl/POE.pm
|
||||
${P5ARCH}/AnyEvent/Impl/Perl.pm
|
||||
${P5ARCH}/AnyEvent/Impl/Qt.pm
|
||||
${P5ARCH}/AnyEvent/Impl/Tk.pm
|
||||
${P5ARCH}/AnyEvent/Impl/UV.pm
|
||||
${P5ARCH}/AnyEvent/Intro.pod
|
||||
${P5ARCH}/AnyEvent/Log.pm
|
||||
${P5ARCH}/AnyEvent/Loop.pm
|
||||
${P5ARCH}/AnyEvent/Socket.pm
|
||||
${P5ARCH}/AnyEvent/Strict.pm
|
||||
${P5ARCH}/AnyEvent/TLS.pm
|
||||
${P5ARCH}/AnyEvent/Util/
|
||||
${P5ARCH}/AnyEvent/Util.pm
|
||||
${P5ARCH}/AnyEvent/Util/idna.pl
|
||||
${P5ARCH}/AnyEvent/Util/uts46data.pl
|
||||
${P5ARCH}/AnyEvent/constants.pl
|
||||
@man man/man3p/AE.3p
|
||||
@man man/man3p/AnyEvent.3p
|
||||
@man man/man3p/AnyEvent::DNS.3p
|
||||
@man man/man3p/AnyEvent::Debug.3p
|
||||
@man man/man3p/AnyEvent::FAQ.3p
|
||||
@man man/man3p/AnyEvent::Handle.3p
|
||||
@man man/man3p/AnyEvent::IO.3p
|
||||
@man man/man3p/AnyEvent::IO::IOAIO.3p
|
||||
@man man/man3p/AnyEvent::IO::Perl.3p
|
||||
@man man/man3p/AnyEvent::Impl::Cocoa.3p
|
||||
@man man/man3p/AnyEvent::Impl::EV.3p
|
||||
@man man/man3p/AnyEvent::Impl::Event.3p
|
||||
@man man/man3p/AnyEvent::Impl::EventLib.3p
|
||||
@man man/man3p/AnyEvent::Impl::FLTK.3p
|
||||
@man man/man3p/AnyEvent::Impl::Glib.3p
|
||||
@man man/man3p/AnyEvent::Impl::IOAsync.3p
|
||||
@man man/man3p/AnyEvent::Impl::Irssi.3p
|
||||
@man man/man3p/AnyEvent::Impl::POE.3p
|
||||
@man man/man3p/AnyEvent::Impl::Perl.3p
|
||||
@man man/man3p/AnyEvent::Impl::Qt.3p
|
||||
@man man/man3p/AnyEvent::Impl::Tk.3p
|
||||
@man man/man3p/AnyEvent::Impl::UV.3p
|
||||
@man man/man3p/AnyEvent::Intro.3p
|
||||
@man man/man3p/AnyEvent::Log.3p
|
||||
@man man/man3p/AnyEvent::Loop.3p
|
||||
@man man/man3p/AnyEvent::Socket.3p
|
||||
@man man/man3p/AnyEvent::Strict.3p
|
||||
@man man/man3p/AnyEvent::TLS.3p
|
||||
@man man/man3p/AnyEvent::Util.3p
|
||||
share/examples/p5-AnyEvent/
|
||||
share/examples/p5-AnyEvent/ae0.pl
|
||||
share/examples/p5-AnyEvent/ae2.pl
|
||||
share/examples/p5-AnyEvent/bench
|
||||
share/examples/p5-AnyEvent/bench2
|
||||
share/examples/p5-AnyEvent/connect
|
||||
share/examples/p5-AnyEvent/handle
|
||||
share/examples/p5-AnyEvent/listen
|
||||
share/examples/p5-AnyEvent/runbench
|
||||
share/examples/p5-AnyEvent/runbench2
|
Loading…
Add table
Add a link
Reference in a new issue