Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/smarty/
Date: Tue, 17 May 2022 23:29:56
Message-Id: 1652830084.18834a17deb847788ac32a80f9ddaa2cff861560.mjo@gentoo
1 commit: 18834a17deb847788ac32a80f9ddaa2cff861560
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 17 23:28:04 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue May 17 23:28:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18834a17
7
8 dev-php/smarty: add upstream v4.1.1 with a fix for CVE-2022-29221.
9
10 Bug: https://bugs.gentoo.org/845180
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
13
14 dev-php/smarty/Manifest | 1 +
15 dev-php/smarty/smarty-4.1.1.ebuild | 46 ++++++++++++++++++++++++++++++++++++++
16 2 files changed, 47 insertions(+)
17
18 diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest
19 index 1af0ed132b60..d129d6ccfbb6 100644
20 --- a/dev-php/smarty/Manifest
21 +++ b/dev-php/smarty/Manifest
22 @@ -1,2 +1,3 @@
23 DIST manual-en.3.1.14.zip 408414 BLAKE2B 03d4e7a386eb3bd5b19e5c555ec34b86812838a5b5fac8ec0ab9701fba89a5867714da57d950f68224a89bbe2267c18d638ee850681860de309c74bbfb3d0a0b SHA512 d384e3856b45ed3f992f3732a5465120abe9fb947cdf13ff67a9c4264f72987d24885ee61cd7309b728e64cdfe4f34c3e7f757096d35de56d962f3b78def9e58
24 DIST smarty-4.0.4.tar.gz 359012 BLAKE2B 84f34ff1e00f81de8961e252a14a7d813180b789820ace363c7a64f05d57c874d1f77068aed43d1d4cfc9aed0b348625e85e75a30ae3f1dab7a15c92f6ed9ab5 SHA512 1eef2585b415905e4a67328ab56ae473e5121b8f3a50f0d3aa3c60ab331eda9137744c92dcf2fcc674a6ec68eb714aa60468d1b56a436a94778be242fbd0b377
25 +DIST smarty-4.1.1.tar.gz 235624 BLAKE2B c624812ebebb1a8d09a5d80e2826b4e0e90310f6f53f903c9e962542b41b5c150ede1031f66c290e4dc2bb336eb532fd3305a3d97c7e43768d45f57df6815448 SHA512 93e601959651a00bdf9be9c9ddcfea6b189f70270ec8ab4764d2759c0c4de07c74a79cf4e42ee97d16c246130d6f1da5c8601fa60e5194906fe3b416934d1ef5
26
27 diff --git a/dev-php/smarty/smarty-4.1.1.ebuild b/dev-php/smarty/smarty-4.1.1.ebuild
28 new file mode 100644
29 index 000000000000..b8594fc0e25c
30 --- /dev/null
31 +++ b/dev-php/smarty/smarty-4.1.1.ebuild
32 @@ -0,0 +1,46 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +DOC_PV="3.1.14"
39 +
40 +DESCRIPTION="A template engine for PHP"
41 +HOMEPAGE="https://www.smarty.net/"
42 +SRC_URI="https://github.com/smarty-php/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
43 + doc? ( https://www.smarty.net/files/docs/manual-en.${DOC_PV}.zip )"
44 +
45 +LICENSE="LGPL-3"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
48 +IUSE="doc"
49 +
50 +BDEPEND="doc? ( app-arch/unzip )"
51 +
52 +# PHP unicode support is detected at runtime, and the cached templates
53 +# that smarty generates depend on it. If, later on, PHP is reinstalled
54 +# without unicode support, all of the previously-generated cached
55 +# templates will begin to throw 500 errrors for missing mb_foo
56 +# functions. See bug #532618.
57 +RDEPEND="dev-lang/php:*[unicode]"
58 +
59 +src_install() {
60 + insinto "/usr/share/php/${PN}"
61 + doins -r libs/*
62 +
63 + local DOCS=( CHANGELOG.md README.md SECURITY.md )
64 + local HTML_DOCS
65 + use doc && HTML_DOCS="${WORKDIR}/manual-en/"*
66 + einstalldocs
67 +}
68 +
69 +pkg_postinst() {
70 + elog "${PN} has been installed in /usr/share/php/${PN}/."
71 + elog
72 + elog 'To use it in your scripts, include the Smarty.class.php file'
73 + elog "from the \"${PN}\" directory; for example,"
74 + elog
75 + elog " require('${PN}/Smarty.class.php');"
76 + elog
77 + elog 'After that, the Smarty class will be available to you.'
78 +}