initial commit of file from CVS for perl-Test-Inline on Fri 14 Jul 16:00:19 BST 2023
This commit is contained in:
parent
9e4647e72d
commit
6edc1762b6
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.16.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-Inline
|
||||||
|
# $Id: Makefile,v 1.1 2016/02/04 13:20:59 vip-ire Exp $
|
||||||
|
NAME := perl-Test-Inline
|
||||||
|
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-Inline
|
# perl-Test-Inline
|
||||||
|
|
||||||
3rd Party (Maintained by Koozali) git repo for perl-Test-Inline smeserver
|
3rd Party (Maintained by Koozali) git repo for perl-Test-Inline 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 />
|
||||||
|
|
||||||
|
Test-Inline is a software package for testing Perl code. It allows developers to quickly and easily create tests for their Perl code, offering a powerful, yet simple interface for defining tests and checking the results. Test-Inline also provides support for basic assertions and test isolations, allowing tests to be isolated from other tests and ensuring that the tests run in a consistent environment.
|
||||||
|
BIN
Test-Inline-0.16.tar.gz
(Stored with Git LFS)
Normal file
BIN
Test-Inline-0.16.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
157
Test-Inline.spec
Normal file
157
Test-Inline.spec
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
# $Id: Test-Inline.spec,v 1.1 2016/02/04 13:20:59 vip-ire Exp $
|
||||||
|
|
||||||
|
#
|
||||||
|
# - Test::Inline -
|
||||||
|
# This spec file was automatically generated by cpan2rpm [ver: 2.026]
|
||||||
|
# The following arguments were used:
|
||||||
|
# --release=1centos Test::Inline
|
||||||
|
# For more information on cpan2rpm please visit: http://perl.arix.com/
|
||||||
|
#
|
||||||
|
%define pkgname Test-Inline
|
||||||
|
%define filelist %{pkgname}-%{version}-filelist
|
||||||
|
%define NVR %{pkgname}-%{version}-%{release}
|
||||||
|
%define maketest 1
|
||||||
|
|
||||||
|
name: perl-Test-Inline
|
||||||
|
summary: Test-Inline - Inlining your tests next to the code being tested.
|
||||||
|
version: 0.16
|
||||||
|
release: 1%{?dist}
|
||||||
|
license: Artistic
|
||||||
|
group: Applications/CPAN
|
||||||
|
url: http://www.cpan.org
|
||||||
|
buildroot: %{_tmppath}/%{name}-%{version}-%(id -u -n)
|
||||||
|
buildarch: noarch
|
||||||
|
prefix: %(echo %{_prefix})
|
||||||
|
source: http://search.cpan.org/dist/M/MS/MSCHWERN/Test-Inline-0.16.tar.gz
|
||||||
|
buildrequires: perl(ExtUtils::MakeMaker)
|
||||||
|
buildrequires: perl(Test::More)
|
||||||
|
|
||||||
|
%description
|
||||||
|
B<LOOK AT Test::Inline::Tutorial FIRST!>
|
||||||
|
|
||||||
|
Embedding tests allows tests to be placed near the code its testing.
|
||||||
|
This is a nice supplement to the traditional .t files. It's like
|
||||||
|
XUnit, Perl-style.
|
||||||
|
|
||||||
|
Test::Tutorial is just documentation. To actually get anything done
|
||||||
|
you use pod2test. Read the Test::Inline::Tutoral, really.
|
||||||
|
|
||||||
|
A test is denoted using either "=for testing" or a "=begin/end
|
||||||
|
testing" block.
|
||||||
|
|
||||||
|
=item B<is_pirate>
|
||||||
|
|
||||||
|
@pirates = is_pirate(@arrrgs);
|
||||||
|
|
||||||
|
Go through @arrrgs and return a list of pirates.
|
||||||
|
|
||||||
|
=begin testing
|
||||||
|
|
||||||
|
my @p = is_pirate('Blargbeard', 'Alfonse', 'Capt. Hampton', 'Wesley');
|
||||||
|
ok(@p == 2);
|
||||||
|
|
||||||
|
=end testing
|
||||||
|
|
||||||
|
#
|
||||||
|
# This package was generated automatically with the cpan2rpm
|
||||||
|
# utility. To get this software or for more information
|
||||||
|
# please visit: http://perl.arix.com/
|
||||||
|
#
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{pkgname}-%{version}
|
||||||
|
chmod -R u+w %{_builddir}/%{pkgname}-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
grep -rsl '^#!.*perl' . |
|
||||||
|
grep -v '.bak$' |xargs --no-run-if-empty \
|
||||||
|
%__perl -MExtUtils::MakeMaker -e 'MY->fixin(@ARGV)'
|
||||||
|
CFLAGS="$RPM_OPT_FLAGS"
|
||||||
|
%{__perl} Makefile.PL `%{__perl} -MExtUtils::MakeMaker -e ' print qq|PREFIX=%{buildroot}%{_prefix}| if \$ExtUtils::MakeMaker::VERSION =~ /5\.9[1-6]|6\.0[0-5]/ '`
|
||||||
|
%{__make}
|
||||||
|
%if %maketest
|
||||||
|
%{__make} test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%{makeinstall} INSTALLDIRS=vendor `%{__perl} -MExtUtils::MakeMaker -e ' print \$ExtUtils::MakeMaker::VERSION <= 6.05 ? qq|PREFIX=%{buildroot}%{_prefix}| : qq|DESTDIR=%{buildroot}| '`
|
||||||
|
|
||||||
|
[ -x /usr/lib/rpm/brp-compress ] && /usr/lib/rpm/brp-compress
|
||||||
|
|
||||||
|
# SuSE Linux
|
||||||
|
if [ -e /etc/SuSE-release -o -e /etc/UnitedLinux-release ]
|
||||||
|
then
|
||||||
|
%{__mkdir_p} %{buildroot}/var/adm/perl-modules
|
||||||
|
%{__cat} `find %{buildroot} -name "perllocal.pod"` \
|
||||||
|
| %{__sed} -e s+%{buildroot}++g \
|
||||||
|
> %{buildroot}/var/adm/perl-modules/%{name}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# remove special files
|
||||||
|
find %{buildroot} -name "perllocal.pod" \
|
||||||
|
-o -name ".packlist" \
|
||||||
|
-o -name "*.bs" \
|
||||||
|
|xargs -i rm -f {}
|
||||||
|
|
||||||
|
# no empty directories
|
||||||
|
find %{buildroot}%{_prefix} \
|
||||||
|
-type d -depth \
|
||||||
|
-exec rmdir {} \; 2>/dev/null
|
||||||
|
|
||||||
|
%{__perl} -MFile::Find -le '
|
||||||
|
find({ wanted => \&wanted, no_chdir => 1}, "%{buildroot}");
|
||||||
|
print "%doc bin Changes docs";
|
||||||
|
for my $x (sort @dirs, @files) {
|
||||||
|
push @ret, $x unless indirs($x);
|
||||||
|
}
|
||||||
|
print join "\n", sort @ret;
|
||||||
|
|
||||||
|
sub wanted {
|
||||||
|
return if /auto$/;
|
||||||
|
|
||||||
|
local $_ = $File::Find::name;
|
||||||
|
my $f = $_; s|^\Q%{buildroot}\E||;
|
||||||
|
return unless length;
|
||||||
|
return $files[@files] = $_ if -f $f;
|
||||||
|
|
||||||
|
$d = $_;
|
||||||
|
/\Q$d\E/ && return for reverse sort @INC;
|
||||||
|
$d =~ /\Q$_\E/ && return
|
||||||
|
for qw|/etc %_prefix/man %_prefix/bin %_prefix/share|;
|
||||||
|
|
||||||
|
$dirs[@dirs] = $_;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub indirs {
|
||||||
|
my $x = shift;
|
||||||
|
$x =~ /^\Q$_\E\// && $x ne $_ && return 1 for @dirs;
|
||||||
|
}
|
||||||
|
' > %filelist
|
||||||
|
|
||||||
|
[ -z %filelist ] && {
|
||||||
|
echo "ERROR: empty %files listing"
|
||||||
|
exit -1
|
||||||
|
}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files -f %filelist
|
||||||
|
%defattr(-,root,root)
|
||||||
|
|
||||||
|
%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 Apr 29 2007 Shad L. Lords <slords@mail.com>
|
||||||
|
- Clean up spec so package can be built by koji/plague
|
||||||
|
|
||||||
|
* Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
|
||||||
|
- Update to new release naming. No functional changes.
|
||||||
|
- Make Packager generic
|
||||||
|
|
||||||
|
* Thu Sep 2 2004 charlieb@charlieb-centos
|
||||||
|
- Initial build.
|
1
contriborbase
Normal file
1
contriborbase
Normal file
@ -0,0 +1 @@
|
|||||||
|
sme10
|
Loading…
Reference in New Issue
Block a user