Merge pull request #56267 from catern/ssprefork

perlPackages.NetServerSSPrefork: init at 0.06pre
This commit is contained in:
Stig P 2020-10-15 22:48:28 +00:00 committed by GitHub
commit fd2995dfcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14970,6 +14970,24 @@ let
};
};
NetServerSSPrefork = buildPerlPackage {
pname = "Net-Server-SS-PreFork";
version = "0.06pre";
src = fetchFromGitHub {
owner = "kazuho";
repo = "p5-Net-Server-SS-PreFork";
rev = "5fccc0c270e25c65ef634304630af74b48807d21";
sha256 = "0z02labw0dd76sdf301bhrmgnsjds0ddsg22138g8ys4az49bxx6";
};
checkInputs = [ HTTPMessage LWP TestSharedFork HTTPServerSimple TestTCP TestUNIXSock ];
buildInputs = [ ModuleInstall ];
propagatedBuildInputs = [ NetServer ServerStarter ];
meta = {
description = "A hot-deployable variant of Net::Server::PreFork";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
NetSMTPSSL = buildPerlPackage {
pname = "Net-SMTP-SSL";
version = "1.04";
@ -17987,7 +18005,7 @@ let
};
buildInputs = [ LWP ModuleBuildTiny TestRequires TestTCP ];
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin shortenPerlShebang;
propagatedBuildInputs = [ DataDump HTTPParserXS NetServer Plack ];
propagatedBuildInputs = [ DataDump HTTPParserXS NetServer Plack NetServerSSPrefork ];
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
shortenPerlShebang $out/bin/starman
'';
@ -20536,6 +20554,21 @@ let
buildInputs = [ TestSharedFork ];
};
TestUNIXSock = buildPerlModule rec {
pname = "Test-UNIXSock";
version = "0.4";
src = fetchurl {
url = "mirror://cpan/authors/id/F/FU/FUJIWARA/${pname}-${version}.tar.gz";
sha256 = "0gwgd2w16dsppmf1r6yc17ipvs8b62ybsiz2dyzwy4il236b8c1p";
};
meta = {
description = "Testing UNIX domain socket program";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
buildInputs = [ ModuleBuildTiny ];
propagatedBuildInputs = [ TestSharedFork TestTCP ];
};
TestTime = buildPerlPackage {
pname = "Test-Time";
version = "0.08";