2007-01-22 14:35:59 +00:00
|
|
|
Summary: The GNU Scientific Library for numerical analysis
|
2004-09-09 05:53:04 +00:00
|
|
|
Name: gsl
|
2019-08-20 17:45:57 +00:00
|
|
|
Version: 2.6
|
2022-01-20 11:51:42 +00:00
|
|
|
Release: 6%{?dist}
|
2007-10-23 11:09:30 +00:00
|
|
|
URL: http://www.gnu.org/software/gsl/
|
2019-06-11 13:09:55 +00:00
|
|
|
License: GPLv3+
|
|
|
|
Source: http://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz
|
2014-04-28 15:18:58 +00:00
|
|
|
Patch0: gsl-1.10-lib64.patch
|
2016-02-21 16:24:33 +00:00
|
|
|
# http://lists.gnu.org/archive/html/bug-gsl/2015-12/msg00012.html
|
|
|
|
Patch1: gsl-tol.patch
|
2016-03-11 00:02:02 +00:00
|
|
|
Patch2: gsl-test.patch
|
2018-02-28 14:12:01 +00:00
|
|
|
|
|
|
|
BuildRequires: gcc
|
2007-10-24 14:34:31 +00:00
|
|
|
BuildRequires: pkgconfig
|
2020-12-19 00:08:33 +00:00
|
|
|
BuildRequires: make
|
2004-09-09 05:53:04 +00:00
|
|
|
|
|
|
|
%description
|
2004-09-09 05:53:57 +00:00
|
|
|
The GNU Scientific Library (GSL) is a collection of routines for
|
2007-10-23 11:09:30 +00:00
|
|
|
numerical analysis, written in C.
|
2004-09-09 05:53:04 +00:00
|
|
|
|
2004-09-09 05:53:57 +00:00
|
|
|
%package devel
|
2007-10-24 14:34:31 +00:00
|
|
|
Summary: Libraries and the header files for GSL development
|
2019-06-11 13:09:55 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
Requires: automake
|
2004-09-09 05:53:57 +00:00
|
|
|
|
|
|
|
%description devel
|
2007-11-02 08:21:47 +00:00
|
|
|
The gsl-devel package contains the header files necessary for
|
|
|
|
developing programs using the GSL (GNU Scientific Library).
|
2004-09-09 05:53:04 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2007-10-24 14:34:31 +00:00
|
|
|
%patch0 -p1 -b .lib64
|
2016-02-21 16:24:33 +00:00
|
|
|
%patch1 -p1 -b .tol
|
2016-03-11 00:02:02 +00:00
|
|
|
%patch2 -p1 -b .test
|
|
|
|
|
2007-10-24 14:34:31 +00:00
|
|
|
iconv -f windows-1252 -t utf-8 THANKS > THANKS.aux
|
2007-11-02 08:21:47 +00:00
|
|
|
touch -r THANKS THANKS.aux
|
2007-10-24 14:34:31 +00:00
|
|
|
mv THANKS.aux THANKS
|
2004-09-09 05:53:04 +00:00
|
|
|
|
|
|
|
%build
|
2016-02-23 13:31:59 +00:00
|
|
|
# disable FMA
|
2016-02-26 10:41:21 +00:00
|
|
|
%ifarch aarch64 ppc64 ppc64le s390 s390x
|
2019-06-11 13:09:55 +00:00
|
|
|
export CFLAGS="%{optflags} -ffp-contract=off"
|
2016-02-23 13:31:59 +00:00
|
|
|
%endif
|
2016-02-21 16:24:33 +00:00
|
|
|
%configure
|
2019-06-11 13:09:55 +00:00
|
|
|
%make_build
|
2004-09-09 05:53:04 +00:00
|
|
|
|
2013-01-30 09:37:08 +00:00
|
|
|
%check
|
2016-02-21 16:24:33 +00:00
|
|
|
make check || ( cat */test-suite.log && exit 1 )
|
2013-01-30 09:37:08 +00:00
|
|
|
|
2004-09-09 05:53:04 +00:00
|
|
|
%install
|
2019-06-11 13:09:55 +00:00
|
|
|
%make_install
|
2004-09-09 05:54:41 +00:00
|
|
|
# remove unpackaged files from the buildroot
|
2019-06-11 13:09:55 +00:00
|
|
|
rm -rf %{buildroot}%{_infodir}/dir
|
|
|
|
rm -f %{buildroot}%{_libdir}/*.la
|
2010-03-03 09:59:24 +00:00
|
|
|
# remove static libraries
|
2019-06-11 13:09:55 +00:00
|
|
|
rm -r %{buildroot}%{_libdir}/*.a
|
2004-09-09 05:54:41 +00:00
|
|
|
|
2019-01-22 17:39:11 +00:00
|
|
|
%ldconfig_scriptlets
|
2004-09-09 05:53:04 +00:00
|
|
|
|
|
|
|
%files
|
2016-02-21 16:24:33 +00:00
|
|
|
%license COPYING
|
|
|
|
%doc AUTHORS ChangeLog NEWS README THANKS TODO
|
2004-09-09 05:53:57 +00:00
|
|
|
%{_bindir}/gsl-histogram
|
|
|
|
%{_bindir}/gsl-randist
|
2019-08-20 18:00:04 +00:00
|
|
|
%{_libdir}/libgsl.so.25*
|
2019-06-11 13:09:55 +00:00
|
|
|
%{_libdir}/libgslcblas.so.0*
|
2007-11-02 08:21:47 +00:00
|
|
|
%{_mandir}/man1/gsl-histogram.1*
|
|
|
|
%{_mandir}/man1/gsl-randist.1*
|
2004-09-09 05:53:57 +00:00
|
|
|
|
|
|
|
%files devel
|
2019-06-11 13:09:55 +00:00
|
|
|
%{_bindir}/gsl-config
|
|
|
|
%{_libdir}/libgsl.so
|
|
|
|
%{_libdir}/libgslcblas.so
|
2007-10-23 11:09:30 +00:00
|
|
|
%{_libdir}/pkgconfig/gsl.pc
|
2007-11-02 08:21:47 +00:00
|
|
|
%{_mandir}/man1/gsl-config.1*
|
2019-06-11 13:09:55 +00:00
|
|
|
%{_mandir}/man3/gsl.3*
|
|
|
|
%{_infodir}/gsl-ref.info*
|
|
|
|
%{_datadir}/aclocal/gsl.m4
|
|
|
|
%{_includedir}/gsl/
|
2004-09-09 05:53:04 +00:00
|
|
|
|
|
|
|
%changelog
|
2022-01-20 11:51:42 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 07:10:33 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-01-26 13:02:53 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-28 00:26:22 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-29 03:39:40 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-08-20 17:45:57 +00:00
|
|
|
* Tue Aug 20 2019 Susi Lehtola <jussilehtola@fedoraproject.org> - 2.6-1
|
|
|
|
- Update to 2.6.
|
|
|
|
|
2019-07-25 07:52:06 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-11 13:09:55 +00:00
|
|
|
* 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.
|
|
|
|
|
2019-02-01 01:41:17 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 04:35:32 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-30 19:28:01 +00:00
|
|
|
* Sat Jun 30 2018 Christian Dersch <lupinix@mailbox.org> - 2.4-6
|
|
|
|
- Rebuilt, next try
|
|
|
|
|
2018-02-28 14:12:01 +00:00
|
|
|
* Wed Feb 28 2018 Susi Lehtola <jussilehtola@fedoraproject.org> - 2.4-5
|
|
|
|
- Added gcc buildrequires.
|
|
|
|
|
2018-02-07 15:34:02 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-02 23:05:59 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 12:08:04 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-12 21:24:38 +00:00
|
|
|
* Wed Jul 12 2017 Arthur Mello <amello@redhat.com> - 2.4-1
|
|
|
|
- Update to 2.4
|
|
|
|
|
2017-02-14 15:08:09 +00:00
|
|
|
* Tue Feb 14 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 2.3-1
|
|
|
|
- rebase to 2.3
|
|
|
|
|
2017-02-10 12:17:16 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-03-11 00:02:02 +00:00
|
|
|
* Thu Mar 10 2016 Than Ngo <than@redhat.com> - 2.1-4
|
|
|
|
- fix build failure on powerpc
|
|
|
|
|
2016-02-26 10:41:21 +00:00
|
|
|
* Fri Feb 26 2016 Dan Horák <dan[at]danny.cz> - 2.1-3
|
|
|
|
- Disable FMA also on ppc64(le) and s390(x)
|
|
|
|
|
2016-02-23 13:31:59 +00:00
|
|
|
* Tue Feb 23 2016 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 2.1-2
|
|
|
|
- Disable FMA on AArch64 to lower precision so tests do not fail.
|
|
|
|
|
2016-02-21 16:24:33 +00:00
|
|
|
* Sun Feb 21 2016 Orion Poplawski <orion@cora.nwra.com> - 2.1-1
|
|
|
|
- Update to 2.1
|
|
|
|
|
2016-02-03 23:23:33 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.16-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 09:53:13 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2016-02-22 16:00:03 +00:00
|
|
|
* Mon Dec 08 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 1.16-16
|
2014-12-09 00:35:25 +00:00
|
|
|
- Drop linkage patch: libgsl should not link to libgslcblas,
|
|
|
|
so that more efficient libraries can be used (BZ #1007058).
|
|
|
|
|
2014-08-16 19:12:19 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 18:52:25 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-28 15:18:58 +00:00
|
|
|
* Mon Apr 28 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.16-13
|
|
|
|
- Add upstream patch which fixes FTBFS on aarch64
|
|
|
|
|
2014-02-15 21:17:56 +00:00
|
|
|
* Sat Feb 15 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 1.16-12
|
|
|
|
- Drop ATLAS linkage patch: by design, the CBLAS library must be
|
|
|
|
defined at link time to allow use of more optimized implementations.
|
|
|
|
(BZ #1007058).
|
|
|
|
|
|
|
|
* Tue Oct 1 2013 Orion Poplawski <orion@cora.nwra.com> - 1.16-11
|
2013-10-02 03:54:13 +00:00
|
|
|
- Update to 1.16
|
|
|
|
- Rebase atlas patch
|
|
|
|
- Drop upstreamed ode patch
|
|
|
|
|
2013-09-21 19:24:34 +00:00
|
|
|
* Sat Sep 21 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-10
|
|
|
|
- linked against atlas 3.10
|
|
|
|
|
2013-08-03 16:43:43 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-01-30 09:37:08 +00:00
|
|
|
* Wed Jan 30 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-8
|
2013-06-04 08:34:25 +00:00
|
|
|
- self test moved to %%check section
|
2013-01-30 09:37:08 +00:00
|
|
|
|
2013-01-29 15:14:01 +00:00
|
|
|
* Tue Jan 29 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-7
|
|
|
|
- run self-tests after build
|
|
|
|
- updated ode-initval2 to upstream revision 4788
|
|
|
|
|
2012-11-19 16:20:05 +00:00
|
|
|
* Mon Nov 19 2012 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-6
|
|
|
|
- minor cleanup of gsl.spec
|
|
|
|
|
2012-07-19 10:22:13 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 04:23:50 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-27 16:43:39 +00:00
|
|
|
* Tue Sep 27 2011 Peter Schiffer <pschiffe@redhat.com> - 1.15-3
|
|
|
|
- resolves: #741138
|
|
|
|
removed unnecessary Requires: atlas
|
|
|
|
|
2011-05-09 13:25:34 +00:00
|
|
|
* Mon May 9 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 1.15-2
|
|
|
|
- resolves: #695148
|
|
|
|
link gsl against atlas package for blas operations
|
|
|
|
|
2011-05-09 07:04:42 +00:00
|
|
|
* Mon May 9 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 1.15-1
|
|
|
|
- update to 1.15
|
|
|
|
|
2011-02-09 06:29:37 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-05-06 05:58:14 +00:00
|
|
|
* Wed May 5 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 1.14-1
|
|
|
|
- update to 1.14
|
|
|
|
- Resolves: #560219
|
|
|
|
Library not linked correctly
|
|
|
|
|
2010-03-03 09:59:24 +00:00
|
|
|
* Wed Mar 3 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 1.13-2
|
|
|
|
- remove the static subpackage
|
|
|
|
|
2009-09-15 13:47:21 +00:00
|
|
|
* Tue Sep 15 2009 Ivana Varekova <varekova@redhat.com> - 1.13-1
|
|
|
|
- update to 1.13
|
|
|
|
|
2009-08-17 08:39:59 +00:00
|
|
|
* Mon Aug 17 2009 Ivana Varekova <varekova@redhat.com> - 1.12-6
|
|
|
|
- fix preun and post scripts (#517568)
|
|
|
|
|
|
|
|
* Mon Aug 10 2009 Ivana Varekova <varekova@redhat.com> - 1.12-5
|
2009-08-10 14:51:10 +00:00
|
|
|
- fix installation with --excludedocs option (#515971)
|
|
|
|
|
2009-07-25 01:33:28 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-07 17:53:24 +00:00
|
|
|
* Sat Mar 07 2009 Milos Jakubicek <xjakub@fi.muni.cz> - 1.12-3
|
|
|
|
- Remove rpaths (fix BZ#487823).
|
|
|
|
|
2009-02-25 01:22:32 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-19 10:08:54 +00:00
|
|
|
* Mon Jan 19 2009 Ivana Varekova <varekova@redhat.com> - 1.12-1
|
2009-01-19 10:01:23 +00:00
|
|
|
- update to 1.12
|
|
|
|
|
2008-09-16 07:48:06 +00:00
|
|
|
* Tue Sep 16 2008 Ivana Varekova <varekova@redhat.com> - 1.11-4
|
|
|
|
- Resolves: #462369 - remove %%{_datadir}/aclocal
|
|
|
|
- add automake dependency
|
|
|
|
|
2008-07-28 10:40:45 +00:00
|
|
|
* Mon Jul 28 2008 Ivana Varekova <varekova@redhat.com> - 1.11-3
|
|
|
|
- add -fgnu89-inline flag to solve gcc4.3 problem
|
|
|
|
remove gcc43 patch
|
|
|
|
|
2008-06-18 06:46:44 +00:00
|
|
|
* Wed Jun 18 2008 Ivana Varekova <varekova@redhat.com> - 1.11-2
|
|
|
|
- Resolves: #451006
|
|
|
|
programs build with gcc 4.3 based on gsl require -fgnu89-inline
|
|
|
|
|
2008-06-16 13:31:15 +00:00
|
|
|
* Mon Jun 16 2008 Ivana Varekova <varekova@redhat.com> - 1.11-1
|
|
|
|
- update to 1.11
|
|
|
|
|
2008-02-20 06:34:50 +00:00
|
|
|
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.10-10
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-11-02 08:21:47 +00:00
|
|
|
* Thu Nov 1 2007 Ivana Varekova <varekova@redhat.com> - 1.10-9
|
|
|
|
- source file change
|
|
|
|
- spec cleanup
|
|
|
|
|
2007-11-01 13:06:16 +00:00
|
|
|
* Thu Nov 1 2007 Ivana Varekova <varekova@redhat.com> - 1.10-8
|
|
|
|
- fix man-pages directories
|
|
|
|
|
2007-10-30 12:09:37 +00:00
|
|
|
* Tue Oct 30 2007 Ivana Varekova <varekova@redhat.com> - 1.10-7
|
|
|
|
- add man pages
|
|
|
|
|
2007-10-26 10:55:15 +00:00
|
|
|
* Fri Oct 26 2007 Ivana Varekova <varekova@redhat.com> - 1.10-6
|
|
|
|
- minor spec changes
|
|
|
|
|
2007-10-25 10:59:12 +00:00
|
|
|
* Thu Oct 25 2007 Ivana Varekova <varekova@redhat.com> - 1.10-5
|
|
|
|
- minor spec changes
|
|
|
|
|
2007-10-24 14:34:31 +00:00
|
|
|
* Wed Oct 24 2007 Ivana Varekova <varekova@redhat.com> - 1.10-4
|
|
|
|
- add pkgconfig dependency
|
|
|
|
- separate static libraries to -static subpackage
|
|
|
|
- fix gsl-config script - thanks Patrice Dumas
|
2014-12-09 00:35:25 +00:00
|
|
|
|