Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-misc/fcgiwrap/
Date: Wed, 11 Sep 2019 16:21:46
Message-Id: 1568218869.ec0d08162718444fd61bf120c8b490a19a751352.mgorny@gentoo
1 commit: ec0d08162718444fd61bf120c8b490a19a751352
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 11 11:27:30 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 11 16:21:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec0d0816
7
8 www-misc/fcgiwrap: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 www-misc/fcgiwrap/Manifest | 1 -
13 .../fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild | 63 ----------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/www-misc/fcgiwrap/Manifest b/www-misc/fcgiwrap/Manifest
17 index ba313475d46..c1143d8241d 100644
18 --- a/www-misc/fcgiwrap/Manifest
19 +++ b/www-misc/fcgiwrap/Manifest
20 @@ -1,2 +1 @@
21 DIST fcgiwrap-1.1.0.tar.gz 9924 BLAKE2B a96a87bfd1e4845be3a5018e5574edd40a800926ac531a041fae07f6810da509eecf97a19b2debe0ea318f2968f30184f4f6c1c02495777492d32826a0f759a1 SHA512 b8d35762d1d3c94a67602290b0092f0c38cffbbcd3dbc16597abf8b92172909b04450c238de2e430e841a17dd47fdd48d6a001f77539966980ef1af61e447ddc
22 -DIST fcgiwrap-1.1.0_pre20150419.tar.gz 10834 BLAKE2B 174a832b8d2996de38203244ecece55ca1bd808b1e6724894c9ef99a7236ad40fbe4031450797f14931008305d50b4d2dfcc1abe97586fda9f45194c8b16bf4e SHA512 48df3f0b5ad15d172b7ee883d53c59ecbd78c0c401ef1452df8fc03af1a7aed153464b2515ca18881af70f6baf6c80e0b405d1dde4888a20397b9db272ea6ba4
23
24 diff --git a/www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild b/www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild
25 deleted file mode 100644
26 index b6310e79a9d..00000000000
27 --- a/www-misc/fcgiwrap/fcgiwrap-1.1.0_pre20150419.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="6"
34 -
35 -[[ ${PV} = *9999* ]] && VCS_ECLASS="git-r3" || VCS_ECLASS=""
36 -inherit autotools systemd toolchain-funcs ${VCS_ECLASS}
37 -
38 -DESCRIPTION="Simple FastCGI wrapper for CGI scripts (CGI support for nginx)"
39 -HOMEPAGE="https://github.com/gnosek/fcgiwrap"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -IUSE="systemd"
44 -
45 -if [[ ${PV} == *9999* ]]; then
46 - EGIT_REPO_URI="https://github.com/gnosek/${PN}.git"
47 -else
48 - MY_REV="99c942c90063c73734e56bacaa65f947772d9186"
49 - MY_P="gnosek-fcgiwrap-${MY_REV:0:7}"
50 - SRC_URI="https://github.com/gnosek/${PN}/tarball/${MY_REV} -> ${P}.tar.gz"
51 - KEYWORDS="~amd64 ~arm ~x86"
52 -fi
53 -
54 -RDEPEND="
55 - dev-libs/fcgi
56 - systemd? ( sys-apps/systemd )
57 -"
58 -DEPEND="${RDEPEND}
59 - virtual/pkgconfig"
60 -
61 -DOCS=( README.rst )
62 -
63 -S="${WORKDIR}/${MY_P}"
64 -
65 -src_prepare() {
66 - sed -e "s/-Werror//" \
67 - -i configure.ac || die "sed failed"
68 -
69 - sed -e '/man8dir = $(DESTDIR)/s/@prefix@//' \
70 - -i Makefile.in || die "sed failed"
71 -
72 - sed -e "s/libsystemd-daemon/libsystemd/" \
73 - -i configure.ac || die "sed failed"
74 - tc-export CC
75 -
76 - # Fix systemd units for Gentoo
77 - sed -i -e '/User/d' systemd/fcgiwrap.service || die
78 - sed -i -e '/Group/d' systemd/fcgiwrap.service || die
79 -
80 - eapply_user
81 - eautoreconf
82 -}
83 -
84 -src_configure() {
85 - econf \
86 - $(use_with systemd) \
87 - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
88 -}
89 -
90 -pkg_postinst() {
91 - einfo 'You may want to install www-servers/spawn-fcgi to use with fcgiwrap.'
92 -}