diff --git a/Set-Tiny-0.04.tar.gz b/Set-Tiny-0.04.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..37c90d72fdf50e67c08acb4b96e4b4f79590199a Binary files /dev/null and b/Set-Tiny-0.04.tar.gz differ diff --git a/perl-Set-Tiny.spec b/perl-Set-Tiny.spec new file mode 100644 index 0000000000000000000000000000000000000000..c30f165afc77b7780c6fc055fcb5153549641380 --- /dev/null +++ b/perl-Set-Tiny.spec @@ -0,0 +1,81 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-Set-Tiny +Version: 0.04 +Release: 1 +Summary: Simple sets of strings +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Set-Tiny/ +Source0: http://www.cpan.org/authors/id/T/TR/TRENDELS/Set-Tiny-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::More) +Requires: perl(Test::More) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +%description +Set::Tiny is a thin wrapper around regular Perl hashes to perform often +needed set operations, such as testing two sets of strings for equality, or +checking whether one is contained within the other. + +%package help +Summary : Simple sets of strings +Provides: perl-Set-Tiny-doc + +%description help +Set::Tiny is a thin wrapper around regular Perl hashes to perform often +needed set operations, such as testing two sets of strings for equality, or +checking whether one is contained within the other. + +%prep +%setup -q -n Set-Tiny-%{version} + +%build +export PERL_MM_OPT="" +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +export PERL_MM_OPT="" +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/* + +pushd %{buildroot} +touch filelist.lst +if [ -d usr/bin ];then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ];then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ];then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib ];then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +popd +mv %{buildroot}/filelist.lst . +%check +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f filelist.lst +%defattr(-,root,root,-) +%doc Changes META.json README +%{perl_vendorlib}/* +%files help +%{_mandir}/* + +%changelog +* Tue Jul 20 2021 Perl_Bot 0.04-1 +- Specfile autogenerated by Perl_Bot