forked from pool/perl-Test-Output
* Bump to stable release
* Remove the ::Tie stuff. It should be fully Capture::Tiny
now.
* David Golden re-did everything with Capture::Tiny
to get around the odd output paths that we coudn't
handle with a tie.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-Output?expand=0&rev=16
76 lines
2.5 KiB
RPMSpec
76 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package perl-Test-Output
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-Test-Output
|
|
Version: 1.02
|
|
Release: 0
|
|
%define cpan_name Test-Output
|
|
Summary: Utilities to test STDOUT and STDERR messages.
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/Test-Output/
|
|
Source: http://www.cpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Capture::Tiny) >= 0.17
|
|
BuildRequires: perl(File::Temp) >= 0.17
|
|
BuildRequires: perl(Sub::Exporter)
|
|
BuildRequires: perl(Test::Tester) >= 0.107
|
|
#BuildRequires: perl(Test::Output)
|
|
Requires: perl(Capture::Tiny) >= 0.17
|
|
Requires: perl(File::Temp) >= 0.17
|
|
Requires: perl(Sub::Exporter)
|
|
Requires: perl(Test::Tester) >= 0.107
|
|
%{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 the Sub::Exporter manpage over what the
|
|
Exporter manpage provides is just to great to pass up.
|
|
|
|
Likewise, Capture::Tiny provides a much more robust capture mechanism
|
|
without than the original Test::Output::Tie. (Test::Output::Tie is
|
|
deprecated, but included for backwards compatibility.)
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes LICENSE MYMETA.json README TODO
|
|
|
|
%changelog
|