f58644
# Do we add appdata-files?
f58644
# consider conditional on whether %%_metainfodir is defined or not instead -- rex
f58644
%if 0%{?fedora} || 0%{?rhel} > 7
f58644
%bcond_without appdata
f58644
%else
f58644
%bcond_with appdata
f58644
%endif
f58644
f58644
# Set to bcond_without or use --with bootstrap if bootstrapping a new release
f58644
# or architecture
f58644
%bcond_with bootstrap
f58644
f58644
# Build with Emacs support
f58644
%bcond_without emacs
f58644
f58644
# Run git tests
f58644
%bcond_without git_test
f58644
f58644
# Set to bcond_with or use --without gui to disable qt4 gui build
f58644
%bcond_without gui
f58644
f58644
# Use ncurses for colorful output
f58644
%bcond_without ncurses
f58644
f58644
# Setting the Python-version used by default
f58644
%if 0%{?rhel} && 0%{?rhel} < 8
f58644
%bcond_with python3
f58644
%else
f58644
%bcond_without python3
f58644
%endif
f58644
f58644
# Enable RPM dependency generators for cmake files written in Python
f58644
%bcond_without rpm
f58644
f58644
# Sphinx-build cannot import CMakeLexer on EPEL <= 6
f58644
%if 0%{?rhel} && 0%{?rhel} <= 6
f58644
%bcond_with sphinx
f58644
%else
f58644
%bcond_without sphinx
f58644
%endif
f58644
f58644
%bcond_without bundled_libarchive
f58644
%bcond_without bundled_jsoncpp
f58644
f58644
# Run tests
f58644
%bcond_without test
f58644
f58644
# Enable X11 tests
f58644
%bcond_without X11_test
f58644
f58644
# Place rpm-macros into proper location
f58644
%global rpm_macros_dir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
f58644
f58644
# Setup _pkgdocdir if not defined already
f58644
%{!?_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}}
f58644
f58644
# Setup _vpath_builddir if not defined already
f58644
%{!?_vpath_builddir:%global _vpath_builddir %{_target_platform}}
f58644
f58644
%global major_version 3
f58644
%global minor_version 17
f58644
# Set to RC version if building RC, else %%{nil}
f58644
#global rcsuf rc3
f58644
%{?rcsuf:%global relsuf .%{rcsuf}}
f58644
%{?rcsuf:%global versuf -%{rcsuf}}
f58644
f58644
# Uncomment if building for EPEL
f58644
#global name_suffix %%{major_version}
f58644
%global orig_name cmake
f58644
f58644
Name:           %{orig_name}%{?name_suffix}
f58644
Version:        %{major_version}.%{minor_version}.2
f58644
Release:        1%{?relsuf}%{?dist}
f58644
Summary:        Cross-platform make system
f58644
f58644
# most sources are BSD
f58644
# Source/CursesDialog/form/ a bunch is MIT
f58644
# Source/kwsys/MD5.c is zlib
f58644
# some GPL-licensed bison-generated files, which all include an
f58644
# exception granting redistribution under terms of your choice
f58644
License:        BSD and MIT and zlib
f58644
URL:            http://www.cmake.org
f58644
Source0:        http://www.cmake.org/files/v%{major_version}.%{minor_version}/%{orig_name}-%{version}%{?versuf}.tar.gz
f58644
Source1:        %{name}-init.el
f58644
Source2:        macros.%{name}
f58644
# See https://bugzilla.redhat.com/show_bug.cgi?id=1202899
f58644
Source3:        %{name}.attr
f58644
Source4:        %{name}.prov
f58644
Source5:        %{name}.req
f58644
f58644
ExclusiveArch: x86_64 aarch64 ppc64le s390x
f58644
f58644
# Always start regular patches with numbers >= 100.
f58644
# We need lower numbers for patches in compat package.
f58644
# And this enables us to use %%autosetup
f58644
#
f58644
# Patch to fix RindRuby vendor settings
f58644
# http://public.kitware.com/Bug/view.php?id=12965
f58644
# https://bugzilla.redhat.com/show_bug.cgi?id=822796
f58644
Patch100:       %{name}-findruby.patch
f58644
# replace release flag -O3 with -O2 for fedora
f58644
Patch101:       %{name}-fedora-flag_release.patch
f58644
# Add dl to CMAKE_DL_LIBS on MINGW
f58644
# https://gitlab.kitware.com/cmake/cmake/issues/17600
f58644
Patch102:       %{name}-mingw-dl.patch
f58644
f58644
# --zstd option requires tar >= 1.31
f58644
Patch103:       0001-Remove-pax-zstd-test.patch
f58644
f58644
f58644
BuildRequires:  coreutils
f58644
BuildRequires:  findutils
f58644
BuildRequires:  gcc-c++
f58644
BuildRequires:  gcc-gfortran
f58644
BuildRequires:  sed
f58644
%if %{with git_test}
f58644
# Tests fail if only git-core is installed, bug #1488830
f58644
BuildRequires:  git
f58644
%else
f58644
BuildConflicts: git-core
f58644
%endif
f58644
%if %{with X11_test}
f58644
BuildRequires:  libX11-devel
f58644
%endif
f58644
%if %{with ncurses}
f58644
BuildRequires:  ncurses-devel
f58644
%endif
f58644
%if %{with sphinx}
f58644
BuildRequires:  %{_bindir}/sphinx-build
f58644
%endif
f58644
%if %{without bootstrap}
f58644
BuildRequires:  bzip2-devel
f58644
BuildRequires:  curl-devel
f58644
BuildRequires:  expat-devel
f58644
# Needed jsoncpp >= 1.4.1
f58644
%if %{without bundled_jsoncpp}
f58644
BuildRequires:  jsoncpp-devel
f58644
%endif
f58644
# Needed libarchive >= 3.3.3
f58644
%if %{without bundled_libarchive}
f58644
BuildRequires:  libarchive-devel
f58644
%endif
f58644
BuildRequires:  libuv-devel
f58644
BuildRequires:  xz-devel
f58644
BuildRequires:  zlib-devel
f58644
%endif
f58644
%if %{with emacs}
f58644
BuildRequires:  emacs
f58644
%endif
f58644
BuildRequires:  openssl-devel
f58644
%if %{with rpm}
f58644
%if %{with python3}
f58644
%{!?python3_pkgversion: %global python3_pkgversion 3}
f58644
BuildRequires:  python%{python3_pkgversion}-devel
f58644
%else
f58644
BuildRequires:  python2-devel
f58644
%endif
f58644
%endif
f58644
#BuildRequires: xmlrpc-c-devel
f58644
%if %{with gui}
f58644
%if 0%{?fedora} || 0%{?rhel} > 7
f58644
BuildRequires: pkgconfig(Qt5Widgets)
f58644
%else
f58644
BuildRequires: pkgconfig(QtGui)
f58644
%endif
f58644
BuildRequires: desktop-file-utils
f58644
%endif
f58644
f58644
%if %{without bootstrap}
f58644
# Ensure we have our own rpm-macros in place during build.
f58644
BuildRequires:  %{name}-rpm-macros
f58644
%endif
f58644
f58644
Requires:       %{name}-data = %{version}-%{release}
f58644
Requires:       %{name}-rpm-macros = %{version}-%{release}
f58644
Requires:       %{name}-filesystem%{?_isa} = %{version}-%{release}
f58644
f58644
# Source/kwsys/MD5.c
f58644
# see https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries
f58644
Provides: bundled(md5-deutsch)
f58644
f58644
# https://fedorahosted.org/fpc/ticket/555
f58644
Provides: bundled(kwsys)
f58644
f58644
%if %{with bundled_libarchive}
f58644
Provides: bundled(libarchive) = 0:3.3.3
f58644
%endif
f58644
%if %{with bundled_jsoncpp}
f58644
Provides: bundled(json-cpp) = 0:1.8.2
f58644
%endif
f58644
f58644
%description
f58644
CMake is used to control the software compilation process using simple
f58644
platform and compiler independent configuration files. CMake generates
f58644
native makefiles and workspaces that can be used in the compiler
f58644
environment of your choice. CMake is quite sophisticated: it is possible
f58644
to support complex environments requiring system configuration, preprocessor
f58644
generation, code generation, and template instantiation.
f58644
f58644
f58644
%package        data
f58644
Summary:        Common data-files for %{name}
f58644
Requires:       %{name} = %{version}-%{release}
f58644
Requires:       %{name}-filesystem = %{version}-%{release}
f58644
Requires:       %{name}-rpm-macros = %{version}-%{release}
f58644
%if %{with emacs}
f58644
%if 0%{?fedora} || 0%{?rhel} >= 7
f58644
Requires:       emacs-filesystem%{?_emacs_version: >= %{_emacs_version}}
f58644
%endif
f58644
%endif
f58644
f58644
BuildArch:      noarch
f58644
f58644
%description    data
f58644
This package contains common data-files for %{name}.
f58644
f58644
f58644
%package        doc
f58644
Summary:        Documentation for %{name}
f58644
BuildArch:      noarch
f58644
f58644
%description    doc
f58644
This package contains documentation for %{name}.
f58644
f58644
f58644
%package        filesystem
f58644
Summary:        Directories used by CMake modules
f58644
f58644
%description    filesystem
f58644
This package owns all directories used by CMake modules.
f58644
f58644
f58644
%if %{with gui}
f58644
%package        gui
f58644
Summary:        Qt GUI for %{name}
f58644
f58644
Requires:       %{name}%{?_isa} = %{version}-%{release}
f58644
Requires:       hicolor-icon-theme
f58644
Requires:       shared-mime-info%{?_isa}
f58644
f58644
%description    gui
f58644
The %{name}-gui package contains the Qt based GUI for %{name}.
f58644
%endif
f58644
f58644
f58644
%package        rpm-macros
f58644
Summary:        Common RPM macros for %{name}
f58644
Requires:       rpm
f58644
# when subpkg introduced
f58644
Conflicts:      cmake-data < 3.10.1-2
f58644
f58644
BuildArch:      noarch
f58644
f58644
%description    rpm-macros
f58644
This package contains common RPM macros for %{name}.
f58644
f58644
f58644
%prep
f58644
%autosetup -n %{orig_name}-%{version}%{?versuf} -p 1
f58644
f58644
f58644
%if %{with rpm}
f58644
%if %{with python3}
f58644
echo '#!%{__python3}' > %{name}.prov
f58644
echo '#!%{__python3}' > %{name}.req
f58644
%else
f58644
echo '#!%{__python2}' > %{name}.prov
f58644
echo '#!%{__python2}' > %{name}.req
f58644
%endif
f58644
tail -n +2 %{SOURCE4} >> %{name}.prov
f58644
tail -n +2 %{SOURCE5} >> %{name}.req
f58644
%endif
f58644
f58644
f58644
%build
f58644
%if 0%{?set_build_flags:1}
f58644
%{set_build_flags}
f58644
%else
f58644
CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS
f58644
CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS
f58644
FFLAGS="${FFLAGS:-%optflags%{?_fmoddir: -I%_fmoddir}}" ; export FFLAGS
f58644
FCFLAGS="${FCFLAGS:-%optflags%{?_fmoddir: -I%_fmoddir}}" ; export FCFLAGS
f58644
%{?__global_ldflags:LDFLAGS="${LDFLAGS:-%__global_ldflags}" ; export LDFLAGS ;}
f58644
%endif
f58644
SRCDIR="$(/usr/bin/pwd)"
f58644
mkdir %{_vpath_builddir}
f58644
pushd %{_vpath_builddir}
f58644
$SRCDIR/bootstrap --prefix=%{_prefix} --datadir=/share/%{name} \
f58644
                  --docdir=/share/doc/%{name} --mandir=/share/man \
