From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 930C915808B for ; Sun, 27 Feb 2022 23:45:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D990EE0828; Sun, 27 Feb 2022 23:45:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0FE3E0828 for ; Sun, 27 Feb 2022 23:45:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B59DF342CCF for ; Sun, 27 Feb 2022 23:45:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADD59D0 for ; Sun, 27 Feb 2022 23:45:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1646005428.577a0f1552054711a19407b0b95170f57b958339.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/fcgiwrap/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild X-VCS-Directories: www-misc/fcgiwrap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 577a0f1552054711a19407b0b95170f57b958339 X-VCS-Branch: master Date: Sun, 27 Feb 2022 23:45:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 61090abd-7a66-4316-b43f-82710dcc218f X-Archives-Hash: 4f5c84cb7e981d5ebf9721c519781454 commit: 577a0f1552054711a19407b0b95170f57b958339 Author: Sam James gentoo org> AuthorDate: Sun Feb 27 23:43:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 27 23:43:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577a0f15 www-misc/fcgiwrap: drop 1.1.0-r1 Closes: https://bugs.gentoo.org/827697 Signed-off-by: Sam James gentoo.org> www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild | 58 ------------------------------ 1 file changed, 58 deletions(-) diff --git a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild b/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild deleted file mode 100644 index e30a45f61524..000000000000 --- a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -[[ ${PV} = *9999* ]] && VCS_ECLASS="git-r3" || VCS_ECLASS="" -inherit autotools systemd toolchain-funcs ${VCS_ECLASS} - -DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)" -HOMEPAGE="https://github.com/gnosek/fcgiwrap" - -LICENSE="BSD" -SLOT="0" -IUSE="systemd" - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://github.com/gnosek/${PN}.git" -else - SRC_URI="https://github.com/gnosek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm x86" -fi - -RDEPEND=" - dev-libs/fcgi - systemd? ( sys-apps/systemd ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( README.rst ) - -src_prepare() { - sed -e "s/-Werror//" \ - -i configure.ac || die "sed failed" - - sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \ - -i Makefile.in || die "sed failed" - - sed -e "s/libsystemd-daemon/libsystemd/" \ - -i configure.ac || die "sed failed" - tc-export CC - - # Fix systemd units for Gentoo - sed -i -e '/User/d' systemd/fcgiwrap.service || die - sed -i -e '/Group/d' systemd/fcgiwrap.service || die - - eautoreconf -} - -src_configure() { - econf \ - $(use_with systemd) \ - "$(systemd_with_unitdir)" -} - -pkg_postinst() { - einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.' -}