Compare commits
54 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1f630362eb | ||
|
47c861517a | ||
|
4a3081d780 | ||
|
fe761eb280 | ||
|
03e20deb84 | ||
|
7db091c706 | ||
|
c2224c73db | ||
|
35360192c4 | ||
|
f16701ebbd | ||
|
b0e03c0381 | ||
|
85f5ff4ff2 | ||
|
5a8c3af9a6 | ||
|
b30be47c23 | ||
|
95d4917524 | ||
|
bd52934641 | ||
|
1c93cf6f6d | ||
|
2bf03d52e1 | ||
|
8c4ccd965e | ||
|
823f4e2f98 | ||
|
263427c145 | ||
|
dcf8aac601 | ||
|
1fdd10c1a0 | ||
|
b655966b2d | ||
|
b08d2756bf | ||
|
5b6b3d21a8 | ||
|
675e8e225c | ||
|
0747396fed | ||
|
274ead6eec | ||
|
c162e34ae1 | ||
|
2d50cd0523 | ||
|
25cdb1a051 | ||
|
edf7c1e0dd | ||
|
3e60618b79 | ||
|
b6ca431681 | ||
|
fde9702015 | ||
|
aff7f99ce6 | ||
|
b66eda81e6 | ||
|
0fe0dd90d1 | ||
|
b5d3d02941 | ||
|
3203b22fca | ||
|
973da516ae | ||
|
7557abdf05 | ||
|
f3f9d1c380 | ||
|
f0445deda0 | ||
|
3e81e525fc | ||
|
e20bf5bab8 | ||
|
458ca295e6 | ||
|
bf1fa42b2f | ||
|
8d7a69fcd4 | ||
|
4343bcffbd | ||
|
653b0fa68a | ||
|
585c9d2728 | ||
|
9b5426750a | ||
|
11ac49f6b3 |
@ -1 +0,0 @@
|
||||
gsl-1.12.tar.gz
|
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/gsl-1.15.tar.gz
|
||||
/gsl-1.16.tar.gz
|
||||
/gsl-2.1.tar.gz
|
||||
/gsl-2.3.tar.gz
|
||||
/gsl-2.4.tar.gz
|
||||
/gsl-2.5.tar.gz
|
||||
/gsl-2.6.tar.gz
|
21
Makefile
21
Makefile
@ -1,21 +0,0 @@
|
||||
# Makefile for source rpm: gsl
|
||||
# $Id: Makefile,v 1.1 2004/09/09 05:53:02 cvsdist Exp $
|
||||
NAME := gsl
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attempt a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
@ -1,6 +1,6 @@
|
||||
diff -up gsl-1.10/gsl-config.in.pom gsl-1.10/gsl-config.in
|
||||
--- gsl-1.10/gsl-config.in.pom 2001-03-21 15:22:44.000000000 +0100
|
||||
+++ gsl-1.10/gsl-config.in 2007-10-24 12:55:20.000000000 +0200
|
||||
diff -up gsl-1.15/gsl-config.in.pom gsl-1.15/gsl-config.in
|
||||
--- gsl-1.15/gsl-config.in.pom 2010-12-26 18:57:08.000000000 +0100
|
||||
+++ gsl-1.15/gsl-config.in 2011-05-09 08:33:05.000000000 +0200
|
||||
@@ -58,16 +58,16 @@ while test $# -gt 0; do
|
||||
;;
|
||||
|
||||
@ -11,13 +11,13 @@ diff -up gsl-1.10/gsl-config.in.pom gsl-1.10/gsl-config.in
|
||||
|
||||
--libs)
|
||||
: ${GSL_CBLAS_LIB=-lgslcblas}
|
||||
- echo @GSL_LIBS@ $GSL_CBLAS_LIB -lm
|
||||
+ echo -lgsl $GSL_CBLAS_LIB -lm
|
||||
- echo @GSL_LIBS@ $GSL_CBLAS_LIB @GSL_LIBM@
|
||||
+ echo -lgsl $GSL_CBLAS_LIB -lm
|
||||
;;
|
||||
|
||||
--libs-without-cblas)
|
||||
- echo @GSL_LIBS@ -lm
|
||||
+ echo -lgsl -lm
|
||||
- echo @GSL_LIBS@ @GSL_LIBM@
|
||||
+ echo -lgsl -lm
|
||||
;;
|
||||
*)
|
||||
usage
|
||||
|
15
gsl-test.patch
Normal file
15
gsl-test.patch
Normal file
@ -0,0 +1,15 @@
|
||||
diff -up gsl-2.1/rstat/test.c.than gsl-2.1/rstat/test.c
|
||||
diff -up gsl-2.1/test/results.c.than gsl-2.1/test/results.c
|
||||
--- gsl-2.1/test/results.c.than 2016-03-10 18:08:17.013928401 -0500
|
||||
+++ gsl-2.1/test/results.c 2016-03-10 18:42:45.717980023 -0500
|
||||
@@ -131,6 +131,10 @@ gsl_test_rel (double result, double expe
|
||||
{
|
||||
status = -1;
|
||||
}
|
||||
+ else if (fabs(result-expected) < relative_error)
|
||||
+ {
|
||||
+ status = 0;
|
||||
+ }
|
||||
else if (expected != 0 )
|
||||
{
|
||||
status = (fabs(result-expected)/fabs(expected) > relative_error) ;
|
38
gsl-tol.patch
Normal file
38
gsl-tol.patch
Normal file
@ -0,0 +1,38 @@
|
||||
diff -up gsl-2.1/multifit/test_nonlinear.c.tol gsl-2.1/multifit/test_nonlinear.c
|
||||
--- gsl-2.1/multifit/test_nonlinear.c.tol 2015-11-03 09:21:55.000000000 -0700
|
||||
+++ gsl-2.1/multifit/test_nonlinear.c 2015-12-02 17:02:31.710586128 -0700
|
||||
@@ -175,8 +175,8 @@ static test_fdf_problem *test_fdf_nist[]
|
||||
static void
|
||||
test_nonlinear(void)
|
||||
{
|
||||
- const double xtol = pow(GSL_DBL_EPSILON, 0.9);
|
||||
- const double gtol = pow(GSL_DBL_EPSILON, 0.9);
|
||||
+ const double xtol = pow(GSL_DBL_EPSILON, 0.9) * 10.0;
|
||||
+ const double gtol = pow(GSL_DBL_EPSILON, 0.9) * 10.0;
|
||||
const double ftol = 0.0;
|
||||
size_t i, j;
|
||||
|
||||
diff -up gsl-2.1/multifit/test_powell1.c.tol gsl-2.1/multifit/test_powell1.c
|
||||
--- gsl-2.1/multifit/test_powell1.c.tol 2015-11-03 09:21:55.000000000 -0700
|
||||
+++ gsl-2.1/multifit/test_powell1.c 2015-12-02 17:05:05.295788606 -0700
|
||||
@@ -4,7 +4,7 @@
|
||||
#define powell1_NTRIES 4
|
||||
|
||||
static double powell1_x0[powell1_P] = { 3.0, -1.0, 0.0, 1.0 };
|
||||
-static double powell1_epsrel = 1.0e-5;
|
||||
+static double powell1_epsrel = 2.0e-5;
|
||||
|
||||
static void
|
||||
powell1_checksol(const double x[], const double sumsq,
|
||||
diff -up gsl-2.1/multifit/test_powell3.c.tol gsl-2.1/multifit/test_powell3.c
|
||||
--- gsl-2.1/multifit/test_powell3.c.tol 2015-11-03 09:21:55.000000000 -0700
|
||||
+++ gsl-2.1/multifit/test_powell3.c 2015-12-02 17:05:52.299546834 -0700
|
||||
@@ -4,7 +4,7 @@
|
||||
#define powell3_NTRIES 1
|
||||
|
||||
static double powell3_x0[powell3_P] = { 0.0, 1.0 };
|
||||
-static double powell3_epsrel = 1.0e-12;
|
||||
+static double powell3_epsrel = 1.0e-8;
|
||||
|
||||
static void
|
||||
powell3_checksol(const double x[], const double sumsq,
|
399
gsl.spec
399
gsl.spec
@ -1,16 +1,16 @@
|
||||
Summary: The GNU Scientific Library for numerical analysis
|
||||
Name: gsl
|
||||
Version: 1.12
|
||||
Version: 2.6
|
||||
Release: 3%{?dist}
|
||||
URL: http://www.gnu.org/software/gsl/
|
||||
Source: ftp://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz
|
||||
License: GPLv3+
|
||||
Source: http://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz
|
||||
Patch0: gsl-1.10-lib64.patch
|
||||
# info part of this package is under GFDL license
|
||||
# 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
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
# http://lists.gnu.org/archive/html/bug-gsl/2015-12/msg00012.html
|
||||
Patch1: gsl-tol.patch
|
||||
Patch2: gsl-test.patch
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: pkgconfig
|
||||
|
||||
%description
|
||||
@ -19,87 +19,212 @@ numerical analysis, written in C.
|
||||
|
||||
%package devel
|
||||
Summary: Libraries and the header files for GSL development
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires(post): /sbin/install-info
|
||||
Requires(preun): /sbin/install-info
|
||||
Requires: pkgconfig, automake
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
Requires: automake
|
||||
|
||||
%description devel
|
||||
The gsl-devel package contains the header files necessary for
|
||||
developing programs using the GSL (GNU Scientific Library).
|
||||
|
||||
%package static
|
||||
Summary: Static libraries of the GSL package
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}-devel = %{version}-%{release}
|
||||
|
||||
%description static
|
||||
The gsl-static package includes static libraries of GSL.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1 -b .lib64
|
||||
%patch1 -p1 -b .tol
|
||||
%patch2 -p1 -b .test
|
||||
|
||||
iconv -f windows-1252 -t utf-8 THANKS > THANKS.aux
|
||||
touch -r THANKS THANKS.aux
|
||||
mv THANKS.aux THANKS
|
||||
|
||||
%build
|
||||
%configure CFLAGS="$CFLAGS -fgnu89-inline"
|
||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||
make %{?_smp_mflags}
|
||||
# disable FMA
|
||||
%ifarch aarch64 ppc64 ppc64le s390 s390x
|
||||
export CFLAGS="%{optflags} -ffp-contract=off"
|
||||
%endif
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%check
|
||||
make check || ( cat */test-suite.log && exit 1 )
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT install='install -p'
|
||||
|
||||
%make_install
|
||||
# remove unpackaged files from the buildroot
|
||||
rm -rf $RPM_BUILD_ROOT%{_infodir}/dir
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
rm -rf %{buildroot}%{_infodir}/dir
|
||||
rm -f %{buildroot}%{_libdir}/*.la
|
||||
# remove static libraries
|
||||
rm -r %{buildroot}%{_libdir}/*.a
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%post devel
|
||||
/sbin/install-info %{_infodir}/gsl-ref.info %{_infodir}/dir || :
|
||||
|
||||
%preun devel
|
||||
if [ "$1" = 0 ]; then
|
||||
/sbin/install-info --delete %{_infodir}/gsl-ref.info %{_infodir}/dir || :
|
||||
fi
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
|
||||
%{_libdir}/*so.*
|
||||
%license COPYING
|
||||
%doc AUTHORS ChangeLog NEWS README THANKS TODO
|
||||
%{_bindir}/gsl-histogram
|
||||
%{_bindir}/gsl-randist
|
||||
%{_libdir}/libgsl.so.25*
|
||||
%{_libdir}/libgslcblas.so.0*
|
||||
%{_mandir}/man1/gsl-histogram.1*
|
||||
%{_mandir}/man1/gsl-randist.1*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING
|
||||
%{_bindir}/gsl-config*
|
||||
%{_datadir}/aclocal/*
|
||||
%{_includedir}/*
|
||||
%{_infodir}/*info*
|
||||
%{_libdir}/*.so
|
||||
%{_bindir}/gsl-config
|
||||
%{_libdir}/libgsl.so
|
||||
%{_libdir}/libgslcblas.so
|
||||
%{_libdir}/pkgconfig/gsl.pc
|
||||
%{_mandir}/man1/gsl-config.1*
|
||||
%{_mandir}/man3/*.3*
|
||||
|
||||
%files static
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING
|
||||
%{_libdir}/*.a
|
||||
%{_mandir}/man3/gsl.3*
|
||||
%{_infodir}/gsl-ref.info*
|
||||
%{_datadir}/aclocal/gsl.m4
|
||||
%{_includedir}/gsl/
|
||||
|
||||
%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
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jul 12 2017 Arthur Mello <amello@redhat.com> - 2.4-1
|
||||
- Update to 2.4
|
||||
|
||||
* Tue Feb 14 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 2.3-1
|
||||
- rebase to 2.3
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Mar 10 2016 Than Ngo <than@redhat.com> - 2.1-4
|
||||
- fix build failure on powerpc
|
||||
|
||||
* Fri Feb 26 2016 Dan Horák <dan[at]danny.cz> - 2.1-3
|
||||
- Disable FMA also on ppc64(le) and s390(x)
|
||||
|
||||
* Tue Feb 23 2016 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 2.1-2
|
||||
- Disable FMA on AArch64 to lower precision so tests do not fail.
|
||||
|
||||
* Sun Feb 21 2016 Orion Poplawski <orion@cora.nwra.com> - 2.1-1
|
||||
- Update to 2.1
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.16-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Dec 08 2014 Susi Lehtola <jussilehtola@fedoraproject.org> - 1.16-16
|
||||
- Drop linkage patch: libgsl should not link to libgslcblas,
|
||||
so that more efficient libraries can be used (BZ #1007058).
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Apr 28 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.16-13
|
||||
- Add upstream patch which fixes FTBFS on aarch64
|
||||
|
||||
* 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
|
||||
- Update to 1.16
|
||||
- Rebase atlas patch
|
||||
- Drop upstreamed ode patch
|
||||
|
||||
* Sat Sep 21 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-10
|
||||
- linked against atlas 3.10
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Jan 30 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-8
|
||||
- self test moved to %%check section
|
||||
|
||||
* Tue Jan 29 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-7
|
||||
- run self-tests after build
|
||||
- updated ode-initval2 to upstream revision 4788
|
||||
|
||||
* Mon Nov 19 2012 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.15-6
|
||||
- minor cleanup of gsl.spec
|
||||
|
||||
* 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
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Sep 27 2011 Peter Schiffer <pschiffe@redhat.com> - 1.15-3
|
||||
- resolves: #741138
|
||||
removed unnecessary Requires: atlas
|
||||
|
||||
* Mon May 9 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 1.15-2
|
||||
- resolves: #695148
|
||||
link gsl against atlas package for blas operations
|
||||
|
||||
* Mon May 9 2011 Ivana Hutarova Varekova <varekova@redhat.com> - 1.15-1
|
||||
- update to 1.15
|
||||
|
||||
* 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
|
||||
|
||||
* Wed May 5 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 1.14-1
|
||||
- update to 1.14
|
||||
- Resolves: #560219
|
||||
Library not linked correctly
|
||||
|
||||
* Wed Mar 3 2010 Ivana Hutarova Varekova <varekova@redhat.com> - 1.13-2
|
||||
- remove the static subpackage
|
||||
|
||||
* Tue Sep 15 2009 Ivana Varekova <varekova@redhat.com> - 1.13-1
|
||||
- update to 1.13
|
||||
|
||||
* 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
|
||||
- fix installation with --excludedocs option (#515971)
|
||||
|
||||
* 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
|
||||
|
||||
* Sat Mar 07 2009 Milos Jakubicek <xjakub@fi.muni.cz> - 1.12-3
|
||||
- Remove rpaths (fix BZ#487823).
|
||||
|
||||
@ -148,157 +273,3 @@ rm -rf $RPM_BUILD_ROOT
|
||||
- separate static libraries to -static subpackage
|
||||
- fix gsl-config script - thanks Patrice Dumas
|
||||
|
||||
* Tue Sep 23 2007 Ivana Varekova <varekova@redhat.com> - 1.10-3
|
||||
- remove *.la files
|
||||
- add pkgconfig configure file
|
||||
- change source
|
||||
- spec file cleanup
|
||||
|
||||
* Wed Sep 19 2007 Ivana Varekova <varekova@redhat.com> - 1.10-2
|
||||
- update license tag
|
||||
|
||||
* Wed Sep 19 2007 Ivana Varekova <varekova@redhat.com> - 1.10-1
|
||||
- update to 1.10
|
||||
- change license tag
|
||||
|
||||
* Tue May 22 2007 Ivana Varekova <varekova@redhat.com> - 1.9-1
|
||||
- update to 1.9
|
||||
|
||||
* Wed Mar 14 2007 Ivana Varekova <varekova@redhat.com> - 1.8-3
|
||||
- incorporate the package review feedback
|
||||
|
||||
* Mon Jan 22 2007 Ivana Varekova <varekova@redhat.com> - 1.8-2
|
||||
- Resolves: 223700
|
||||
fix non-failsafe install-info problem
|
||||
- spec file cleanup
|
||||
|
||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.8-1.1
|
||||
- rebuild
|
||||
|
||||
* Fri May 5 2006 Ivana Varekova <varekova@redhat.com> - 1.8-1
|
||||
- update to 1.8
|
||||
|
||||
* Fri Mar 3 2006 Ivana Varekova <varekova@redhat.com> - 1.7-2
|
||||
- fix multilib problem
|
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.7-1.2.1
|
||||
- bump again for double-long bug on ppc(64)
|
||||
|
||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.7-1.2
|
||||
- rebuilt for new gcc4.1 snapshot and glibc changes
|
||||
|
||||
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Thu Nov 10 2005 Ivana Varekova <varekova@redhat.com> 1.7-1
|
||||
- update to 1.7
|
||||
|
||||
* Mon Mar 7 2005 Ivana Varekova <varekova@redhat.com> 1.6-2
|
||||
- rebuilt
|
||||
|
||||
* Thu Jan 6 2005 Ivana Varekova <varekova@redhat.com> 1.6-1
|
||||
- update to 1.6
|
||||
|
||||
* Wed Dec 15 2004 Ivana Varekova <varekova@redhat.com>
|
||||
- fix bug #142696 gsl-config outputs invalid flags on multilib 64-bit
|
||||
architectures
|
||||
|
||||
* Fri Jul 02 2004 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||
- 1.5
|
||||
|
||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Thu Aug 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||
- update to 1.4
|
||||
|
||||
* Wed Jun 25 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||
- update to 1.3
|
||||
|
||||
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 1.1.1-4
|
||||
- remove unpackaged files from the buildroot
|
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Thu Mar 21 2002 Trond Eivind Glomsrød <teg@redhat.com>
|
||||
- 1.1.1 bugfix release
|
||||
- Stop the gsl-config script from printing -I/usr/include
|
||||
and -L/usr/lib (#59500)
|
||||
|
||||
|
||||
* Wed Feb 27 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.1-1
|
||||
- 1.1
|
||||
- Update URL and location
|
||||
|
||||
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Thu Dec 13 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.0-1
|
||||
- 1.0
|
||||
- Split into gsl and gsl-devel
|
||||
- update description (#56926)
|
||||
|
||||
* Thu Jul 19 2001 Preston Brown <pbrown@redhat.com>
|
||||
- upgrade to 0.9
|
||||
|
||||
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
||||
- Bump release + rebuild.
|
||||
|
||||
* Thu Jan 18 2001 Preston Brown <pbrown@redhat.com>
|
||||
- prereq install-info (#24250)
|
||||
|
||||
* Mon Dec 11 2000 Preston Brown <pbrown@redhat.com>
|
||||
- 0.7, remove excludearch for ia64
|
||||
|
||||
* Sun Jul 30 2000 Florian La Roche <Florian.LaRoche@redhat.de>
|
||||
- fix %%post to be a real shell and add ldconfig to %%post
|
||||
|
||||
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
||||
- automatic rebuild
|
||||
|
||||
* Mon Jun 19 2000 Preston Brown <pbrown@redhat.com>
|
||||
- don't include the info dir file...
|
||||
|
||||
* Sat Jun 17 2000 Bill Nottingham <notting@redhat.com>
|
||||
- add %%defattr
|
||||
|
||||
* Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
|
||||
- 0.6, FHS paths
|
||||
- exclude ia64, it is having issues
|
||||
|
||||
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||||
- auto rebuild in the new build environment (release 2)
|
||||
|
||||
* Thu Mar 11 1999 Bill Nottingham <notting@redhat.com>
|
||||
- update to 0.3f
|
||||
- add patches to fix glibc-2.1 compilation, doc oddity
|
||||
|
||||
* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
|
||||
- new summary/description, work around automake oddity
|
||||
|
||||
* Tue Jan 12 1999 Michael K. Johnson <johnsonm@redhat.com>
|
||||
- libtoolize for arm
|
||||
|
||||
* Thu Sep 10 1998 Cristian Gafton <gafton@redhat.com>
|
||||
- spec file fixups
|
||||
|
||||
* Sat May 9 1998 Michael Fulbright <msf@redhat.com>
|
||||
- started with package for gmp from Toshio Kuratomi <toshiok@cats.ucsc.edu>
|
||||
- cleaned up file list
|
||||
- fixed up install-info support
|
||||
|
Loading…
Reference in New Issue
Block a user