2007-02-20 15:01:07 +00:00
|
|
|
|
# From src/version.h:#define OCTAVE_API_VERSION
|
2007-11-07 21:47:48 +00:00
|
|
|
|
%define octave_api api-v28
|
2007-02-20 15:01:07 +00:00
|
|
|
|
|
2005-05-20 21:07:49 +00:00
|
|
|
|
Name: octave
|
2007-11-07 21:47:48 +00:00
|
|
|
|
Version: 2.9.16
|
|
|
|
|
Release: 1%{?dist}
|
2005-05-20 21:07:49 +00:00
|
|
|
|
Summary: A high-level language for numerical computations
|
|
|
|
|
Epoch: 6
|
|
|
|
|
|
|
|
|
|
Group: Applications/Engineering
|
2007-11-07 21:47:48 +00:00
|
|
|
|
License: GPLv3+
|
2005-05-20 21:07:49 +00:00
|
|
|
|
Source: ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-%{version}.tar.bz2
|
|
|
|
|
URL: http://www.octave.org
|
|
|
|
|
Requires: gnuplot less info texinfo
|
2005-10-27 13:45:53 +00:00
|
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
|
Requires(postun): /sbin/ldconfig
|
|
|
|
|
Requires(post): /sbin/ldconfig
|
|
|
|
|
Requires(preun): /sbin/install-info
|
2005-10-25 15:19:43 +00:00
|
|
|
|
BuildRequires: bison flex less tetex gcc-gfortran lapack-devel blas-devel
|
2007-09-18 16:20:31 +00:00
|
|
|
|
BuildRequires: ncurses-devel zlib-devel hdf5-devel texinfo qhull-devel
|
2006-08-15 06:58:06 +00:00
|
|
|
|
BuildRequires: readline-devel glibc-devel fftw-devel gperf ghostscript
|
2007-07-28 04:44:39 +00:00
|
|
|
|
BuildRequires: suitesparse-devel glpk-devel gnuplot desktop-file-utils
|
2007-02-20 15:01:07 +00:00
|
|
|
|
Provides: octave(api) = %{octave_api}
|
2005-05-20 21:07:49 +00:00
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2005-10-25 15:19:43 +00:00
|
|
|
|
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
GNU Octave is a high-level language, primarily intended for numerical
|
|
|
|
|
computations. It provides a convenient command line interface for
|
|
|
|
|
solving linear and nonlinear problems numerically, and for performing
|
|
|
|
|
other numerical experiments using a language that is mostly compatible
|
|
|
|
|
with Matlab. It may also be used as a batch-oriented language. Octave
|
|
|
|
|
has extensive tools for solving common numerical linear algebra
|
|
|
|
|
problems, finding the roots of nonlinear equations, integrating
|
|
|
|
|
ordinary functions, manipulating polynomials, and integrating ordinary
|
|
|
|
|
differential and differential-algebraic equations. It is easily
|
|
|
|
|
extensible and customizable via user-defined functions written in
|
|
|
|
|
Octave's own language, or using dynamically loaded modules written in
|
|
|
|
|
C++, C, Fortran, or other languages.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
2005-05-20 21:07:49 +00:00
|
|
|
|
Summary: Development headers and files for Octave
|
|
|
|
|
Group: Development/Libraries
|
2005-08-02 21:35:53 +00:00
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
2006-02-01 23:43:40 +00:00
|
|
|
|
Requires: readline-devel fftw-devel hdf5-devel zlib-devel
|
2006-06-30 21:49:08 +00:00
|
|
|
|
Requires: lapack-devel blas-devel gcc-c++ gcc-gfortran
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
The octave-devel package contains files needed for developing
|
|
|
|
|
applications which use GNU Octave.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
2007-02-20 15:01:07 +00:00
|
|
|
|
# Check that octave_api is set correctly
|
|
|
|
|
if ! grep -q '^#define OCTAVE_API_VERSION "%{octave_api}"' src/version.h
|
|
|
|
|
then
|
|
|
|
|
echo "octave_api variable in spec does not match src/version.h"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2006-03-23 22:50:59 +00:00
|
|
|
|
%define enable64 no
|
2007-07-28 05:18:09 +00:00
|
|
|
|
%configure --enable-shared --disable-static --enable-64=%enable64 --with-f77=gfortran
|
2006-03-23 22:50:59 +00:00
|
|
|
|
make %{?_smp_mflags} OCTAVE_RELEASE="Fedora Extras %{version}-%{release}"
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2005-12-01 14:45:02 +00:00
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2006-03-23 22:50:59 +00:00
|
|
|
|
rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
# Make library links
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
|
|
|
|
|
echo "%{_libdir}/octave-%{version}" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/octave-%{_arch}.conf
|
|
|
|
|
|
2006-03-23 22:50:59 +00:00
|
|
|
|
# Remove RPM_BUILD_ROOT from ls-R files
|
|
|
|
|
perl -pi -e "s,$RPM_BUILD_ROOT,," $RPM_BUILD_ROOT%{_libexecdir}/%{name}/ls-R
|
|
|
|
|
perl -pi -e "s,$RPM_BUILD_ROOT,," $RPM_BUILD_ROOT%{_datadir}/%{name}/ls-R
|
|
|
|
|
|
|
|
|
|
# Clean doc directory
|
|
|
|
|
pushd doc
|
|
|
|
|
make distclean
|
|
|
|
|
rm -f *.in */*.in */*.cc refcard/*.tex
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
# Create desktop file
|
|
|
|
|
rm $RPM_BUILD_ROOT%{_datadir}/applications/www.octave.org-octave.desktop
|
2007-09-10 16:06:58 +00:00
|
|
|
|
desktop-file-install --vendor fedora --add-category X-Fedora --remove-category Development \
|
2006-03-23 22:50:59 +00:00
|
|
|
|
--dir $RPM_BUILD_ROOT%{_datadir}/applications examples/octave.desktop
|
|
|
|
|
|
2007-07-28 05:18:09 +00:00
|
|
|
|
# Create directories for add-on packages
|
|
|
|
|
HOST_TYPE=`$RPM_BUILD_ROOT%{_bindir}/octave-config -p CANONICAL_HOST_TYPE`
|
2007-07-28 20:20:40 +00:00
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/%{name}/site/oct/%{octave_api}/$HOST_TYPE
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/%{name}/site/oct/$HOST_TYPE
|
2007-09-25 21:00:54 +00:00
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/packages
|
2007-09-25 22:10:22 +00:00
|
|
|
|
touch $RPM_BUILD_ROOT%{_datadir}/%{name}/octave_packages
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
/sbin/ldconfig
|
2006-06-30 21:49:08 +00:00
|
|
|
|
/sbin/install-info --info-dir=%{_infodir} --section="Programming" \
|
2006-12-23 17:21:50 +00:00
|
|
|
|
%{_infodir}/octave.info || :
|
2006-09-15 15:53:25 +00:00
|
|
|
|
|
2005-05-07 01:51:53 +00:00
|
|
|
|
%preun
|
|
|
|
|
if [ "$1" = "0" ]; then
|
2006-12-23 17:21:50 +00:00
|
|
|
|
/sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/octave.info || :
|
2005-05-07 01:51:53 +00:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
2005-06-09 13:27:35 +00:00
|
|
|
|
%doc COPYING NEWS* PROJECTS README README.Linux README.kpathsea ROADMAP
|
2006-03-23 22:50:59 +00:00
|
|
|
|
%doc SENDING-PATCHES THANKS emacs examples doc/interpreter/octave.p*
|
|
|
|
|
%doc doc/faq doc/interpreter/HTML doc/refcard
|
2006-06-30 21:49:08 +00:00
|
|
|
|
%{_bindir}/octave*
|
2005-10-25 15:19:43 +00:00
|
|
|
|
%config(noreplace) /etc/ld.so.conf.d/*
|
2005-05-07 01:51:53 +00:00
|
|
|
|
%{_libdir}/octave*
|
|
|
|
|
%{_datadir}/octave
|
2007-09-25 21:00:54 +00:00
|
|
|
|
%ghost %{_datadir}/octave/octave_packages
|
2006-02-24 07:23:11 +00:00
|
|
|
|
%{_libexecdir}/octave
|
2005-05-07 01:51:53 +00:00
|
|
|
|
%{_mandir}/man*/octave*
|
|
|
|
|
%{_infodir}/octave.info*
|
2006-03-23 22:50:59 +00:00
|
|
|
|
%{_datadir}/applications/*
|
2005-05-07 01:51:53 +00:00
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root)
|
2006-03-23 22:50:59 +00:00
|
|
|
|
%doc doc/liboctave
|
2005-05-07 01:51:53 +00:00
|
|
|
|
%{_bindir}/mkoctfile*
|
2006-06-30 21:49:08 +00:00
|
|
|
|
%{_includedir}/octave-%{version}
|
2005-05-07 01:51:53 +00:00
|
|
|
|
%{_mandir}/man*/mkoctfile*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2007-11-07 21:47:48 +00:00
|
|
|
|
* Mon Nov 5 2007 Quentin Spencer <qspencer@users.sf.net> 2.9.16-1
|
|
|
|
|
- Update to 2.9.16, remove old patch.
|
|
|
|
|
- Update licencse from GPLv2+ to GPLv3+.
|
|
|
|
|
- Detection of glpk no longer needs special CPPFLAGS.
|
|
|
|
|
|
2007-10-16 19:46:53 +00:00
|
|
|
|
* Tue Oct 16 2007 Orion Poplawski <orion@ora.nwra.com> 2.9.15-2
|
|
|
|
|
- Updated pkg.m patch
|
|
|
|
|
|
2007-10-15 21:36:46 +00:00
|
|
|
|
* Mon Oct 15 2007 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.15-1
|
|
|
|
|
- New release. Remove old patch.
|
|
|
|
|
|
2007-09-25 21:00:54 +00:00
|
|
|
|
* Tue Sep 25 2007 Orion Poplawski <orion@ora.nwra.com> 2.9.14-2
|
|
|
|
|
- Add /usr/share/octave/packages for add on packages and %%ghost
|
2007-09-25 22:10:22 +00:00
|
|
|
|
/usr/share/octave/octave_packages
|
2007-09-25 21:00:54 +00:00
|
|
|
|
- Add patch for octave package manager that will be going upstream
|
|
|
|
|
|
2007-09-18 16:20:31 +00:00
|
|
|
|
* Tue Sep 18 2007 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.14-1
|
|
|
|
|
- New release.
|
2007-09-10 16:06:58 +00:00
|
|
|
|
- Remove redundant menu category in desktop file (bug 274431).
|
2007-09-18 16:20:31 +00:00
|
|
|
|
- Update license tag.
|
|
|
|
|
- Add qhull-devel as new build dependency.
|
2007-09-10 16:06:58 +00:00
|
|
|
|
|
2007-07-26 04:59:42 +00:00
|
|
|
|
* Thu Jul 26 2007 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.13-1
|
|
|
|
|
- New release.
|
2007-07-28 04:44:39 +00:00
|
|
|
|
- Changed ufsparse-devel dependency to suitesparse-devel.
|
2007-07-28 05:18:09 +00:00
|
|
|
|
- Add configure flag to close bug 245562.
|
|
|
|
|
- Add directories for add-on packages (bug 234012).
|
2007-07-28 20:30:27 +00:00
|
|
|
|
- Since texinfo is now separate from tetex, it is a build requirement.
|
2007-07-26 04:59:42 +00:00
|
|
|
|
|
2007-05-23 16:23:12 +00:00
|
|
|
|
* Wed May 23 2007 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.12-1
|
|
|
|
|
- New release.
|
|
|
|
|
|
2007-02-20 15:01:07 +00:00
|
|
|
|
* Tue Feb 20 2007 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.9-2
|
|
|
|
|
- Fix install-info bug (Bug 219404).
|
|
|
|
|
- Add dependency on octave API so that breakages will be detected. (Bug 224050).
|
|
|
|
|
- Remove libtermcap-devel as build dependency (Bug 226768).
|
2006-12-23 17:21:50 +00:00
|
|
|
|
|
2006-10-03 18:32:54 +00:00
|
|
|
|
* Mon Oct 3 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.9-1
|
|
|
|
|
- New release. Remove old patch.
|
|
|
|
|
|
2006-09-15 15:53:25 +00:00
|
|
|
|
* Fri Sep 15 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.8-2
|
|
|
|
|
- Fix this bug:
|
|
|
|
|
https://www.cae.wisc.edu/pipermail/bug-octave/2006-September/000687.html
|
|
|
|
|
|
2006-08-25 14:53:00 +00:00
|
|
|
|
* Fri Aug 25 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.8-1
|
2006-08-25 16:15:24 +00:00
|
|
|
|
- New release. Remove old patch. This fixes bug #203676.
|
2006-08-25 14:53:00 +00:00
|
|
|
|
|
2006-08-15 06:58:06 +00:00
|
|
|
|
* Tue Aug 15 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.7-3
|
|
|
|
|
- Add ghostscript as a build dependency.
|
|
|
|
|
|
2006-08-15 04:28:58 +00:00
|
|
|
|
* Tue Aug 15 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.7-2
|
2006-08-15 06:58:06 +00:00
|
|
|
|
- Update patch to fix several small bugs, including #201087.
|
2006-08-15 04:28:58 +00:00
|
|
|
|
|
2006-07-28 21:20:29 +00:00
|
|
|
|
* Fri Jul 28 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.7-1
|
|
|
|
|
- New release. Remove old patches and add one new one.
|
|
|
|
|
|
2006-07-11 16:46:16 +00:00
|
|
|
|
* Tue Jul 11 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.6-2
|
|
|
|
|
- Patch for some erroneous warnings and a file path bug.
|
|
|
|
|
|
2006-07-10 18:47:27 +00:00
|
|
|
|
* Mon Jul 10 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.6-1
|
2006-06-30 21:49:08 +00:00
|
|
|
|
- New release. Remove old patches.
|
|
|
|
|
- Disable 64-bit extensions (some libraries don't support 64-bit indexing yet).
|
|
|
|
|
- Add gcc-gfortran to -devel dependencies (mkoctfile fails without it).
|
|
|
|
|
- Move octave-bug and octave-config from devel to main package.
|
|
|
|
|
- Fix categorization of info files (bug 196760).
|
|
|
|
|
|
2006-05-03 14:16:04 +00:00
|
|
|
|
* Wed Apr 27 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.5-6
|
|
|
|
|
- Add patch for bug #190481
|
|
|
|
|
- Manual stripping of .oct files is no longer necessary.
|
|
|
|
|
|
2006-04-19 16:51:35 +00:00
|
|
|
|
* Wed Apr 19 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.5-5
|
|
|
|
|
- Add new patch to configure script (breaks octave-forge without it).
|
|
|
|
|
|
2006-03-24 21:19:19 +00:00
|
|
|
|
* Fri Mar 24 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.5-4
|
|
|
|
|
- Change patch again (suggested by the author on Octave mailing list).
|
|
|
|
|
|
2006-03-24 17:04:57 +00:00
|
|
|
|
* Fri Mar 24 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.5-3
|
|
|
|
|
- Fix broken patch.
|
|
|
|
|
|
2006-03-24 14:25:50 +00:00
|
|
|
|
* Fri Mar 24 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.5-2
|
|
|
|
|
- Add more changes to sparse patch.
|
|
|
|
|
|
2006-03-23 22:50:59 +00:00
|
|
|
|
* Thu Mar 23 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.5-1
|
|
|
|
|
- New upstream release; remove old patches; add sparse patch.
|
|
|
|
|
- Add gcc-c++ as dependency for devel package.
|
|
|
|
|
- Add more docs; cleanup extra files in docs.
|
|
|
|
|
- Simplify configure command.
|
|
|
|
|
- Install desktop file.
|
|
|
|
|
|
2006-02-24 07:23:11 +00:00
|
|
|
|
* Fri Feb 24 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-8
|
2006-03-16 18:36:26 +00:00
|
|
|
|
- Rebuild for new hdf5.
|
|
|
|
|
- Remove obsolete configure options.
|
2006-02-24 07:23:11 +00:00
|
|
|
|
- Make sure /usr/libexec/octave is owned by octave.
|
|
|
|
|
|
2006-02-15 20:37:32 +00:00
|
|
|
|
* Wed Feb 15 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-7
|
|
|
|
|
- Rebuild for Fedora Extras 5.
|
|
|
|
|
|
2006-02-01 23:43:40 +00:00
|
|
|
|
* Wed Feb 1 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-6
|
|
|
|
|
- Change dependency from fftw3 to fftw.
|
|
|
|
|
|
2006-01-26 22:49:15 +00:00
|
|
|
|
* Thu Jan 26 2006 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-5
|
|
|
|
|
- Rebuild for new release of hdf5.
|
|
|
|
|
|
2005-12-19 22:23:04 +00:00
|
|
|
|
* Mon Dec 19 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-4
|
|
|
|
|
- Rebuild for gcc 4.1.
|
|
|
|
|
|
2005-12-01 14:57:44 +00:00
|
|
|
|
* Thu Dec 1 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-3
|
|
|
|
|
- Make sure patch applies correctly before building!
|
|
|
|
|
|
2005-12-01 14:45:02 +00:00
|
|
|
|
* Thu Dec 1 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-2
|
|
|
|
|
- Patch to enable compilation on x86_64.
|
|
|
|
|
|
2005-11-12 06:02:28 +00:00
|
|
|
|
* Fri Nov 11 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.4-1
|
|
|
|
|
- New upstream release.
|
|
|
|
|
- Patch to make sure all headers are included in -devel.
|
|
|
|
|
- PKG_ADD file now needs $RPM_BUILD_ROOT stripped from it.
|
2005-10-27 13:45:53 +00:00
|
|
|
|
- Cleanup errors in dependencies.
|
|
|
|
|
|
2005-10-25 15:21:07 +00:00
|
|
|
|
* Tue Oct 25 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-6
|
2005-10-25 15:19:43 +00:00
|
|
|
|
- Add lapack-devel and blas-devel dependencies to devel package.
|
|
|
|
|
|
2005-10-03 15:25:41 +00:00
|
|
|
|
* Mon Oct 03 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-5
|
|
|
|
|
- Change umfpack-devel dependency to the new ufsparse-devel package.
|
|
|
|
|
|
2005-09-22 17:02:09 +00:00
|
|
|
|
* Thu Sep 22 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-5
|
|
|
|
|
- Change lapack and blas dependencies to lapack-devel and blas-devel
|
|
|
|
|
|
2005-08-08 13:50:15 +00:00
|
|
|
|
* Mon Aug 08 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-4
|
|
|
|
|
- Cleanup: remove redefinition of __libtoolize, ExcludeArch of two platforms,
|
|
|
|
|
old s390 workarounds, and LC_ALL setting. None of these appear to be
|
|
|
|
|
necessary any longer, even if the platforms were supported.
|
|
|
|
|
- Add --enable-64 to configure to enable 64-bit array indexing on x86_64.
|
2005-08-09 15:23:22 +00:00
|
|
|
|
- Add support for GLPK (new build dependency and CPPFLAGS for configure).
|
2005-08-08 13:50:15 +00:00
|
|
|
|
|
2005-08-03 15:28:45 +00:00
|
|
|
|
* Wed Jul 27 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-3
|
|
|
|
|
- Add fftw3-devel to dependencies for devel
|
|
|
|
|
|
2005-08-02 21:35:53 +00:00
|
|
|
|
* Tue Jul 26 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-2
|
|
|
|
|
- Add dependencies (hdf5-devel and zlib-devel) for devel
|
|
|
|
|
|
2005-08-02 18:40:09 +00:00
|
|
|
|
* Tue Jul 26 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.9.3-1
|
|
|
|
|
- Move to new 2.9.x development tree.
|
|
|
|
|
- Add umfpack-devel as new build dependency.
|
2005-07-06 14:46:17 +00:00
|
|
|
|
|
2005-07-05 22:09:22 +00:00
|
|
|
|
* Tue Jul 05 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-12
|
|
|
|
|
- Require hdf5-devel for build.
|
|
|
|
|
|
2005-06-22 13:09:06 +00:00
|
|
|
|
* Wed Jun 22 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-11
|
|
|
|
|
- Force octave-devel to require readline-devel.
|
2005-06-22 20:24:50 +00:00
|
|
|
|
- Add _libdir to configure command (fixes broken mkoctfile on x86_64).
|
2005-06-22 13:09:06 +00:00
|
|
|
|
|
2005-06-21 15:06:15 +00:00
|
|
|
|
* Tue Jun 21 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-10
|
|
|
|
|
- Add epoch to BuildRequires in octave-devel.
|
|
|
|
|
|
2005-06-20 13:28:26 +00:00
|
|
|
|
* Mon Jun 20 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-9
|
|
|
|
|
- Rebuild.
|
|
|
|
|
|
2005-06-18 20:03:08 +00:00
|
|
|
|
* Sat Jun 18 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-8
|
|
|
|
|
- Force octave-devel to require octave.
|
|
|
|
|
|
2005-06-09 13:27:35 +00:00
|
|
|
|
* Wed Jun 8 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-7
|
|
|
|
|
- Fix configure command again. The prefix isn't used for the install step
|
|
|
|
|
but it is used to calculate internal variables in octave.
|
|
|
|
|
|
|
|
|
|
* Thu Jun 2 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 2.1.71-6
|
|
|
|
|
- disable explicit gcc-c++/libstdc++-devel BR and bump for another
|
|
|
|
|
rebuild attempt
|
|
|
|
|
|
|
|
|
|
* Wed Jun 1 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-4
|
|
|
|
|
- Fix configure command. Remove irrelevant files from docs.
|
|
|
|
|
|
2005-05-27 15:32:26 +00:00
|
|
|
|
* Fri May 27 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-3
|
|
|
|
|
- Added patch for http://www.octave.org/mailing-lists/bug-octave/2005/617
|
|
|
|
|
|
2005-05-26 17:23:44 +00:00
|
|
|
|
* Thu May 26 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-2
|
|
|
|
|
- Added dist tag.
|
|
|
|
|
|
|
|
|
|
* Fri May 20 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.71-1
|
2005-05-20 21:07:49 +00:00
|
|
|
|
- Imported 2.1.71 from upstream, removed 2.1.70 patches (in upstream).
|
|
|
|
|
- Begin cleanup of spec file, including the big configure command
|
|
|
|
|
(some options are obsolete, others appear unneeded if rpm configure
|
|
|
|
|
macro is used).
|
|
|
|
|
|
|
|
|
|
* Mon May 3 2005 Quentin Spencer <qspencer@users.sourceforge.net> 2.1.70-1
|
2005-05-07 01:51:53 +00:00
|
|
|
|
- Imported 2.1.70 from upstream, removed old patches (resolved in new version)
|
|
|
|
|
- Changed g77 dependency to gfortran.
|
|
|
|
|
- Added fftw3 to BuildRequires.
|
|
|
|
|
- Added patches (from maintainer) to fix build problems.
|
|
|
|
|
|
|
|
|
|
* Wed Feb 23 2005 Ivana Varekova <varekova@redhat.com> 2.1.57-13
|
|
|
|
|
- fix typo in spec 149420
|
|
|
|
|
|
|
|
|
|
* Mon Feb 21 2005 Ivana Varekova <varekova@redhat.com> 2.1.57-12
|
|
|
|
|
- Fix problem with symlinks using ldconfig (bug 147922)
|
|
|
|
|
|
|
|
|
|
* Wed Feb 16 2005 Ivana Varekova <varekova@redhat.com> 2.1.57-11
|
|
|
|
|
- add $RPM_OPT_FLAGS
|
|
|
|
|
|
|
|
|
|
* Tue Feb 15 2005 Ivana Varekova <varekova@redhat.com> 2.1.57-10
|
|
|
|
|
- Fix bug 142477 - problem with signbit definition (Patch2)
|
|
|
|
|
|
|
|
|
|
* Wed Jan 19 2005 Ivana Varekova <varekova@redhat.com> 2.1.57-9
|
|
|
|
|
- Fix bug #142440 - change octave.spec: autoconf is BuildPrereq
|
|
|
|
|
- Fix bug #142631 - change octave.spec: mkoctfile.1.gz is part of octave-devel not octave
|
|
|
|
|
|
|
|
|
|
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 2.1.57-8
|
|
|
|
|
- Rebuilt for new readline.
|
|
|
|
|
|
|
|
|
|
* Mon Oct 18 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-7
|
|
|
|
|
- Don't forget default attributes for -devel package
|
|
|
|
|
|
|
|
|
|
* Mon Oct 18 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-6
|
|
|
|
|
- Remove old lib/lib64 badness.
|
|
|
|
|
|
|
|
|
|
* Wed Oct 13 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-5
|
|
|
|
|
- Split into octave and octave-devel
|
|
|
|
|
|
|
|
|
|
* Thu Jun 24 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-4
|
|
|
|
|
- Remove RPM_BUILD_ROOT from preun section (#119112)
|
|
|
|
|
|
|
|
|
|
* Thu Jun 24 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-3
|
|
|
|
|
- Er, typo in patch (thanks Nils)
|
|
|
|
|
|
|
|
|
|
* Thu Jun 24 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-2
|
|
|
|
|
- Fix for #113852 - signbit broken
|
|
|
|
|
|
|
|
|
|
* Wed Jun 15 2004 Lon Hohberger <lhh@redhat.com> 2.1.57-1
|
|
|
|
|
- Import 2.1.57 from upstream; this fixes #126074
|
|
|
|
|
|
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Tue Mar 30 2004 Karsten Hopp <karsten@redhat.de> 2.1.50-9
|
|
|
|
|
- remove builddir references from file list (#119112)
|
|
|
|
|
|
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Fri Sep 26 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-7
|
|
|
|
|
- Add requirement for texinfo. #101299, round 3!
|
|
|
|
|
|
|
|
|
|
* Tue Sep 09 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-6
|
|
|
|
|
- Disable s390x again
|
|
|
|
|
|
|
|
|
|
* Tue Sep 09 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-5
|
|
|
|
|
- Disable ppc64
|
|
|
|
|
|
|
|
|
|
* Tue Sep 09 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-4
|
|
|
|
|
- Rebuild for Taroon
|
|
|
|
|
|
|
|
|
|
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-3
|
|
|
|
|
- Fix for Bugzilla #101299, round 2. Include a patch to
|
|
|
|
|
quell sterr from info; it gives us funny messages if $HOME/.info
|
|
|
|
|
does not exist.
|
|
|
|
|
|
|
|
|
|
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-2
|
|
|
|
|
- Fix for Bugzilla #101299
|
|
|
|
|
|
|
|
|
|
* Mon Jun 30 2003 Lon Hohberger <lhh@redhat.com> 2.1.50-1
|
|
|
|
|
- Import 2.1.50 from upstream
|
|
|
|
|
- Fix for Bugzilla #100682; try ppc64 again
|
|
|
|
|
|
|
|
|
|
* Mon Jun 30 2003 Lon Hohberger <lhh@redhat.com> 2.1.49-6
|
|
|
|
|
- Rebuild; disabling ppc64
|
|
|
|
|
|
|
|
|
|
* Mon Jun 30 2003 Lon Hohberger <lhh@redhat.com> 2.1.49-4
|
|
|
|
|
- Added link generation to /usr/lib so that munging
|
|
|
|
|
/etc/ld.so.conf isn't required to get octave to work.
|
|
|
|
|
(#98226)
|
|
|
|
|
|
|
|
|
|
* Thu Jun 05 2003 Lon Hohberger <lhh@redhat.com> 2.1.49-2
|
|
|
|
|
- Import from upstream; rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Wed Apr 16 2003 Lon Hohberger <lhh@redhat.com> 2.1.46-2
|
|
|
|
|
- Rebuilt
|
|
|
|
|
|
|
|
|
|
* Tue Apr 15 2003 Lon Hohberger <lhh@redhat.com> 2.1.46-1
|
|
|
|
|
- Import from upstream: 2.1.46. Disabled s390x.
|
|
|
|
|
|
|
|
|
|
* Mon Mar 10 2003 Lon Hohberger <lhh@redhat.com> 2.1.40-5
|
|
|
|
|
- Enabled s390[x]
|
|
|
|
|
|
|
|
|
|
* Fri Feb 7 2003 Lon Hohberger <lhh@redhat.com> 2.1.40-4
|
|
|
|
|
- Disabled s390 and s390x builds for now.
|
|
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Thu Jan 2 2003 Lon Hohberger <lhh@redhat.com> 2.1.40-2
|
|
|
|
|
- Fixed readline-devel build-rereq line. (#80673)
|
|
|
|
|
|
|
|
|
|
* Sun Nov 24 2002 Jeff Johnson <jbj@redhat.com> 2.1.40-1
|
|
|
|
|
- update to 2.1.40, fix matrix plotting (#77906).
|
|
|
|
|
|
|
|
|
|
* Mon Nov 11 2002 Jeff Johnson <jbj@redhat.com> 2.1.39-2
|
|
|
|
|
- build on x86_64.
|
|
|
|
|
|
|
|
|
|
* Sun Nov 10 2002 Jeff Johnson <jbj@redhat.com> 2.1.39-1
|
|
|
|
|
- update to 2.1.39.
|
|
|
|
|
|
|
|
|
|
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt with gcc-3.2 (we hope)
|
|
|
|
|
|
|
|
|
|
* Mon Aug 5 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.36-7
|
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 23 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.36-6
|
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jul 11 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- Rebuild with new readline
|
|
|
|
|
|
|
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jun 14 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.36-3
|
|
|
|
|
- Get rid of 0 size doc files (#66116)
|
|
|
|
|
|
|
|
|
|
* Thu May 23 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.36-2
|
|
|
|
|
- Rebuild
|
|
|
|
|
- Patch C++ code gcc changed its opinion of the last 3 weeks
|
|
|
|
|
|
|
|
|
|
* Wed May 1 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.36-1
|
|
|
|
|
- 2.1.36
|
|
|
|
|
- Disable patch
|
|
|
|
|
|
|
|
|
|
* Wed Feb 27 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.35-4
|
|
|
|
|
- Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Nov 27 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.35-2
|
|
|
|
|
- Add patch for kpathsea to avoid segfaults
|
|
|
|
|
|
|
|
|
|
* Tue Nov 6 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com> 2.1.35-1
|
|
|
|
|
- 2.1.35
|
|
|
|
|
- s/Copyright/License/
|
|
|
|
|
|
|
|
|
|
* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
|
|
|
|
|
- rebuild with new gcc and binutils
|
|
|
|
|
|
|
|
|
|
* Wed Jun 20 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- Add more dependencies in BuildPrereq (#45184)
|
|
|
|
|
|
|
|
|
|
* Fri Jun 08 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- No longer exclude ia64
|
|
|
|
|
|
|
|
|
|
* Mon Apr 23 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 2.1.34
|
|
|
|
|
|
|
|
|
|
* Tue Mar 27 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- set LC_ALL to POSIX before building, otherwise the generated paths.h is bad
|
|
|
|
|
|
|
|
|
|
* Wed Jan 10 2001 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 2.1.33
|
|
|
|
|
|
|
|
|
|
* Mon Jan 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
|
- do not require compat-egcs-c++, but gcc-c++
|
|
|
|
|
- add some libtoolize calls to add newest versions
|
|
|
|
|
|
|
|
|
|
* Fri Dec 15 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 2.1.32, no longer use CVS as our needed fixes are in now
|
|
|
|
|
- add Prereq for info
|
|
|
|
|
|
|
|
|
|
* Thu Dec 07 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- use a development version, as they have now been fixed
|
|
|
|
|
to compile with the our current toolchain.
|
|
|
|
|
|
|
|
|
|
* Thu Aug 24 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 2.0.16, with compat C++ compiler and new C and f77 compilers
|
|
|
|
|
The C++ code is too broken for our new toolchain (C++ reserved
|
|
|
|
|
words used as enums and function names, arcane macros), but
|
|
|
|
|
plotting works here and not in the beta (#16759)
|
|
|
|
|
- add epoch to upgrade the betas
|
|
|
|
|
|
|
|
|
|
* Tue Jul 25 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
- make sure #line commands are not output within macro arguments
|
|
|
|
|
|
|
|
|
|
* Wed Jul 19 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 2.1.31
|
|
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jul 06 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- no longer disable optimizations, sparc excepted
|
|
|
|
|
|
|
|
|
|
* Tue Jul 4 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
|
- Rebuild with new C++
|
|
|
|
|
|
|
|
|
|
* Mon Jul 3 2000 Matt Wilson <msw@redhat.com>
|
|
|
|
|
- added missing %% before {_infodir} in the %%post
|
|
|
|
|
|
|
|
|
|
* Sat Jun 09 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 2.1.30 - the old version contains invalid C++ code
|
|
|
|
|
accepted by older compilers.
|
|
|
|
|
|
|
|
|
|
* Sat Jun 09 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- disable optimization for C++ code
|
|
|
|
|
|
|
|
|
|
* Fri Jun 08 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- add "Excludearch: " for Alpha - it triggers compiler bugs
|
|
|
|
|
|
|
|
|
|
* Fri Jun 08 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- use %%configure, %%makeinstall, %{_infodir}. %{_mandir}
|
|
|
|
|
- remove prefix
|
|
|
|
|
|
|
|
|
|
* Tue May 09 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- upgraded to 2.0.16
|
|
|
|
|
- removed "--enable-g77" from the configure flags - let autoconf find it
|
|
|
|
|
|
|
|
|
|
* Thu Jan 20 2000 Tim Powers <timp@redhat.com>
|
|
|
|
|
- bzipped source to conserve space.
|
|
|
|
|
|
|
|
|
|
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
|
- update to 2.0.15.
|
|
|
|
|
|
|
|
|
|
* Tue Jul 20 1999 Tim Powers <timp@redhat.com>
|
|
|
|
|
- rebuit for 6.1
|
|
|
|
|
|
|
|
|
|
* Wed Apr 28 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
|
- update to 2.0.14.
|
|
|
|
|
|
|
|
|
|
* Fri Oct 23 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
|
|
- update to 2.0.13.90
|
|
|
|
|
|
|
|
|
|
* Thu Jul 9 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
|
|
- repackage in powertools.
|
|
|
|
|
|
|
|
|
|
* Thu Jun 11 1998 Andrew Veliath <andrewtv@usa.net>
|
|
|
|
|
- Add %attr, build as user.
|
|
|
|
|
|
|
|
|
|
* Mon Jun 1 1998 Andrew Veliath <andrewtv@usa.net>
|
|
|
|
|
- Add BuildRoot, installinfo, require gnuplot, description from
|
|
|
|
|
Octave's web page, update to Octave 2.0.13.
|
|
|
|
|
- Adapt from existing spec file.
|
|
|
|
|
|
|
|
|
|
* Tue Dec 2 1997 Otto Hammersmith <otto@redhat.com>
|
|
|
|
|
- removed libreadline stuff from the file list
|
|
|
|
|
|
|
|
|
|
* Mon Nov 24 1997 Otto Hammersmith <otto@redhat.com>
|
|
|
|
|
- changed configure command to put things in $RPM_ARCH-rehat-linux,
|
|
|
|
|
rather than genereated one... was causing problems between building
|
|
|
|
|
on i686 build machine.
|
|
|
|
|
|
|
|
|
|
* Mon Nov 17 1997 Otto Hammersmith <otto@redhat.com>
|
|
|
|
|
- moved buildroot from /tmp to /var/tmp
|
|
|
|
|
|
|
|
|
|
* Mon Sep 22 1997 Mike Wangsmo <wanger@redhat.com>
|
|
|
|
|
- Upgraded to version 2.0.9 and built for glibc system
|
|
|
|
|
|
|
|
|
|
* Thu May 01 1997 Michael Fulbright <msf@redhat.com>
|
|
|
|
|
- Updated to version 2.0.5 and changed to build using a BuildRoot
|