app-shells/psh: Remove old/stable

No reverse dependencies require it being stable, and its state with
recent perls is a bit dodgy.

Newer patched versions bring better support for Perl, but still
needs much improvement upstream.

Killing blockers is required to purge old versions of Perl

Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
Kent Fredric
2017-01-23 01:16:56 +13:00
parent 1bd5bcd19f
commit 298cb79b8a
4 changed files with 0 additions and 81 deletions

View File

@@ -1,2 +1 @@
DIST psh-1.8.1-r3.tar.gz 120552 SHA256 c8414c4381a6a715800a7b59c39276d1f19087bf2e0b6a9b950af4feaf7701a8 SHA512 01e9def98fa89f347ad540cbb0584773de4b7e11595432d7b8e1f1a563725004b898a5fd30f39b01de661ac6ec3274b6cfecdbd7f0bec3fe175119493163ca9a WHIRLPOOL 378aba28927a747560fa8cf6513900f93e473d1d2e5bcff4e87ed2d8c9c84daab1a86887aa2d774d3616ef541e23607bc59123d4adc584b66fbdfa4e75fa4d2d
DIST psh-1.8.1.tar.gz 120036 SHA256 9c6d276f98a3e62086bda76e1eddc0eaba6b003b903c94261bd53e80700ef88f SHA512 20ac6d6d39ff0820eee6314e73c02f18b9362ef3dde6e2c6cd68094d1ebc435d26bf3528e858042b95372916821077e5a4e5d4b376aac68caf6d8fc629a61c07 WHIRLPOOL 10d2005aa0a551823d82e475bb10d7619dfde21fc39dbee37989e08c4f8fd59b0a44ba3ea70157e55db80388ff4af099afe073c91bf0f3e95065e62f97539c95

View File

@@ -1,11 +0,0 @@
--- lib/Psh.pm 2007-07-21 16:40:44.000000000 +1200
+++ lib/Psh.pm 2015-07-18 05:30:29.840928282 +1200
@@ -367,7 +367,7 @@
sub defined_and_nonempty
{
- if (!defined(@_)) { return 0; }
+ if (!@_) { return 0; }
if (scalar(@_) == 0) { return 0; }
if (scalar(@_) == 1) {

View File

@@ -1,31 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit perl-module
DESCRIPTION="Combines the interactive nature of a Unix shell with the power of Perl"
HOMEPAGE="https://gnp.github.io/psh/"
SRC_URI="http://www.focusresearch.com/gregor/download/${P}.tar.gz"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="amd64 ppc x86"
# Package warrants USE doc & examples
IUSE="readline"
DEPEND="<dev-lang/perl-5.22.0"
RDEPEND="<dev-lang/perl-5.22.0
readline? (
dev-perl/Term-ReadLine-Gnu
dev-perl/TermReadKey )"
SRC_TEST="do parallel"
myinst="SITEPREFIX=${D}/usr"
src_install() {
perl-module_src_install
dodoc examples/complete-examples doc/*
}

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit perl-module
DESCRIPTION="Combines the interactive nature of a Unix shell with the power of Perl"
HOMEPAGE="https://gnp.github.io/psh/"
SRC_URI="http://www.focusresearch.com/gregor/download/${P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
# Package warrants USE doc & examples
IUSE="readline"
RDEPEND="
readline? (
dev-perl/Term-ReadLine-Gnu
dev-perl/TermReadKey
)
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
SRC_TEST="do parallel"
myinst="SITEPREFIX=${D}/usr"
PATCHES=(
"${FILESDIR}/${P}-defined-array.patch"
)
src_install() {
perl-module_src_install
dodoc examples/complete-examples doc/*
}