From 298cb79b8a590d92e03d43c3a6d63b95a0a9656f Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Mon, 23 Jan 2017 01:16:56 +1300 Subject: 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 --- app-shells/psh/Manifest | 1 - app-shells/psh/files/psh-1.8.1-defined-array.patch | 11 ------- app-shells/psh/psh-1.8.1-r1.ebuild | 31 ------------------ app-shells/psh/psh-1.8.1-r2.ebuild | 38 ---------------------- 4 files changed, 81 deletions(-) delete mode 100644 app-shells/psh/files/psh-1.8.1-defined-array.patch delete mode 100644 app-shells/psh/psh-1.8.1-r1.ebuild delete mode 100644 app-shells/psh/psh-1.8.1-r2.ebuild (limited to 'app-shells') diff --git a/app-shells/psh/Manifest b/app-shells/psh/Manifest index 088e20dd3e07..7f0495d04d2e 100644 --- a/app-shells/psh/Manifest +++ b/app-shells/psh/Manifest @@ -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 diff --git a/app-shells/psh/files/psh-1.8.1-defined-array.patch b/app-shells/psh/files/psh-1.8.1-defined-array.patch deleted file mode 100644 index e25c4df8b837..000000000000 --- a/app-shells/psh/files/psh-1.8.1-defined-array.patch +++ /dev/null @@ -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) { diff --git a/app-shells/psh/psh-1.8.1-r1.ebuild b/app-shells/psh/psh-1.8.1-r1.ebuild deleted file mode 100644 index fbcf4aae8235..000000000000 --- a/app-shells/psh/psh-1.8.1-r1.ebuild +++ /dev/null @@ -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="