gsl/gsl.spec

294 lines
7.9 KiB
RPMSpec
Raw Normal View History

Summary: The GNU Scientific Library for numerical analysis
Name: gsl
2008-06-16 13:31:15 +00:00
Version: 1.11
Release: 4%{?dist}
URL: http://www.gnu.org/software/gsl/
Source: ftp://ftp.gnu.org/gnu/gsl/%{name}-%{version}.tar.gz
Patch0: gsl-1.10-lib64.patch
2007-08-27 10:06:22 +00:00
# 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)
BuildRequires: pkgconfig
%description
The GNU Scientific Library (GSL) is a collection of routines for
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
%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).
%package static
Summary: Static libraries of the GSL package
Group: Development/Libraries
2007-10-25 11:11:25 +00:00
Requires: %{name}-devel = %{version}-%{release}
%description static
The gsl-static package includes static libraries of GSL.
%prep
%setup -q
%patch0 -p1 -b .lib64
iconv -f windows-1252 -t utf-8 THANKS > THANKS.aux
2007-11-02 08:21:47 +00:00
touch -r THANKS THANKS.aux
mv THANKS.aux THANKS
%build
%configure CFLAGS="$CFLAGS -fgnu89-inline"
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT install='install -p'
# remove unpackaged files from the buildroot
2007-10-30 12:09:37 +00:00
rm -rf $RPM_BUILD_ROOT%{_infodir}/dir
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%post devel
2007-10-26 10:55:15 +00:00
/sbin/install-info %{_infodir}/gsl-ref.info %{_infodir}/dir || :
%preun devel
if [ "$1" = 0 ]; then
2007-10-26 10:55:15 +00:00
/sbin/install-info --delete %{_infodir}/gsl-ref.info %{_infodir}/dir || :
fi
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
%{_libdir}/*so.*
%{_bindir}/gsl-histogram
%{_bindir}/gsl-randist
2007-11-02 08:21:47 +00:00
%{_mandir}/man1/gsl-histogram.1*
%{_mandir}/man1/gsl-randist.1*
%files devel
%defattr(-,root,root,-)
%doc AUTHORS COPYING
2006-03-03 12:28:38 +00:00
%{_bindir}/gsl-config*
%{_datadir}/aclocal/*
%{_includedir}/*
%{_infodir}/*info*
%{_libdir}/*.so
%{_libdir}/pkgconfig/gsl.pc
2007-11-02 08:21:47 +00:00
%{_mandir}/man1/gsl-config.1*
2007-11-01 13:06:16 +00:00
%{_mandir}/man3/*.3*
%files static
%defattr(-,root,root,-)
%doc AUTHORS COPYING
%{_libdir}/*.a
%changelog
* Tue Sep 16 2008 Ivana Varekova <varekova@redhat.com> - 1.11-4
- Resolves: #462369 - remove %%{_datadir}/aclocal
- add automake dependency
* Mon Jul 28 2008 Ivana Varekova <varekova@redhat.com> - 1.11-3
- add -fgnu89-inline flag to solve gcc4.3 problem
remove gcc43 patch
* 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
* 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
* Tue Sep 23 2007 Ivana Varekova <varekova@redhat.com> - 1.10-3
- remove *.la files
- add pkgconfig configure file
- change source
- spec file cleanup
2007-09-19 10:32:50 +00:00
* Wed Sep 19 2007 Ivana Varekova <varekova@redhat.com> - 1.10-2
- update license tag
2007-09-19 08:08:21 +00:00
* Wed Sep 19 2007 Ivana Varekova <varekova@redhat.com> - 1.10-1
- update to 1.10
- change license tag
2007-05-22 10:29:33 +00:00
* 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
2006-07-12 06:14:56 +00:00
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.8-1.1
- rebuild
2006-05-05 13:54:23 +00:00
* Fri May 5 2006 Ivana Varekova <varekova@redhat.com> - 1.8-1
- update to 1.8
2006-03-03 12:28:38 +00:00
* Fri Mar 3 2006 Ivana Varekova <varekova@redhat.com> - 1.7-2
- fix multilib problem
2006-02-11 03:21:03 +00:00
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.7-1.2.1
- bump again for double-long bug on ppc(64)
2006-02-07 12:04:45 +00:00
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.7-1.2
- rebuilt for new gcc4.1 snapshot and glibc changes
2005-12-09 22:40:49 +00:00
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- rebuilt
2005-11-10 11:09:42 +00:00
* Thu Nov 10 2005 Ivana Varekova <varekova@redhat.com> 1.7-1
- update to 1.7
2005-03-07 10:02:55 +00:00
* 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
2005-01-06 12:20:18 +00:00
- 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