diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-21 11:04:44 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-21 11:05:23 +0300 |
commit | b26660da04299fd0e39151fb9bd20c9363229aa2 (patch) | |
tree | 827adef37932a58bcff42971afece00f991f05d8 /dev-php/PEAR-Console_CommandLine | |
parent | media-sound/qtractor: dropped obsolete 0.9.90 (diff) | |
download | gentoo-b26660da04299fd0e39151fb9bd20c9363229aa2.tar.gz gentoo-b26660da04299fd0e39151fb9bd20c9363229aa2.tar.bz2 gentoo-b26660da04299fd0e39151fb9bd20c9363229aa2.zip |
dev-php/PEAR-Console_CommandLine: drop 1.2.2
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-php/PEAR-Console_CommandLine')
-rw-r--r-- | dev-php/PEAR-Console_CommandLine/Manifest | 1 | ||||
-rw-r--r-- | dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-php/PEAR-Console_CommandLine/Manifest b/dev-php/PEAR-Console_CommandLine/Manifest index c0ada322b9e5..055772d25b61 100644 --- a/dev-php/PEAR-Console_CommandLine/Manifest +++ b/dev-php/PEAR-Console_CommandLine/Manifest @@ -1,2 +1 @@ -DIST Console_CommandLine-1.2.2.tgz 40705 BLAKE2B 1cf2fd7ffdafe1b6e683d40e24c07bc12c9e41469e42595f40778f0bfef30457b32f80b966835a690724e29216348be0fb3f98a83947459d48f728896a5a056a SHA512 05dbde123d0d4fdbba2a959f4bea3b115e3629060a268d25a3007c2ee5a3530b8ebbd8c7d124a6c9d012cafa19f41690a888943a6c1e2e5ec1b9d83fa821d603 DIST Console_CommandLine-1.2.6.tgz 36389 BLAKE2B a2ad049324653d9e2dc5b438619dec5caed3cba1703395da0838ec521c08b37bdc693aa79ed87e2cc4e3e2382c7ebcaa340da34716eeb3700c4242cf5c05afdd SHA512 bd3a04915b6cc1dc07d2aad4c5714d7b3ed373c938bc945f0bd71d1686788d2be9cb9a3cdf5021f34a200b361d76a664921334d4e462e011502e37d0a8fbd891 diff --git a/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild b/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild deleted file mode 100644 index b2dacba50160..000000000000 --- a/dev-php/PEAR-Console_CommandLine/PEAR-Console_CommandLine-1.2.2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PN="${PN/PEAR-/}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A full-featured command-line options and arguments parser" -HOMEPAGE="https://pear.php.net/package/Console_CommandLine" -SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm ~hppa ppc64 sparc x86" -IUSE="examples test" -RESTRICT="!test? ( test )" - -# Only needs PEAR_Exception (not yet packaged) -- not all of PEAR-PEAR. -RDEPEND="dev-lang/php:* - dev-php/PEAR-PEAR" - -# Beware, the test suite really needs PEAR-PEAR. -DEPEND="test? ( ${RDEPEND} )" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # There's one occurrence of @data_dir@ that needs to be replaced - # This location just has to agree with where we put the "data" - # directory during src_install(). - default - sed -i "s|@data_dir@|${EPREFIX}/usr/share|" \ - Console/CommandLine/XmlParser.php || die -} - -src_install() { - use examples && dodoc -r docs/examples - - insinto "/usr/share/${MY_PN}" - doins -r data - - insinto /usr/share/php - doins -r Console -} - -src_test() { - # Requires the "pear" executable from dev-php/PEAR-PEAR. - pear run-tests tests || die - - # The command succeeds regardless of whether or not the test suite - # passed, but this file is only written when there was a failure. - [[ -f run-tests.log ]] && die "test suite failed" -} |