From 244a2007b7653dda9774f3737591e9305edde1b5 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 08:35:43 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.26-1mamba;Mon Apr 17 2023] --- README.md | 2 ++ perl-B-Debug.spec | 56 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 perl-B-Debug.spec diff --git a/README.md b/README.md index 26783de..878b09c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-B-Debug +B::Debug - Walk Perl syntax tree, printing debug info about ops. + diff --git a/perl-B-Debug.spec b/perl-B-Debug.spec new file mode 100644 index 0000000..6e66fdb --- /dev/null +++ b/perl-B-Debug.spec @@ -0,0 +1,56 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-B-Debug +Version: 1.26 +Release: 1mamba +Summary: B::Debug - Walk Perl syntax tree, printing debug info about ops +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://www.cpan.org +Source: https://cpan.metacpan.org/authors/id/R/RU/RURBAN/B-Debug-%{version}.tar.gz +License: GPL, Artistic +## AUTOBUILDREQ-BEGIN +BuildRequires: libperl +BuildRequires: perl-devel +## AUTOBUILDREQ-END +Requires: perl >= %perl_major_ver + +%description +B::Debug - Walk Perl syntax tree, printing debug info about ops. + +%prep +%setup -q -n B-Debug-%{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 {} \; + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Mon Apr 17 2023 Silvan Calarco 1.26-1mamba +- package created using the webbuild interface