f58644
                  --%{?with_bootstrap:no-}system-libs \
f58644
                  --no-system-librhash \
f58644
%if %{with bundled_jsoncpp}
f58644
                  --no-system-jsoncpp \
f58644
%endif
f58644
%if %{with bundled_libarchive}
f58644
                  --no-system-libarchive \
f58644
%endif
f58644
                  --parallel=`/usr/bin/getconf _NPROCESSORS_ONLN` \
f58644
%if %{with sphinx}
f58644
                  --sphinx-man --sphinx-html \
f58644
%else
f58644
                  --sphinx-build=%{_bindir}/false \
f58644
%endif
f58644
                  --%{!?with_gui:no-}qt-gui \
f58644
;
f58644
popd
f58644
%make_build -C %{_vpath_builddir} VERBOSE=1
f58644
f58644
f58644
%install
f58644
mkdir -p %{buildroot}%{_pkgdocdir}
f58644
%make_install -C %{_vpath_builddir} CMAKE_DOC_DIR=%{buildroot}%{_pkgdocdir}
f58644
find %{buildroot}%{_datadir}/%{name}/Modules -type f | xargs chmod -x
f58644
[ -n "$(find %{buildroot}%{_datadir}/%{name}/Modules -name \*.orig)" ] &&
f58644
  echo "Found .orig files in %{_datadir}/%{name}/Modules, rebase patches" &&
f58644
  exit 1
