diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2023-05-02 18:45:26 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2023-05-02 18:48:38 -0400 |
commit | 6cbc79e3ae55e88e98cae951dd0d3514c76b7325 (patch) | |
tree | d9a1636a277d69cb3477b270d660e622b2bc495a /dev-php | |
parent | dev-php/smarty: stabilize 4.3.1 for ALLARCHES (diff) | |
download | gentoo-6cbc79e3ae55e88e98cae951dd0d3514c76b7325.tar.gz gentoo-6cbc79e3ae55e88e98cae951dd0d3514c76b7325.tar.bz2 gentoo-6cbc79e3ae55e88e98cae951dd0d3514c76b7325.zip |
dev-php/smarty: drop 4.2.1
Bug: https://bugs.gentoo.org/903620
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/smarty/Manifest | 1 | ||||
-rw-r--r-- | dev-php/smarty/smarty-4.2.1.ebuild | 40 |
2 files changed, 0 insertions, 41 deletions
diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest index c323682b9854..bf76715a4a1c 100644 --- a/dev-php/smarty/Manifest +++ b/dev-php/smarty/Manifest @@ -1,2 +1 @@ -DIST smarty-4.2.1.tar.gz 236881 BLAKE2B 4014178cfc4411a9ded3120d0e3e977af0190bc03f6ed21bbd2c484ca8fb4e5aa79fe9c606ee13be87db94c17a00d7d0399cb04fe09c4b439b95bc7b9331d675 SHA512 0d55ab1d329aaa0853a1c40b5b0207d3ddc8b0c25d863a217b3c4ac8bb0a796bb60eda2919b5dda569565b03b8dd44dff67b55d8fafc005164f2848bb481d131 DIST smarty-4.3.1.tar.gz 361248 BLAKE2B b09ab14742b9ebdfd1e31ec9d2ac79016ce8869403da67ea241b735875ef25f40c2936a41bda5647ca697b708b91b02a29f5d17ebbc7d6049bf468851f0bc70f SHA512 03a42007fd1c03ba502b7a2255071638e978a54e5d75d4542a033e9f490c7c41587b5593316269107fe904a7b96a1a3337bf9525e038a5bb4051cc9aef13940f diff --git a/dev-php/smarty/smarty-4.2.1.ebuild b/dev-php/smarty/smarty-4.2.1.ebuild deleted file mode 100644 index 882ec1a65927..000000000000 --- a/dev-php/smarty/smarty-4.2.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="A template engine for PHP" -HOMEPAGE="https://www.smarty.net/ https://github.com/smarty-php/smarty/" -SRC_URI="https://github.com/smarty-php/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86" - -# PHP unicode support is detected at runtime, and the cached templates -# that smarty generates depend on it. If, later on, PHP is reinstalled -# without unicode support, all of the previously-generated cached -# templates will begin to throw 500 errrors for missing mb_foo -# functions. See bug #532618. -RDEPEND="dev-lang/php:*[unicode]" - -src_install() { - insinto "/usr/share/php/${PN}" - doins -r libs/* - - # The smarty docs and examples aren't part of the tarball, - # https://github.com/smarty-php/smarty/issues/799 - local DOCS=( CHANGELOG.md README.md SECURITY.md ) - einstalldocs -} - -pkg_postinst() { - elog "${PN} has been installed in /usr/share/php/${PN}/." - elog - elog 'To use it in your scripts, include the Smarty.class.php file' - elog "from the \"${PN}\" directory; for example," - elog - elog " require('${PN}/Smarty.class.php');" - elog - elog 'After that, the Smarty class will be available to you.' -} |