Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-php/
Date: Thu, 23 Jan 2020 15:34:14
Message-Id: 1579793641.941b473afc3f5e96a83c12113454e9d1467e2203.mjo@gentoo
1 commit: 941b473afc3f5e96a83c12113454e9d1467e2203
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 23 15:29:03 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 23 15:34:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=941b473a
7
8 app-eselect/eselect-php: tweak the live ebuild for upstream changes.
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
12
13 app-eselect/eselect-php/eselect-php-9999.ebuild | 19 ++++---------------
14 1 file changed, 4 insertions(+), 15 deletions(-)
15
16 diff --git a/app-eselect/eselect-php/eselect-php-9999.ebuild b/app-eselect/eselect-php/eselect-php-9999.ebuild
17 index e6b5ef3d880..013fabe6fdd 100644
18 --- a/app-eselect/eselect-php/eselect-php-9999.ebuild
19 +++ b/app-eselect/eselect-php/eselect-php-9999.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit systemd git-r3 autotools
29 +inherit git-r3 autotools
30
31 DESCRIPTION="PHP eselect module"
32 HOMEPAGE="https://gitweb.gentoo.org/proj/eselect-php.git/"
33 @@ -19,7 +19,7 @@ RDEPEND="app-admin/eselect
34 apache2? ( www-servers/apache[apache2_modules_dir] )"
35
36 src_prepare() {
37 - eapply_user
38 + default
39 eautoreconf
40 }
41
42 @@ -36,14 +36,3 @@ src_configure(){
43 $(use_enable apache2) \
44 $(use_enable fpm)
45 }
46 -
47 -src_install() {
48 - default
49 -
50 - if use fpm ; then
51 - systemd_dotmpfilesd "${FILESDIR}/php-fpm.conf"
52 - sed -e "s,@libdir@,$(get_libdir),g" "${FILESDIR}/php-fpm-launcher-r3" > "${T}"/php-fpm-launcher || die
53 - exeinto /usr/libexec
54 - doexe "${T}"/php-fpm-launcher
55 - fi
56 -}