summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2017-01-23 01:16:56 +1300
committerKent Fredric <kentnl@gentoo.org>2017-01-23 01:17:40 +1300
commit298cb79b8a590d92e03d43c3a6d63b95a0a9656f (patch)
tree312beb54c82bbf8b89fa04ee8e623d38586ecb82 /app-shells/psh/files
parentnet-analyzer/wireshark: EAPI=6, Drop IUSE=qt4. (diff)
downloadgentoo-298cb79b8a590d92e03d43c3a6d63b95a0a9656f.tar.gz
gentoo-298cb79b8a590d92e03d43c3a6d63b95a0a9656f.tar.bz2
gentoo-298cb79b8a590d92e03d43c3a6d63b95a0a9656f.zip
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
Diffstat (limited to 'app-shells/psh/files')
-rw-r--r--app-shells/psh/files/psh-1.8.1-defined-array.patch11
1 files changed, 0 insertions, 11 deletions
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) {