[libterm-readkey-perl] 04/08: Drop patches, they were applied upstream

Florian Schlichting fsfs at moszumanska.debian.org
Fri Oct 21 22:33:06 UTC 2016


This is an automated email from the git hooks/post-receive script.

fsfs pushed a commit to branch master
in repository libterm-readkey-perl.

commit fa1f7d650a53e28f6a43f12d5d0bf6525b6c3a1a
Author: Florian Schlichting <fsfs at debian.org>
Date:   Sat Oct 22 00:24:44 2016 +0200

    Drop patches, they were applied upstream
---
 ...l-on-the-02_terminal_functions.t-if-STDIN.patch | 39 ----------------------
 debian/patches/series                              |  2 --
 debian/patches/skip-no-tty.patch                   | 21 ------------
 3 files changed, 62 deletions(-)

diff --git a/debian/patches/0001-Totally-bail-on-the-02_terminal_functions.t-if-STDIN.patch b/debian/patches/0001-Totally-bail-on-the-02_terminal_functions.t-if-STDIN.patch
deleted file mode 100644
index 764c7e6..0000000
--- a/debian/patches/0001-Totally-bail-on-the-02_terminal_functions.t-if-STDIN.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From ac5e11f8e58627370fd15faa82a932bbd7b74030 Mon Sep 17 00:00:00 2001
-From: Jonathan Stowe <jns+git at gellyfish.co.uk>
-Date: Fri, 5 Jun 2015 20:24:55 +0100
-Subject: [PATCH] Totally bail on the 02_terminal_functions.t if STDIN isn't a
- terminal This should fix RT#96824
-
----
- t/02_terminal_functions.t | 11 ++++++++++-
- 1 file changed, 10 insertions(+), 1 deletion(-)
-
-diff --git a/t/02_terminal_functions.t b/t/02_terminal_functions.t
-index 09fe2e4..be86e37 100644
---- a/t/02_terminal_functions.t
-+++ b/t/02_terminal_functions.t
-@@ -2,11 +2,20 @@ use strict;
- use warnings;
- 
- 
--use Test::More tests => 7;
-+use Test::More ;
-+
-+if ( -t STDIN ) {
-+   plan tests => 7;
-+}
-+else {
-+   plan skip_all => "Need a terminal to test";
-+}
- 
- use Term::ReadKey;
- use Fcntl;
- 
-+$| = 1;
-+
- if ( not exists $ENV{COLUMNS} ){
-     $ENV{COLUMNS} = 80;
-     $ENV{LINES}   = 24;
--- 
-2.1.4
-
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 9f43014..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-0001-Totally-bail-on-the-02_terminal_functions.t-if-STDIN.patch
-skip-no-tty.patch
diff --git a/debian/patches/skip-no-tty.patch b/debian/patches/skip-no-tty.patch
deleted file mode 100644
index c1442f6..0000000
--- a/debian/patches/skip-no-tty.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Description: fix number of skipped tests
- This patch applies on top of ac5e11f which skips all tests if STDIN is missing.
- Still in a chroot "-t STDIN" can pass and the check for /dev/tty can fail,
- and then we run into this problem.
-Origin: vendor
-Author: gregor herrmann <gregoa at debian.org>
-Last-Update: 2015-07-12
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=105828
-Bug: https://rt.cpan.org/Ticket/Display.html?id=105828
-
---- a/t/02_terminal_functions.t
-+++ b/t/02_terminal_functions.t
-@@ -38,7 +38,7 @@
-             }
-         }
-     };
--    skip( 'Because Term::ReadKey need at least a tty to be useful', 1 ) if $@;
-+    skip( 'Because Term::ReadKey need at least a tty to be useful', 7 ) if $@;
-     *IN = *IN;    # Make single-use warning go away
-     $|  = 1;
-     no strict "subs";

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libterm-readkey-perl.git



More information about the Pkg-perl-cvs-commits mailing list