Compare commits
No commits in common. "master" and "f28" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,5 +3,3 @@
|
|||||||
/gsl-2.1.tar.gz
|
/gsl-2.1.tar.gz
|
||||||
/gsl-2.3.tar.gz
|
/gsl-2.3.tar.gz
|
||||||
/gsl-2.4.tar.gz
|
/gsl-2.4.tar.gz
|
||||||
/gsl-2.5.tar.gz
|
|
||||||
/gsl-2.6.tar.gz
|
|
||||||
|
99
gsl.spec
99
gsl.spec
@ -1,16 +1,19 @@
|
|||||||
Summary: The GNU Scientific Library for numerical analysis
|
Summary: The GNU Scientific Library for numerical analysis
|
||||||
Name: gsl
|
Name: gsl
|
||||||
Version: 2.6
|
Version: 2.4
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
URL: http://www.gnu.org/software/gsl/
|
URL: http://www.gnu.org/software/gsl/
|
||||||
License: GPLv3+
|
# info part of this package is under GFDL license
|
||||||
Source: http://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz
|
# eigen/nonsymmv.c and eigen/schur.c
|
||||||
|
# contains rutiens which are part of LAPACK - under BSD style license
|
||||||
|
License: GPLv3 and GFDL and BSD
|
||||||
|
Group: System Environment/Libraries
|
||||||
|
|
||||||
|
Source: ftp://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz
|
||||||
Patch0: gsl-1.10-lib64.patch
|
Patch0: gsl-1.10-lib64.patch
|
||||||
# http://lists.gnu.org/archive/html/bug-gsl/2015-12/msg00012.html
|
# http://lists.gnu.org/archive/html/bug-gsl/2015-12/msg00012.html
|
||||||
Patch1: gsl-tol.patch
|
Patch1: gsl-tol.patch
|
||||||
Patch2: gsl-test.patch
|
Patch2: gsl-test.patch
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -19,9 +22,11 @@ numerical analysis, written in C.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Libraries and the header files for GSL development
|
Summary: Libraries and the header files for GSL development
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Group: Development/Libraries
|
||||||
Requires: pkgconfig
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: automake
|
Requires(post): /sbin/install-info
|
||||||
|
Requires(preun): /sbin/install-info
|
||||||
|
Requires: pkgconfig, automake
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The gsl-devel package contains the header files necessary for
|
The gsl-devel package contains the header files necessary for
|
||||||
@ -40,76 +45,60 @@ mv THANKS.aux THANKS
|
|||||||
%build
|
%build
|
||||||
# disable FMA
|
# disable FMA
|
||||||
%ifarch aarch64 ppc64 ppc64le s390 s390x
|
%ifarch aarch64 ppc64 ppc64le s390 s390x
|
||||||
export CFLAGS="%{optflags} -ffp-contract=off"
|
export CFLAGS="$RPM_OPT_FLAGS -ffp-contract=off"
|
||||||
%endif
|
%endif
|
||||||
%configure
|
%configure
|
||||||
%make_build
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make check || ( cat */test-suite.log && exit 1 )
|
make check || ( cat */test-suite.log && exit 1 )
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
make install DESTDIR=$RPM_BUILD_ROOT install='install -p'
|
||||||
# remove unpackaged files from the buildroot
|
# remove unpackaged files from the buildroot
|
||||||
rm -rf %{buildroot}%{_infodir}/dir
|
rm -rf $RPM_BUILD_ROOT%{_infodir}/dir
|
||||||
rm -f %{buildroot}%{_libdir}/*.la
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
# remove static libraries
|
# remove static libraries
|
||||||
rm -r %{buildroot}%{_libdir}/*.a
|
rm -r $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%post devel
|
||||||
|
if [ -f %{_infodir}/gsl-ref.info.gz ]; then
|
||||||
|
/sbin/install-info %{_infodir}/gsl-ref.info %{_infodir}/dir || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
%preun devel
|
||||||
|
if [ "$1" = 0 ]; then
|
||||||
|
if [ -f %{_infodir}/gsl-ref.info.gz ]; then
|
||||||
|
/sbin/install-info --delete %{_infodir}/gsl-ref.info %{_infodir}/dir || :
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc AUTHORS ChangeLog NEWS README THANKS TODO
|
%doc AUTHORS ChangeLog NEWS README THANKS TODO
|
||||||
|
%{_libdir}/libgsl.so.23*
|
||||||
|
%{_libdir}/libgslcblas.so.0*
|
||||||
%{_bindir}/gsl-histogram
|
%{_bindir}/gsl-histogram
|
||||||
%{_bindir}/gsl-randist
|
%{_bindir}/gsl-randist
|
||||||
%{_libdir}/libgsl.so.25*
|
|
||||||
%{_libdir}/libgslcblas.so.0*
|
|
||||||
%{_mandir}/man1/gsl-histogram.1*
|
%{_mandir}/man1/gsl-histogram.1*
|
||||||
%{_mandir}/man1/gsl-randist.1*
|
%{_mandir}/man1/gsl-randist.1*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_bindir}/gsl-config
|
%{_bindir}/gsl-config*
|
||||||
%{_libdir}/libgsl.so
|
%{_datadir}/aclocal/*
|
||||||
%{_libdir}/libgslcblas.so
|
%{_includedir}/*
|
||||||
|
%{_infodir}/*info*
|
||||||
|
%{_libdir}/*.so
|
||||||
%{_libdir}/pkgconfig/gsl.pc
|
%{_libdir}/pkgconfig/gsl.pc
|
||||||
%{_mandir}/man1/gsl-config.1*
|
%{_mandir}/man1/gsl-config.1*
|
||||||
%{_mandir}/man3/gsl.3*
|
%{_mandir}/man3/*.3*
|
||||||
%{_infodir}/gsl-ref.info*
|
|
||||||
%{_datadir}/aclocal/gsl.m4
|
|
||||||
%{_includedir}/gsl/
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Aug 20 2019 Susi Lehtola <jussilehtola@fedoraproject.org> - 2.6-1
|
|
||||||
- Update to 2.6.
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 11 2019 Susi Lehtola <jussilehtola@fedoraproject.org> - 2.5-1
|
|
||||||
- Update to 2.5.
|
|
||||||
- Updated license tag (the license that applies to the binaries) to GPLv3+.
|
|
||||||
- Bring spec file up to date by relying on recommended macros in build phase.
|
|
||||||
- Arched requires for base package in gsl-devel.
|
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 30 2018 Christian Dersch <lupinix@mailbox.org> - 2.4-6
|
|
||||||
- Rebuilt, next try
|
|
||||||
|
|
||||||
* Wed Feb 28 2018 Susi Lehtola <jussilehtola@fedoraproject.org> - 2.4-5
|
|
||||||
- Added gcc buildrequires.
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-4
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (gsl-2.6.tar.gz) = 0be8240715f0b86aba2c63d9f12da4dba4719d4e350e9308d279e0dd3b2f0519ea26fd2e38a17f3e8cf43aacbaa2455207a7ca0d6c305f3b8725e8ece2250a74
|
SHA512 (gsl-2.4.tar.gz) = 12442b023dd959e8b22a9c486646b5cedec7fdba0daf2604cda365cf96d10d99aefdec2b42e59c536cc071da1525373454e5ed6f4b15293b305ca9b1dc6db130
|
||||||
|
Loading…
Reference in New Issue
Block a user