9
0

Accepting request 871179 from devel:languages:perl

OBS-URL: https://build.opensuse.org/request/show/871179
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-Output?expand=0&rev=20
This commit is contained in:
2021-02-15 22:11:51 +00:00
committed by Git OBS Bridge
4 changed files with 23 additions and 13 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:688a38efb5ebb80768409cceff7223d754f95e06fa893d74cb4eac981ce8e44e
size 16954

3
Test-Output-1.033.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6a8482740b075fad22aaf4d987d38ef927c6d2b452d4ae0d0bd8f779830556e
size 17196

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Thu Feb 11 03:09:02 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.033
see /usr/share/doc/packages/perl-Test-Output/Changes
1.033 2021-02-11T00:21:54Z
* v1.032 had some regressions because I released 1.031 from an
unmerged branch. https://github.com/briandfoy/test-output/issues/8
This was noticed by Tina Müller in https://github.com/os-autoinst/os-autoinst/pull/1622
* I didn't realize that I'd released an experiment in 2017, but
no own complained until it was reverted (by releasing from master).
The experiment worked I guess? Sub::Exporter is gone, so the
dependency tree for this is greatly reduced, and now it's gone
again.
-------------------------------------------------------------------
Fri Jan 29 03:10:01 UTC 2021 - Tina Müller <timueller+perl@suse.de>

View File

@@ -18,7 +18,7 @@
%define cpan_name Test-Output
Name: perl-Test-Output
Version: 1.032
Version: 1.033
Release: 0
Summary: Utilities to test STDOUT and STDERR messages
License: Artistic-2.0
@@ -30,22 +30,16 @@ BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Capture::Tiny) >= 0.17
BuildRequires: perl(File::Temp) >= 0.17
BuildRequires: perl(Sub::Exporter)
BuildRequires: perl(Test::More) >= 1
BuildRequires: perl(Test::Tester) >= 0.107
Requires: perl(Capture::Tiny) >= 0.17
Requires: perl(File::Temp) >= 0.17
Requires: perl(Sub::Exporter)
%{perl_requires}
%description
Test::Output provides a simple interface for testing output sent to STDOUT
or STDERR. A number of different utilities are included to try and be as
flexible as possible to the tester.
Originally this module was designed not to have external requirements,
however, the features provided by Sub::Exporter over what Exporter provides
is just to great to pass up.
Test::Output provides a simple interface for testing output sent to
'STDOUT' or 'STDERR'. A number of different utilities are included to try
and be as flexible as possible to the tester.
Likewise, Capture::Tiny provides a much more robust capture mechanism
without than the original Test::Output::Tie.