From c16da4eab8d33851cc311f9a0a268d528f1ca3ff Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 5 Oct 2024 19:43:47 +0200 Subject: [PATCH] automatic version update by autodist [release 2.093-1mamba;Sat Oct 05 2024] --- README.md | 2 ++ perl-PDL.spec | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 perl-PDL.spec diff --git a/README.md b/README.md index 91c01ea..a6fed07 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-PDL +PDL is the Perl Data Language, a perl extension that is designed for scientific and bulk numeric data processing and display. It extends perl's syntax and includes fully vectorized, multidimensional array handling, plus several paths for device-independent graphics output. + diff --git a/perl-PDL.spec b/perl-PDL.spec new file mode 100644 index 0000000..d4fb79c --- /dev/null +++ b/perl-PDL.spec @@ -0,0 +1,87 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-PDL +Version: 2.093 +Release: 1mamba +Summary: A perl extension that is designed for scientific and bulk numeric data processing and display +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://www.cpan.org +Source: https://cpan.metacpan.org/authors/id/E/ET/ETJ/PDL-%{version}.tar.gz +License: GPL, Artistic +## AUTOBUILDREQ-BEGIN +BuildRequires: gcc-fortran +BuildRequires: glibc-devel +BuildRequires: libICE-devel +BuildRequires: libX11-devel +BuildRequires: libXext-devel +BuildRequires: libXi-devel +BuildRequires: libXmu-devel +BuildRequires: libfreeglut-devel +BuildRequires: libgd-devel +BuildRequires: libglu-devel +BuildRequires: libglvnd-devel +BuildRequires: libgsl-devel +BuildRequires: libncurses-devel +BuildRequires: libperl +BuildRequires: libstdc++6-devel +BuildRequires: perl-Devel-REPL +BuildRequires: perl-File-Which +BuildRequires: perl-Inline-C +BuildRequires: perl-Module-Compile +BuildRequires: perl-Moose +BuildRequires: perl-OpenGL +BuildRequires: perl-OpenGL-GLUT +BuildRequires: perl-Pod-Parser +BuildRequires: perl-Scalar-List-Utils +BuildRequires: perl-Term-ReadKey +BuildRequires: perl-devel +BuildRequires: perl-namespace-clean +## AUTOBUILDREQ-END +Requires: perl >= %perl_major_ver + +%description +PDL is the Perl Data Language, a perl extension that is designed for scientific and bulk numeric data processing and display. It extends perl's syntax and includes fully vectorized, multidimensional array handling, plus several paths for device-independent graphics output. + +%prep +%setup -q -n PDL-%{version} +# make as optional requirements +%global __requires_exclude ^perl\\(PDL::.*\\)$|^perl\\(Win32::.*\\)$|^perl\\(OpenGL::Config\\)$ + +%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) +%doc COPYING + +%changelog +* Sat Oct 05 2024 Automatic Build System 2.093-1mamba +- automatic version update by autodist + +* Fri Sep 27 2024 Silvan Calarco 2.092-1mamba +- package created using the webbuild interface