2019-09-17 13:43:38 +00:00
|
|
|
%global commit 287007567ba3998b4b70119025c3def86bdef649
|
2018-07-24 04:07:02 +00:00
|
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
2018-07-24 03:57:48 +00:00
|
|
|
|
2005-09-22 16:49:35 +00:00
|
|
|
Name: gdl
|
2018-12-01 16:45:49 +00:00
|
|
|
Version: 0.9.9
|
2019-09-17 13:43:38 +00:00
|
|
|
Release: 11.20190915git%{shortcommit}%{?dist}
|
2005-09-22 16:49:35 +00:00
|
|
|
Summary: GNU Data Language
|
|
|
|
|
2007-08-21 20:47:03 +00:00
|
|
|
License: GPLv2+
|
2005-09-22 16:49:35 +00:00
|
|
|
URL: http://gnudatalanguage.sourceforge.net/
|
2019-09-17 13:43:38 +00:00
|
|
|
#Source0: https://github.com/gnudatalanguage/gdl/archive/v%{version}/gdl-%{version}.tar.gz
|
|
|
|
Source0: https://github.com/gnudatalanguage/gdl/archive/%{commit}/gdl-%{version}-git-%{shortcommit}.tar.gz
|
2007-01-09 21:17:08 +00:00
|
|
|
Source1: gdl.csh
|
|
|
|
Source2: gdl.sh
|
2018-05-21 03:19:04 +00:00
|
|
|
Source4: xorg.conf
|
2009-03-12 14:55:31 +00:00
|
|
|
# Build with system antlr library. Request for upstream change here:
|
|
|
|
# https://sourceforge.net/tracker/index.php?func=detail&aid=2685215&group_id=97659&atid=618686
|
2017-01-06 18:07:52 +00:00
|
|
|
Patch1: gdl-antlr.patch
|
2019-02-13 21:04:38 +00:00
|
|
|
# Support python3
|
2018-09-21 03:59:17 +00:00
|
|
|
# https://github.com/gnudatalanguage/gdl/pull/468
|
|
|
|
Patch2: gdl-python3.patch
|
2019-02-13 21:04:38 +00:00
|
|
|
# Fix conflict with std::vector and ALTIVEC vector
|
|
|
|
# https://github.com/gnudatalanguage/gdl/pull/535
|
|
|
|
Patch4: gdl-std.patch
|
2005-09-22 16:49:35 +00:00
|
|
|
|
2012-12-28 19:31:42 +00:00
|
|
|
#RHEL5 doesn't have the needed antlr version/headers, has old plplot
|
2014-09-02 20:49:25 +00:00
|
|
|
%if 0%{?rhel} == 5
|
|
|
|
%global plplot_config --enable-oldplplot
|
|
|
|
%else
|
|
|
|
%global plplot_config %{nil}
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 7
|
2018-07-09 17:06:44 +00:00
|
|
|
BuildRequires: gcc-c++
|
2010-06-03 15:10:46 +00:00
|
|
|
BuildRequires: antlr-C++
|
2012-03-21 18:31:08 +00:00
|
|
|
BuildRequires: antlr-tool
|
2017-06-26 14:55:22 +00:00
|
|
|
BuildRequires: java-devel
|
2014-09-02 20:49:25 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{?rhel} == 6
|
2009-02-24 17:12:06 +00:00
|
|
|
BuildRequires: antlr
|
2012-12-28 19:31:42 +00:00
|
|
|
BuildRequires: java
|
2009-10-15 18:00:52 +00:00
|
|
|
%endif
|
2005-09-22 16:49:35 +00:00
|
|
|
BuildRequires: readline-devel, ncurses-devel
|
2013-05-20 15:48:11 +00:00
|
|
|
BuildRequires: gsl-devel, plplot-devel, GraphicsMagick-c++-devel
|
2013-03-20 23:04:39 +00:00
|
|
|
BuildRequires: netcdf-devel, hdf5-devel, libjpeg-devel
|
2018-09-21 03:59:17 +00:00
|
|
|
%if 0%{?fedora} >= 29
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel, python%{python3_pkgversion}-numpy, python%{python3_pkgversion}-matplotlib
|
|
|
|
%else
|
2018-03-01 02:07:56 +00:00
|
|
|
BuildRequires: python2-devel, python2-numpy, python2-matplotlib
|
2018-09-21 03:59:17 +00:00
|
|
|
%endif
|
2019-09-17 13:43:38 +00:00
|
|
|
BuildRequires: shapelib-devel
|
2010-03-22 21:44:15 +00:00
|
|
|
BuildRequires: fftw-devel, hdf-static
|
2018-07-24 03:57:48 +00:00
|
|
|
%if 0%{?fedora}
|
2019-02-13 21:04:38 +00:00
|
|
|
# eccodes not available on these arches
|
|
|
|
%ifnarch i686 ppc64 s390x armv7hl
|
2018-07-24 03:57:48 +00:00
|
|
|
BuildRequires: eccodes-devel
|
2018-10-31 23:18:10 +00:00
|
|
|
%else
|
2013-08-23 20:04:04 +00:00
|
|
|
BuildRequires: grib_api-devel
|
2018-10-31 23:18:10 +00:00
|
|
|
%endif
|
2013-08-23 20:04:04 +00:00
|
|
|
%else
|
2019-02-13 21:04:38 +00:00
|
|
|
# eccodes not available on these arches
|
|
|
|
%ifnarch i686 ppc64 s390x armv7hl aarch64
|
|
|
|
BuildRequires: eccodes-devel
|
2013-08-23 20:04:04 +00:00
|
|
|
%else
|
2010-02-15 20:42:51 +00:00
|
|
|
BuildRequires: grib_api-static
|
2012-12-28 19:31:42 +00:00
|
|
|
%endif
|
2013-08-23 20:04:04 +00:00
|
|
|
%endif
|
2014-03-11 22:36:35 +00:00
|
|
|
BuildRequires: eigen3-static
|
2018-07-24 03:57:48 +00:00
|
|
|
BuildRequires: libgeotiff-devel
|
|
|
|
BuildRequires: libtiff-devel
|
2018-05-21 03:19:04 +00:00
|
|
|
BuildRequires: libtirpc-devel
|
2010-02-15 20:42:51 +00:00
|
|
|
#TODO - Build with mpi support
|
|
|
|
#BuildRequires: mpich2-devel
|
2012-01-07 16:29:48 +00:00
|
|
|
BuildRequires: pslib-devel
|
2017-02-01 18:14:40 +00:00
|
|
|
# qhull too old on Fedora 24 and EPEL7
|
2018-07-24 03:57:48 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
2017-01-06 18:07:52 +00:00
|
|
|
BuildRequires: qhull-devel
|
|
|
|
%global cmake_qhull -DQHULL=ON
|
|
|
|
%endif
|
2010-02-15 20:42:51 +00:00
|
|
|
BuildRequires: udunits2-devel
|
2018-07-07 04:41:30 +00:00
|
|
|
BuildRequires: wxGTK3-devel
|
2019-02-13 21:04:38 +00:00
|
|
|
BuildRequires: cmake3
|
2016-01-13 00:02:18 +00:00
|
|
|
# For tests
|
2018-05-21 03:19:04 +00:00
|
|
|
BuildRequires: xorg-x11-drv-dummy
|
2016-01-13 00:02:18 +00:00
|
|
|
BuildRequires: metacity
|
2008-09-06 03:40:03 +00:00
|
|
|
# Needed to pull in drivers
|
|
|
|
Requires: plplot
|
2009-02-26 16:42:46 +00:00
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
|
|
|
Provides: %{name}-runtime = %{version}-%{release}
|
2011-11-17 15:48:27 +00:00
|
|
|
# Need to match hdf5 compile time version
|
|
|
|
Requires: hdf5 = %{_hdf5_version}
|
2008-09-06 03:40:03 +00:00
|
|
|
|
2005-09-22 16:49:35 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A free IDL (Interactive Data Language) compatible incremental compiler
|
2010-08-30 17:58:33 +00:00
|
|
|
(i.e. runs IDL programs). IDL is a registered trademark of Research
|
2005-09-22 16:49:35 +00:00
|
|
|
Systems Inc.
|
|
|
|
|
|
|
|
|
2009-02-26 16:42:46 +00:00
|
|
|
%package common
|
|
|
|
Summary: Common files for GDL
|
|
|
|
Requires: %{name}-runtime = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description common
|
|
|
|
Common files for GDL
|
|
|
|
|
|
|
|
|
2018-09-21 03:59:17 +00:00
|
|
|
%if 0%{?fedora} >= 29
|
|
|
|
%package -n python%{python3_pkgversion}-gdl
|
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-gdl}
|
|
|
|
# Remove before F30
|
|
|
|
Provides: %{name}-python = %{version}-%{release}
|
|
|
|
Provides: %{name}-python%{?_isa} = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-python < %{version}-%{release}
|
|
|
|
Summary: GDL python module
|
|
|
|
# Needed to pull in drivers
|
|
|
|
Requires: plplot
|
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
|
|
|
Provides: %{name}-runtime = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-gdl
|
|
|
|
%{summary}.
|
|
|
|
%else
|
2017-08-19 13:38:20 +00:00
|
|
|
%package -n python2-gdl
|
|
|
|
%{?python_provide:%python_provide python2-gdl}
|
|
|
|
# Remove before F30
|
2017-08-20 14:32:33 +00:00
|
|
|
Provides: %{name}-python = %{version}-%{release}
|
2017-08-19 13:38:20 +00:00
|
|
|
Provides: %{name}-python%{?_isa} = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-python < %{version}-%{release}
|
2010-02-15 20:42:51 +00:00
|
|
|
Summary: GDL python module
|
|
|
|
# Needed to pull in drivers
|
|
|
|
Requires: plplot
|
|
|
|
Requires: %{name}-common = %{version}-%{release}
|
|
|
|
Provides: %{name}-runtime = %{version}-%{release}
|
|
|
|
|
2017-08-19 13:38:20 +00:00
|
|
|
%description -n python2-gdl
|
2010-02-15 20:42:51 +00:00
|
|
|
%{summary}.
|
2018-09-21 03:59:17 +00:00
|
|
|
%endif
|
2010-02-15 20:42:51 +00:00
|
|
|
|
|
|
|
|
2005-09-22 16:49:35 +00:00
|
|
|
%prep
|
2019-09-17 13:43:38 +00:00
|
|
|
%setup -q -n %{name}-%{commit}
|
2009-02-24 17:12:06 +00:00
|
|
|
rm -rf src/antlr
|
2014-10-09 22:45:38 +00:00
|
|
|
%patch1 -p1 -b .antlr
|
2018-09-21 03:59:17 +00:00
|
|
|
%patch2 -p1 -b .python3
|
2019-02-13 21:04:38 +00:00
|
|
|
%patch4 -p1 -b .std
|
2016-01-13 00:02:18 +00:00
|
|
|
|
2012-03-21 18:21:10 +00:00
|
|
|
pushd src
|
|
|
|
for f in *.g
|
|
|
|
do
|
|
|
|
antlr $f
|
|
|
|
done
|
|
|
|
popd
|
2011-03-18 22:15:03 +00:00
|
|
|
|
2018-09-21 03:59:17 +00:00
|
|
|
%if 0%{?fedora} >= 29
|
|
|
|
%global __python %{__python3}
|
|
|
|
%global python_sitearch %{python3_sitearch}
|
|
|
|
%else
|
|
|
|
%global __python %{__python2}
|
|
|
|
%global python_sitearch %{python2_sitearch}
|
|
|
|
%endif
|
2011-03-18 22:15:03 +00:00
|
|
|
%global cmake_opts \\\
|
|
|
|
-DWXWIDGETS=ON \\\
|
2018-07-24 03:57:48 +00:00
|
|
|
-DGEOTIFF_INCLUDE_DIR=%{_includedir}/libgeotiff \\\
|
2011-03-18 22:15:03 +00:00
|
|
|
-DUDUNITS=ON \\\
|
|
|
|
-DUDUNITS_INCLUDE_DIR=%{_includedir}/udunits2 \\\
|
|
|
|
-DGRIB=ON \\\
|
2014-10-03 21:01:42 +00:00
|
|
|
-DOPENMP=ON \\\
|
2018-09-21 03:59:17 +00:00
|
|
|
-DPYTHON_EXECUTABLE=%{__python} \\\
|
2017-01-06 18:07:52 +00:00
|
|
|
%{?cmake_qhull} \\\
|
2010-02-15 20:42:51 +00:00
|
|
|
%{nil}
|
|
|
|
# TODO - build an mpi version
|
|
|
|
# INCLUDES="-I/usr/include/mpich2" \
|
|
|
|
# --with-mpich=%{_libdir}/mpich2 \
|
|
|
|
|
2005-09-22 16:49:35 +00:00
|
|
|
%build
|
2010-02-15 20:42:51 +00:00
|
|
|
mkdir build build-python
|
|
|
|
#Build the standalone executable
|
|
|
|
pushd build
|
2019-02-13 21:04:38 +00:00
|
|
|
%cmake3 %{cmake_opts} ..
|
2018-05-21 03:19:04 +00:00
|
|
|
make #{?_smp_mflags}
|
2010-02-15 20:42:51 +00:00
|
|
|
popd
|
|
|
|
#Build the python module
|
|
|
|
pushd build-python
|
2019-02-13 21:04:38 +00:00
|
|
|
%cmake3 %{cmake_opts} -DPYTHON_MODULE=ON ..
|
2018-05-21 03:19:04 +00:00
|
|
|
make #{?_smp_mflags}
|
2010-02-15 20:42:51 +00:00
|
|
|
popd
|
2005-09-22 16:49:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2010-02-15 20:42:51 +00:00
|
|
|
pushd build
|
2005-09-22 16:49:35 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2010-02-15 20:42:51 +00:00
|
|
|
popd
|
2011-03-18 22:57:26 +00:00
|
|
|
pushd build-python
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2017-01-06 18:07:52 +00:00
|
|
|
# Install the python module in the right location
|
2018-09-21 03:59:17 +00:00
|
|
|
install -d -m 0755 $RPM_BUILD_ROOT/%{python_sitearch}
|
|
|
|
%if 0%{?fedora} >= 29
|
2018-09-27 01:47:36 +00:00
|
|
|
%if %{_lib} != "lib"
|
2018-09-21 03:59:17 +00:00
|
|
|
mv $RPM_BUILD_ROOT%{_prefix}/lib/python*/site-packages/GDL.so \
|
2018-09-27 01:47:36 +00:00
|
|
|
$RPM_BUILD_ROOT%{python_sitearch}/GDL.so
|
|
|
|
%endif
|
2018-09-21 03:59:17 +00:00
|
|
|
%else
|
|
|
|
mv $RPM_BUILD_ROOT%{_prefix}/lib/site-python/GDL.so \
|
|
|
|
$RPM_BUILD_ROOT%{python_sitearch}/GDL.so
|
2018-09-27 01:47:36 +00:00
|
|
|
%endif
|
2011-03-18 22:57:26 +00:00
|
|
|
popd
|
2007-01-09 21:17:08 +00:00
|
|
|
|
|
|
|
# Install the profile file to set GDL_PATH
|
|
|
|
install -d -m 0755 $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d
|
|
|
|
install -m 0644 %SOURCE1 $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d
|
|
|
|
install -m 0644 %SOURCE2 $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d
|
|
|
|
|
|
|
|
|
2009-10-15 18:00:52 +00:00
|
|
|
%check
|
2011-03-29 21:23:16 +00:00
|
|
|
cd build
|
2018-05-21 03:19:04 +00:00
|
|
|
cp %SOURCE4 .
|
|
|
|
if [ -x /usr/libexec/Xorg ]; then
|
|
|
|
Xorg=/usr/libexec/Xorg
|
|
|
|
elif [ -x /usr/libexec/Xorg.bin ]; then
|
|
|
|
Xorg=/usr/libexec/Xorg.bin
|
|
|
|
else
|
2019-03-13 01:47:08 +00:00
|
|
|
# Strip suid root
|
|
|
|
cp /usr/bin/Xorg .
|
|
|
|
Xorg=./Xorg
|
2018-05-21 03:19:04 +00:00
|
|
|
fi
|
|
|
|
$Xorg -noreset +extension GLX +extension RANDR +extension RENDER -logfile ./xorg.log -config ./xorg.conf -configdir . :99 &
|
|
|
|
export DISPLAY=:99
|
|
|
|
|
2016-01-13 00:02:18 +00:00
|
|
|
metacity &
|
|
|
|
sleep 2
|
2018-07-24 03:57:48 +00:00
|
|
|
# bytscl - https://github.com/gnudatalanguage/gdl/issues/159
|
2019-03-13 01:47:08 +00:00
|
|
|
# device - Failed on EL7
|
2018-05-21 03:19:04 +00:00
|
|
|
# fft_leak - https://github.com/gnudatalanguage/gdl/issues/147
|
|
|
|
# file_delete - https://github.com/gnudatalanguage/gdl/issues/148
|
2019-02-13 21:04:38 +00:00
|
|
|
# file_test - https://github.com/gnudatalanguage/gdl/issues/534
|
2018-05-21 03:19:04 +00:00
|
|
|
# fix - https://github.com/gnudatalanguage/gdl/issues/149
|
|
|
|
# formats - https://github.com/gnudatalanguage/gdl/issues/144
|
2019-03-13 01:47:08 +00:00
|
|
|
# get_screen_size - Failed on EL7
|
2018-05-21 03:19:04 +00:00
|
|
|
# n_tags - https://github.com/gnudatalanguage/gdl/issues/150
|
|
|
|
# parse_url - https://github.com/gnudatalanguage/gdl/issues/153
|
|
|
|
# resolve_routine - https://github.com/gnudatalanguage/gdl/issues/146
|
|
|
|
# rounding - https://github.com/gnudatalanguage/gdl/issues/154
|
|
|
|
# total - https://github.com/gnudatalanguage/gdl/issues/155
|
2019-03-13 01:47:08 +00:00
|
|
|
failing_tests='test_(bytscl|device|fft_leak|file_(delete|test)|finite|fix|formats|get_screen_size|idlneturl|make_dll|n_tags|parse_url|resolve_routine|rounding|total|wait)'
|
2018-05-21 03:19:04 +00:00
|
|
|
%ifarch aarch64 ppc %{power64}
|
2014-10-09 22:45:38 +00:00
|
|
|
# test_fix fails currently on arm
|
|
|
|
# https://sourceforge.net/p/gnudatalanguage/bugs/622/
|
2013-07-31 22:10:42 +00:00
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=990749
|
2019-03-19 02:29:34 +00:00
|
|
|
failing_tests="$failing_tests|test_(fix|hdf5)"
|
2016-09-26 21:33:26 +00:00
|
|
|
%endif
|
2018-05-21 03:19:04 +00:00
|
|
|
%ifarch aarch64
|
2018-07-28 05:03:31 +00:00
|
|
|
# new test failues - indgen, list - https://github.com/gnudatalanguage/gdl/issues/372
|
2019-02-26 02:50:45 +00:00
|
|
|
# Bug tests hang on F28
|
2019-03-13 01:47:08 +00:00
|
|
|
failing_tests="$failing_tests|test_(bug_(3104209|3104326|3147733)|file_lines|indgen|list|l64|step|xdr)"
|
2018-05-21 03:19:04 +00:00
|
|
|
%endif
|
2016-09-26 21:33:26 +00:00
|
|
|
%ifarch %{arm}
|
|
|
|
# These fail on 32-bit: test_formats test_xdr
|
2019-03-19 02:29:34 +00:00
|
|
|
failing_tests="$failing_tests|test_(file_lines|fix|formats|hdf5|indgen|list|l64|xdr)"
|
2013-07-31 22:10:42 +00:00
|
|
|
%endif
|
2016-09-26 21:33:26 +00:00
|
|
|
%ifarch %{ix86}
|
2018-07-24 03:57:48 +00:00
|
|
|
# binfmt - https://github.com/gnudatalanguage/gdl/issues/332
|
2016-09-26 21:33:26 +00:00
|
|
|
# These fail on 32-bit: test_formats test_xdr
|
2018-05-21 03:19:04 +00:00
|
|
|
failing_tests="$failing_tests|test_(formats|l64|sem|xdr)"
|
|
|
|
%endif
|
2018-05-21 15:27:15 +00:00
|
|
|
%ifarch ppc64
|
2018-07-28 05:03:31 +00:00
|
|
|
# new test failues - indgen, list - https://github.com/gnudatalanguage/gdl/issues/372
|
2019-03-13 01:47:08 +00:00
|
|
|
failing_tests="$failing_tests|test_(bug_(635|3104209|3147733)|file_lines|indgen|list|save_restore|window_background)"
|
2018-05-21 15:27:15 +00:00
|
|
|
%endif
|
2018-07-28 05:03:31 +00:00
|
|
|
%ifarch ppc64le
|
2018-07-24 03:57:48 +00:00
|
|
|
# ppc64le - test_file_lines https://github.com/gnudatalanguage/gdl/issues/373
|
2019-03-19 02:29:34 +00:00
|
|
|
failing_tests="$failing_tests|test_(angles|bug_(3104209|3104326)|container|file_lines|hdf5|hist_2d|indgen|list|random)"
|
2018-05-21 15:27:15 +00:00
|
|
|
%endif
|
2018-05-21 03:19:04 +00:00
|
|
|
%ifarch s390x
|
2019-03-19 02:29:34 +00:00
|
|
|
failing_tests="$failing_tests|test_(bug_635|file_lines|hdf5|indgen|list|save_restore|tic_toc|window_background)"
|
2016-02-12 13:24:12 +00:00
|
|
|
%endif
|
2018-07-24 03:57:48 +00:00
|
|
|
make check VERBOSE=1 ARGS="-V -E '$failing_tests'"
|
2018-05-21 15:27:15 +00:00
|
|
|
%ifnarch ppc64 s390x
|
|
|
|
# test_save_restore hangs on ppc64 s390x
|
2019-02-26 02:50:45 +00:00
|
|
|
make check VERBOSE=1 ARGS="-V -R '$failing_tests' --timeout 600" || :
|
2018-05-21 03:19:04 +00:00
|
|
|
%endif
|
|
|
|
kill %1 || :
|
|
|
|
cat xorg.log
|
2005-09-22 16:49:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2016-01-13 00:02:18 +00:00
|
|
|
%license COPYING
|
2018-07-24 03:57:48 +00:00
|
|
|
%doc AUTHORS ChangeLog HACKING NEWS README
|
2007-01-09 21:17:08 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/profile.d/gdl.*sh
|
2005-09-22 16:49:35 +00:00
|
|
|
%{_bindir}/gdl
|
2010-02-15 20:42:51 +00:00
|
|
|
%{_mandir}/man1/gdl.1*
|
2009-02-26 16:42:46 +00:00
|
|
|
|
|
|
|
%files common
|
2010-02-15 20:42:51 +00:00
|
|
|
%{_datadir}/gnudatalanguage/
|
|
|
|
|
2018-09-21 03:59:17 +00:00
|
|
|
%if 0%{?fedora} >= 29
|
|
|
|
%files -n python%{python3_pkgversion}-gdl
|
|
|
|
%else
|
2017-08-19 13:38:20 +00:00
|
|
|
%files -n python2-gdl
|
2018-09-21 03:59:17 +00:00
|
|
|
%endif
|
|
|
|
%{python_sitearch}/GDL.so
|
2005-09-22 16:49:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2019-09-17 13:43:38 +00:00
|
|
|
* Tue Sep 17 2019 Orion Poplawski <orion@nwra.com> - 0.9.9-11.20190915git2870075
|
|
|
|
- Update to latest git
|
|
|
|
|
2019-08-20 20:03:23 +00:00
|
|
|
* Tue Aug 20 2019 Susi Lehtola <jussilehtola@fedoraproject.org> - 0.9.9-10
|
|
|
|
- Rebuilt for GSL 2.6.
|
|
|
|
|
2019-08-19 08:14:28 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.9-9
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-25 01:38:40 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.9-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-03-16 14:57:37 +00:00
|
|
|
* Sat Mar 16 2019 Orion Poplawski <orion@nwra.com> - 0.9.9-7
|
|
|
|
- Rebuild for hdf5 1.10.5
|
|
|
|
|
2019-02-23 04:49:50 +00:00
|
|
|
* Fri Feb 22 2019 Orion Poplawski <orion@nwra.com> - 0.9.9-6
|
|
|
|
- test_bug_635 fails on F28 ppc64
|
|
|
|
|
2019-02-17 08:30:50 +00:00
|
|
|
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.9.9-5
|
|
|
|
- Rebuild for readline 8.0
|
|
|
|
|
2019-02-13 21:04:38 +00:00
|
|
|
* Wed Feb 13 2019 Orion Poplawski <orion@nwra.com> - 0.9.9-4
|
|
|
|
- Use eccodes where available
|
|
|
|
- Add patches to fix build
|
|
|
|
- Use cmake3 for EPEL7 compat
|
|
|
|
|
2019-02-13 02:07:07 +00:00
|
|
|
* Wed Feb 13 2019 Orion Poplawski <orion@nwra.com> - 0.9.9-3
|
|
|
|
- Rebuild for plplot 5.14
|
|
|
|
|
2019-01-31 20:43:36 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-01 16:45:49 +00:00
|
|
|
* Sat Dec 1 2018 Orion Poplawski <orion@nwra.com> - 0.9.9-1
|
|
|
|
- Update to 0.9.9
|
|
|
|
|
2018-10-31 23:18:10 +00:00
|
|
|
* Wed Oct 31 2018 Orion Poplawski <orion@nwra.com> - 0.9.8-7.20180919gitd892ee5
|
|
|
|
- Really use eccodes by fixing typo (bug #1644928)
|
|
|
|
|
2018-09-21 03:59:17 +00:00
|
|
|
* Thu Sep 20 2018 Orion Poplawski <orion@nwra.com> - 0.9.8-6.20180919gitd892ee5
|
|
|
|
- Update to latest git
|
|
|
|
- Port to python 3
|
|
|
|
|
2018-07-31 12:39:53 +00:00
|
|
|
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 0.9.8-5.20180723gitf3b6e01
|
|
|
|
- Rebuild with fixed binutils
|
|
|
|
|
2018-07-24 03:57:48 +00:00
|
|
|
* Mon Jul 23 2018 Orion Poplawski <orion@nwra.com> - 0.9.8-4.20180723gitf3b6e01
|
|
|
|
- Update to latest git
|
|
|
|
- Switch to eccodes from grib_api for Fedora 28+
|
|
|
|
|
2018-07-23 04:39:21 +00:00
|
|
|
* Sun Jul 22 2018 Scott Talbert <swt@techie.net> - 0.9.8-3
|
2018-07-07 04:41:30 +00:00
|
|
|
- Rebuild with wxWidgets 3.0
|
|
|
|
|
2018-07-13 01:14:11 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-21 03:19:04 +00:00
|
|
|
* Sun May 20 2018 Orion Poplawski <orion@cora.nwra.com> - 0.9.8-1
|
|
|
|
- Update to 0.9.8
|
|
|
|
- Drop parallel make for now
|
|
|
|
- Use libtirpc
|
|
|
|
- Switch to Xorg dummy driver for tests, fail build on test failure
|
|
|
|
- Add patch to fix ppc64 altivec vector usage
|
|
|
|
- Add patches to fix various warnings
|
|
|
|
|
2018-03-01 02:07:56 +00:00
|
|
|
* Thu Mar 01 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.9.7-11
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-21 16:15:32 +00:00
|
|
|
* Wed Feb 21 2018 Orion Poplawski <orion@cora.nwra.com> - 0.9.7-10
|
|
|
|
- Explicitly use python2
|
|
|
|
- Build with libtirpc
|
|
|
|
|
2018-02-20 21:14:44 +00:00
|
|
|
* Tue Feb 20 2018 Orion Poplawski <orion@cora.nwra.com> - 0.9.7-10
|
|
|
|
- Rebuild for hdf5 1.8.20
|
|
|
|
|
2018-02-07 10:46:35 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-20 14:32:33 +00:00
|
|
|
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.9.7-8
|
|
|
|
- Add Provides for the old name without %%_isa
|
|
|
|
|
2017-08-19 13:38:20 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.9.7-7
|
|
|
|
- Python 2 binary package renamed to python2-gdl
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-02 21:01:52 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 09:13:00 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-23 17:35:43 +00:00
|
|
|
* Fri Jun 23 2017 Tom Callaway <spot@fedoraproject.org> - 0.9.7-4
|
|
|
|
- rebuild for plplot 5.12.0
|
|
|
|
|
2017-05-15 20:15:59 +00:00
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 10:18:10 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-06 18:07:52 +00:00
|
|
|
* Wed Feb 1 2017 Orion Poplawski <orion@cora.nwra.com> - 0.9.7-1
|
|
|
|
- Update to 0.9.7
|
|
|
|
|
2016-03-07 20:19:32 +00:00
|
|
|
* Mon Mar 7 2016 Orion Poplawski <orion@cora.nwra.com> - 0.9.6-2
|
|
|
|
- rebuild (GraphicsMagick)
|
|
|
|
|
2016-02-16 18:29:20 +00:00
|
|
|
* Tue Feb 16 2016 Orion Poplawski <orion@cora.nwra.com> - 0.9.6-1
|
2016-01-13 00:02:18 +00:00
|
|
|
- Update to 0.9.6
|
|
|
|
- Drop setting -DH5_USE_16_API and -fPIC
|
|
|
|
- Add patch to fix file_move test
|
|
|
|
- Run tests with Xvfb and metacity
|
|
|
|
- Use %%license
|
2016-02-16 18:29:20 +00:00
|
|
|
- Exclude test_zip
|
2016-01-13 00:02:18 +00:00
|
|
|
|
2016-02-12 13:30:26 +00:00
|
|
|
* Fri Feb 12 2016 Rex Dieter <rdieter@fedoraproject.org> 0.9.5-3
|
|
|
|
- rebuild (GraphicsMagick)
|
|
|
|
|
2014-10-31 16:25:57 +00:00
|
|
|
* Fri Oct 31 2014 Orion Poplawski <orion@cora.nwra.com> - 0.9.5-2
|
|
|
|
- No longer need cmake28 on RHEL6
|
|
|
|
|
2014-10-09 22:45:38 +00:00
|
|
|
* Wed Oct 8 2014 Orion Poplawski <orion@cora.nwra.com> - 0.9.5-1
|
|
|
|
- Update to 0.9.5
|
|
|
|
|
2014-10-03 21:01:42 +00:00
|
|
|
* Fri Oct 3 2014 Orion Poplawski <orion@cora.nwra.com> - 0.9.4-7
|
|
|
|
- Re-enable openmp. Appears to be working now.
|
|
|
|
|
2014-08-16 13:59:16 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-23 03:35:31 +00:00
|
|
|
* Wed Jul 23 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 0.9.4-5
|
|
|
|
- Disable tests which fail on aarch64 (#990749)
|
|
|
|
|
2014-09-02 21:09:20 +00:00
|
|
|
* Tue Jun 10 2014 Orion Poplawski <orion@cora.nwra.com> - 0.9.4-4
|
2014-06-10 13:38:15 +00:00
|
|
|
- Fix python find_package usage
|
|
|
|
|
2014-06-07 13:38:45 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-12-28 21:39:37 +00:00
|
|
|
* Sat Dec 28 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.4-2
|
|
|
|
- Rebuild for hdf5 1.8.12
|
|
|
|
|
2013-10-08 22:31:40 +00:00
|
|
|
* Tue Oct 8 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.4-1
|
|
|
|
- Disable openmp for now due to issues with eigen3 matrix multiply
|
|
|
|
|
2013-10-04 20:21:43 +00:00
|
|
|
* Fri Oct 4 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.4-1
|
|
|
|
- Add patch to fix use of dynamically sized matrices with Eigen3
|
|
|
|
- Add patch to fix -Wreorder warnings
|
|
|
|
- Update gsl patch to match current cvs
|
|
|
|
|
2013-09-30 16:42:28 +00:00
|
|
|
* Mon Sep 30 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.4-1
|
|
|
|
- Update to 0.9.4
|
|
|
|
- Update build patch - drop automake components
|
|
|
|
- New python patch to fix python build
|
2013-09-30 23:10:11 +00:00
|
|
|
- Add patch to fix gsl usage
|
2013-10-01 16:12:27 +00:00
|
|
|
- Add patch for test debugging
|
2013-09-30 16:42:28 +00:00
|
|
|
|
2013-08-27 23:02:42 +00:00
|
|
|
* Tue Aug 27 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-10.cvs20130804
|
|
|
|
- Add patch to support new width() method in plplot
|
|
|
|
|
2013-08-23 20:04:04 +00:00
|
|
|
* Fri Aug 23 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-10.cvs20130804
|
|
|
|
- Build with shared grib_api
|
|
|
|
|
2013-08-05 02:39:12 +00:00
|
|
|
* Sun Aug 4 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-9.cvs20130804
|
|
|
|
- Update cvs patch to current cvs
|
|
|
|
- Drop test_ce patch, enable test_ce
|
|
|
|
|
2013-07-31 17:14:15 +00:00
|
|
|
* Wed Jul 31 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-8.cvs20130731
|
|
|
|
- Update cvs patch to current cvs
|
|
|
|
- Add patch to fix segfault in test_ce
|
|
|
|
- Cleanup test excludes, note bugs for failing tests
|
|
|
|
|
2013-05-16 18:39:25 +00:00
|
|
|
* Thu May 16 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-7.cvs20130516
|
|
|
|
- Update cvs patch to current cvs
|
2013-05-16 18:57:42 +00:00
|
|
|
- Drop test_ce,tests, netcdf, and python patch applied upstream
|
2013-05-16 18:39:25 +00:00
|
|
|
- Rebuild for hdf5 1.8.11
|
2013-05-20 15:48:11 +00:00
|
|
|
- Switch to GraphicsMagick
|
2013-05-16 18:39:25 +00:00
|
|
|
|
2013-03-22 18:18:47 +00:00
|
|
|
* Fri Mar 22 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-6.cvs20130321
|
|
|
|
- Update cvs patch to current cvs
|
|
|
|
- Add patch to use python 2 with cmake
|
|
|
|
|
2013-03-20 23:04:39 +00:00
|
|
|
* Wed Mar 20 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-5
|
|
|
|
- Add patch to handle netcdf better with cmake
|
|
|
|
- BR netcdf-devel instead of netcdf-cxx-devel
|
|
|
|
|
2013-03-15 21:49:33 +00:00
|
|
|
* Fri Mar 15 2013 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-4
|
|
|
|
- Change to use cmake
|
|
|
|
- Update to current cvs via patch
|
|
|
|
- Add patches to fix tests under cmake
|
|
|
|
- Build with eigen3
|
|
|
|
|
2013-02-13 22:27:10 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-18 17:02:47 +00:00
|
|
|
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 0.9.3-2
|
|
|
|
- rebuild due to "jpeg8-ABI" feature drop
|
|
|
|
|
2012-12-27 23:31:31 +00:00
|
|
|
* Thu Dec 27 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.3-1
|
|
|
|
- Update to 0.9.3
|
|
|
|
- Rebase antlr-auto patch
|
|
|
|
|
2012-12-03 20:54:19 +00:00
|
|
|
* Mon Dec 3 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-10.cvs20120717
|
|
|
|
- Rebuild for hdf5 1.8.10
|
|
|
|
|
2012-07-27 05:10:26 +00:00
|
|
|
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-9.cvs20120717
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-17 15:34:54 +00:00
|
|
|
* Tue Jul 17 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-8.cvs20120717
|
|
|
|
- Update to current cvs
|
|
|
|
- Drop env patch fixed upstream
|
|
|
|
|
2012-07-17 02:16:55 +00:00
|
|
|
* Mon Jul 16 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-7.cvs20120716
|
|
|
|
- Update to current cvs
|
|
|
|
|
2012-05-16 03:47:29 +00:00
|
|
|
* Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-6.cvs20120515
|
2012-05-15 21:48:51 +00:00
|
|
|
- Update to current cvs
|
|
|
|
- Add patch for testsuite make check to work in build directory
|
|
|
|
- Add patch to fix pythongdl.c compile
|
|
|
|
- Run the testsuite properly with make check
|
|
|
|
|
2012-03-21 18:21:10 +00:00
|
|
|
* Wed Mar 21 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-5
|
|
|
|
- Rebuild antlr generated files
|
|
|
|
- Rebuild for ImageMagick
|
|
|
|
|
2012-02-28 18:27:47 +00:00
|
|
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-4
|
|
|
|
- Rebuilt for c++ ABI breakage
|
|
|
|
|
2012-01-07 16:12:42 +00:00
|
|
|
* Sat Jan 7 2012 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-3
|
|
|
|
- Build with pslib
|
|
|
|
|
2011-11-16 23:57:37 +00:00
|
|
|
* Wed Nov 16 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-2
|
|
|
|
- Rebuild for hdf5 1.8.8
|
|
|
|
|
2011-11-11 23:29:21 +00:00
|
|
|
* Fri Nov 11 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.2-1
|
|
|
|
- Update to 0.9.2
|
|
|
|
- Drop upstreamed patches
|
|
|
|
- Drop hdf support from python module, add patch to force building of python
|
|
|
|
shared library
|
|
|
|
|
2011-10-26 23:48:32 +00:00
|
|
|
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-5
|
|
|
|
- Rebuilt for glibc bug#747377
|
|
|
|
|
2011-08-18 17:00:06 +00:00
|
|
|
* Thu Aug 18 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.1-4
|
|
|
|
- Rebuild for plplot 5.9.8
|
|
|
|
- Add upstream patch to fix strsplit and str_sep
|
2011-08-18 19:24:26 +00:00
|
|
|
- Add patch to fix compile issues with string
|
2011-08-18 21:04:13 +00:00
|
|
|
- Add patch to change plplot SetOpt to setopt
|
2011-08-18 17:00:06 +00:00
|
|
|
|
2011-05-18 03:34:29 +00:00
|
|
|
* Tue May 17 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.1-3
|
|
|
|
- Rebuild for hdf5 1.8.7
|
|
|
|
|
2011-03-31 18:26:44 +00:00
|
|
|
* Thu Mar 31 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.1-2
|
|
|
|
- Rebuild for netcdf 4.1.2
|
|
|
|
|
2011-03-30 15:54:33 +00:00
|
|
|
* Tue Mar 29 2011 Orion Poplawski <orion@cora.nwra.com> - 0.9.1-1
|
|
|
|
- Update to 0.9.1
|
|
|
|
- Drop numpy and wx patches fixed upstream
|
|
|
|
|
2011-02-08 23:33:02 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Oct 11 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-5
|
2010-10-11 21:37:47 +00:00
|
|
|
- Rebuild for plplot 5.9.7
|
|
|
|
|
2010-09-29 21:13:24 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 0.9-4
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-15 21:25:28 +00:00
|
|
|
* Wed Sep 15 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-3
|
2010-09-15 22:33:01 +00:00
|
|
|
- Fix GDL_PATH in profile scripts (bug #634351)
|
2010-09-15 21:25:28 +00:00
|
|
|
|
2010-09-15 19:55:39 +00:00
|
|
|
* Wed Sep 15 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-2
|
|
|
|
- Rebuild for new ImageMagick
|
|
|
|
|
2010-08-30 17:38:22 +00:00
|
|
|
* Mon Aug 30 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-1
|
|
|
|
- Update to 0.9 final
|
|
|
|
|
2010-08-26 20:47:12 +00:00
|
|
|
* Thu Aug 26 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.17.rc4
|
|
|
|
- Add initial patch to build the python module with numpy rather than
|
|
|
|
numarray. Doesn't work yet, but the python module is mostly dead anyway
|
|
|
|
|
2010-07-22 01:30:22 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.9-0.16.rc4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-14 12:27:11 +00:00
|
|
|
* Wed Jul 14 2010 Dan Horák <dan@danny.cz> - 0.9-0.15.rc4
|
|
|
|
- rebuilt against wxGTK-2.8.11-2
|
|
|
|
|
2010-07-07 21:44:57 +00:00
|
|
|
* Wed Jul 7 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.14.rc4
|
|
|
|
- Update to today's cvs
|
|
|
|
- Drop wx-config patch
|
|
|
|
- Re-instate wx patch to avoid segfault on test exit
|
|
|
|
|
2010-06-03 15:10:46 +00:00
|
|
|
* Thu Jun 3 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.13.rc4
|
|
|
|
- Update to today's cvs
|
|
|
|
- Drop GLDLexer and python patches
|
|
|
|
- BR antlr-C++ on Fedora 14+
|
|
|
|
|
2010-03-22 21:44:15 +00:00
|
|
|
* Mon Mar 22 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.12.rc4
|
|
|
|
- Drop unused BR on proj-devel (bug #572616)
|
|
|
|
|
2010-03-08 17:30:25 +00:00
|
|
|
* Mon Mar 8 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.11.rc4
|
|
|
|
- Rebuild for new ImageMagick
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Wed Feb 17 2010 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.10.rc4
|
2010-02-15 20:42:51 +00:00
|
|
|
- Update to 0.9rc4
|
|
|
|
- Enable grib, udunits2, and wxWidgets support
|
|
|
|
- Build python module and add sub-package for it
|
|
|
|
- Use %%global instead of %%define
|
|
|
|
|
2009-12-08 21:53:05 +00:00
|
|
|
* Tue Dec 8 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 0.9-0.9.rc3
|
|
|
|
- Explicitly BR hdf-static in accordance with the Packaging
|
|
|
|
Guidelines (hdf-devel is still static-only).
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Wed Nov 11 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.8.rc3
|
2009-11-11 18:33:38 +00:00
|
|
|
- Rebuild for netcdf-4.1.0
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Oct 15 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.7.rc3
|
2009-10-15 18:00:52 +00:00
|
|
|
- Update to 0.9rc3
|
2009-10-15 20:13:46 +00:00
|
|
|
- Drop gcc43, ppc64, friend patches fixed upstream
|
2009-10-15 18:00:52 +00:00
|
|
|
- Add source for makecvstarball
|
|
|
|
- Rebase antlr patch, add automake source version
|
|
|
|
- Add conditionals for EPEL builds
|
|
|
|
- Add %%check section
|
|
|
|
|
2009-07-24 23:43:08 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-0.6.rc2.20090312
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Mar 16 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.5.rc2.20090312
|
2009-03-16 15:21:05 +00:00
|
|
|
- Back off building python module until configure macro is updated
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Mar 12 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.4.rc2.20090312
|
2009-03-12 14:55:31 +00:00
|
|
|
- Update to 0.9rc2 cvs 20090312
|
|
|
|
- Rebase antlr patch
|
|
|
|
- Rebuild for new ImageMagick
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Feb 26 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.3.rc2.20090224
|
2009-02-26 16:42:46 +00:00
|
|
|
- Build python module
|
|
|
|
- Move common code to noarch common sub-package
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue Feb 24 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.2.rc2.20090224
|
2009-02-24 16:29:05 +00:00
|
|
|
- Update to 0.9rc2 cvs 20090224
|
|
|
|
- Fix release tag
|
|
|
|
- Drop ImageMagick patch fixed upstream
|
2009-02-25 18:40:52 +00:00
|
|
|
- Add patch to compile with gcc 4.4.0 - needs new friend statement
|
2009-02-24 17:12:06 +00:00
|
|
|
- Don't build included copy of antlr, use system version
|
2009-02-24 16:29:05 +00:00
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri Jan 23 2009 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.rc2.1
|
2009-01-26 16:52:04 +00:00
|
|
|
- Update to 0.9rc2 based cvs
|
|
|
|
|
2008-12-01 05:03:47 +00:00
|
|
|
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.9-0.rc1.4.1
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri Sep 5 2008 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.rc1.4
|
2008-09-06 03:40:03 +00:00
|
|
|
- Add a requires on plplot to pull in drivers (bug#458277)
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri May 16 2008 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.rc1.3
|
2008-05-16 17:52:26 +00:00
|
|
|
- Update to latest cvs
|
|
|
|
- Add patch to handle new ImageMagick
|
|
|
|
- Update netcdf locations
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Apr 28 2008 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.rc1.2
|
2008-04-28 16:26:25 +00:00
|
|
|
- Rebuild for new ImageMagick
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Sat Apr 5 2008 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.rc1.1
|
2008-04-06 04:22:34 +00:00
|
|
|
- Update to 0.9rc1
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Mar 17 2008 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre6.2
|
2008-04-06 04:22:34 +00:00
|
|
|
- Update cvs patch to latest cvs
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue Mar 4 2008 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre6.1
|
2008-03-04 21:26:42 +00:00
|
|
|
- Rebuild for gcc 4.3, and add patch for gcc 4.3 support
|
|
|
|
- Add patch to build against plplot 5.9.0
|
|
|
|
- Add cvs patch to update to latest cvs
|
2008-02-19 17:03:40 +00:00
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri Nov 2 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre6
|
2007-11-03 03:27:30 +00:00
|
|
|
- Update to 0.9pre6
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue Aug 21 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre5.2
|
2007-08-22 04:29:46 +00:00
|
|
|
- Add patch to fix build on ppc64
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue Aug 21 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre5.1
|
2007-08-21 20:47:03 +00:00
|
|
|
- Update license tag to GPLv2+
|
|
|
|
- Rebuild for BuildID
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Jul 9 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre5
|
2007-07-09 20:34:09 +00:00
|
|
|
- Update to 0.9pre5
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue May 22 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre4.2
|
2007-05-22 22:50:03 +00:00
|
|
|
- Rebuild for netcdf 3.6.2 with shared libraries
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue Jan 9 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre4.1
|
2007-01-09 21:17:08 +00:00
|
|
|
- Package the library routines and point to them by default
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri Jan 5 2007 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre4
|
2007-01-05 20:04:25 +00:00
|
|
|
- Update to 0.9pre4
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Dec 18 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre3.4
|
2006-12-18 22:52:47 +00:00
|
|
|
- Add patch for configure to handle python 2.5
|
|
|
|
|
2006-12-15 09:14:17 +00:00
|
|
|
* Thu Dec 14 2006 - Jef Spaleta <jspaleta@gmail.com> - 0.9-0.pre3.3
|
|
|
|
- Bump and build for python 2.5
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Wed Nov 22 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre3.2
|
2006-11-22 16:28:56 +00:00
|
|
|
- Update to 0.9pre3
|
|
|
|
|
2013-05-22 16:33:17 +00:00
|
|
|
* Wed Oct 4 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre3.1
|
2006-10-03 21:53:44 +00:00
|
|
|
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Sep 18 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre3
|
2006-09-18 21:31:22 +00:00
|
|
|
- Rebuild for FC6
|
2006-09-19 16:41:52 +00:00
|
|
|
- Add patch for specialization error caught by gcc 4.1.1
|
2006-09-18 21:31:22 +00:00
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Jun 29 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre2
|
2006-06-29 22:22:18 +00:00
|
|
|
- Update to 0.9pre2
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Sun Jun 11 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre.1
|
2006-06-11 21:38:23 +00:00
|
|
|
- Rebuild for ImageMagick so bump
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Apr 3 2006 Orion Poplawski <orion@cora.nwra.com> - 0.9-0.pre
|
2006-04-04 17:38:20 +00:00
|
|
|
- Update to 0.9pre
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri Feb 24 2006 Orion Poplawski <orion@cora.nwra.com> - 0.8.11-4
|
2006-02-24 20:10:58 +00:00
|
|
|
- Add --with-fftw to configure
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Feb 2 2006 Orion Poplawski <orion@cora.nwra.com> - 0.8.11-3
|
2006-02-02 22:42:40 +00:00
|
|
|
- Enable hdf for ppc
|
2006-02-02 23:25:07 +00:00
|
|
|
- Change fftw3 to fftw
|
2006-02-02 22:42:40 +00:00
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Tue Jan 3 2006 Orion Poplawski <orion@cora.nwra.com> - 0.8.11-2
|
2006-01-03 21:32:20 +00:00
|
|
|
- Rebuild
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Mon Nov 21 2005 Orion Poplawski <orion@cora.nwra.com> - 0.8.11-1
|
2005-11-21 18:24:24 +00:00
|
|
|
- Upstream 0.8.11
|
|
|
|
- Remove hdf patch fixed upstream
|
|
|
|
- Remove X11R6 lib path - not needed with modular X
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Wed Nov 16 2005 Orion Poplawski <orion@cora.nwra.com> - 0.8.10-4
|
2005-11-16 17:55:21 +00:00
|
|
|
- Update for new ImageMagick version
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Sep 22 2005 Orion Poplawski <orion@cora.nwra.com> - 0.8.10-3
|
2005-09-22 17:36:40 +00:00
|
|
|
- Disable hdf with configure on ppc
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Thu Sep 22 2005 Orion Poplawski <orion@cora.nwra.com> - 0.8.10-2
|
2005-09-22 17:21:53 +00:00
|
|
|
- Don't include hdf support on ppc
|
|
|
|
|
2013-03-15 22:40:30 +00:00
|
|
|
* Fri Aug 19 2005 Orion Poplawski <orion@cora.nwra.com> - 0.8.10-1
|
2005-09-22 16:49:35 +00:00
|
|
|
- Initial Fedora Extras version
|