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: Mon, 07 Dec 2015 01:29:48
Message-Id: 1449450145.7c711c8293c7f67c8de8e0cab5133d85b77af08d.mjo@gentoo
1 commit: 7c711c8293c7f67c8de8e0cab5133d85b77af08d
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 7 01:02:08 2015 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 7 01:02:25 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c711c82
7
8 app-eselect/eselect-php: version bump with partial php-7.x support for apache2.
9
10 This new version adds the ability to switch the apache2 implementation
11 to php-7.x. This was missing earlier due to a library name change,
12 libphp5 -> libphp7. This partially addresses bug #552156, although
13 there is still some work to be done in the apache config file.
14
15 Upstream development has moved to a Gentoo-hosted git repository at
16 https://gitweb.gentoo.org/proj/eselect-php.git/
17
18 Gentoo-Bug: 552156
19
20 Package-Manager: portage-2.2.20.1
21
22 app-eselect/eselect-php/Manifest | 1 +
23 app-eselect/eselect-php/eselect-php-0.8.0.ebuild | 38 ++++++++++++++++++++++++
24 2 files changed, 39 insertions(+)
25
26 diff --git a/app-eselect/eselect-php/Manifest b/app-eselect/eselect-php/Manifest
27 index 27a9d1f..9c9280e 100644
28 --- a/app-eselect/eselect-php/Manifest
29 +++ b/app-eselect/eselect-php/Manifest
30 @@ -1 +1,2 @@
31 DIST eselect-php-0.7.1.bz2 2251 SHA256 10aa400e2d08bc71989366993f12ddb546a0ea29f191c40e37beba1d11d7abd7 SHA512 a6b4c1475dda9f368d799db7658c50cef7d6f71482a53a186fb1394e7ea1fff3c0ef123c82b7ca4d1e45aadb0a034d36f213fc9450766878a60d28639761cb3d WHIRLPOOL a4e45492068616ff30fd888b0cc64441a6eb6e6656e0107d00bd2cf15360dce15052d4d62089ab89d43e6bb36e126529aa101c70e8bd94a9fc916a5369463e3b
32 +DIST eselect-php-0.8.0.tar.xz 43932 SHA256 1ddc6aafe269ebbf3006737701403bd2c7b324b9eea0fcbdc91e85a856f8a10d SHA512 53c735275264742542d3909ae2994d0720bc961533a3df5373dbc7a7a1f04e91591f4e8356c268954420487d3ead4006cc5d6f361ef0ac2836f7f126556e960d WHIRLPOOL 94deba4a5bd4d0d85c8f3afc96ac30a69cca5db95014b2fd8701495cc83488389302f640065e923cabd40c95f97f792dd173337cc33c7d38441956049fb90cda
33
34 diff --git a/app-eselect/eselect-php/eselect-php-0.8.0.ebuild b/app-eselect/eselect-php/eselect-php-0.8.0.ebuild
35 new file mode 100644
36 index 0000000..ea57178
37 --- /dev/null
38 +++ b/app-eselect/eselect-php/eselect-php-0.8.0.ebuild
39 @@ -0,0 +1,38 @@
40 +# Copyright 1999-2015 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +# $Id$
43 +
44 +EAPI=5
45 +
46 +inherit depend.apache systemd
47 +
48 +DESCRIPTION="PHP eselect module"
49 +HOMEPAGE="https://gitweb.gentoo.org/proj/eselect-php.git/"
50 +SRC_URI="https://dev.gentoo.org/~mjo/distfiles/${P}.tar.xz"
51 +
52 +LICENSE="GPL-2"
53 +SLOT="0"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
55 +IUSE="fpm apache2"
56 +
57 +# The "DirectoryIndex" line in 70_mod_php5.conf requires mod_dir.
58 +RDEPEND="app-admin/eselect
59 + apache2? ( www-servers/apache[apache2_modules_dir] )"
60 +
61 +want_apache
62 +
63 +src_install() {
64 + default
65 +
66 + if use apache2 ; then
67 + insinto "${APACHE_MODULES_CONFDIR#${EPREFIX}}"
68 + newins "${FILESDIR}/70_mod_php5.conf-apache2-r1" "70_mod_php5.conf"
69 + fi
70 +
71 + if use fpm ; then
72 + newinitd "${FILESDIR}/php-fpm.init-r4" "php-fpm"
73 + systemd_dotmpfilesd "${FILESDIR}/php-fpm.conf"
74 + exeinto /usr/libexec
75 + doexe "${FILESDIR}/php-fpm-launcher"
76 + fi
77 +}