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: Mon, 17 Sep 2018 21:22:03
Message-Id: 1537219270.cb4e94e6fbc8e0781b621ee61c52b192529e7714.mjo@gentoo
1 commit: cb4e94e6fbc8e0781b621ee61c52b192529e7714
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 17 21:17:48 2018 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 17 21:21:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb4e94e6
7
8 dev-php/smarty: new version 3.1.33 to fix CVE-2018-13982.
9
10 Bug: https://bugs.gentoo.org/666440
11 Package-Manager: Portage-2.3.40, Repoman-2.3.9
12
13 dev-php/smarty/Manifest | 1 +
14 dev-php/smarty/smarty-3.1.33.ebuild | 46 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 47 insertions(+)
16
17 diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest
18 index a9bcfbbc3fe..1006772fc49 100644
19 --- a/dev-php/smarty/Manifest
20 +++ b/dev-php/smarty/Manifest
21 @@ -2,3 +2,4 @@ DIST manual-en.3.1.14.zip 408414 BLAKE2B 03d4e7a386eb3bd5b19e5c555ec34b86812838a
22 DIST smarty-3.1.30.tar.gz 255464 BLAKE2B 8378e6336f271e3c41e16b8fbb70356827ff4a9a61e3cf2a23fdbd0617155ec9dca6a5b6372327d4b35a5c6f7c3b58e807afe7403b7ed929ebacfb3c36e124d0 SHA512 6ad9a6cf10b81fecbdc4daa4acbd9724db5f1c2a014e35039b36b0bf00ba000946a2126f7da5899e587a79419f451aafcd1ee14597a32cf290bbd0bf13a877d0
23 DIST smarty-3.1.31.tar.gz 244196 BLAKE2B 695bd40d337e8f2d4a44a7b30b743ab4e5b6a7b024a514de956cd513dd6639ac6f9ae464f0d3b4cfcaf7de17994837a866cdd4945780bd3a96ff32df300302a3 SHA512 807343e4229413ea0f5219a828d4e91603fb5454f4abe8aa2d41f0a6fe32fa476e791340e1e95178ded3774d1524e98489c104c6fa391e70a8225de28fdcca18
24 DIST smarty-3.1.32.tar.gz 250680 BLAKE2B 92d4942f2d3d802b18082f5f6079c8b6945abadd8ef2c87ea217b106eeeedfbde7f1bd00c6fced67b73fc3cf328ec91fc1fb61c7f991b992167fa9d2fb1f2ad2 SHA512 07c95177172718158b9b562c6d8ff79566f4bd8e07ba394cc82c52dec7ec869935fd03ce523115c08472159adf68b902d1db5f8543201a35adf22027c5978080
25 +DIST smarty-3.1.33.tar.gz 249999 BLAKE2B 1e174b190238c8b20d5dae9c0c9fdf264c4716ba850599a2a028fe6c307eb3d9d2611e3b928efb9471e051496e4e31502458cd7a71a9318e012d5af7eca2c50e SHA512 443473cf12c7e053744daef7a70d4172979d760278aa1593216d0b70f0c12ca2b48eb79486a1c10a1cf2264da671804b94ee9d538b9013ff0bdc42e28639ca5d
26
27 diff --git a/dev-php/smarty/smarty-3.1.33.ebuild b/dev-php/smarty/smarty-3.1.33.ebuild
28 new file mode 100644
29 index 00000000000..930a87c95ae
30 --- /dev/null
31 +++ b/dev-php/smarty/smarty-3.1.33.ebuild
32 @@ -0,0 +1,46 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
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=( *.txt README README.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 +}