From 697f425885aef3f95dace14b06fc4552cf13db92 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 08:55:32 +0100 Subject: [PATCH] package created using the webbuild interface [release 3.19-1mamba;Sat Mar 25 2023] --- README.md | 2 ++ perl-Encode.spec | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 perl-Encode.spec diff --git a/README.md b/README.md index bbaeaa9..8253cee 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Encode +Encode - character encodings in Perl. + diff --git a/perl-Encode.spec b/perl-Encode.spec new file mode 100644 index 0000000..03f5e79 --- /dev/null +++ b/perl-Encode.spec @@ -0,0 +1,64 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Encode +Version: 3.19 +Release: 1mamba +Summary: Encode - character encodings in Perl +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://www.cpan.org +Source: https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/Encode-%{version}.tar.gz +License: GPL, Artistic +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libperl +BuildRequires: perl-devel +## AUTOBUILDREQ-END +Requires: perl >= %perl_major_ver + +%description +Encode - character encodings in Perl. + +%prep +%setup -q -n Encode-%{version} + +%build +%{__perl} Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor OPTIMIZE="%{optflags}" + +%make +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl + +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 + +find %{buildroot} -name *.so -exec chmod u+w {} \; + +# Cohexist with perl 5.24 +rm -rf %{buildroot}%{_mandir} +rm -rf %{buildroot}%{_bindir} +sed -i "\|%{_mandir}|d" .packlist +sed -i "\|%{_bindir}|d" .packlist + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f .packlist +%defattr(-,root,root) +%doc AUTHORS + +%changelog +* Sat Mar 25 2023 Silvan Calarco 3.19-1mamba +- package created using the webbuild interface