Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/fcgiwrap/
Date: Sun, 27 Feb 2022 23:45:58
Message-Id: 1646005428.577a0f1552054711a19407b0b95170f57b958339.sam@gentoo
1 commit: 577a0f1552054711a19407b0b95170f57b958339
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 23:43:48 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 23:43:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577a0f15
7
8 www-misc/fcgiwrap: drop 1.1.0-r1
9
10 Closes: https://bugs.gentoo.org/827697
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild | 58 ------------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild b/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild
17 deleted file mode 100644
18 index e30a45f61524..000000000000
19 --- a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -
27 -[[ ${PV} = *9999* ]] && VCS_ECLASS="git-r3" || VCS_ECLASS=""
28 -inherit autotools systemd toolchain-funcs ${VCS_ECLASS}
29 -
30 -DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)"
31 -HOMEPAGE="https://github.com/gnosek/fcgiwrap"
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -IUSE="systemd"
36 -
37 -if [[ ${PV} == *9999* ]]; then
38 - EGIT_REPO_URI="https://github.com/gnosek/${PN}.git"
39 -else
40 - SRC_URI="https://github.com/gnosek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 - KEYWORDS="amd64 ~arm x86"
42 -fi
43 -
44 -RDEPEND="
45 - dev-libs/fcgi
46 - systemd? ( sys-apps/systemd )
47 -"
48 -DEPEND="${RDEPEND}
49 - virtual/pkgconfig"
50 -
51 -DOCS=( README.rst )
52 -
53 -src_prepare() {
54 - sed -e "s/-Werror//" \
55 - -i configure.ac || die "sed failed"
56 -
57 - sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \
58 - -i Makefile.in || die "sed failed"
59 -
60 - sed -e "s/libsystemd-daemon/libsystemd/" \
61 - -i configure.ac || die "sed failed"
62 - tc-export CC
63 -
64 - # Fix systemd units for Gentoo
65 - sed -i -e '/User/d' systemd/fcgiwrap.service || die
66 - sed -i -e '/Group/d' systemd/fcgiwrap.service || die
67 -
68 - eautoreconf
69 -}
70 -
71 -src_configure() {
72 - econf \
73 - $(use_with systemd) \
74 - "$(systemd_with_unitdir)"
75 -}
76 -
77 -pkg_postinst() {
78 - einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.'
79 -}