initial commit of file from CVS for perl-Test-Harness-Straps on Fri 14 Jul 15:59:47 BST 2023
This commit is contained in:
parent
6eccc03f52
commit
a27c11891e
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.rpm
|
||||
*.log
|
||||
*spec-20*
|
21
Makefile
Normal file
21
Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
# Makefile for source rpm: perl-Test-Harness-Straps
|
||||
# $Id: Makefile,v 1.1 2016/02/04 13:19:42 vip-ire Exp $
|
||||
NAME := perl-Test-Harness-Straps
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
10
README.md
10
README.md
@ -1,3 +1,11 @@
|
||||
# perl-Test-Harness-Straps
|
||||
|
||||
3rd Party (Maintained by Koozali) git repo for perl-Test-Harness-Straps smeserver
|
||||
3rd Party (Maintained by Koozali) git repo for perl-Test-Harness-Straps smeserver
|
||||
|
||||
## Description
|
||||
|
||||
<br />*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.*
|
||||
*Once it has been checked, then this comment will be deleted*
|
||||
<br />
|
||||
|
||||
Perl-Test-Harness-Straps is a Perl module that provides a library of objects and methods for creating test harnesses. Test harnesses are programs that execute tests from a set of programs and measure their results. With this module, developers can easily create custom test harnesses that can be used to test any kind of software. The module provides methods to run tests, examine their results, and report back on the overall success of the test suite.
|
||||
|
BIN
Test-Harness-Straps-0.30.tar.gz
(Stored with Git LFS)
Normal file
BIN
Test-Harness-Straps-0.30.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
1
contriborbase
Normal file
1
contriborbase
Normal file
@ -0,0 +1 @@
|
||||
sme10
|
64
perl-Test-Harness-Straps.spec
Normal file
64
perl-Test-Harness-Straps.spec
Normal file
@ -0,0 +1,64 @@
|
||||
Name: perl-Test-Harness-Straps
|
||||
Version: 0.30
|
||||
Release: 4%{?dist}
|
||||
Summary: Detailed analysis of test results
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/Test-Harness-Straps/
|
||||
Source0: http://www.cpan.org/authors/id/M/MS/MSCHWERN/Test-Harness-Straps-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl(Module::Build)
|
||||
BuildRequires: perl(Test::More)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
Test::Harness is limited to printing out its results. This makes analysis
|
||||
of the test results difficult for anything but a human. To make it easier
|
||||
for programs to work with test results, we provide Test::Harness::Straps.
|
||||
Instead of printing the results, straps provide them as raw data. You can
|
||||
also configure how the tests are to be run.
|
||||
|
||||
%prep
|
||||
%setup -q -n Test-Harness-Straps-%{version}
|
||||
|
||||
%build
|
||||
%{__perl} Build.PL installdirs=vendor
|
||||
./Build
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
|
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
./Build test
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Changes
|
||||
%{perl_vendorlib}/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Jul 14 2023 BogusDateBot
|
||||
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
|
||||
by assuming the date is correct and changing the weekday.
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Fri Feb 6 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.30-2
|
||||
- add requires Test::More
|
||||
|
||||
* Wed Jan 21 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.30-1
|
||||
- Specfile autogenerated by cpanspec 1.77.
|
Loading…
Reference in New Issue
Block a user