automatic version update by autodist [release 0.014-1mamba;Sun Aug 04 2024]

This commit is contained in:
Automatic Build System 2024-08-04 22:20:07 +02:00
parent f08c182a2a
commit e387686a31

View File

@ -1,14 +1,14 @@
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) %define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
Name: perl-Parallel-Runner Name: perl-Parallel-Runner
Version: 0.013 Version: 0.014
Release: 1mamba Release: 1mamba
Summary: Parallel::Runner - An object to manage running things in parallel Summary: Parallel::Runner - An object to manage running things in parallel
Group: System/Libraries/Perl Group: System/Libraries/Perl
Vendor: openmamba Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.cpan.org URL: https://www.cpan.org/
Source: https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Parallel-Runner-%{version}.tar.gz Source: https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Parallel-Runner-%{version}.tar.gz
License: GPL, Artistic License: GPL, Artistic
## AUTOBUILDREQ-BEGIN ## AUTOBUILDREQ-BEGIN
@ -25,26 +25,27 @@ Parallel::Runner - An object to manage running things in parallel.
%setup -q -n Parallel-Runner-%{version} %setup -q -n Parallel-Runner-%{version}
%build %build
%{__perl} Build.PL PREFIX=%{_prefix} INSTALLDIRS=vendor %{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
./Build
# test requires Test:Exception::LessClever which is deprecated %make
#./Build test %make test
%install %install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
./Build install \ %makeinstall_perl
destdir="%{buildroot}"
packlist=`find %{buildroot} -name .packlist` packlist=`find %{buildroot} -name .packlist`
[ -z "$packlist" ] && exit 1 || cat $packlist | \ [ -z "$packlist" ] && exit 1 || cat $packlist | \
sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ sed "s,%{buildroot},,g;s,.*/man/.*,&.gz,g" | \
sort -u > .packlist && rm $packlist sort -u > .packlist && rm -f $packlist
strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'`
for dir in `find %{buildroot} -type d | grep $strid`; do for dir in `find %{buildroot} -type d | grep $strid`; do
echo "%dir ${dir#%buildroot}" >> .packlist echo "%dir ${dir#%buildroot}" >> .packlist
done done
#find %{buildroot} -name *.so -exec chmod u+w {} \;
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -52,5 +53,8 @@ done
%defattr(-,root,root) %defattr(-,root,root)
%changelog %changelog
* Sun Aug 04 2024 Automatic Build System <autodist@openmamba.org> 0.014-1mamba
- automatic version update by autodist
* Mon Mar 29 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.013-1mamba * Mon Mar 29 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.013-1mamba
- package created using the webbuild interface - package created using the webbuild interface