diff --git a/README.md b/README.md index 3cbcbd2..c598dea 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Test-Inter +This is another framework for writing test scripts. It is loosely inspired by Test::More, and has most of it's functionality, but it is not a drop-in replacement. + diff --git a/perl-Test-Inter.spec b/perl-Test-Inter.spec new file mode 100644 index 0000000..bb7ec2a --- /dev/null +++ b/perl-Test-Inter.spec @@ -0,0 +1,63 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Test-Inter +Version: 1.05 +Release: 1mamba +Summary: Test::Inter - framework for more readable interactive test scripts +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/S/SB/SBECK/Test-Inter-%{version}.tar.gz +License: GPL, Artistic +BuildRequires: perl(File::Basename) +BuildRequires: perl(IO::File) +BuildRequires: perl(Module::Build) +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl-devel +Requires: perl >= %perl_major_ver +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +This is another framework for writing test scripts. It is loosely inspired by Test::More, and has most of it's functionality, but it is not a drop-in replacement. + +%prep +%setup -q -n Test-Inter-%{version} + +chmod -x examples/* + +%build +%{__perl} Build.PL installdirs=core +./Build +./Build test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +./Build install destdir=%{buildroot} create_packlist=0 +find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \; +chmod -R u+w %{buildroot}/* + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{perl_privlib}/Test +%{_mandir}/man3/*.3pm.gz +%doc ChangeLog LICENSE +# README TODO examples + +%changelog +* Sun Mar 24 2013 Automatic Build System 1.05-1mamba +- automatic version update by autodist + +* Fri Nov 16 2012 Silvan Calarco 1.03-2mamba +- perl 5.16 mass rebuild + +* Thu Aug 16 2012 Silvan Calarco 1.03-1mamba +- update to 1.03 + +* Tue Mar 08 2011 gil 1.01-1mamba +- package created by autospec