f58644
# Install major_version name links
f58644
# Install bash completion symlinks
f58644
mkdir -p %{buildroot}%{_datadir}/bash-completion/completions
f58644
for f in %{buildroot}%{_datadir}/%{name}/completions/*
f58644
do
f58644
  ln -s ../../%{name}/completions/$(basename $f) %{buildroot}%{_datadir}/bash-completion/completions
f58644
done
f58644
%if %{with emacs}
f58644
# Install emacs cmake mode
f58644
mkdir -p %{buildroot}%{_emacs_sitelispdir}/%{name}
f58644
install -p -m 0644 Auxiliary/cmake-mode.el %{buildroot}%{_emacs_sitelispdir}/%{name}/%{name}-mode.el
f58644
%{_emacs_bytecompile} %{buildroot}%{_emacs_sitelispdir}/%{name}/%{name}-mode.el
f58644
mkdir -p %{buildroot}%{_emacs_sitestartdir}
f58644
install -p -m 0644 %{SOURCE1} %{buildroot}%{_emacs_sitestartdir}
f58644
%endif
f58644
# RPM macros
f58644
install -p -m0644 -D %{SOURCE2} %{buildroot}%{rpm_macros_dir}/macros.%{name}
f58644
sed -i -e "s|@@CMAKE_VERSION@@|%{version}|" -e "s|@@CMAKE_MAJOR_VERSION@@|%{major_version}|" %{buildroot}%{rpm_macros_dir}/macros.%{name}
f58644
touch -r %{SOURCE2} %{buildroot}%{rpm_macros_dir}/macros.%{name}
f58644
%if %{with rpm} && 0%{?_rpmconfigdir:1}
f58644
# RPM auto provides
f58644
install -p -m0644 -D %{SOURCE3} %{buildroot}%{_prefix}/lib/rpm/fileattrs/%{name}.attr
f58644
install -p -m0755 -D %{name}.prov %{buildroot}%{_prefix}/lib/rpm/%{name}.prov
f58644
install -p -m0755 -D %{name}.req %{buildroot}%{_prefix}/lib/rpm/%{name}.req
f58644
%endif
f58644
mkdir -p %{buildroot}%{_libdir}/%{orig_name}
f58644
# Install copyright files for main package
f58644
find Source Utilities -type f -iname copy\* | while read f
f58644
do
f58644
  fname=$(basename $f)
f58644
  dir=$(dirname $f)
f58644
  dname=$(basename $dir)
f58644
  cp -p $f ./${fname}_${dname}
f58644
done
f58644
# Cleanup pre-installed documentation
f58644
%if %{with sphinx}
f58644
mv %{buildroot}%{_docdir}/%{name}/html .
f58644
%endif
f58644
rm -rf %{buildroot}%{_docdir}/%{name}
f58644
# Install documentation to _pkgdocdir
f58644
mkdir -p %{buildroot}%{_pkgdocdir}
f58644
cp -pr %{buildroot}%{_datadir}/%{name}/Help %{buildroot}%{_pkgdocdir}
f58644
mv %{buildroot}%{_pkgdocdir}/Help %{buildroot}%{_pkgdocdir}/rst
f58644
%if %{with sphinx}
f58644
mv html %{buildroot}%{_pkgdocdir}
f58644
%endif
f58644
f58644
%if %{with gui}
f58644
# Desktop file
f58644
desktop-file-install --delete-original \
f58644
  --dir=%{buildroot}%{_datadir}/applications \
f58644
  %{buildroot}%{_datadir}/applications/%{name}-gui.desktop
f58644
f58644
%if %{with appdata}
f58644
# Register as an application to be visible in the software center
f58644
#
f58644
# NOTE: It would be *awesome* if this file was maintained by the upstream
f58644
# project, translated and installed into the right place during `make install`.
f58644
#
f58644
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
f58644
#
f58644
mkdir -p %{buildroot}%{_metainfodir}
f58644
cat > %{buildroot}%{_metainfodir}/cmake-gui.appdata.xml <
f58644
f58644
f58644
f58644
EmailAddress: kitware@kitware.com
f58644
SentUpstream: 2014-09-17
f58644
-->
f58644
<application>
f58644
  <id type="desktop">cmake-gui.desktop</id>
f58644
  <metadata_license>CC0-1.0</metadata_license>
f58644
  <name>CMake GUI</name>
f58644
  <summary>Create new CMake projects</summary>
f58644
  <description>
f58644
    

f58644
      CMake is an open source, cross platform build system that can build, test,
f58644
      and package software. CMake GUI is a graphical user interface that can
f58644
      create and edit CMake projects.
f58644
    

f58644
  </description>
f58644
  <url type="homepage">http://www.cmake.org</url>
f58644
  <screenshots>
f58644
    <screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/CMake/a.png</screenshot>
f58644
  </screenshots>
f58644
  
f58644
  <updatecontact>someone_who_cares@upstream_project.org</updatecontact>
f58644
   -->
f58644
</application>
f58644
EOF
f58644
%endif
f58644
%endif
f58644
f58644
# create manifests for splitting files and directories for filesystem-package
f58644
find %{buildroot}%{_datadir}/%{name} -type d | \
f58644
  sed -e 's!^%{buildroot}!%%dir "!g' -e 's!$!"!g' > data_dirs.mf
f58644
find %{buildroot}%{_datadir}/%{name} -type f | \
f58644
  sed -e 's!^%{buildroot}!"!g' -e 's!$!"!g' > data_files.mf
f58644
find %{buildroot}%{_libdir}/%{orig_name} -type d | \
f58644
  sed -e 's!^%{buildroot}!%%dir "!g' -e 's!$!"!g' > lib_dirs.mf
f58644
find %{buildroot}%{_libdir}/%{orig_name} -type f | \
f58644
  sed -e 's!^%{buildroot}!"!g' -e 's!$!"!g' > lib_files.mf
f58644
find %{buildroot}%{_bindir} -type f -or -type l -or -xtype l | \
f58644
  sed -e '/.*-gui$/d' -e '/^$/d' -e 's!^%{buildroot}!"!g' -e 's!$!"!g' >> lib_files.mf
f58644
f58644
f58644
%if %{with test}
f58644
%check
f58644
%if 0%{?rhel} && 0%{?rhel} <= 6
f58644
mv -f Modules/FindLibArchive.cmake Modules/FindLibArchive.disabled
f58644
%endif
f58644
pushd %{_vpath_builddir}
f58644
# CTestTestUpload require internet access
f58644
# CPackComponentsForAll-RPM-IgnoreGroup failing wih rpm 4.15 - https://gitlab.kitware.com/cmake/cmake/issues/19983
f58644
NO_TEST="CTestTestUpload|CPackComponentsForAll-RPM-IgnoreGroup"
f58644
# kwsys.testProcess-{4,5} are flaky on s390x.
f58644
%ifarch s390x
f58644
NO_TEST="$NO_TEST|kwsys.testProcess-4|kwsys.testProcess-5"
f58644
%endif
f58644
# RunCMake.PrecompileHeaders test uses precompiled file presumably compiled with different compiler
f58644
# that one of RHEL8 (GCC-8.3.1). See https://bugzilla.redhat.com/show_bug.cgi?id=1721553#c4
f58644
%if 0%{?rhel} && 0%{?rhel} > 7
f58644
NO_TEST="$NO_TEST|RunCMake.PrecompileHeaders"
f58644
%endif
f58644
f58644
bin/ctest%{?name_suffix} %{?_smp_mflags} -V -E "$NO_TEST" --output-on-failure
f58644
# Keep an eye on failing tests
f58644
bin/ctest%{?name_suffix} %{?_smp_mflags} -V -R "$NO_TEST" --output-on-failure || :
f58644
popd
f58644
%if 0%{?rhel} && 0%{?rhel} <= 6
f58644
mv -f Modules/FindLibArchive.disabled Modules/FindLibArchive.cmake
f58644
%endif
f58644
%endif
f58644
f58644
f58644
%files -f lib_files.mf
f58644
%doc %dir %{_pkgdocdir}
f58644
%license Copyright.txt*
f58644
%license COPYING*
f58644
%if %{with sphinx}
f58644
%{_mandir}/man1/c%{name}.1.*
f58644
%{_mandir}/man1/%{name}.1.*
f58644
%{_mandir}/man1/cpack%{?name_suffix}.1.*
f58644
%{_mandir}/man1/ctest%{?name_suffix}.1.*
f58644
%{_mandir}/man7/*.7.*
f58644
%endif
f58644
f58644
f58644
%files data -f data_files.mf
f58644
%{_datadir}/aclocal/%{name}.m4
f58644
%{_datadir}/bash-completion
f58644
%if %{with emacs}
f58644
%if 0%{?fedora} || 0%{?rhel} >= 7
f58644
%{_emacs_sitelispdir}/%{name}
f58644
%{_emacs_sitestartdir}/%{name}-init.el
f58644
%else
f58644
%{_emacs_sitelispdir}
f58644
%{_emacs_sitestartdir}
f58644
%endif
f58644
%endif
f58644
f58644
f58644
%files doc
f58644
# Pickup license-files from main-pkg's license-dir
f58644
# If there's no license-dir they are picked up by %%doc previously
f58644
%{?_licensedir:%license %{_datadir}/licenses/%{name}*}
f58644
%doc %{_pkgdocdir}
f58644
f58644
f58644
%files filesystem -f data_dirs.mf -f lib_dirs.mf
f58644
f58644
f58644
%if %{with gui}
f58644
%files gui
f58644
%{_bindir}/%{name}-gui
f58644
%if %{with appdata}
f58644
%{_metainfodir}/*.appdata.xml
f58644
%endif
f58644
%{_datadir}/applications/%{name}-gui.desktop
f58644
%{_datadir}/mime/packages
f58644
%{_datadir}/icons/hicolor/*/apps/CMake%{?name_suffix}Setup.png
f58644
%if %{with sphinx}
f58644
%{_mandir}/man1/%{name}-gui.1.*
f58644
%endif
f58644
%endif
f58644
f58644
f58644
%files rpm-macros
f58644
%{rpm_macros_dir}/macros.%{name}
f58644
%if %{with rpm} && 0%{?_rpmconfigdir:1}
f58644
%{_rpmconfigdir}/fileattrs/%{name}.attr
f58644
%{_rpmconfigdir}/%{name}.prov
f58644
%{_rpmconfigdir}/%{name}.req
f58644
%endif
f58644
f58644
f58644
%changelog
f58644
* Tue Apr 28 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.2-1
f58644
- Update to cmake-3.17.2
f58644
f58644
* Thu Apr 09 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.1-1
f58644
- Update to cmake-3.17.1
f58644
f58644
* Tue Mar 24 2020 Rex Dieter <rdieter@fedoraproject.org> - 3.17.0-1
f58644
- Update to cmake-3.17.0
f58644
f58644
* Fri Mar 13 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.0-0.4.rc3
f58644
- Update to 3.17.0-rc3
f58644
f58644
* Tue Mar 03 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.0-0.3.rc2
f58644
- Update to 3.17.0-rc2
f58644
f58644
* Thu Feb 27 2020 Orion Poplawski <orion@nwra.com> - 3.17.0-0.2.rc1
f58644
- Use python3 for rpm generators
f58644
- Use lowercase names for cmake provides in generator (in addition to old names)
f58644
f58644
* Mon Feb 17 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.0-0.1.rc1
f58644
- Update to 3.17.0-rc1
f58644
f58644
* Wed Feb 05 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.4-1
f58644
- Update to 3.16.4
f58644
f58644
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.16.3-2
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
f58644
f58644
* Wed Jan 22 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.3-1
f58644
- Update to 3.16.3
f58644
f58644
* Wed Jan 15 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.2-1
f58644
- Update to 3.16.2
f58644
- Use %%_vpath_builddir for out-of-tree build
f58644
- Use %%set_build_flags to export build flags if available
f58644
- Use %%set_build_flags inside macros.cmake if available
f58644
f58644
* Tue Jan 14 2020 Miro Hrončok <mhroncok@redhat.com> - 3.16.1-2
f58644
- FindPython: Add support for version 3.9
f58644
f58644
* Sat Dec 14 2019 Björn Esser <besser82@fedoraproject.org> - 3.16.1-1
f58644
- Update to 3.16.1
f58644
- Re-enable test "kwsys.testProcess-5" on S390X
f58644
f58644
* Tue Nov 26 2019 Björn Esser <besser82@fedoraproject.org> - 3.16.0-1
f58644
- Update to 3.16.0
f58644
- Exclude test "kwsys.testProcess-5" on S390X
f58644
f58644
* Mon Nov 18 2019 Orion Poplawski <orion@nwra.com> - 3.16.0-0.1.rc4
f58644
- Update to 3.16.0-rc4
f58644
- Cleanup %%check
f58644
f58644
* Thu Nov 14 2019 Björn Esser <besser82@fedoraproject.org> - 3.15.5-2
f58644
- Rebuild (jsoncpp)
f58644
- Exclude more tests failing on s390x
f58644
f58644
* Wed Oct 30 2019 Orion Poplawski <orion@nwra.com> - 3.15.5-1
f58644
- Update to 3.15.5
f58644
f58644
* Wed Oct 16 2019 Orion Poplawski <orion@nwra.com> - 3.15.4-1
f58644
- Update to 3.15.4
f58644
f58644
* Mon Sep 30 2019 Orion Poplawski <orion@nwra.com> - 3.15.3-1
f58644
- Update to 3.15.3
f58644
f58644
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.14.5-4
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
f58644
f58644
* Wed Jul 03 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.5-3
f58644
- Rebuild (jsoncpp), qt5 enabled
f58644
f58644
* Wed Jul 03 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.5-2
f58644
- Rebuild (jsoncpp), bootstrap without qt5
f58644
- Ignore a test failing with rpm-4.15
f58644
f58644
* Fri May 31 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.5-1
f58644
- 3.14.5
f58644
f58644
* Tue May 14 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.4-1
f58644
- 3.14.4
f58644
f58644
* Mon Apr 22 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.3-1
f58644
- 3.14.3
f58644
f58644
* Fri Apr 12 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.2-1
f58644
- 3.14.2
f58644
f58644
* Fri Mar 29 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.1-1
f58644
- 3.14.1
f58644
f58644
* Thu Mar 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 3.14.0-2
f58644
- pull in upstream fix for conflict with ECM/FindFontConfig
f58644
f58644
* Fri Mar 15 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.0-1
f58644
- 3.14.0
f58644
f58644
* Sat Feb 2 2019 Orion Poplawski <orion@nwra.com> - 3.13.4-1
f58644
- 3.13.4
f58644
f58644
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.13.3-2
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f58644
f58644
* Wed Jan 16 2019 Rex Dieter <rdieter@fedoraproject.org> - 3.13.3-1
f58644
- 3.13.3
f58644
f58644
* Fri Dec 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.13.2-1
f58644
- 3.13.2
f58644
f58644
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.13.1-2
f58644
- macros.cmake: introduce %%_cmake_shared_libs macro
f58644
f58644
* Wed Nov 28 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.13.1-1
f58644
- 3.13.1
f58644
f58644
* Sat Sep 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.12.2-1
f58644
- Update to 3.12.2
f58644
f58644
* Fri Aug 17 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.12.1-1
f58644
- Update to 3.12.1 (# 1614572)
f58644
f58644
* Fri Jul 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.12.0-1
f58644
- Update to 3.12.0 (#1584925)
f58644
- fixes libuv-related FTBFS (#1603661)
f58644
- use %%_metainfodir
f58644
f58644
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.2-3
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f58644
f58644
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.11.2-2
f58644
- Rebuilt for Python 3.7
f58644
f58644
* Fri May 18 2018 Björn Esser <besser82@fedoraproject.org> - 3.11.2-1
f58644
- Update to 3.11.2 (#1568630)
f58644
f58644
* Thu Mar 29 2018 Björn Esser <besser82@fedoraproject.org> - 3.11.0-1
f58644
- Update to 3.11.0 (#1536233)
f58644
f58644
* Thu Mar 08 2018 Orion Poplawski <orion@nwra.com> - 3.10.2-4
f58644
- Add patch to fix autogen with empty files (bug #1551147)
f58644
f58644
* Thu Mar 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.10.2-3
f58644
- better Qt dependencies
f58644
f58644
* Fri Mar 02 2018 Kalev Lember <klember@redhat.com> - 3.10.2-2
f58644
- Fix appdata file to match with desktop file name
f58644
f58644
* Thu Feb 22 2018 Orion Poplawski <orion@nwra.com> - 3.10.2-1
f58644
- Update to 3.10.2
f58644
- Add patch to fix test failure with gcc 8
f58644
f58644
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.1-13
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f58644
f58644
* Tue Jan 16 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.10.1-12
f58644
- Conflicts was the right choice
f58644
f58644
* Sun Jan 14 2018 Björn Esser <besser82@fedoraproject.org> - 3.10.1-11
f58644
- rpm-macros: Keep cmake{,-data} in evr-lock, if they are installed
f58644
f58644
* Sun Jan 14 2018 Björn Esser <besser82@fedoraproject.org> - 3.10.1-10
f58644
- rpm-macros: Use rich boolean Requires instead of Conflicts (#1532293)
f58644
f58644
* Sat Jan 13 2018 Rex Dieter <rdieter@fedoraproject.org> 3.10.1-9
f58644
- -rpm-macros: Conflicts: cmake-data < 3.10.1-2 (#1532293)
f58644
f58644
* Tue Jan 02 2018 Sandro Mani <manisandro@gmail.com> - 3.10.1-8
f58644
- Add dl to CMAKE_DL_LIBS on MINGW
f58644
f58644
* Sat Dec 30 2017 Richard W.M. Jones <rjones@redhat.com> - 3.10.1-7
f58644
- Add small fix for RISC-V support.
f58644
f58644
* Tue Dec 26 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-6
f58644
- Rebuilt for jsoncpp.so.20
f58644
f58644
* Tue Dec 26 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-5
f58644
- Bootstrapping for jsoncpp-1.8.4
f58644
f58644
* Thu Dec 21 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-4
f58644
- Re-add arched requires on filesystem sub-package
f58644
f58644
* Thu Dec 21 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-3
f58644
- Ensure we have our own rpm-macros in place during build
f58644
f58644
* Thu Dec 21 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-2
f58644
- Move rpm macros to own subpackage (#1498894)
f58644
f58644
* Sat Dec 16 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-1
f58644
- Update to 3.10.1 (#1526648)
f58644
f58644
* Thu Nov 23 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.0-1
f58644
- Update to 3.10.0 (#1515793)
f58644
f58644
* Fri Nov 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.9.6-1
f58644
- Update to 3.9.6
f58644
f58644
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.9.5-1
f58644
- Update to 3.9.5 (#1498688)
f58644
f58644
* Thu Sep 21 2017 Pete Walter <pwalter@fedoraproject.org> - 3.9.3-1
f58644
- Update to 3.9.3
f58644
f58644
* Fri Sep 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.1-4
f58644
- Rebuilt for jsoncpp-1.8.3
f58644
f58644
* Fri Sep 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.1-3
f58644
- Bootstrapping for jsoncpp-1.8.3
f58644
f58644
* Sun Aug 13 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.1-2
f58644
- Add patch to restore old style debuginfo creation for rpm >= 4.14
f58644
  in CPackRPM
f58644
f58644
* Sat Aug 12 2017 Pete Walter <pwalter@fedoraproject.org> - 3.9.1-1
f58644
- Update to 3.9.1
f58644
f58644
* Thu Aug 03 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-9
f58644
- RunCMake.File_Generate fails on S390X, skip it temporarily
f58644
f58644
* Wed Aug 02 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-8
f58644
- Fix cmake.attr and cmake.req to work properly
f58644
f58644
* Wed Aug 02 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-7
f58644
- Add cmake.req to autogenerate proper depency on cmake-filesystem
f58644
f58644
* Wed Aug 02 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-6
f58644
- Fix cmake-gui being picked up by main package
f58644
f58644
* Sun Jul 30 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-5
f58644
- Optimizations for filesystem-package
f58644
f58644
* Fri Jul 28 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-4
f58644
- Temporarily disable RunCMake.CPack_RPM, because it fails for the new
f58644
  way RPM handles debug-stuff
f58644
f58644
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-3
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f58644
f58644
* Sun Jul 23 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-2
f58644
- Update patch for Fedora RELEASE-builds
f58644
- Add patch to fix warnings from Sphinx
f58644
f58644
* Wed Jul 19 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-1
f58644
- Update to 3.9.0 final (rhbz#1472503)
f58644
- Add filesystem package (rhbz#1471153)
f58644
f58644
* Thu Jun 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.8.2-1
f58644
- Update to 3.8.2 final (rhbz#1447473)
f58644
f58644
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.0-3.1
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
f58644
f58644
* Fri Apr 28 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-3
f58644
- Add upstream patch to fix FindGLUT library dependencies (bug #1444563)
f58644
f58644
* Fri Apr 21 2017 Karsten Hopp <karsten@redhat.com> - 3.8.0-2
f58644
- use new _module_build macro to limit dependencies for Modularity
f58644
f58644
* Mon Apr 10 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-1
f58644
- Update to 3.8.0 final
f58644
f58644
* Mon Mar 27 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-0.2.rc3
f58644
- Update to 3.8.0-rc3
f58644
- Add upstream patch to support rpm build-id dirs
f58644
f58644
* Mon Mar 20 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-0.1.rc2
f58644
- Update to 3.8.0-rc2
f58644
f58644
* Mon Feb 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.7.2-4
f58644
- Add patch to handle gcc format option changes
f58644
f58644
* Mon Feb 20 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.7.2-3
f58644
- Fix ambiguous file lookup in cmake.prov
f58644
f58644
* Thu Feb 9 2017 Orion Poplawski <orion@cora.nwra.com> - 3.7.2-2
f58644
- Fix cmake.prov error
f58644
f58644
* Fri Jan 13 2017 Orion Poplawski <orion@cora.nwra.com> - 3.7.2-1
f58644
- Update to 3.7.2
f58644
f58644
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 3.7.1-2
f58644
- Rebuild for Python 3.6
f58644
f58644
* Wed Nov 30 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.1-1
f58644
- Update to 3.7.1
f58644
f58644
* Sat Nov 12 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-1
f58644
- Update to 3.7.0 final
f58644
f58644
* Fri Nov 4 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-0.3.rc3
f58644
- Update to 3.7.0-rc3
f58644
f58644
* Wed Oct 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-0.2.rc2
f58644
- Update to 3.7.0-rc2
f58644
f58644
* Thu Oct 6 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-0.1.rc1
f58644
- Update to 3.7.0-rc1
f58644
- Drop gui, findjni, and riscv patches applied upstream
f58644
f58644
* Mon Oct 03 2016 Björn Esser <fedora@besser82.io> - 3.6.2-6
f58644
- Rebuilt with gui enabled
f58644
f58644
* Mon Oct 03 2016 Björn Esser <fedora@besser82.io> - 3.6.2-5
f58644
- Rebuilt for libjsoncpp.so.11
f58644
- Bootstrap without gui, due inter-circular dependency in qt5-rpm-macros
f58644
f58644
* Mon Sep 26 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.2-4
f58644
- Add upstream patch for Qt5 QFileDialog usage
f58644
f58644
* Mon Sep 26 2016 Than Ngo <than@redhat.com> - 3.6.2-3
f58644
- Add aarch32 to libarch for arm platform
f58644
f58644
* Mon Sep 12 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.2-2
f58644
- Provide the major version cmakeX name
f58644
f58644
* Thu Sep 8 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.2-1
f58644
- Update to 3.6.2
f58644
f58644
* Tue Aug 16 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.1-2
f58644
- Ship symlinks to binaries with major version in name
f58644
- Provide %%cmakeX macro, where X is cmake major version
f58644
f58644
* Mon Jul 25 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.1-1
f58644
- Update to 3.6.1
f58644
f58644
* Fri Jul 8 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.0-1
f58644
- Update to 3.6.0
f58644
f58644
* Wed Jun 29 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.0-0.1.rc4
f58644
- Update to 3.6.0-rc4
f58644
f58644
* Fri Jun 03 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.2-3
f58644
- Add patch to support libarchive 3.2
f58644
f58644
* Thu Jun 02 2016 Than Ngo <than@redhat.com> - 3.5.2-3
f58644
- drop -O3 and add -O2 for default release
f58644
f58644
* Thu Apr 21 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.2-2
f58644
- Do not own /usr/lib/rpm/fileattrs
f58644
f58644
* Fri Apr 15 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.2-1
f58644
- Update to 3.5.2 final
f58644
f58644
* Fri Mar 25 2016 Björn Esser <fedora@besser82.io> - 3.5.1-2
f58644
- Rebuilt for libjsoncpp.so.1
f58644
f58644
* Fri Mar 25 2016 Björn Esser <fedora@besser82.io> - 3.5.1-1
f58644
- Update to 3.5.1 (#1321198)
f58644
f58644
* Thu Mar 10 2016 Björn Esser <fedora@besser82.io> - 3.5.0-2
f58644
- keep Help-directory and its contents in %%_datadir/%%name (#1316306)
f58644
f58644
* Tue Mar 8 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-1
f58644
- Update to 3.5.0 final
f58644
f58644
* Mon Mar 07 2016 Björn Esser <fedora@besser82.io> - 3.5.0-0.3.rc3
f58644
- cleanup trailing whitespaces
f58644
- remove el5 stuff
f58644
- doc-subpkg should be noarch'ed
f58644
- doc-subpkg should not require main-pkg
f58644
- add %%{?_isa} to the applicable Requires
f58644
- replaced %%define with %%global
f58644
- handle macrosdir for rpm-macros properly
f58644
- fix ownership of directories, add needed Requires
f58644
- conditionalize appdata
f58644
- handle docdir properly
f58644
- generalize glob for man-pages independent of used compression
f58644
- generalize for use as EPEL-package, too
f58644
- use %%license instead of %%doc for license-files
f58644
- split the common data-files into a noarch'ed subpackage
f58644
- build html-docs and put them into the doc-subpkg
f58644
f58644
* Sat Feb 20 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-0.2.rc3
f58644
- Update to 3.5.0-rc3
f58644
f58644
* Wed Feb 17 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-0.1.rc2
f58644
- Update to 3.5.0-rc2
f58644
- Drop dcmtk patch
f58644
f58644
* Sun Feb 7 2016 Orion Poplawski <orion@cora.nwra.com> - 3.4.3-3
f58644
- Fix build without gui (bug #1305310)
f58644
f58644
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.3-2
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f58644
f58644
* Mon Jan 25 2016 Orion Poplawski <orion@cora.nwra.com> - 3.4.3-1
f58644
- Update to 3.4.3
f58644
f58644
* Tue Jan 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.4.2-1
f58644
- Update to 3.4.2
f58644
f58644
* Sat Dec 12 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.4.1-4
f58644
- Use Python 3 on F-23+
f58644
f58644
* Tue Dec 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.1-3
f58644
- Use Qt5 for gui
f58644
f58644
* Mon Dec 7 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.1-2
f58644
- Fixup some conditionals for RHEL7
f58644
f58644
* Wed Dec 2 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.1-1
f58644
- Update to 3.4.1
f58644
f58644
* Wed Nov 25 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-2
f58644
- BR /usr/bin/sphinx-build instead of python-sphinx
f58644
f58644
* Tue Nov 17 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-1
f58644
- Update to 3.4.0 final
f58644
f58644
* Thu Nov 5 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-0.3.rc3
f58644
- Update to 3.4.0-rc3
f58644
f58644
* Wed Oct 21 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-0.2.rc2
f58644
- Update to 3.4.0-rc2
f58644
f58644
* Tue Oct 6 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-0.1.rc1
f58644
- Update to 3.4.0-rc1
f58644
f58644
* Tue Oct 6 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.2-2
f58644
- Add upstream patch to find python 3.5 (bug #1269095)
f58644
f58644
* Thu Sep 17 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.2-1
f58644
- Update to 3.3.2
f58644
- Use %%{__global_ldflags}
f58644
- Fix test exclusion
f58644
f58644
* Fri Sep 11 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-5
f58644
- Apply upstream patch to fix Fortran linker detection with redhat-hardened-ld
f58644
  (bug #1260490)
f58644
f58644
* Wed Sep 9 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-4
f58644
- Apply upstream patch to fix trycompile output (bug #1260490)
f58644
f58644
* Tue Aug 25 2015 Rex Dieter <rdieter@fedoraproject.org> 3.3.1-3
f58644
- pull in some upstream fixes (FindPkgConfig,boost-1.59)
f58644
f58644
* Fri Aug 21 2015 Rex Dieter <rdieter@fedoraproject.org> 3.3.1-2
f58644
- Provides: bundled(kwsys)
f58644
f58644
* Thu Aug 13 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-1
f58644
- Update to 3.3.1
f58644
f58644
* Thu Jul 23 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-1
f58644
- Update to 3.3.0
f58644
f58644
* Thu Jul 9 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-0.4.rc3
f58644
- Update to 3.3.0-rc3
f58644
- Fix cmake.attr to handle 32-bit libraries
f58644
f58644
* Tue Jun 23 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-0.3.rc2
f58644
- Update to 3.3.0-rc2
f58644
f58644
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-0.2.rc1
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f58644
f58644
* Mon Jun 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-0.1.rc1
f58644
- Update to 3.3.0-rc1
f58644
f58644
* Mon Jun 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.3-1
f58644
- Update to 3.2.3
f58644
f58644
* Wed Apr 15 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.2-1
f58644
- Update to 3.2.2
f58644
f58644
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 3.2.1-5
f58644
- Add an AppData file for the software center
f58644
f58644
* Mon Mar 23 2015 Daniel Vrátil <dvratil@redhat.com> - 3.2.1-4
f58644
- cmake.prov: handle exceptions
f58644
f58644
* Wed Mar 18 2015 Rex Dieter <rdieter@fedoraproject.org> 3.2.1-3
f58644
- cmake.prov: use /usr/bin/python (instead of /bin/python)
f58644
f58644
* Tue Mar 17 2015 Rex Dieter <rdieter@fedoraproject.org> 3.2.1-2
f58644
- RFE: CMake automatic RPM provides  (#1202899)
f58644
f58644
* Wed Mar 11 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-1
f58644
- Update to 3.2.1
f58644
f58644
* Thu Feb 26 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-0.2.rc2
f58644
- Update to 3.2.0-rc2
f58644
- Drop C++11 ABI workaround, fixed in gcc
f58644
- Drop strict_aliasing patch fixed upstream long ago
f58644
- Drop FindLua52, FindLua should work now for 5.1-5.3
f58644
f58644
* Sun Feb 15 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-0.1.rc1
f58644
- Update to 3.2.0-rc1
f58644
- Drop ninja patch fixed upstream
f58644
- Upstream now ships icons, add icon-cache scriptlets
f58644
f58644
* Fri Feb 13 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.3-1
f58644
- Update to 3.1.3
f58644
f58644
* Sat Feb 7 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.2-1
f58644
- Update to 3.1.2
f58644
f58644
* Fri Jan 23 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.1-1
f58644
- Update to 3.1.1
f58644
- Drop ruby patch applied upstream
f58644
f58644
* Sat Jan 17 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.0-2
f58644
- Fix ruby 2.2.0 teeny (0) detection
f58644
f58644
* Wed Dec 17 2014 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-1
f58644
- Update to 3.1.0 final
f58644
f58644
* Sat Nov 15 2014 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-0.2.rc2
f58644
- Update to 3.1.0-rc2
f58644
f58644
* Wed Oct 29 2014 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-0.1.rc1
f58644
- Update to 3.1.0-rc1
f58644
f58644
* Mon Sep 15 2014 Dan Horák <dan[at]danny.cz> - 3.0.2-2
f58644
- fix FindJNI for ppc64le (#1141782)
f58644
f58644
* Sun Sep 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.2-1
f58644
- Update to 3.0.2
f58644
f58644
* Mon Aug 25 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.1-3
f58644
- Update wxWidgets patches
f58644
f58644
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-2
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f58644
f58644
* Wed Aug 6 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.1-1
f58644
- Update to 3.0.1
f58644
f58644
* Thu Jul 03 2014 Rex Dieter <rdieter@fedoraproject.org> 3.0.0-2
f58644
- optimize mimeinfo scriptlet
f58644
f58644
* Sat Jun 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-1
f58644
- Update to 3.0.0 final
f58644
f58644
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-0.11.rc6
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f58644
f58644
* Tue May 27 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.10.rc6
f58644
- Update to 3.0.0-rc6
f58644
f58644
* Wed May 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.9.rc5
f58644
- Update to 3.0.0-rc5
f58644
- Drop icon patch applied upstream
f58644
f58644
* Tue Apr 22 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.8.rc4
f58644
- Update to 3.0.0-rc4
f58644
f58644
* Thu Apr 10 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.7.rc3
f58644
- Fix doc duplication
f58644
f58644
* Fri Apr 4 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.6.rc3
f58644
- Rebase patches to prevent .orig files in Modules
f58644
- Add install check for .orig files
f58644
f58644
* Wed Mar 26 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.5.rc3
f58644
- Update to 3.0.0-rc3
f58644
- Add patch to fix FindwxWidgets when cross-compiling for Windows (bug #1081207)
f58644
f58644
* Wed Mar 5 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.4.rc1
f58644
- Add additional FindPythonLibs patch from upstream (bug #1072964)
f58644
f58644
* Mon Mar 3 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.3.rc1
f58644
- Update to upstreams version of FindPythonLibs patch
f58644
f58644
* Mon Mar 3 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.2.rc1
f58644
- Use symlinks for bash completions
f58644
f58644
* Fri Feb 28 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.1.rc1
f58644
- Update to 3.0.0-rc1
f58644
- Update qtdeps patch to upstreamed version
f58644
- Install bash completions
f58644
f58644
* Tue Feb 11 2014 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.2-2
f58644
- Add upstream patch to find Boost MPI library (bug #756141)
f58644
f58644
* Tue Jan 28 2014 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.2-1
f58644
- Update to 2.8.12.2
f58644
f58644
* Wed Jan 22 2014 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.1-2
f58644
- Fix FindFreetype for 2.5.1+
f58644
f58644
* Wed Nov 6 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.1-1
f58644
- Update to 2.8.12.1
f58644
f58644
* Wed Oct 23 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-3
f58644
- Remove UseQt4 automatic dependency adding
f58644
f58644
* Thu Oct 10 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-2
f58644
- Autoload cmake-mode in emacs (bug #1017779)
f58644
f58644
* Tue Oct 8 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-1
f58644
- Update to 2.8.12 final
f58644
f58644
* Tue Oct 1 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.6.rc4
f58644
- Update to 2.8.12-rc4
f58644
- Drop upstreamed FindHD5 patch
f58644
f58644
* Thu Sep 19 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.5.rc3
f58644
- Add patch to fix FindHDF5
f58644
f58644
* Tue Sep 17 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.4.rc3
f58644
- Update to 2.8.12-rc3
f58644
f58644
* Wed Sep 4 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.3.rc2
f58644
- Update to 2.8.12-rc2
f58644
f58644
* Wed Aug 28 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.2.rc1
f58644
- Add patch to fix FindPythonLibs issues (bug #876118)
f58644
- Split docs into separate -doc sub-package
f58644
f58644
* Mon Aug 26 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.1.rc1
f58644
- Update to 2.8.12-rc1
f58644
- Drop ImageMagick patch - not needed
f58644
f58644
* Fri Jul 26 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11.2-4
f58644
- Use version-less docdir
f58644
f58644
* Thu Jul 25 2013 Petr Machata <pmachata@redhat.com> - 2.8.11.2-3
f58644
- Icon name in desktop file should be sans .png extension.
f58644
f58644
* Thu Jul 25 2013 Petr Machata <pmachata@redhat.com> - 2.8.11.2-2
f58644
- Pass -fno-strict-aliasing to cm_sha2.c to avoid strict aliasing
f58644
  problems that GCC warns about.
f58644
f58644
* Tue Jul 9 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11.2-1
f58644
- Update to 2.8.11.2 release
f58644
f58644
* Mon Jun 10 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11.1-1
f58644
- Update to 2.8.11.1 release
f58644
f58644
* Sat May 18 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-1
f58644
- Update to 2.8.11 release
f58644
f58644
* Mon May 13 2013 Tom Callaway <spot@fedoraproject.org> - 2.8.11-0.9.rc4
f58644
- add FindLua52.cmake
f58644
f58644
* Thu May 9 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.8.rc4
f58644
- Update to 2.8.11-rc4
f58644
f58644
* Fri Apr 19 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.7.rc3
f58644
- Update to 2.8.11-rc3
f58644
f58644
* Thu Apr 18 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.6.rc2
f58644
- Drop -O3 from default release build type flags in cmake rpm macro (bug 875954)
f58644
f58644
* Wed Apr 17 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.5.rc2
f58644
- Update to 2.8.11-rc2
f58644
- Rebase ImageMagick patch
f58644
f58644
* Mon Mar 18 2013 Rex Dieter <rdieter@fedoraproject.org> 2.8.11-0.4.rc1
f58644
- respin cmake-2.8.11-rc1-IM_pkgconfig_hints.patch
f58644
- drop/omit backup files when applying patches
f58644
f58644
* Sat Mar 16 2013 Rex Dieter <rdieter@fedoraproject.org> 2.8.11-0.3.rc1
f58644
- Patch FindImageMagick.cmake for newer ImageMagick versions
f58644
f58644
* Sat Mar 16 2013 Rex Dieter <rdieter@fedoraproject.org> 2.8.11-0.2.rc1
f58644
- use %%{_rpmconfigdir}/macros.d on f19+
f58644
f58644
* Fri Mar 15 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.1.rc1
f58644
- Update to 2.8.11-rc1
f58644
- Drop upstream ccmake and usrmove patches
f58644
f58644
* Wed Mar 13 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.2-5
f58644
- Add patch from upstream to fix UsrMove handling (bug #917407)
f58644
- Drop %%config from rpm macros
f58644
- Define FCFLAGS in cmake macro
f58644
f58644
* Fri Feb 8 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.2-4
f58644
- Add patch to use ninja-build (bug #886184)
f58644
f58644
* Thu Jan 24 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.2-3
f58644
- Update FindPostgreSQL patch to use PostgreSQL_LIBRARY (bug #903757)
f58644
f58644
* Thu Jan 17 2013 Tomas Bzatek <tbzatek@redhat.com> - 2.8.10.2-2
f58644
- Rebuilt for new libarchive
f58644
f58644
* Tue Nov 27 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.10.2-1
f58644
- 2.8.10.2
f58644
f58644
* Thu Nov 8 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.1-1
f58644
- Update to 2.8.10.1
f58644
f58644
* Thu Nov 1 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10-1
f58644
- Update to 2.8.10 final
f58644
f58644
* Thu Oct 25 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10-0.2.rc3
f58644
- Add patch to fix DEL key in ccmake (bug 869769)
f58644
f58644
* Wed Oct 24 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10-0.1.rc3
f58644
- Update to 2.8.10 RC 3
f58644
- Rebase FindRuby and FindPostgreSQL patches
f58644
f58644
* Thu Aug 9 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-1
f58644
- Update to 2.8.9 final
f58644
f58644
* Fri Jul 27 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-0.4.rc3
f58644
- Update to 2.8.9 RC 3
f58644
f58644
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.9-0.3.rc2
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f58644
f58644
* Mon Jul 16 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-0.2.rc2
f58644
- Update to 2.8.9 RC 2
f58644
f58644
* Tue Jul 10 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-0.1.rc1
f58644
- Update to 2.8.9 RC 1
f58644
- Drop pkgconfig patch
f58644
f58644
* Thu Jul 5 2012 Orion Poplawski <orion@cora.nwra.com> 2.8.8-5
f58644
- Add patch to fix FindPostgreSQL (bug 828467)
f58644
f58644
* Mon May 21 2012 Orion Poplawski <orion@cora.nwra.com> 2.8.8-4
f58644
- Add patch to fix FindRuby (bug 822796)
f58644
f58644
* Thu May 10 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.8-3
f58644
- Incorrect license tag in spec file (#820334)
f58644
f58644
* Thu May 3 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-2
f58644
- Comply with Emacs packaging guidlines (bug #818658)
f58644
f58644
* Thu Apr 19 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-1
f58644
- Update to 2.8.8 final
f58644
f58644
* Sat Apr 14 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.8-0.4.rc2
f58644
- adjust pkgconfig patch (#812188)
f58644
f58644
* Fri Apr 13 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-0.3.rc2
f58644
- Add upstream patch to set PKG_CONFIG_FOUND (bug #812188)
f58644
f58644
* Mon Apr 9 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-0.2.rc2
f58644
- Update to 2.8.8 RC 2
f58644
f58644
* Fri Mar 23 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-0.1.rc1
f58644
- Update to 2.8.8 RC 1
f58644
f58644
* Tue Feb 21 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-6
f58644
- Just strip CMAKE_INSTALL_LIBDIR from %%cmake macro
f58644
f58644
* Tue Feb 21 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-5
f58644
- Strip CMAKE_INSTALL_LIBDIR and others from %%cmake macro (bug 795542)
f58644
f58644
* Thu Jan 26 2012 Tomas Bzatek <tbzatek@redhat.com> - 2.8.7-4
f58644
- Rebuilt for new libarchive
f58644
f58644
* Wed Jan 18 2012 Jaroslav Reznik <jreznik@redhat.com> - 2.8.7-3
f58644
- Rebuild for libarchive
f58644
f58644
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-2
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f58644
f58644
* Sun Jan 1 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-1
f58644
- Update to 2.8.7 final
f58644
f58644
* Tue Dec 27 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-0.2.rc2
f58644
- Update to 2.8.7 RC 2
f58644
f58644
* Tue Dec 13 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-0.1.rc1
f58644
- Update to 2.8.7 RC 1
f58644
f58644
* Tue Nov 15 2011 Daniel Drake <dsd@laptop.org> - 2.8.6-2
f58644
- Rebuild for libarchive.so.11
f58644
f58644
* Wed Oct 5 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-1
f58644
- Update to 2.8.6 final
f58644
f58644
* Thu Sep 22 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.5.rc4
f58644
- Update to 2.8.6 RC 4
f58644
f58644
* Tue Sep 13 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.4.rc3
f58644
- Update to 2.8.6 RC 3
f58644
f58644
* Sun Sep 11 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.8.6-0.3.rc2
f58644
- Sync FFLAGS and LDFLAGS in the %%cmake macro with redhat-rpm-config.
f58644
f58644
* Tue Sep 6 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.2.rc2
f58644
- Update to 2.8.6 RC 2
f58644
- Drop aclocal patch
f58644
f58644
* Mon Aug 29 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.1.rc1
f58644
- Update to 2.8.6 RC 1
f58644
- Update dcmtk patch
f58644
- Add upstream patch to fix aclocal install location
f58644
f58644
* Thu Jul 28 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-3
f58644
- Updated patch to find dcmtk in Fedora (Bug #720140)
f58644
f58644
* Fri Jul 22 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-2
f58644
- Add patch to find dcmtk in Fedora (Bug #720140)
f58644
f58644
* Fri Jul 22 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-1
f58644
- Update to 2.8.5 final
f58644
- Drop issue 12307 patch
f58644
f58644
* Thu Jul 21 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-0.3.rc3
f58644
- Update to 2.8.5 RC 3
f58644
- Drop upstreamed swig patch
f58644
- Apply upstream fix for issue 12307 (bug #723652)
f58644
f58644
* Mon Jun 20 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-0.2.rc2
f58644
- Update to 2.8.5 RC 2
f58644
- Add patch from upstream to fix FindSWIG
f58644
f58644
* Tue May 31 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-0.1.rc1
f58644
- Update to 2.8.5 RC 1
f58644
- Disable CTestTestUpload test, needs internet access
f58644
f58644
* Thu Feb 17 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.4-1
f58644
- Update to 2.8.4 final
f58644
f58644
* Wed Feb 2 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.4-0.2.rc2
f58644
- Update to 2.8.4 RC 2
f58644
f58644
* Tue Jan 18 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.4-0.1.rc1
f58644
- Update to 2.8.4 RC 1
f58644
- Drop qt4 patch
f58644
f58644
* Thu Dec 16 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-2
f58644
- Add patch from upstream git to fix bug 652886 (qt3/qt4 detection)
f58644
f58644
* Thu Nov 4 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-1
f58644
- Update to 2.8.3 final
f58644
f58644
* Mon Nov 1 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-0.3.rc4
f58644
- Update to 2.8.3 RC 4
f58644
- Drop python 2.7 patch fixed upstream
f58644
- No need to fixup source file permissions anymore
f58644
f58644
* Fri Oct 22 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-0.2.rc3
f58644
- Update to 2.8.3 RC 3
f58644
f58644
* Thu Sep 16 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-0.1.rc1
f58644
- Update to 2.8.3 RC 1
f58644
- Add BR bzip2-devel and libarchive-devel
f58644
f58644
* Fri Jul 23 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.8.2-2
f58644
- add support for Python 2.7 to FindPythonLibs.cmake (Orcan Ogetbil)
f58644
f58644
* Tue Jul 6 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-1
f58644
- Update to 2.8.2 final
f58644
f58644
* Thu Jun 24 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-0.3.rc4
f58644
- Update to 2.8.2 RC 4
f58644
f58644
* Wed Jun 23 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-0.2.rc3
f58644
- Update to 2.8.2 RC 3
f58644
f58644
* Mon Jun 21 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-0.1.rc2
f58644
- Update to 2.8.2 RC 2
f58644
f58644
* Thu Jun 3 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-5
f58644
- Upstream published a newer 2.8.1 tar ball
f58644
f58644
* Wed Jun 2 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-4
f58644
- Add BR gcc-gfortran so Fortran support is built
f58644
f58644
* Wed Apr 21 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-3
f58644
- Disable ModuleNotices test, re-enable parallel ctest
f58644
f58644
* Tue Mar 30 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-2
f58644
- Disable parallel ctest checks for now
f58644
f58644
* Tue Mar 23 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-1
f58644
- Update to 2.8.1 final
f58644
f58644
* Tue Mar 23 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.8.1-0.3.rc5
f58644
- Own /usr/lib(64)/cmake
f58644
f58644
* Fri Mar 12 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-0.2.rc5
f58644
- Update to 2.8.1 RC 5
f58644
f58644
* Fri Feb 19 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-0.1.rc3
f58644
- Update to 2.8.1 RC 3
f58644
f58644
* Thu Jan 14 2010 Rex Dieter <rdieter@fedorproject.org> - 2.8.0-2
f58644
- macros.cmake: drop -DCMAKE_SKIP_RPATH:BOOL=ON from %%cmake
f58644
f58644
* Wed Nov 18 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-1
f58644
- Update to 2.8.0 final
f58644
f58644
* Wed Nov 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.8.0-0.8.rc7
f58644
- rebuild (for qt-4.6.0-rc1)
f58644
f58644
* Wed Nov 11 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.7.rc7
f58644
- Update to 2.8.0 RC 7
f58644
f58644
* Tue Nov 10 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.7.rc6
f58644
- Update to 2.8.0 RC 6
f58644
f58644
* Wed Nov 4 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.6.rc5
f58644
- Update to 2.8.0 RC 5
f58644
- Drop patches fixed upstream
f58644
f58644
* Fri Oct 30 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.5.rc4
f58644
- Update to 2.8.0 RC 4
f58644
- Add FindJNI patch
f58644
- Add test patch from cvs to fix Fedora build test build error
f58644
f58644
* Tue Oct 13 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.4.rc3
f58644
- Update to 2.8.0 RC 3
f58644
- Drop vtk64 patch fixed upstream
f58644
f58644
* Fri Oct 9 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.3.rc2
f58644
- Do out of tree build, needed for ExternalProject test
f58644
f58644
* Thu Oct 8 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.2.rc2
f58644
- Update to 2.8.0 RC 2
f58644
- Use parallel ctest in %%check
f58644
f58644
* Tue Sep 29 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.1.rc1
f58644
- Update to 2.8.0 RC 1
f58644
f58644
* Thu Sep 17 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.6.4-4
f58644
- macro.cmake: prefixes cmake with the package being builts bindir (#523878)
f58644
f58644
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.4-3
f58644
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f58644
f58644
* Wed Jun 3 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-2
f58644
- Add patch to find VTK on 64-bit machines (bug #503945)
f58644
f58644
* Wed Apr 29 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-1
f58644
- Update to 2.6.4
f58644
- Drop patch for bug #475876 fixed upstream
f58644
f58644
* Mon Mar 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.6.3-3
f58644
- macros.cmake: +%%_cmake_version
f58644
f58644
* Mon Mar 09 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.6.3-2
f58644
- Fix crash during kdepimlibs build (#475876)
f58644
f58644
* Mon Feb 23 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-1
f58644
- Update to 2.6.3 final
f58644
f58644
* Tue Feb 17 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-0.4.rc13
f58644
- Update to 2.6.3-RC-13
f58644
f58644
* Tue Jan 13 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-0.3.rc8
f58644
- Update to 2.6.3-RC-8
f58644
f58644
* Sun Jan 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.6.3-0.2.rc5
f58644
- macros.cmake: add -DCMAKE_SKIP_RPATH:BOOL=ON
f58644
- fix Release tag
f58644
f58644
* Wed Dec 10 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-0.rc5.1
f58644
- Update to 2.6.3-RC-5
f58644
f58644
* Tue Dec 2 2008 Rex Dieter <rdieter@fedoraproject.org> - 2.6.2-3
f58644
- Add -DCMAKE_VERBOSE_MAKEFILE=ON to %%cmake (#474053)
f58644
- preserve timestamp of macros.cmake
f58644
- cosmetics
f58644
f58644
* Tue Oct 21 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-2
f58644
- Allow conditional build of gui
f58644
f58644
* Mon Sep 29 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-1
f58644
- Update to 2.6.2
f58644
f58644
* Mon Sep 8 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-0.rc3.1
f58644
- Update to 2.6.2-RC-2
f58644
- Drop parens patch fixed upstream
f58644
f58644
* Tue Sep 2 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-3
f58644
- Drop jni patch, applied upstream.
f58644
f58644
* Tue Aug 26 2008 Rex Dieter <rdieter@fedoraproject.org> - 2.6.1-2
f58644
- attempt to patch logic error, crasher
f58644
f58644
* Tue Aug 5 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-1
f58644
- Update to 2.6.1
f58644
f58644
* Mon Jul 14 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-0.rc8.1
f58644
- Update to 2.6.1-RC-8
f58644
- Drop xmlrpc patch fixed upstream
f58644
f58644
* Tue May 6 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-1
f58644
- Update to 2.6.0
f58644
f58644
* Mon May 5 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc10.1
f58644
- Update to 2.6.0-RC-10
f58644
f58644
* Thu Apr 24 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc9.1
f58644
- Update to 2.6.0-RC-9
f58644
f58644
* Fri Apr 11 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc8.1
f58644
- Update to 2.6.0-RC-8
f58644
f58644
* Thu Apr 3 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc6.1
f58644
- Update to 2.6.0-RC-6
f58644
f58644
* Fri Mar 28 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc5.1
f58644
- Update to 2.6.0-RC-5
f58644
- Add gui sub-package for Qt frontend
f58644
f58644
* Fri Mar 7 2008 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-3
f58644
- Add macro for bootstrapping new release/architecture
f58644
- Add %%check section
f58644
f58644
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.4.8-2
f58644
- Autorebuild for GCC 4.3
f58644
f58644
* Tue Jan 22 2008 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-1
f58644
- Update to 2.4.8
f58644
f58644
* Wed Jan 16 2008 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-0.rc12
f58644
- Update to 2.4.8 RC-12
f58644
f58644
* Fri Dec 14 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-0.rc4
f58644
- Update to 2.4.8 RC-4
f58644
f58644
* Mon Nov 12 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-4
f58644
- No longer set CMAKE_SKIP_RPATH
f58644
f58644
* Tue Aug 28 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-3
f58644
- Rebuild for new expat
f58644
f58644
* Wed Aug 22 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-2
f58644
- Rebuild for BuildID
f58644
f58644
* Mon Jul 23 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-1
f58644
- Update to 2.4.7
f58644
f58644
* Fri Jun 29 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-0.rc11
f58644
- Update to 2.4.7 RC-11
f58644
f58644
* Wed Jun 27 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-4
f58644
- Update macros.cmake to add CMAKE_INSTALL_LIBDIR, INCLUDE_INSTALL_DIR,
f58644
  LIB_INSTALL_DIR, SYSCONF_INSTALL_DIR, and SHARE_INSTALL_PREFIX
f58644
f58644
* Mon Apr 16 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-3
f58644
- Apply patch from upstream CVS to fix .so install permissions (bug #235673)
f58644
f58644
* Fri Apr 06 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-2
f58644
- Add rpm macros
f58644
f58644
* Thu Jan 11 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-1
f58644
- Update to 2.4.6
f58644
f58644
* Mon Dec 18 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.5-2
f58644
- Use system libraries (bootstrap --system-libs)
f58644
f58644
* Tue Dec  5 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.5-1
f58644
- Update to 2.4.5
f58644
f58644
* Tue Nov 21 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.4-1
f58644
- Update to 2.4.4
f58644
f58644
* Tue Oct 31 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-4
f58644
- Add /usr/lib/jvm/java to FindJNI search paths
f58644
f58644
* Tue Aug 29 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-3
f58644
- Rebuild for FC6
f58644
f58644
* Wed Aug  2 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-2
f58644
- vim 7.0 now ships cmake files, so don't ship ours (bug #201018)
f58644
- Add patch to Linux.cmake for Fortran soname support for plplot
f58644
f58644
* Tue Aug  1 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-1
f58644
- Update to 2.4.3
f58644
f58644
* Mon Jul 31 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.2-3
f58644
- Update for vim 7.0
f58644
f58644
* Tue Jul 11 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.2-2
f58644
- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
f58644
f58644
* Fri Jun 30 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.2-1
f58644
- Update to 2.4.2
f58644
f58644
* Thu Apr  6 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-4
f58644
- Update for vim 7.0c
f58644
f58644
* Tue Mar 28 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-3
f58644
- No subpackages, just own the emacs and vim dirs.
f58644
f58644
* Tue Mar 21 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-2
f58644
- Add emacs and vim support
f58644
- Include Example in docs
f58644
f58644
* Wed Mar  8 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-1
f58644
- Fedora Extras version