initial version
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-Harness?expand=0&rev=1
This commit is contained in:
commit
2c56c24df8
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
Test-Harness-3.13.tar.bz2
Normal file
3
Test-Harness-3.13.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91d290303a2746229eb4a8d2f0ac96dc5ff3f411c4fcb61993c3dbbb2060ae10
|
||||
size 148266
|
5
perl-Test-Harness.changes
Normal file
5
perl-Test-Harness.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 15 21:41:43 CEST 2008 - lrupp@suse.de
|
||||
|
||||
- initial version 3.13
|
||||
|
91
perl-Test-Harness.spec
Normal file
91
perl-Test-Harness.spec
Normal file
@ -0,0 +1,91 @@
|
||||
#
|
||||
# spec file for package perl-Test-Harness
|
||||
#
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: perl-Test-Harness
|
||||
%define real_name Test-Harness
|
||||
Summary: Run Perl standard test scripts with statistics
|
||||
Url: http://search.cpan.org/perldoc?Test::Harness
|
||||
Group: Development/Libraries/Perl
|
||||
License: Artistic License
|
||||
Version: 3.13
|
||||
Release: 0
|
||||
Source: %{real_name}-%{version}.tar.bz2
|
||||
Requires: perl = %{perl_version}
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
Although, for historical reasons, the Test::Harness distribution takes its name
|
||||
from this module it now exists only to provide TAP::Harness with an interface
|
||||
that is somewhat backwards compatible with Test::Harness 2.xx. If you're
|
||||
writing new code consider using TAP::Harness directly instead.
|
||||
|
||||
Emulation is provided for runtests and execute_tests but the pluggable 'Straps'
|
||||
interface that previous versions of Test::Harness supported is not reproduced
|
||||
here. Straps is now available as a stand alone module: Test::Harness::Straps.
|
||||
|
||||
See TAP::Parser, TAP::Harness for the main documentation for this distribution.
|
||||
|
||||
|
||||
Author:
|
||||
-------
|
||||
Andy Armstrong
|
||||
|
||||
%prep
|
||||
%setup -n %{real_name}-%{version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL
|
||||
make %{?jobs:-j%jobs}
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc README Changes MANIFEST
|
||||
%doc %{_mandir}/man?/*
|
||||
%{_bindir}/prove
|
||||
%dir %{perl_vendorlib}/Test
|
||||
%dir %{perl_vendorlib}/App
|
||||
%dir %{perl_vendorlib}/App/Prove
|
||||
%dir %{perl_vendorlib}/TAP
|
||||
%dir %{perl_vendorlib}/TAP/Formatter
|
||||
%dir %{perl_vendorlib}/TAP/Formatter/Console
|
||||
%dir %{perl_vendorlib}/TAP/Parser
|
||||
%dir %{perl_vendorlib}/TAP/Parser/Iterator
|
||||
%dir %{perl_vendorlib}/TAP/Parser/Result
|
||||
%dir %{perl_vendorlib}/TAP/Parser/Scheduler
|
||||
%dir %{perl_vendorlib}/TAP/Parser/Source
|
||||
%dir %{perl_vendorlib}/TAP/Parser/YAMLish
|
||||
%dir %{perl_vendorarch}/auto/Test
|
||||
%dir %{perl_vendorarch}/auto/Test/Harness
|
||||
%{perl_vendorlib}/Test/*.pm
|
||||
%{perl_vendorlib}/Test/*.pod
|
||||
%{perl_vendorlib}/App/*.pm
|
||||
%{perl_vendorlib}/App/Prove/*.pm
|
||||
%{perl_vendorlib}/TAP/*.pm
|
||||
%{perl_vendorlib}/TAP/Formatter/*.pm
|
||||
%{perl_vendorlib}/TAP/Formatter/Console/*.pm
|
||||
%{perl_vendorlib}/TAP/Parser/*.pm
|
||||
%{perl_vendorlib}/TAP/Parser/Iterator/*.pm
|
||||
%{perl_vendorlib}/TAP/Parser/Result/*.pm
|
||||
%{perl_vendorlib}/TAP/Parser/Scheduler/*.pm
|
||||
%{perl_vendorlib}/TAP/Parser/Source/*.pm
|
||||
%{perl_vendorlib}/TAP/Parser/YAMLish/*.pm
|
||||
%{perl_vendorarch}/auto/Test/Harness/.packlist
|
||||
/var/adm/perl-modules/%{name}
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user