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: Fri, 27 May 2022 12:43:36
Message-Id: 1653655262.b9e0097b154d630a2c16d3054640f77fec153d62.mjo@gentoo
1 commit: b9e0097b154d630a2c16d3054640f77fec153d62
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 12:41:02 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 12:41:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e0097b
7
8 dev-php/smarty: security cleanup of old v4.0.4.
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.0.4.ebuild | 46 --------------------------------------
16 2 files changed, 47 deletions(-)
17
18 diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest
19 index d129d6ccfbb6..a362a1bc8fe3 100644
20 --- a/dev-php/smarty/Manifest
21 +++ b/dev-php/smarty/Manifest
22 @@ -1,3 +1,2 @@
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.0.4.ebuild b/dev-php/smarty/smarty-4.0.4.ebuild
28 deleted file mode 100644
29 index ec9685432afe..000000000000
30 --- a/dev-php/smarty/smarty-4.0.4.ebuild
31 +++ /dev/null
32 @@ -1,46 +0,0 @@
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 -}