From 58d3a5608ea580a856e141226050e75dd027a9ca Mon Sep 17 00:00:00 2001 From: "Hsu, Chih-Hsiang" Date: Thu, 6 Mar 2025 01:08:16 +0800 Subject: [PATCH] www-servers/spawn-fcgi: add 1.6.6 Closes: https://bugs.gentoo.org/950649 Signed-off-by: Hsu, Chih-Hsiang Closes: https://github.com/gentoo/gentoo/pull/40918 Signed-off-by: Sam James --- www-servers/spawn-fcgi/Manifest | 1 + .../spawn-fcgi/spawn-fcgi-1.6.6.ebuild | 28 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 www-servers/spawn-fcgi/spawn-fcgi-1.6.6.ebuild diff --git a/www-servers/spawn-fcgi/Manifest b/www-servers/spawn-fcgi/Manifest index 8a9d991bb2c61..c6692b44634e0 100644 --- a/www-servers/spawn-fcgi/Manifest +++ b/www-servers/spawn-fcgi/Manifest @@ -1,2 +1,3 @@ DIST spawn-fcgi-1.6.4.tar.xz 79944 BLAKE2B 06fb92261042fe6bccda1a472a712a7c9bc7f56ee04b72f31ee133079f6c1d07ca07ef6c1b7c878db2e32861ea20914998411a3f6b596e4ba950f8767a899346 SHA512 e2b317997b56f852ad644b80fe36fa08376ae81f93566e181c31a3b6764de2eeb32a2e10e420136d8536487c575678ca52a33f7cb3488aadf7185fbd0196bee0 DIST spawn-fcgi-1.6.5.tar.xz 79968 BLAKE2B 04e8d94e1b8428f4482c4b557c3ba455ff2649ba46e37c55812dba7dccd99a8aa94f04060ba6ea249aa10fe5ca0a3c1b1f995828750cd9a1b0ec0d1f669c5312 SHA512 a6dc2a977953e1092c0b6808b134dfda77869a5c86801d04cfe9e00ee1dcd528d4e2c3adc906f6b6130d6f2cdafd436ba550197701c8b27bbc5a8419e02d269c +DIST spawn-fcgi-1.6.6.tar.xz 11852 BLAKE2B 03bdb7cdf2dae4caecc879e41057bd814a89a17f159e95ea759a1c3244ba74e68514f3638fa82be25585465eb17f12f3409f52cd7d812ccaa008e8b3ef8d8434 SHA512 d84db80960853dfa65deaea0783d12cb1fdd5c95a6febda5ff59d9feaea119700da563e638c84a6922ea20c8f8295f26c1369144a374410cce06f4d33ade8c63 diff --git a/www-servers/spawn-fcgi/spawn-fcgi-1.6.6.ebuild b/www-servers/spawn-fcgi/spawn-fcgi-1.6.6.ebuild new file mode 100644 index 0000000000000..82ed00f36cad0 --- /dev/null +++ b/www-servers/spawn-fcgi/spawn-fcgi-1.6.6.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers" +HOMEPAGE="https://redmine.lighttpd.net/projects/spawn-fcgi/wiki" +SRC_URI="https://download.lighttpd.net/spawn-fcgi/releases-1.6.x/${P}.tar.xz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" + +src_configure() { + meson_src_configure +} + +src_install() { + meson_src_install + + newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi + newinitd "${FILESDIR}"/spawn-fcgi.initd-r3 spawn-fcgi + + docinto examples + dodoc doc/run-generic doc/run-php doc/run-rails +}