75 lines
2.2 KiB
RPMSpec
75 lines
2.2 KiB
RPMSpec
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
|
|
|
|
Name: perl-CPS
|
|
Version: 0.19
|
|
Release: 2mamba
|
|
Summary: CPS - manage flow of control in Continuation-Passing Style
|
|
Group: System/Libraries/Perl
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://www.cpan.org/
|
|
Source: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/CPS-%{version}.tar.gz
|
|
License: GPL, Artistic
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: perl-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: perl >= 2:5.36.0
|
|
BuildRequires: perl-Test-Refcount
|
|
BuildRequires: perl-Future
|
|
Requires: perl >= %perl_major_ver
|
|
|
|
%description
|
|
CPS - manage flow of control in Continuation-Passing Style.
|
|
|
|
%prep
|
|
%setup -q -n CPS-%{version}
|
|
|
|
%build
|
|
%{__perl} Build.PL installdirs=vendor
|
|
./Build
|
|
./Build test
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
./Build install --destdir=%{buildroot}
|
|
|
|
packlist=`find %{buildroot} -name .packlist`
|
|
[ -z "$packlist" ] && exit 1 || cat $packlist | \
|
|
sed "s,%{buildroot},,g;s,.*/man/.*,&.gz,g" | \
|
|
sort -u > .packlist && rm -f $packlist
|
|
|
|
strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'`
|
|
for dir in `find %{buildroot} -type d | grep $strid`; do
|
|
echo "%dir ${dir#%buildroot}" >> .packlist
|
|
done
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files -f .packlist
|
|
%defattr(-,root,root)
|
|
%doc LICENSE README
|
|
|
|
%changelog
|
|
* Sun Apr 16 2023 Sdk Build System <sdk@mambasoft.it> 0.19-2mamba
|
|
- rebuilt with perl 5.36.0
|
|
|
|
* Sun Jan 09 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.19-1mamba
|
|
- update to 0.19
|
|
|
|
* Mon Feb 25 2013 Automatic Build System <autodist@mambasoft.it> 0.18-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Nov 12 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 0.17-2mamba
|
|
- perl 5.16 mass rebuild
|
|
|
|
* Mon Aug 20 2012 Automatic Build System <autodist@mambasoft.it> 0.17-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Aug 07 2012 Automatic Build System <autodist@mambasoft.it> 0.16-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sat Nov 19 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 0.11-1mamba
|
|
- package created by autospec
|