diff --git a/Scalar-Construct-0.000.tar.gz b/Scalar-Construct-0.000.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..8ecfe7e208464887c55fdeb36babfc1b1e5a6414 Binary files /dev/null and b/Scalar-Construct-0.000.tar.gz differ diff --git a/perl-Scalar-Construct.spec b/perl-Scalar-Construct.spec new file mode 100644 index 0000000000000000000000000000000000000000..f8f7fffd63060c6bee81c37f0dab891bd8408289 --- /dev/null +++ b/perl-Scalar-Construct.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-Scalar-Construct +Version: 0.000 +Release: 1 +Summary: Build custom kinds of scalar +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Scalar-Construct/ +Source0: http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Scalar-Construct-%{version}.tar.gz +BuildRequires: perl >= 0:5.006 +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::CBuilder) >= 0.15 +BuildRequires: perl(Module::Build) +BuildRequires: perl(strict) +BuildRequires: perl(Test::More) +BuildRequires: perl(warnings) +BuildRequires: perl(XSLoader) +Requires: perl(strict) +Requires: perl(warnings) +Requires: perl(XSLoader) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +%description +This module supplies functions to construct Perl scalar objects. While +writable (variable) scalars can easily be constructed using the ordinary +facilities of the Perl language, immutable (constant) scalars require a +library such as this. +%package help +Summary : Build custom kinds of scalar +Provides: perl-Scalar-Construct-doc +%description help +This module supplies functions to construct Perl scalar objects. While +writable (variable) scalars can easily be constructed using the ordinary +facilities of the Perl language, immutable (constant) scalars require a +library such as this. +%prep +%setup -q -n Scalar-Construct-%{version} +%build +export PERL_MM_OPT="" +%{__perl} Build.PL --installdirs=vendor --optimize="$RPM_OPT_FLAGS" +./Build + +%install +export PERL_MM_OPT="" +rm -rf $RPM_BUILD_ROOT + +./Build install --destdir=$RPM_BUILD_ROOT --create_packlist=0 +find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -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 +./Build test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f filelist.lst +%defattr(-,root,root,-) +%doc Changes META.json README +%{perl_vendorarch}/auto/* +%{perl_vendorarch}/Scalar* +%files help +%{_mandir}/* + +%changelog +* Tue Jul 13 2021 Perl_Bot 0.000-1 +- Specfile autogenerated by Perl_Bot