Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/smarty: smarty-3.1.21.ebuild ChangeLog smarty-3.1.20.ebuild smarty-3.1.16.ebuild
Date: Wed, 29 Oct 2014 13:56:41
Message-Id: 20141029135637.B75969010@oystercatcher.gentoo.org
1 grknight 14/10/29 13:56:37
2
3 Modified: ChangeLog
4 Added: smarty-3.1.21.ebuild
5 Removed: smarty-3.1.20.ebuild smarty-3.1.16.ebuild
6 Log:
7 Version bump for security bug 526542; Drop old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
10
11 Revision Changes Path
12 1.137 dev-php/smarty/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/ChangeLog?rev=1.137&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/ChangeLog?rev=1.137&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/ChangeLog?r1=1.136&r2=1.137
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v
21 retrieving revision 1.136
22 retrieving revision 1.137
23 diff -u -r1.136 -r1.137
24 --- ChangeLog 15 Oct 2014 13:08:55 -0000 1.136
25 +++ ChangeLog 29 Oct 2014 13:56:37 -0000 1.137
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-php/smarty
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.136 2014/10/15 13:08:55 grknight Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/ChangeLog,v 1.137 2014/10/29 13:56:37 grknight Exp $
31 +
32 +*smarty-3.1.21 (29 Oct 2014)
33 +
34 + 29 Oct 2014; Brian Evans <grknight@g.o> +smarty-3.1.21.ebuild,
35 + -smarty-3.1.16.ebuild, -smarty-3.1.20.ebuild:
36 + Version bump for security bug 526542; Drop old
37
38 *smarty-3.1.20 (15 Oct 2014)
39
40
41
42
43 1.1 dev-php/smarty/smarty-3.1.21.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/smarty-3.1.21.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/smarty/smarty-3.1.21.ebuild?rev=1.1&content-type=text/plain
47
48 Index: smarty-3.1.21.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-php/smarty/smarty-3.1.21.ebuild,v 1.1 2014/10/29 13:56:37 grknight Exp $
53
54 EAPI=5
55
56 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
57
58 MY_P="Smarty-${PV}"
59 DOC_PV="3.1.14"
60
61 DESCRIPTION="A template engine for PHP"
62 HOMEPAGE="http://www.smarty.net/"
63 SRC_URI="http://www.smarty.net/files/${MY_P}.tar.gz
64 doc? ( http://www.smarty.net/files/docs/manual-en.${DOC_PV}.zip )"
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 IUSE="doc"
68
69 DEPEND="doc? ( app-arch/unzip )"
70 RDEPEND="dev-lang/php"
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_install() {
75 insinto "/usr/share/php/${PN}"
76 doins -r libs/*
77
78 dodoc *.txt README
79 use doc && dohtml -r "${WORKDIR}/manual-en/"*
80 }
81
82 pkg_postinst() {
83 elog "${PN} has been installed in /usr/share/php/${PN}/."
84 elog "To use it in your scripts, either"
85 elog "1. define('SMARTY_DIR', \"/usr/share/php/${PN}/\") in your scripts, or"
86 elog "2. add '/usr/share/php/${PN}/' to the 'include_path' variable in your"
87 elog "php.ini file under /etc/php/SAPI (where SAPI is e.g apache2-php5.3,"
88 elog "cgi-php5.3, etc)."
89 }