diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f087b42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.tar.gz filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1534ba5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.rpm +*.log +*spec-20* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..64fa7b9 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: perl-Test-Simple +# $Id: Makefile,v 1.1 2016/02/04 12:24:52 vip-ire Exp $ +NAME := perl-Test-Simple +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) diff --git a/README.md b/README.md index eb86440..1052c26 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ -# perl-Test-Simple +# perl-Test-Simple (Test::Simple) -3rd Party (Maintained by Koozali) git repo for perl-Test-Simple smeserver \ No newline at end of file +SMEServer Koozali local git repo for perl-Test-Simple + +## Documentation +https://metacpan.org/pod/Test::Simple + +## Bugs +CPAN bug report are [here](https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Simple) + +Show list of Koozali outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=perl-Test-Simple&product=SME%20Server%2011.X&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED) + +## Description +** If you are unfamiliar with testing read Test::Tutorial first! ** diff --git a/Test-Simple-1.302207.tar.gz b/Test-Simple-1.302207.tar.gz new file mode 100644 index 0000000..1d2689f --- /dev/null +++ b/Test-Simple-1.302207.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce22181e77859db99ef4abb4019e5949cb8829d6ef61b62ae8834234c589807 +size 568425 diff --git a/contriborbase b/contriborbase new file mode 100644 index 0000000..80affab --- /dev/null +++ b/contriborbase @@ -0,0 +1 @@ +sme11 diff --git a/perl-Test-Simple.spec b/perl-Test-Simple.spec new file mode 100644 index 0000000..3ff61c4 --- /dev/null +++ b/perl-Test-Simple.spec @@ -0,0 +1,73 @@ +Name: perl-Test-Simple +Version: 1.302207 +Release: 1%{?dist} +Summary: Basic utilities for writing tests +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Test-Simple/ +Source0: http://www.cpan.org/authors/id/E/EX/EXODIST/Test-Simple-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: perl >= 0:5.006002 +BuildRequires: perl(ExtUtils::Manifest) +BuildRequires: perl(inc::Module::Install) +BuildRequires: perl(B) +BuildRequires: perl(Data::Dumper) +BuildRequires: perl(Exporter) +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(File::Spec) +BuildRequires: perl(File::Temp) +BuildRequires: perl(overload) +BuildRequires: perl(Scalar::Util) >= 1.13 +BuildRequires: perl(Storable) +BuildRequires: perl(Term::Table) >= 0.013 +BuildRequires: perl(Time::HiRes) +BuildRequires: perl(utf8) +Requires: perl(B) +Requires: perl(Data::Dumper) +Requires: perl(Exporter) +Requires: perl(File::Spec) +Requires: perl(File::Temp) +Requires: perl(overload) +Requires: perl(Scalar::Util) >= 1.13 +Requires: perl(Storable) +Requires: perl(Term::Table) >= 0.013 +Requires: perl(Time::HiRes) +Requires: perl(utf8) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +** If you are unfamiliar with testing read Test::Tutorial first! ** + +%prep +%setup -q -n Test-Simple-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT + +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT + +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc appveyor.yml Changes cpanfile examples LICENSE META.json perltidyrc README README.md +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Tue Jan 21 2025 Koozali 1.302207-1 +- Specfile autogenerated by cpanspec 1.78.