forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/Net-Server: Bump to version 2.9.0 re bug #623000
- EAPI6 Upstream: - Log abnormal child exits - Add delete-child hook - add cleanup_dead_child_hook to prefork server - removed stray warnings - Use File::Temp instead of POSIX::tmpnam - Allow for SSL under Unix Sockets Bug: https://bugs.gentoo.org/623000 Package-Manager: Portage-2.3.14, Repoman-2.3.6
- Loading branch information
1 parent
5d1cfbf
commit 24e4cd3
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST Net-Server-2.008.tar.gz 119565 SHA256 0921056aedc871a59c4b76f58764f0e0a16c1816b58c366a9d80e46367744fa0 SHA512 cbc7697f598db10931a10701a23aa5e98a6eba377bbc6c17d3d77baf26e0e83cf4e9c163e954faca3d3145b33264fd5a10cc2f7c6e219a7d6425ed3cc73f254a WHIRLPOOL d87d3d21946bb3ddf77a00b7e356d149a46df6e6ed4cdfe7838a6fa25f3260ab8404a654a08ebd0087705b1ce0dac646c3d1ff017d1b839d3a103bbdec58ceb4 | ||
DIST Net-Server-2.008.tar.gz 119565 BLAKE2B 02566238140f07d8ce1eb4aee19ea486ec90f0fc5d3aac73a2b19c9b1c91d149b3a079ebbcb0b0bb2d69b7c97e31af2c2e0174a105fbbe4c7af2aeafc14cebdf SHA512 cbc7697f598db10931a10701a23aa5e98a6eba377bbc6c17d3d77baf26e0e83cf4e9c163e954faca3d3145b33264fd5a10cc2f7c6e219a7d6425ed3cc73f254a | ||
DIST Net-Server-2.009.tar.gz 146781 BLAKE2B 64c0040790531dd79740bb320223e6a0e1dae07fabeeeedf8e91da523701020a8f5f7c798868d5451a022f2ef53e3fce927e5389b0ca669f01ca6de9b1d780f4 SHA512 36409f8d2478877c68cbfcbe9c08045b0c24a926b64f022faf3de8f4b4369ff417d5c41ff1e9800553c38da29c6d72ef301119c956cb26439f6b6366ff4b459c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=RHANDOM | ||
DIST_VERSION=2.009 | ||
inherit perl-module eutils | ||
|
||
DESCRIPTION="Extensible, general Perl server engine" | ||
|
||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" | ||
IUSE="ipv6" | ||
|
||
RDEPEND=" | ||
dev-perl/IO-Multiplex | ||
ipv6? ( dev-perl/IO-Socket-INET6 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=virtual/perl-ExtUtils-MakeMaker-6.300.0 | ||
" | ||
# Parallel testing causes tests to randomly fail | ||
DIST_TEST="do" |