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 090A6158086 for ; Sat, 27 Nov 2021 16:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 571F12BC01D; Sat, 27 Nov 2021 16:01:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 3A3002BC01D for ; Sat, 27 Nov 2021 16:01:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BBF00342E59 for ; Sat, 27 Nov 2021 16:01:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12FA81D4 for ; Sat, 27 Nov 2021 16:01:38 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1638028889.2778e6183d7128520ba69aa95c41c2ec0354ef37.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/fcgiwrap/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-misc/fcgiwrap/fcgiwrap-9999.ebuild X-VCS-Directories: www-misc/fcgiwrap/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2778e6183d7128520ba69aa95c41c2ec0354ef37 X-VCS-Branch: master Date: Sat, 27 Nov 2021 16:01:38 +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: a2d176fe-6b40-41da-a867-531e6a64500e X-Archives-Hash: 2eee964a2cfff3a3a671d3fd50b8ddce commit: 2778e6183d7128520ba69aa95c41c2ec0354ef37 Author: Marek Szuba gentoo org> AuthorDate: Sat Nov 27 15:05:58 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sat Nov 27 16:01:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2778e618 www-misc/fcgiwrap: drop 9999 Signed-off-by: Marek Szuba gentoo.org> www-misc/fcgiwrap/fcgiwrap-9999.ebuild | 59 ---------------------------------- 1 file changed, 59 deletions(-) diff --git a/www-misc/fcgiwrap/fcgiwrap-9999.ebuild b/www-misc/fcgiwrap/fcgiwrap-9999.ebuild deleted file mode 100644 index a51f3f4835ab..000000000000 --- a/www-misc/fcgiwrap/fcgiwrap-9999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -[[ ${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 - - eapply_user - eautoreconf -} - -src_configure() { - econf \ - $(use_with systemd) \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" -} - -pkg_postinst() { - einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.' -}