diff -Nru libio-prompt-perl-0.997002/Changes libio-prompt-perl-0.997003/Changes --- libio-prompt-perl-0.997002/Changes 2012-11-06 20:50:49.000000000 +0000 +++ libio-prompt-perl-0.997003/Changes 2015-08-19 00:47:34.000000000 +0000 @@ -81,3 +81,9 @@ - Fixed ->opened bug under 5.14 (thanks GFUGI!) - Documented unmaintained status + + +0.997003 Wed Aug 19 10:47:34 2015 + + - Removed dependencies check for /dev/tty because it was + messing up smoke testing (thanks, Jarkko!) diff -Nru libio-prompt-perl-0.997002/debian/changelog libio-prompt-perl-0.997003/debian/changelog --- libio-prompt-perl-0.997002/debian/changelog 2015-06-04 20:43:16.000000000 +0000 +++ libio-prompt-perl-0.997003/debian/changelog 2015-08-20 20:07:42.000000000 +0000 @@ -1,3 +1,13 @@ +libio-prompt-perl (0.997003-1) unstable; urgency=medium + + * Imported Upstream version 0.997003 + * Update copyright years for debian/* packaging files + * Drop create-pty.patch patch. + Drop the patch since upstream removed the t/01.dependencies.t test + completely. + + -- Salvatore Bonaccorso Thu, 20 Aug 2015 22:06:57 +0200 + libio-prompt-perl (0.997002-2) unstable; urgency=medium [ Salvatore Bonaccorso ] diff -Nru libio-prompt-perl-0.997002/debian/copyright libio-prompt-perl-0.997003/debian/copyright --- libio-prompt-perl-0.997002/debian/copyright 2015-06-04 20:43:16.000000000 +0000 +++ libio-prompt-perl-0.997003/debian/copyright 2015-08-20 20:07:42.000000000 +0000 @@ -12,7 +12,7 @@ 2006, Gunnar Wolf 2006, Niko Tyni 2010, Jonathan Yu - 2010-2012, Salvatore Bonaccorso + 2010-2015, Salvatore Bonaccorso License: Artistic or GPL-1+ License: Artistic diff -Nru libio-prompt-perl-0.997002/debian/patches/create-pty.patch libio-prompt-perl-0.997003/debian/patches/create-pty.patch --- libio-prompt-perl-0.997002/debian/patches/create-pty.patch 2015-06-04 20:43:16.000000000 +0000 +++ libio-prompt-perl-0.997003/debian/patches/create-pty.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -Description: Use IO:Pty to create a slave pseudo tty for running the - 01.dependency.t test which otherwise causes FTBFS on environments - with no ttys. -Origin: vendor -Bug: http://rt.cpan.org/Public/Bug/Display.html?id=54807 -Forwarded: yes -Author: Salvatore Bonaccorso ---- a/t/01.dependencies.t -+++ b/t/01.dependencies.t -@@ -1,5 +1,8 @@ - use Test::More tests => 2; -+use IO::Pty; - --# Depends on hardcoded /dev/tty access --ok( open(my $OUT, ">/dev/tty"), "Output to /dev/tty"); --ok( open(my $IN, "ttyname(); -+ -+ok( open(my $OUT, ">$tty"), "Output to $tty"); -+ok( open(my $IN, "<$tty"), "Input from $tty"); diff -Nru libio-prompt-perl-0.997002/debian/patches/series libio-prompt-perl-0.997003/debian/patches/series --- libio-prompt-perl-0.997002/debian/patches/series 2015-06-04 20:43:16.000000000 +0000 +++ libio-prompt-perl-0.997003/debian/patches/series 2015-08-20 20:07:42.000000000 +0000 @@ -1,2 +1 @@ -create-pty.patch add-shebang-to-examples.patch diff -Nru libio-prompt-perl-0.997002/lib/IO/Prompt.pm libio-prompt-perl-0.997003/lib/IO/Prompt.pm --- libio-prompt-perl-0.997002/lib/IO/Prompt.pm 2012-11-06 20:50:49.000000000 +0000 +++ libio-prompt-perl-0.997003/lib/IO/Prompt.pm 2015-08-19 00:47:34.000000000 +0000 @@ -1,6 +1,6 @@ package IO::Prompt; -our $VERSION = '0.997002'; +our $VERSION = '0.997003'; use strict; use Carp; @@ -644,7 +644,7 @@ =head1 VERSION -This document describes IO::Prompt version 0.997002 +This document describes IO::Prompt version 0.997003 =head1 SYNOPSIS diff -Nru libio-prompt-perl-0.997002/MANIFEST libio-prompt-perl-0.997003/MANIFEST --- libio-prompt-perl-0.997002/MANIFEST 2009-11-23 23:46:37.000000000 +0000 +++ libio-prompt-perl-0.997003/MANIFEST 2015-08-19 00:47:37.000000000 +0000 @@ -26,4 +26,4 @@ examples/underscore.pl examples/while_until.pl examples/yesno.pl -t/01.dependencies.t +META.json Module JSON meta-data (added by MakeMaker) diff -Nru libio-prompt-perl-0.997002/META.json libio-prompt-perl-0.997003/META.json --- libio-prompt-perl-0.997002/META.json 1970-01-01 00:00:00.000000000 +0000 +++ libio-prompt-perl-0.997003/META.json 2015-08-19 00:47:36.000000000 +0000 @@ -0,0 +1,46 @@ +{ + "abstract" : "Interactively prompt for user input", + "author" : [ + "Damian Conway " + ], + "dynamic_config" : 1, + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.142690", + "license" : [ + "unknown" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "IO-Prompt", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "0" + } + }, + "runtime" : { + "requires" : { + "IO::Handle" : "0", + "POSIX" : "0", + "Term::ReadKey" : "0", + "Test::More" : "0", + "Want" : "0", + "version" : "0" + } + } + }, + "release_status" : "stable", + "version" : "0.997003" +} diff -Nru libio-prompt-perl-0.997002/META.yml libio-prompt-perl-0.997003/META.yml --- libio-prompt-perl-0.997002/META.yml 2012-11-06 20:50:50.000000000 +0000 +++ libio-prompt-perl-0.997003/META.yml 2015-08-19 00:47:36.000000000 +0000 @@ -1,27 +1,27 @@ ---- #YAML:1.0 -name: IO-Prompt -version: 0.997002 -abstract: Interactively prompt for user input +--- +abstract: 'Interactively prompt for user input' author: - - Damian Conway -license: unknown -distribution_type: module -configure_requires: - ExtUtils::MakeMaker: 0 + - 'Damian Conway ' build_requires: - ExtUtils::MakeMaker: 0 -requires: - IO::Handle: 0 - POSIX: 0 - Term::ReadKey: 0 - Test::More: 0 - version: 0 - Want: 0 -no_index: - directory: - - t - - inc -generated_by: ExtUtils::MakeMaker version 6.57_05 + ExtUtils::MakeMaker: '0' +configure_requires: + ExtUtils::MakeMaker: '0' +dynamic_config: 1 +generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.142690' +license: unknown meta-spec: - url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: '1.4' +name: IO-Prompt +no_index: + directory: + - t + - inc +requires: + IO::Handle: '0' + POSIX: '0' + Term::ReadKey: '0' + Test::More: '0' + Want: '0' + version: '0' +version: '0.997003' diff -Nru libio-prompt-perl-0.997002/README libio-prompt-perl-0.997003/README --- libio-prompt-perl-0.997002/README 2012-11-06 20:50:49.000000000 +0000 +++ libio-prompt-perl-0.997003/README 2015-08-19 00:47:34.000000000 +0000 @@ -1,4 +1,4 @@ -IO::Prompt version 0.997002 +IO::Prompt version 0.997003 By default, this module exports a single function: prompt(). It prompts the user to enter some input, and returns an object that represents the user input. diff -Nru libio-prompt-perl-0.997002/t/01.dependencies.t libio-prompt-perl-0.997003/t/01.dependencies.t --- libio-prompt-perl-0.997002/t/01.dependencies.t 2007-07-31 07:24:37.000000000 +0000 +++ libio-prompt-perl-0.997003/t/01.dependencies.t 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -use Test::More tests => 2; - -# Depends on hardcoded /dev/tty access -ok( open(my $OUT, ">/dev/tty"), "Output to /dev/tty"); -ok( open(my $IN, "