Gentoo Archives: gentoo-commits

From: "Ole Markus With (olemarkus)" <olemarkus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/eselect-php: eselect-php-0.7.1-r2.ebuild ChangeLog
Date: Tue, 30 Jul 2013 10:48:48
Message-Id: 20130730101009.D9BA32171D@flycatcher.gentoo.org
1 olemarkus 13/07/30 10:10:09
2
3 Modified: ChangeLog
4 Added: eselect-php-0.7.1-r2.ebuild
5 Log:
6 Fix fpm restart issue
7
8 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
9
10 Revision Changes Path
11 1.56 app-admin/eselect-php/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-php/ChangeLog?rev=1.56&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-php/ChangeLog?rev=1.56&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-php/ChangeLog?r1=1.55&r2=1.56
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-php/ChangeLog,v
20 retrieving revision 1.55
21 retrieving revision 1.56
22 diff -u -r1.55 -r1.56
23 --- ChangeLog 28 Jul 2013 19:24:57 -0000 1.55
24 +++ ChangeLog 30 Jul 2013 10:10:09 -0000 1.56
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/eselect-php
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-php/ChangeLog,v 1.55 2013/07/28 19:24:57 olemarkus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-php/ChangeLog,v 1.56 2013/07/30 10:10:09 olemarkus Exp $
30 +
31 +*eselect-php-0.7.1-r2 (30 Jul 2013)
32 +
33 + 30 Jul 2013; Ole Markus With <olemarkus@g.o>
34 + +eselect-php-0.7.1-r2.ebuild, +files/php-fpm-r1.init:
35 + Fix fpm restart issue
36
37 28 Jul 2013; Ole Markus With <olemarkus@g.o> eselect-php-0.6.2.ebuild,
38 files/php-fpm.conf:
39
40
41
42 1.1 app-admin/eselect-php/eselect-php-0.7.1-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-php/eselect-php-0.7.1-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-php/eselect-php-0.7.1-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eselect-php-0.7.1-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-php/eselect-php-0.7.1-r2.ebuild,v 1.1 2013/07/30 10:10:09 olemarkus Exp $
52
53 EAPI=5
54
55 inherit depend.apache systemd
56
57 DESCRIPTION="PHP eselect module"
58 HOMEPAGE="http://www.gentoo.org"
59 SRC_URI="http://dev.gentoo.org/~olemarkus/eselect-php/eselect-php-${PV}.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~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"
64 IUSE="fpm apache2"
65
66 DEPEND=">=app-admin/eselect-1.2.4
67 !<dev-lang/php-5.3.23-r1:5.3
68 !<dev-lang/php-5.4.13-r1:5.4
69 !<dev-lang/php-5.5.0_beta1-r2:5.5
70 "
71 RDEPEND="${DEPEND}"
72
73 S="${WORKDIR}"
74
75 want_apache
76
77 src_install() {
78 mv eselect-php-${PV} php.eselect
79 insinto /usr/share/eselect/modules/
80 doins php.eselect
81
82 if use apache2 ; then
83 insinto "${APACHE_MODULES_CONFDIR#${EPREFIX}}"
84 newins "${FILESDIR}/70_mod_php5.conf-apache2" \
85 "70_mod_php5.conf"
86 fi
87
88 if use fpm ; then
89 dodir "/etc/init.d"
90 insinto "/etc/init.d"
91 newinitd "${FILESDIR}/php-fpm-r1.init" "php-fpm"
92 systemd_newunit "${FILESDIR}/php-fpm_at.service" "php-fpm@.service"
93 systemd_dotmpfilesd "${FILESDIR}/php-fpm.conf"
94 exeinto /usr/libexec
95 doexe "${FILESDIR}/php-fpm-launcher"
96 fi
97 }