diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2023-01-27 11:46:29 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2023-01-27 12:07:03 +0100 |
commit | 7e7d71255f62f6489f63b126f92395b0854125cd (patch) | |
tree | e7788318ad288ce1b9a3645a78d3e0b6ce42613a /dev-php | |
parent | sys-devel/llvm-common: Remove 15.0.6 (diff) | |
download | gentoo-7e7d71255f62f6489f63b126f92395b0854125cd.tar.gz gentoo-7e7d71255f62f6489f63b126f92395b0854125cd.tar.bz2 gentoo-7e7d71255f62f6489f63b126f92395b0854125cd.zip |
dev-php/phptal: treeclean
Closes: https://bugs.gentoo.org/737842
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/phptal/Manifest | 1 | ||||
-rw-r--r-- | dev-php/phptal/metadata.xml | 8 | ||||
-rw-r--r-- | dev-php/phptal/phptal-1.3.1.ebuild | 36 |
3 files changed, 0 insertions, 45 deletions
diff --git a/dev-php/phptal/Manifest b/dev-php/phptal/Manifest deleted file mode 100644 index e24092ed7848..000000000000 --- a/dev-php/phptal/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST phptal-1.3.1.tar.gz 272883 BLAKE2B 4914b8bb40464f22417fd7ed7dbf88709b95b69a69a905a5152ff640dd5af6af2be7c7d67a622d78029e4075b6b19d8d1bf537a4a6ccc0c97260e5183a961ecd SHA512 74856cbeab3f8d9d552bcb7275a0180fd25e7703230c90e4343fbe9be4001118b091fabbace89efa98a8bf0344f46edf36c4ba709ed0e9b040b82204ea3b7290 diff --git a/dev-php/phptal/metadata.xml b/dev-php/phptal/metadata.xml deleted file mode 100644 index dabe2462bc03..000000000000 --- a/dev-php/phptal/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>php-bugs@gentoo.org</email> - <name>PHP</name> - </maintainer> -</pkgmetadata> diff --git a/dev-php/phptal/phptal-1.3.1.ebuild b/dev-php/phptal/phptal-1.3.1.ebuild deleted file mode 100644 index 852ecd7ec345..000000000000 --- a/dev-php/phptal/phptal-1.3.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PHP_LIB_NAME="PHPTAL" - -DESCRIPTION="A templating engine for PHP5 that implements Zope Page Templates syntax" -HOMEPAGE="https://phptal.org/" -SRC_URI="https://github.com/${PN}/${PHP_LIB_NAME}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-lang/php:*" -DEPEND="test? ( ${RDEPEND} <dev-php/phpunit-6 )" - -S="${WORKDIR}/${PHP_LIB_NAME}-${PV}" - -src_compile() { :; } - -src_install() { - insinto /usr/share/php/${PN} - doins -r "classes/${PHP_LIB_NAME}" - doins classes/PHPTAL.php tools/phptal_lint.php - - dodoc README.md -} - -src_test() { - [[ -z $(locale -a |grep en_GB) ]] && ewarn "Tests require en_GB locale to complete" - phpunit || die -} |