2017-09-05 11:38:07 +00:00
|
|
|
# Do we add appdata-files?
|
2018-07-27 14:30:12 +00:00
|
|
|
# consider conditional on whether %%_metainfodir is defined or not instead -- rex
|
2017-09-05 11:38:07 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without appdata
|
2017-09-05 11:38:07 +00:00
|
|
|
%else
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_with appdata
|
2017-09-05 11:38:07 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
# Set to bcond_without or use --with bootstrap if bootstrapping a new release
|
|
|
|
# or architecture
|
2021-11-03 20:03:15 +00:00
|
|
|
%bcond_with bootstrap
|
2017-09-05 11:38:07 +00:00
|
|
|
|
|
|
|
# Build with Emacs support
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without emacs
|
2017-09-05 11:38:07 +00:00
|
|
|
|
2017-09-29 12:06:02 +00:00
|
|
|
# Run git tests
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without git_test
|
2017-09-29 12:06:02 +00:00
|
|
|
|
2023-05-08 08:13:01 +00:00
|
|
|
# Set to bcond_with or use --without gui to disable qt gui build
|
2021-11-03 20:26:38 +00:00
|
|
|
%bcond_without gui
|
2017-09-05 11:38:07 +00:00
|
|
|
|
|
|
|
# Use ncurses for colorful output
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without ncurses
|
2013-03-16 20:26:13 +00:00
|
|
|
|
2016-03-07 15:43:29 +00:00
|
|
|
# Setting the Python-version used by default
|
2016-08-17 17:07:59 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_with python3
|
2015-12-12 09:17:57 +00:00
|
|
|
%else
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without python3
|
2015-12-12 09:17:57 +00:00
|
|
|
%endif
|
|
|
|
|
2017-09-05 11:38:07 +00:00
|
|
|
# Enable RPM dependency generators for cmake files written in Python
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without rpm
|
2016-03-07 15:43:29 +00:00
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without sphinx
|
2016-03-11 10:35:21 +00:00
|
|
|
|
2020-11-09 22:08:07 +00:00
|
|
|
%if !0%{?rhel}
|
|
|
|
%bcond_with bundled_jsoncpp
|
|
|
|
%bcond_with bundled_rhash
|
|
|
|
%else
|
|
|
|
%bcond_without bundled_jsoncpp
|
|
|
|
%bcond_without bundled_rhash
|
|
|
|
%endif
|
|
|
|
|
2023-06-08 18:51:55 +00:00
|
|
|
# cppdap is currently shipped as a static lib from upstream,
|
|
|
|
# so we do not have it in the repos.
|
|
|
|
%bcond_without bundled_cppdap
|
|
|
|
|
2017-09-05 11:38:07 +00:00
|
|
|
# Run tests
|
2021-11-03 20:26:38 +00:00
|
|
|
%bcond_without test
|
2017-09-05 11:38:07 +00:00
|
|
|
|
|
|
|
# Enable X11 tests
|
2018-01-16 00:21:21 +00:00
|
|
|
%bcond_without X11_test
|
2017-09-05 11:38:07 +00:00
|
|
|
|
2021-10-14 15:56:14 +00:00
|
|
|
# Do not build non-lto objects to reduce build time significantly.
|
2023-07-06 13:11:26 +00:00
|
|
|
%global build_cflags %(echo '%{build_cflags}' | sed -e 's!-ffat-lto-objects!-fno-fat-lto-objects!g')
|
|
|
|
%global build_cxxflags %(echo '%{build_cxxflags}' | sed -e 's!-ffat-lto-objects!-fno-fat-lto-objects!g')
|
|
|
|
%global build_fflags %(echo '%{build_fflags}' | sed -e 's!-ffat-lto-objects!-fno-fat-lto-objects!g')
|
|
|
|
%global build_fcflags %(echo '%{build_fflags}' | sed -e 's!-ffat-lto-objects!-fno-fat-lto-objects!g')
|
2021-10-14 15:56:14 +00:00
|
|
|
|
2016-03-07 15:43:29 +00:00
|
|
|
# Place rpm-macros into proper location
|
|
|
|
%global rpm_macros_dir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
|
|
|
|
|
|
|
|
# Setup _pkgdocdir if not defined already
|
|
|
|
%{!?_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
|
|
2020-01-15 10:01:04 +00:00
|
|
|
# Setup _vpath_builddir if not defined already
|
|
|
|
%{!?_vpath_builddir:%global _vpath_builddir %{_target_platform}}
|
|
|
|
|
2016-08-17 17:07:59 +00:00
|
|
|
%global major_version 3
|
2023-05-30 18:38:49 +00:00
|
|
|
%global minor_version 27
|
2023-08-24 06:51:29 +00:00
|
|
|
%global patch_version 4
|
2023-05-30 18:38:49 +00:00
|
|
|
|
|
|
|
# For handling bump release by rpmdev-bumpspec and mass rebuild
|
2023-09-14 16:57:23 +00:00
|
|
|
%global baserelease 7
|
2023-02-09 22:37:20 +00:00
|
|
|
|
|
|
|
# Set to RC version if building RC, else comment out.
|
2023-07-18 21:02:44 +00:00
|
|
|
#global rcsuf rc1
|
2023-02-09 22:37:20 +00:00
|
|
|
|
|
|
|
%if 0%{?rcsuf:1}
|
|
|
|
%global pkg_version %{major_version}.%{minor_version}.%{patch_version}~%{rcsuf}
|
|
|
|
%global tar_version %{major_version}.%{minor_version}.%{patch_version}-%{rcsuf}
|
|
|
|
%else
|
|
|
|
%global pkg_version %{major_version}.%{minor_version}.%{patch_version}
|
|
|
|
%global tar_version %{major_version}.%{minor_version}.%{patch_version}
|
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
|
|
|
|
# Uncomment if building for EPEL
|
2017-09-05 08:28:17 +00:00
|
|
|
#global name_suffix %%{major_version}
|
2016-03-07 15:43:29 +00:00
|
|
|
%global orig_name cmake
|
|
|
|
|
|
|
|
Name: %{orig_name}%{?name_suffix}
|
2023-02-09 22:37:20 +00:00
|
|
|
Version: %{pkg_version}
|
|
|
|
Release: %{baserelease}%{?dist}
|
2008-03-28 19:32:24 +00:00
|
|
|
Summary: Cross-platform make system
|
|
|
|
|
2012-05-10 13:13:20 +00:00
|
|
|
# most sources are BSD
|
2016-03-07 15:43:29 +00:00
|
|
|
# Source/CursesDialog/form/ a bunch is MIT
|
|
|
|
# Source/kwsys/MD5.c is zlib
|
|
|
|
# some GPL-licensed bison-generated files, which all include an
|
|
|
|
# exception granting redistribution under terms of your choice
|
2023-09-02 09:48:47 +00:00
|
|
|
License: BSD-3-Clause AND MIT-open-group AND Zlib%{?with_bundled_cppdap: AND Apache-2.0}
|
2008-03-28 19:32:24 +00:00
|
|
|
URL: http://www.cmake.org
|
2023-02-09 22:37:20 +00:00
|
|
|
Source0: http://www.cmake.org/files/v%{major_version}.%{minor_version}/%{orig_name}-%{tar_version}.tar.gz
|
2016-03-07 15:43:29 +00:00
|
|
|
Source1: %{name}-init.el
|
2023-05-27 17:07:03 +00:00
|
|
|
Source2: macros.%{name}.in
|
2015-03-17 22:41:11 +00:00
|
|
|
# See https://bugzilla.redhat.com/show_bug.cgi?id=1202899
|
2016-03-07 15:43:29 +00:00
|
|
|
Source3: %{name}.attr
|
|
|
|
Source4: %{name}.prov
|
2017-08-02 16:53:08 +00:00
|
|
|
Source5: %{name}.req
|
2016-03-07 15:43:29 +00:00
|
|
|
|
2017-07-19 08:11:18 +00:00
|
|
|
# Always start regular patches with numbers >= 100.
|
|
|
|
# We need lower numbers for patches in compat package.
|
|
|
|
# And this enables us to use %%autosetup
|
|
|
|
#
|
2014-10-30 01:53:11 +00:00
|
|
|
# Patch to fix RindRuby vendor settings
|
|
|
|
# http://public.kitware.com/Bug/view.php?id=12965
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=822796
|
2018-03-29 06:57:39 +00:00
|
|
|
Patch100: %{name}-findruby.patch
|
2017-12-30 15:14:14 +00:00
|
|
|
|
2016-03-07 15:43:29 +00:00
|
|
|
# Patch for renaming on EPEL
|
|
|
|
%if 0%{?name_suffix:1}
|
2023-01-15 12:00:03 +00:00
|
|
|
Patch1: %{name}-rename.patch
|
2016-03-07 15:43:29 +00:00
|
|
|
%endif
|
2008-08-26 20:05:15 +00:00
|
|
|
|
2023-08-28 15:51:07 +00:00
|
|
|
Patch10001: 0001-Source-Link-libatomic-when-needed-on-any-Linux-archi.patch
|
2023-09-14 16:57:23 +00:00
|
|
|
Patch10002: 0002-Help-MSVC_DEBUG_INFORMATION_FORMAT-is-initialized-fr.patch
|
|
|
|
Patch10003: 0003-cmGeneratorTarget-support-config-independent-Fortran.patch
|
|
|
|
Patch10004: 0004-cmComputeLinkInformation-compute-link-info-for-modul.patch
|
|
|
|
Patch10005: 0005-ctest-Restore-support-for-http-redirects-during-Subm.patch
|
|
|
|
Patch10006: 0006-FortranCInterface-forward-CMAKE_OSX_DEPLOYMENT_TARGE.patch
|
|
|
|
Patch10007: 0007-FindBoost-Add-support-for-Boost-1.83.patch
|
|
|
|
Patch10008: 0008-VS-Avoid-unnecessary-CUDA-device-linking-for-OBJECT-.patch
|
|
|
|
Patch10009: 0009-Autogen-Evaluate-INTERFACE_AUTOMOC_MACRO_NAMES-effic.patch
|
2023-08-28 15:51:07 +00:00
|
|
|
|
2017-09-05 09:11:41 +00:00
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: findutils
|
|
|
|
BuildRequires: gcc-c++
|
2010-06-02 15:43:25 +00:00
|
|
|
BuildRequires: gcc-gfortran
|
2017-09-05 09:11:41 +00:00
|
|
|
BuildRequires: sed
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with git_test}
|
2017-09-29 12:06:02 +00:00
|
|
|
# Tests fail if only git-core is installed, bug #1488830
|
|
|
|
BuildRequires: git
|
|
|
|
%else
|
|
|
|
BuildConflicts: git-core
|
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with X11_test}
|
2017-09-05 11:38:07 +00:00
|
|
|
BuildRequires: libX11-devel
|
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with ncurses}
|
2017-09-05 11:38:07 +00:00
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with sphinx}
|
2018-01-16 00:18:08 +00:00
|
|
|
BuildRequires: %{_bindir}/sphinx-build
|
|
|
|
%endif
|
2017-09-05 11:38:07 +00:00
|
|
|
%if %{without bootstrap}
|
2010-09-16 16:17:21 +00:00
|
|
|
BuildRequires: bzip2-devel
|
|
|
|
BuildRequires: curl-devel
|
2023-06-08 18:51:55 +00:00
|
|
|
%if %{with bundled_cppdap}
|
|
|
|
Provides: bundled(cppdap)
|
|
|
|
%else
|
|
|
|
BuildRequires: cppdap-devel
|
|
|
|
%endif
|
2010-09-16 16:17:21 +00:00
|
|
|
BuildRequires: expat-devel
|
2020-11-09 22:08:07 +00:00
|
|
|
%if %{with bundled_jsoncpp}
|
|
|
|
Provides: bundled(jsoncpp)
|
|
|
|
%else
|
2015-02-16 05:29:41 +00:00
|
|
|
BuildRequires: jsoncpp-devel
|
2020-11-09 22:08:07 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 7
|
2010-09-16 16:17:21 +00:00
|
|
|
BuildRequires: libarchive-devel
|
2016-03-07 15:43:29 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: libarchive3-devel
|
|
|
|
%endif
|
2016-10-06 21:50:18 +00:00
|
|
|
BuildRequires: libuv-devel
|
2020-11-09 22:08:07 +00:00
|
|
|
%if %{with bundled_rhash}
|
|
|
|
Provides: bundled(rhash)
|
|
|
|
%else
|
2017-03-21 03:40:49 +00:00
|
|
|
BuildRequires: rhash-devel
|
2020-11-09 22:08:07 +00:00
|
|
|
%endif
|
2014-10-30 02:37:54 +00:00
|
|
|
BuildRequires: xz-devel
|
2010-09-16 16:17:21 +00:00
|
|
|
BuildRequires: zlib-devel
|
2020-06-12 16:14:59 +00:00
|
|
|
BuildRequires: vim-filesystem
|
2017-09-05 11:38:07 +00:00
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with emacs}
|
2012-05-03 20:16:44 +00:00
|
|
|
BuildRequires: emacs
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2019-11-19 04:00:59 +00:00
|
|
|
BuildRequires: openssl-devel
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with rpm}
|
|
|
|
%if %{with python3}
|
2015-12-12 09:17:57 +00:00
|
|
|
%{!?python3_pkgversion: %global python3_pkgversion 3}
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
%else
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
%endif
|
2017-09-05 11:38:07 +00:00
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with gui}
|
2023-05-08 08:13:01 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 9
|
|
|
|
BuildRequires: pkgconfig(Qt6Widgets)
|
|
|
|
%elif 0%{?rhel} > 7
|
2018-03-08 16:45:37 +00:00
|
|
|
BuildRequires: pkgconfig(Qt5Widgets)
|
2016-03-07 15:43:29 +00:00
|
|
|
%else
|
2018-03-08 16:45:37 +00:00
|
|
|
BuildRequires: pkgconfig(QtGui)
|
2016-03-07 15:43:29 +00:00
|
|
|
%endif
|
2015-12-08 16:50:14 +00:00
|
|
|
BuildRequires: desktop-file-utils
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2012-05-10 13:13:20 +00:00
|
|
|
|
2021-04-30 14:19:23 +00:00
|
|
|
BuildRequires: pkgconfig(bash-completion)
|
|
|
|
%global bash_completionsdir %(pkg-config --variable=completionsdir bash-completion 2>/dev/null || echo '%{_datadir}/bash-completion/completions')
|
|
|
|
|
2018-01-15 23:41:55 +00:00
|
|
|
%if %{without bootstrap}
|
2017-12-21 12:54:21 +00:00
|
|
|
# Ensure we have our own rpm-macros in place during build.
|
|
|
|
BuildRequires: %{name}-rpm-macros
|
2018-01-15 23:41:55 +00:00
|
|
|
%endif
|
2020-12-19 05:14:27 +00:00
|
|
|
BuildRequires: make
|
2017-12-21 12:54:21 +00:00
|
|
|
|
2016-03-07 15:43:29 +00:00
|
|
|
Requires: %{name}-data = %{version}-%{release}
|
2023-08-31 11:18:09 +00:00
|
|
|
Requires: (%{name}-rpm-macros = %{version}-%{release} if rpm-build)
|
2017-12-21 19:02:56 +00:00
|
|
|
Requires: %{name}-filesystem%{?_isa} = %{version}-%{release}
|
2006-12-18 23:37:24 +00:00
|
|
|
|
2020-09-30 10:56:24 +00:00
|
|
|
# Explicitly require make. (rhbz#1862014)
|
|
|
|
Requires: make
|
|
|
|
|
2016-09-12 22:07:06 +00:00
|
|
|
# Provide the major version name
|
|
|
|
Provides: %{orig_name}%{major_version} = %{version}-%{release}
|
|
|
|
|
2012-05-10 13:13:20 +00:00
|
|
|
# Source/kwsys/MD5.c
|
|
|
|
# see https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries
|
|
|
|
Provides: bundled(md5-deutsch)
|
|
|
|
|
2015-08-21 12:17:15 +00:00
|
|
|
# https://fedorahosted.org/fpc/ticket/555
|
|
|
|
Provides: bundled(kwsys)
|
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
%description
|
2016-03-07 15:43:29 +00:00
|
|
|
CMake is used to control the software compilation process using simple
|
|
|
|
platform and compiler independent configuration files. CMake generates
|
|
|
|
native makefiles and workspaces that can be used in the compiler
|
|
|
|
environment of your choice. CMake is quite sophisticated: it is possible
|
2012-03-30 11:14:37 +00:00
|
|
|
to support complex environments requiring system configuration, preprocessor
|
2006-03-29 19:03:00 +00:00
|
|
|
generation, code generation, and template instantiation.
|
|
|
|
|
|
|
|
|
2016-03-07 15:43:29 +00:00
|
|
|
%package data
|
|
|
|
Summary: Common data-files for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2017-07-19 08:11:18 +00:00
|
|
|
Requires: %{name}-filesystem = %{version}-%{release}
|
2023-09-06 07:52:07 +00:00
|
|
|
Requires: (%{name}-rpm-macros = %{version}-%{release} if rpm-build)
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with emacs}
|
2016-03-11 12:59:54 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 7
|
2017-11-09 19:29:51 +00:00
|
|
|
Requires: emacs-filesystem%{?_emacs_version: >= %{_emacs_version}}
|
2016-03-07 15:43:29 +00:00
|
|
|
%endif
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2020-06-12 16:14:59 +00:00
|
|
|
Requires: vim-filesystem
|
2016-03-07 15:43:29 +00:00
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description data
|
|
|
|
This package contains common data-files for %{name}.
|
|
|
|
|
|
|
|
|
2013-08-28 17:22:12 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
2016-03-07 15:43:29 +00:00
|
|
|
BuildArch: noarch
|
2013-08-28 17:22:12 +00:00
|
|
|
|
|
|
|
%description doc
|
2016-03-07 15:43:29 +00:00
|
|
|
This package contains documentation for %{name}.
|
2013-08-28 17:22:12 +00:00
|
|
|
|
|
|
|
|
2017-07-19 08:11:18 +00:00
|
|
|
%package filesystem
|
|
|
|
Summary: Directories used by CMake modules
|
|
|
|
|
|
|
|
%description filesystem
|
|
|
|
This package owns all directories used by CMake modules.
|
|
|
|
|
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with gui}
|
2008-03-28 19:32:24 +00:00
|
|
|
%package gui
|
|
|
|
Summary: Qt GUI for %{name}
|
2016-03-07 15:43:29 +00:00
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: hicolor-icon-theme
|
|
|
|
Requires: shared-mime-info%{?_isa}
|
2008-03-28 19:32:24 +00:00
|
|
|
|
|
|
|
%description gui
|
2016-03-07 15:43:29 +00:00
|
|
|
The %{name}-gui package contains the Qt based GUI for %{name}.
|
2017-09-05 11:38:07 +00:00
|
|
|
%endif
|
2008-03-28 19:32:24 +00:00
|
|
|
|
|
|
|
|
2017-12-21 11:50:37 +00:00
|
|
|
%package rpm-macros
|
|
|
|
Summary: Common RPM macros for %{name}
|
|
|
|
Requires: rpm
|
2018-01-15 23:27:02 +00:00
|
|
|
# when subpkg introduced
|
|
|
|
Conflicts: cmake-data < 3.10.1-2
|
2017-12-21 11:50:37 +00:00
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description rpm-macros
|
|
|
|
This package contains common RPM macros for %{name}.
|
|
|
|
|
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
%prep
|
2023-02-09 22:37:20 +00:00
|
|
|
%autosetup -n %{orig_name}-%{tar_version} -p 1
|
2006-03-29 19:03:00 +00:00
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with rpm}
|
|
|
|
%if %{with python3}
|
2016-03-07 15:43:29 +00:00
|
|
|
echo '#!%{__python3}' > %{name}.prov
|
2017-08-02 16:53:08 +00:00
|
|
|
echo '#!%{__python3}' > %{name}.req
|
2015-12-12 09:17:57 +00:00
|
|
|
%else
|
2016-03-07 15:43:29 +00:00
|
|
|
echo '#!%{__python2}' > %{name}.prov
|
2017-08-02 16:53:08 +00:00
|
|
|
echo '#!%{__python2}' > %{name}.req
|
2015-12-12 09:17:57 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
tail -n +2 %{SOURCE4} >> %{name}.prov
|
2017-08-02 16:53:08 +00:00
|
|
|
tail -n +2 %{SOURCE5} >> %{name}.req
|
2017-09-05 11:38:07 +00:00
|
|
|
%endif
|
2015-12-12 09:17:57 +00:00
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
|
|
|
|
%build
|
2020-01-15 10:19:50 +00:00
|
|
|
%{set_build_flags}
|
2020-01-15 10:01:04 +00:00
|
|
|
SRCDIR="$(/usr/bin/pwd)"
|
|
|
|
mkdir %{_vpath_builddir}
|
|
|
|
pushd %{_vpath_builddir}
|
2021-10-14 16:12:44 +00:00
|
|
|
$SRCDIR/bootstrap --prefix=%{_prefix} \
|
|
|
|
--datadir=/share/%{name} \
|
|
|
|
--docdir=/share/doc/%{name} \
|
|
|
|
--mandir=/share/man \
|
2020-01-15 10:01:04 +00:00
|
|
|
--%{?with_bootstrap:no-}system-libs \
|
2021-04-30 14:19:23 +00:00
|
|
|
--parallel="$(echo %{?_smp_mflags} | sed -e 's|-j||g')" \
|
2023-06-08 18:51:55 +00:00
|
|
|
%if %{with bundled_cppdap}
|
|
|
|
--no-system-cppdap \
|
|
|
|
%endif
|
2020-11-09 22:08:07 +00:00
|
|
|
%if %{with bundled_rhash}
|
|
|
|
--no-system-librhash \
|
|
|
|
%endif
|
|
|
|
%if %{with bundled_jsoncpp}
|
|
|
|
--no-system-jsoncpp \
|
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with sphinx}
|
2020-01-15 10:01:04 +00:00
|
|
|
--sphinx-man --sphinx-html \
|
2017-04-21 10:17:17 +00:00
|
|
|
%else
|
2020-01-15 10:01:04 +00:00
|
|
|
--sphinx-build=%{_bindir}/false \
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2020-01-15 10:01:04 +00:00
|
|
|
--%{!?with_gui:no-}qt-gui \
|
2021-10-14 16:12:44 +00:00
|
|
|
-- \
|
|
|
|
-DCMAKE_C_FLAGS_RELEASE:STRING="-O2 -g -DNDEBUG" \
|
|
|
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="-O2 -g -DNDEBUG" \
|
|
|
|
-DCMAKE_Fortran_FLAGS_RELEASE:STRING="-O2 -g -DNDEBUG" \
|
|
|
|
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
|
|
|
|
-DCMAKE_INSTALL_DO_STRIP:BOOL=OFF
|
2020-01-15 10:01:04 +00:00
|
|
|
popd
|
2021-10-14 16:12:44 +00:00
|
|
|
%make_build -C %{_vpath_builddir}
|
2006-03-29 19:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2017-07-30 14:08:54 +00:00
|
|
|
mkdir -p %{buildroot}%{_pkgdocdir}
|
2020-01-15 10:01:04 +00:00
|
|
|
%make_install -C %{_vpath_builddir} CMAKE_DOC_DIR=%{buildroot}%{_pkgdocdir}
|
2017-07-30 14:08:54 +00:00
|
|
|
find %{buildroot}%{_datadir}/%{name}/Modules -type f | xargs chmod -x
|
|
|
|
[ -n "$(find %{buildroot}%{_datadir}/%{name}/Modules -name \*.orig)" ] &&
|
2014-04-04 15:33:10 +00:00
|
|
|
echo "Found .orig files in %{_datadir}/%{name}/Modules, rebase patches" &&
|
|
|
|
exit 1
|
2016-08-17 17:07:59 +00:00
|
|
|
# Install major_version name links
|
|
|
|
%{!?name_suffix:for f in ccmake cmake cpack ctest; do ln -s $f %{buildroot}%{_bindir}/${f}%{major_version}; done}
|
2021-04-30 14:19:23 +00:00
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with emacs}
|
2014-02-28 21:48:52 +00:00
|
|
|
# Install emacs cmake mode
|
2020-06-12 16:14:59 +00:00
|
|
|
mkdir -p %{buildroot}%{_emacs_sitelispdir}/%{name} %{buildroot}%{_emacs_sitestartdir}
|
|
|
|
mv %{buildroot}%{_emacs_sitelispdir}/%{name}-mode.el %{buildroot}%{_emacs_sitelispdir}/%{name}
|
2016-03-07 15:43:29 +00:00
|
|
|
%{_emacs_bytecompile} %{buildroot}%{_emacs_sitelispdir}/%{name}/%{name}-mode.el
|
2020-01-15 10:01:58 +00:00
|
|
|
install -p -m 0644 %{SOURCE1} %{buildroot}%{_emacs_sitestartdir}
|
2020-06-12 16:14:59 +00:00
|
|
|
%else
|
|
|
|
rm -f %{buildroot}%{_emacs_sitelispdir}
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2007-04-06 16:56:30 +00:00
|
|
|
# RPM macros
|
2016-03-07 15:43:29 +00:00
|
|
|
install -p -m0644 -D %{SOURCE2} %{buildroot}%{rpm_macros_dir}/macros.%{name}
|
2016-08-17 17:07:59 +00:00
|
|
|
sed -i -e "s|@@CMAKE_VERSION@@|%{version}|" -e "s|@@CMAKE_MAJOR_VERSION@@|%{major_version}|" %{buildroot}%{rpm_macros_dir}/macros.%{name}
|
2016-03-07 15:43:29 +00:00
|
|
|
touch -r %{SOURCE2} %{buildroot}%{rpm_macros_dir}/macros.%{name}
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with rpm} && 0%{?_rpmconfigdir:1}
|
2015-03-17 22:41:11 +00:00
|
|
|
# RPM auto provides
|
2016-03-07 15:43:29 +00:00
|
|
|
install -p -m0644 -D %{SOURCE3} %{buildroot}%{_prefix}/lib/rpm/fileattrs/%{name}.attr
|
|
|
|
install -p -m0755 -D %{name}.prov %{buildroot}%{_prefix}/lib/rpm/%{name}.prov
|
2017-08-02 16:53:08 +00:00
|
|
|
install -p -m0755 -D %{name}.req %{buildroot}%{_prefix}/lib/rpm/%{name}.req
|
2015-03-17 22:41:11 +00:00
|
|
|
%endif
|
2017-07-21 11:42:07 +00:00
|
|
|
mkdir -p %{buildroot}%{_libdir}/%{orig_name}
|
2014-04-10 21:36:45 +00:00
|
|
|
# Install copyright files for main package
|
|
|
|
find Source Utilities -type f -iname copy\* | while read f
|
|
|
|
do
|
|
|
|
fname=$(basename $f)
|
|
|
|
dir=$(dirname $f)
|
|
|
|
dname=$(basename $dir)
|
2016-03-07 15:43:29 +00:00
|
|
|
cp -p $f ./${fname}_${dname}
|
2014-04-10 21:36:45 +00:00
|
|
|
done
|
2023-06-08 19:34:35 +00:00
|
|
|
%if %{with bundled_cppdap}
|
2023-06-08 20:07:58 +00:00
|
|
|
cp -p Utilities/cmcppdap/LICENSE LICENSE.cppdap
|
|
|
|
cp -p Utilities/cmcppdap/NOTICE NOTICE.cppdap
|
2023-06-08 19:34:35 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
# Cleanup pre-installed documentation
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with sphinx}
|
2016-03-07 15:43:29 +00:00
|
|
|
mv %{buildroot}%{_docdir}/%{name}/html .
|
2016-03-11 10:35:21 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
rm -rf %{buildroot}%{_docdir}/%{name}
|
2016-03-10 07:13:17 +00:00
|
|
|
# Install documentation to _pkgdocdir
|
2016-03-07 15:43:29 +00:00
|
|
|
mkdir -p %{buildroot}%{_pkgdocdir}
|
2016-03-10 07:13:17 +00:00
|
|
|
cp -pr %{buildroot}%{_datadir}/%{name}/Help %{buildroot}%{_pkgdocdir}
|
2016-03-07 15:43:29 +00:00
|
|
|
mv %{buildroot}%{_pkgdocdir}/Help %{buildroot}%{_pkgdocdir}/rst
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with sphinx}
|
2016-03-07 15:43:29 +00:00
|
|
|
mv html %{buildroot}%{_pkgdocdir}
|
2016-03-11 10:35:21 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with gui}
|
2008-03-28 19:32:24 +00:00
|
|
|
# Desktop file
|
|
|
|
desktop-file-install --delete-original \
|
|
|
|
--dir=%{buildroot}%{_datadir}/applications \
|
2017-07-30 14:08:54 +00:00
|
|
|
%{buildroot}%{_datadir}/applications/%{name}-gui.desktop
|
2015-03-26 16:07:07 +00:00
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with appdata}
|
2015-03-26 16:07:07 +00:00
|
|
|
# Register as an application to be visible in the software center
|
|
|
|
#
|
|
|
|
# NOTE: It would be *awesome* if this file was maintained by the upstream
|
|
|
|
# project, translated and installed into the right place during `make install`.
|
|
|
|
#
|
|
|
|
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
|
|
|
|
#
|
2018-07-27 14:30:12 +00:00
|
|
|
mkdir -p %{buildroot}%{_metainfodir}
|
|
|
|
cat > %{buildroot}%{_metainfodir}/cmake-gui.appdata.xml <<EOF
|
2015-03-26 16:07:07 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- Copyright 2014 Ryan Lerch <rlerch@redhat.com> -->
|
|
|
|
<!--
|
|
|
|
EmailAddress: kitware@kitware.com
|
|
|
|
SentUpstream: 2014-09-17
|
|
|
|
-->
|
|
|
|
<application>
|
2018-03-02 11:08:33 +00:00
|
|
|
<id type="desktop">cmake-gui.desktop</id>
|
2015-03-26 16:07:07 +00:00
|
|
|
<metadata_license>CC0-1.0</metadata_license>
|
|
|
|
<name>CMake GUI</name>
|
|
|
|
<summary>Create new CMake projects</summary>
|
|
|
|
<description>
|
|
|
|
<p>
|
|
|
|
CMake is an open source, cross platform build system that can build, test,
|
|
|
|
and package software. CMake GUI is a graphical user interface that can
|
|
|
|
create and edit CMake projects.
|
|
|
|
</p>
|
|
|
|
</description>
|
|
|
|
<url type="homepage">http://www.cmake.org</url>
|
|
|
|
<screenshots>
|
|
|
|
<screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/CMake/a.png</screenshot>
|
|
|
|
</screenshots>
|
|
|
|
<!-- FIXME: change this to an upstream email address for spec updates
|
|
|
|
<updatecontact>someone_who_cares@upstream_project.org</updatecontact>
|
|
|
|
-->
|
|
|
|
</application>
|
|
|
|
EOF
|
2008-10-22 17:07:35 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
%endif
|
2006-03-29 19:03:00 +00:00
|
|
|
|
2017-07-30 14:08:54 +00:00
|
|
|
# create manifests for splitting files and directories for filesystem-package
|
|
|
|
find %{buildroot}%{_datadir}/%{name} -type d | \
|
|
|
|
sed -e 's!^%{buildroot}!%%dir "!g' -e 's!$!"!g' > data_dirs.mf
|
|
|
|
find %{buildroot}%{_datadir}/%{name} -type f | \
|
|
|
|
sed -e 's!^%{buildroot}!"!g' -e 's!$!"!g' > data_files.mf
|
|
|
|
find %{buildroot}%{_libdir}/%{orig_name} -type d | \
|
|
|
|
sed -e 's!^%{buildroot}!%%dir "!g' -e 's!$!"!g' > lib_dirs.mf
|
|
|
|
find %{buildroot}%{_libdir}/%{orig_name} -type f | \
|
|
|
|
sed -e 's!^%{buildroot}!"!g' -e 's!$!"!g' > lib_files.mf
|
|
|
|
find %{buildroot}%{_bindir} -type f -or -type l -or -xtype l | \
|
2017-08-02 12:39:20 +00:00
|
|
|
sed -e '/.*-gui$/d' -e '/^$/d' -e 's!^%{buildroot}!"!g' -e 's!$!"!g' >> lib_files.mf
|
2017-07-19 08:11:18 +00:00
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with test}
|
2008-03-28 15:11:31 +00:00
|
|
|
%check
|
2020-01-15 10:01:04 +00:00
|
|
|
pushd %{_vpath_builddir}
|
2022-11-02 08:34:44 +00:00
|
|
|
# CTestTestUpload requires internet access.
|
|
|
|
NO_TEST="CTestTestUpload"
|
|
|
|
# Likely failing for hardening flags from system.
|
|
|
|
NO_TEST="$NO_TEST|CustomCommand|RunCMake.PositionIndependentCode"
|
2023-05-27 19:44:47 +00:00
|
|
|
# Failing for rpm 4.19
|
|
|
|
NO_TEST="$NO_TEST|CPackComponentsForAll-RPM-default"
|
|
|
|
NO_TEST="$NO_TEST|CPackComponentsForAll-RPM-OnePackPerGroup"
|
|
|
|
NO_TEST="$NO_TEST|CPackComponentsForAll-RPM-AllInOne"
|
2020-05-30 12:19:55 +00:00
|
|
|
# curl test may fail during bootstrap
|
|
|
|
%if %{with bootstrap}
|
|
|
|
NO_TEST="$NO_TEST|curl"
|
|
|
|
%endif
|
2023-05-05 13:18:33 +00:00
|
|
|
%ifarch riscv64
|
|
|
|
# These three tests timeout on riscv64, skip them.
|
|
|
|
NO_TEST="$NO_TEST|Qt5Autogen.ManySources|Qt5Autogen.MocInclude|Qt5Autogen.MocIncludeSymlink"
|
|
|
|
%endif
|
2021-01-12 22:50:36 +00:00
|
|
|
bin/ctest%{?name_suffix} %{?_smp_mflags} -V -E "$NO_TEST" --output-on-failure
|
2022-11-02 08:34:44 +00:00
|
|
|
## do this only periodically, not for every build -- besser82 20221102
|
2019-11-19 04:00:59 +00:00
|
|
|
# Keep an eye on failing tests
|
2021-04-30 14:19:23 +00:00
|
|
|
#bin/ctest%{?name_suffix} %{?_smp_mflags} -V -R "$NO_TEST" --output-on-failure || :
|
2012-04-14 20:26:09 +00:00
|
|
|
popd
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2008-03-28 15:11:31 +00:00
|
|
|
|
|
|
|
|
2017-07-30 14:08:54 +00:00
|
|
|
%files -f lib_files.mf
|
2016-03-07 15:43:29 +00:00
|
|
|
%doc %dir %{_pkgdocdir}
|
|
|
|
%license Copyright.txt*
|
|
|
|
%license COPYING*
|
2023-06-08 19:34:35 +00:00
|
|
|
%if %{with bundled_cppdap}
|
|
|
|
%license LICENSE.cppdap
|
|
|
|
%license NOTICE.cppdap
|
|
|
|
%endif
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with sphinx}
|
2016-03-07 15:43:29 +00:00
|
|
|
%{_mandir}/man1/c%{name}.1.*
|
|
|
|
%{_mandir}/man1/%{name}.1.*
|
|
|
|
%{_mandir}/man1/cpack%{?name_suffix}.1.*
|
|
|
|
%{_mandir}/man1/ctest%{?name_suffix}.1.*
|
|
|
|
%{_mandir}/man7/*.7.*
|
2016-03-11 10:35:21 +00:00
|
|
|
%endif
|
2016-03-07 15:43:29 +00:00
|
|
|
|
|
|
|
|
2017-07-30 14:08:54 +00:00
|
|
|
%files data -f data_files.mf
|
2016-03-07 15:43:29 +00:00
|
|
|
%{_datadir}/aclocal/%{name}.m4
|
2021-04-30 14:19:23 +00:00
|
|
|
%{bash_completionsdir}/c*
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with emacs}
|
2016-03-11 12:59:54 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 7
|
2012-05-03 20:35:13 +00:00
|
|
|
%{_emacs_sitelispdir}/%{name}
|
2013-10-10 22:32:26 +00:00
|
|
|
%{_emacs_sitestartdir}/%{name}-init.el
|
2016-03-11 12:59:54 +00:00
|
|
|
%else
|
|
|
|
%{_emacs_sitelispdir}
|
|
|
|
%{_emacs_sitestartdir}
|
|
|
|
%endif
|
2017-04-21 10:17:17 +00:00
|
|
|
%endif
|
2020-06-12 16:14:59 +00:00
|
|
|
%{vimfiles_root}/indent/%{name}.vim
|
|
|
|
%{vimfiles_root}/syntax/%{name}.vim
|
2016-03-07 15:43:29 +00:00
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
|
2013-08-28 17:22:12 +00:00
|
|
|
%files doc
|
2016-03-07 15:43:29 +00:00
|
|
|
# Pickup license-files from main-pkg's license-dir
|
|
|
|
# If there's no license-dir they are picked up by %%doc previously
|
|
|
|
%{?_licensedir:%license %{_datadir}/licenses/%{name}*}
|
2017-07-30 14:08:54 +00:00
|
|
|
%doc %{_pkgdocdir}
|
2016-03-07 15:43:29 +00:00
|
|
|
|
2017-07-19 08:11:18 +00:00
|
|
|
|
2017-07-30 14:08:54 +00:00
|
|
|
%files filesystem -f data_dirs.mf -f lib_dirs.mf
|
2017-07-19 08:11:18 +00:00
|
|
|
|
|
|
|
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with gui}
|
2008-03-28 19:32:24 +00:00
|
|
|
%files gui
|
2016-03-07 15:43:29 +00:00
|
|
|
%{_bindir}/%{name}-gui
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with appdata}
|
2018-07-27 14:30:12 +00:00
|
|
|
%{_metainfodir}/*.appdata.xml
|
2016-03-07 15:43:29 +00:00
|
|
|
%endif
|
2017-07-19 08:11:18 +00:00
|
|
|
%{_datadir}/applications/%{name}-gui.desktop
|
2017-07-30 14:08:54 +00:00
|
|
|
%{_datadir}/mime/packages
|
2016-03-07 15:43:29 +00:00
|
|
|
%{_datadir}/icons/hicolor/*/apps/CMake%{?name_suffix}Setup.png
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with sphinx}
|
2016-03-07 15:43:29 +00:00
|
|
|
%{_mandir}/man1/%{name}-gui.1.*
|
2008-10-22 17:07:35 +00:00
|
|
|
%endif
|
2016-03-11 10:35:21 +00:00
|
|
|
%endif
|
2008-03-28 19:32:24 +00:00
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
|
2017-12-21 11:50:37 +00:00
|
|
|
%files rpm-macros
|
|
|
|
%{rpm_macros_dir}/macros.%{name}
|
2018-01-16 00:21:21 +00:00
|
|
|
%if %{with rpm} && 0%{?_rpmconfigdir:1}
|
2017-12-21 11:50:37 +00:00
|
|
|
%{_rpmconfigdir}/fileattrs/%{name}.attr
|
|
|
|
%{_rpmconfigdir}/%{name}.prov
|
|
|
|
%{_rpmconfigdir}/%{name}.req
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
%changelog
|
2023-09-14 16:57:23 +00:00
|
|
|
* Thu Sep 14 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.4-7
|
|
|
|
- Add upstream patches from milestone to cmake-3.27.5
|
|
|
|
|
|
|
|
* Wed Sep 06 2023 Panu Matilainen <pmatilai@redhat.com> - 3.27.4-6
|
2023-09-06 07:52:07 +00:00
|
|
|
- Only require cmake-rpm-macros when rpm-build is installed part II
|
|
|
|
|
2023-09-02 09:48:47 +00:00
|
|
|
* Sat Sep 02 2023 Tom Stellard <tstellar@redhat.com> - 3.27.4-5
|
|
|
|
- Convert license to SPDX
|
|
|
|
|
2023-09-01 11:18:35 +00:00
|
|
|
* Fri Sep 01 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.4-4
|
|
|
|
- Fix outdated CI configuration
|
|
|
|
|
2023-08-31 11:18:09 +00:00
|
|
|
* Thu Aug 31 2023 Panu Matilainen <pmatilai@redhat.com> - 3.27.4-3
|
|
|
|
- Only require cmake-rpm-macros when rpm-build is installed
|
|
|
|
|
2023-08-28 15:51:07 +00:00
|
|
|
* Mon Aug 28 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.4-2
|
|
|
|
- Add upstream patch to fix linking non-builtin libatomic on some arches
|
|
|
|
|
2023-08-24 06:51:29 +00:00
|
|
|
* Thu Aug 24 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.4-1
|
|
|
|
- cmake-3.27.4
|
|
|
|
Fixes rhbz#2233852
|
|
|
|
|
2023-08-17 06:16:54 +00:00
|
|
|
* Thu Aug 17 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.3-1
|
|
|
|
- cmake-3.27.3
|
|
|
|
Fixes rhbz#2232421
|
|
|
|
|
2023-08-10 19:33:51 +00:00
|
|
|
* Thu Aug 10 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.2-1
|
|
|
|
- cmake-3.27.2
|
|
|
|
Fixes rhbz#2231131
|
|
|
|
|
2023-07-25 22:55:04 +00:00
|
|
|
* Tue Jul 25 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.1-1
|
|
|
|
- cmake-3.27.1
|
|
|
|
Fixes rhbz#2226276
|
|
|
|
|
2023-07-19 15:56:59 +00:00
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.27.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-07-18 21:02:44 +00:00
|
|
|
* Tue Jul 18 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0-1
|
|
|
|
- cmake-3.27.0
|
|
|
|
Fixes rhbz#2223754
|
|
|
|
|
2023-07-14 17:55:02 +00:00
|
|
|
* Fri Jul 14 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc5-1
|
|
|
|
- cmake-3.27.0-rc5
|
|
|
|
Fixes rhbz#2222977
|
|
|
|
|
2023-07-06 13:11:26 +00:00
|
|
|
* Thu Jul 06 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc4-2
|
|
|
|
- Fix FTBFS for redhat-rpm-config v260 and later
|
2023-07-06 14:24:41 +00:00
|
|
|
- Re-include tests that were failing with rc1
|
2023-07-06 13:11:26 +00:00
|
|
|
|
2023-06-30 16:49:53 +00:00
|
|
|
* Fri Jun 30 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc4-1
|
|
|
|
- cmake-3.27.0-rc4
|
|
|
|
Fixes rhbz#2218941
|
|
|
|
|
2023-06-20 19:04:28 +00:00
|
|
|
* Tue Jun 20 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc3-1
|
|
|
|
- cmake-3.27.0-rc3
|
|
|
|
Fixes rhbz#2214407
|
|
|
|
|
2023-06-19 19:23:30 +00:00
|
|
|
* Mon Jun 19 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc2-2
|
|
|
|
- Backport some upstream patches which will be included in rc3
|
|
|
|
|
2023-06-12 18:16:21 +00:00
|
|
|
* Mon Jun 12 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc2-1
|
|
|
|
- cmake-3.27.0-rc2
|
|
|
|
|
2023-05-30 18:38:49 +00:00
|
|
|
* Thu Jun 08 2023 Björn Esser <besser82@fedoraproject.org> - 3.27.0~rc1-1
|
|
|
|
- cmake-3.27.0-rc1
|
2023-06-08 18:51:55 +00:00
|
|
|
- Use CMake-provided cppdap
|
2023-06-08 19:34:35 +00:00
|
|
|
- Add licensing information for cppdap to packaged files if needed
|
2023-06-09 04:09:50 +00:00
|
|
|
- Exclude tests that started failing
|
2023-05-30 18:38:49 +00:00
|
|
|
|
2023-06-01 13:00:49 +00:00
|
|
|
* Thu Jun 01 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.4-4
|
|
|
|
- Backport several bugfixes and support for Boost v1.82 from upstream
|
|
|
|
|
2023-05-27 17:07:03 +00:00
|
|
|
* Sat May 27 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.4-3
|
|
|
|
- Rename macros.cmake -> macros.cmake.in
|
2023-05-27 17:08:15 +00:00
|
|
|
- macros: Fix formatting and indentation
|
2023-05-27 17:10:21 +00:00
|
|
|
- macros: Directly use %%set_build_flags, as it is supported since EPEL 7
|
2023-05-27 19:44:47 +00:00
|
|
|
- Exclude tests that are failing for rpm 4.19
|
2023-05-27 17:07:03 +00:00
|
|
|
|
2023-05-19 11:16:59 +00:00
|
|
|
* Fri May 19 2023 Neal Gompa <ngompa@fedoraproject.org> - 3.26.4-2
|
2023-05-27 17:18:38 +00:00
|
|
|
- macros: Use the language build flag macros for compiler flags
|
2023-05-19 11:16:59 +00:00
|
|
|
|
2023-05-19 07:53:34 +00:00
|
|
|
* Fri May 19 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.4-1
|
|
|
|
- cmake-3.26.4
|
|
|
|
Fixes rhbz#2208383
|
|
|
|
|
2023-05-08 09:57:24 +00:00
|
|
|
* Mon May 08 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.3-3
|
|
|
|
- Build cmake-gui with Qt6
|
|
|
|
|
2023-05-05 13:18:33 +00:00
|
|
|
* Fri May 05 2023 Nianqing Yao <imbearchild@outlook.com> - 3.26.3-2
|
2023-05-08 09:56:40 +00:00
|
|
|
- Fix build on riscv64
|
2023-05-05 13:18:33 +00:00
|
|
|
|
2023-04-05 13:38:00 +00:00
|
|
|
* Wed Apr 05 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.3-1
|
|
|
|
- cmake-3.26.3
|
|
|
|
Fixes rhbz#2184478
|
|
|
|
|
2023-03-30 08:18:55 +00:00
|
|
|
* Thu Mar 30 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.2-1
|
|
|
|
- cmake-3.26.2
|
|
|
|
Fixes rhbz#2182863
|
|
|
|
|
2023-03-23 14:51:08 +00:00
|
|
|
* Thu Mar 23 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.1-1
|
|
|
|
- cmake-3.26.1
|
|
|
|
Fixes rhbz#2181278
|
|
|
|
|
2023-03-14 17:58:31 +00:00
|
|
|
* Tue Mar 14 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.0-1
|
|
|
|
- cmake-3.26.0
|
|
|
|
Fixes rhbz#2178221
|
|
|
|
|
2023-03-09 11:35:31 +00:00
|
|
|
* Thu Mar 09 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.0~rc6-1
|
|
|
|
- cmake-3.26.0-rc6
|
|
|
|
Fixes rhbz#2176581
|
|
|
|
|
2023-03-01 16:59:40 +00:00
|
|
|
* Wed Mar 01 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.0~rc5-1
|
|
|
|
- cmake-3.26.0-rc5
|
|
|
|
|
2023-02-22 17:22:11 +00:00
|
|
|
* Wed Feb 22 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.0~rc4-1
|
|
|
|
- cmake-3.26.0-rc4
|
|
|
|
Fixes rhbz#2172604
|
|
|
|
|
2023-02-15 17:39:16 +00:00
|
|
|
* Wed Feb 15 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.0~rc3-1
|
|
|
|
- cmake-3.26.0-rc3
|
|
|
|
Fixes rhbz#2170100
|
|
|
|
|
2023-02-09 22:37:20 +00:00
|
|
|
* Thu Feb 09 2023 Björn Esser <besser82@fedoraproject.org> - 3.26.0~rc2-1
|
|
|
|
- cmake-3.26.0-rc2
|
|
|
|
Fixes rhbz#2167064
|
|
|
|
|
2023-01-19 18:58:25 +00:00
|
|
|
* Thu Jan 19 2023 Björn Esser <besser82@fedoraproject.org> - 3.25.2-1
|
|
|
|
- cmake-3.25.2
|
|
|
|
Fixes rhbz#2162459
|
|
|
|
|
2023-01-19 00:06:30 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2023-01-15 12:05:09 +00:00
|
|
|
* Sun Jan 15 2023 Björn Esser <besser82@fedoraproject.org> - 3.25.1-3
|
|
|
|
- Backport upstream patch for Boost v1.81 support
|
|
|
|
|
2023-01-13 10:01:20 +00:00
|
|
|
* Fri Jan 13 2023 Neal Gompa <ngompa@fedoraproject.org> - 3.25.1-2
|
|
|
|
- Adjust ctest macro to use native out-of-tree support
|
|
|
|
|
2022-12-05 05:15:59 +00:00
|
|
|
* Mon Dec 05 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.1-1
|
|
|
|
- cmake-3.25.1
|
|
|
|
Fixes rhbz#2149681
|
|
|
|
|
2022-11-16 21:03:14 +00:00
|
|
|
* Wed Nov 16 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-1
|
|
|
|
- cmake-3.25.0
|
|
|
|
Fixes rhbz#2143345
|
|
|
|
|
2022-11-09 07:07:16 +00:00
|
|
|
* Wed Nov 09 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-0.6.rc4
|
|
|
|
- cmake-3.25.0-rc4
|
|
|
|
Fixes rhbz#2141122
|
|
|
|
|
2022-11-02 07:19:42 +00:00
|
|
|
* Wed Nov 02 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-0.5.rc3
|
2022-11-02 08:34:44 +00:00
|
|
|
- Re-enable BundleUtilities, CMakeLib.testCTestResourceAllocator,
|
|
|
|
CMakeLib.testCTestResourceSpec, CTest.UpdateGIT, ExternalProject
|
|
|
|
during testsuite run
|
2022-11-02 08:36:12 +00:00
|
|
|
- Re-enable kwsys.testProcess-{4,5} on s390x
|
2022-11-02 07:19:42 +00:00
|
|
|
|
2022-11-02 06:54:11 +00:00
|
|
|
* Wed Nov 02 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-0.4.rc3
|
|
|
|
- cmake-3.25.0-rc3
|
|
|
|
Fixes rhbz#2062783
|
|
|
|
|
2022-10-30 12:56:05 +00:00
|
|
|
* Sun Oct 30 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-0.3.rc2
|
|
|
|
- Allow valid short arguments for %%ctest macro
|
|
|
|
Fixes rhbz#2127650
|
|
|
|
|
2022-10-30 12:09:50 +00:00
|
|
|
* Sun Oct 30 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-0.2.rc2
|
|
|
|
- Drop non-upstream CMAKE_DL_LIBS windows patch
|
|
|
|
Fixes rhbz#2127529
|
|
|
|
|
2022-10-29 10:03:59 +00:00
|
|
|
* Sat Oct 29 2022 Björn Esser <besser82@fedoraproject.org> - 3.25.0-0.1.rc2
|
|
|
|
- cmake-3.25.0-rc2
|
|
|
|
Fixes rhbz#2062783
|
|
|
|
|
2022-10-29 09:57:54 +00:00
|
|
|
* Sat Oct 29 2022 Björn Esser <besser82@fedoraproject.org> - 3.24.2-1
|
|
|
|
- cmake-3.24.2
|
|
|
|
|
2022-08-18 07:45:05 +00:00
|
|
|
* Thu Aug 18 2022 Björn Esser <besser82@fedoraproject.org> - 3.24.1-1
|
|
|
|
- cmake-3.24.1
|
|
|
|
|
2022-08-05 12:02:02 +00:00
|
|
|
* Fri Aug 05 2022 Leigh Scott <leigh123linux@gmail.com> - 3.24.0-1
|
|
|
|
- cmake-3.24.0
|
|
|
|
|
2022-07-29 16:30:45 +00:00
|
|
|
* Fri Jul 29 2022 Leigh Scott <leigh123linux@gmail.com> - 3.23.3-1
|
|
|
|
- cmake-3.23.3
|
|
|
|
|
2022-07-20 23:10:54 +00:00
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.0-0.2.rc2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-02-23 16:49:58 +00:00
|
|
|
* Wed Feb 23 2022 Björn Esser <besser82@fedoraproject.org> - 3.23.0-0.1.rc2
|
|
|
|
- cmake-3.23.0-rc2
|
|
|
|
Fixes rhbz#2052100
|
|
|
|
|
2022-01-25 16:10:43 +00:00
|
|
|
* Tue Jan 25 2022 Björn Esser <besser82@fedoraproject.org> - 3.22.2-1
|
|
|
|
- cmake-3.22.2
|
|
|
|
Fixes rhbz#2045074
|
|
|
|
|
2022-01-20 13:17:25 +00:00
|
|
|
* Thu Jan 20 2022 Björn Esser <besser82@fedoraproject.org> - 3.22.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-19 17:14:46 +00:00
|
|
|
* Wed Jan 19 2022 Björn Esser <besser82@fedoraproject.org> - 3.22.1-6
|
|
|
|
- Add patch to fix compatibility of FortranCInterface with GCC gfortran 12 LTO
|
|
|
|
Fixes rhbz#2041904
|
2022-01-19 18:41:48 +00:00
|
|
|
- Skip tests failing with GCC 12
|
2022-01-19 17:14:46 +00:00
|
|
|
|
2021-12-26 15:48:34 +00:00
|
|
|
* Sun Dec 26 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.1-5
|
|
|
|
- Backport two patches fixing regressions in FindBoost and FindGLUT
|
|
|
|
|
2021-12-17 22:56:43 +00:00
|
|
|
* Fri Dec 17 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.1-4
|
|
|
|
- Backport patch to add support for Python >= 3.10 in FindBoost.cmake
|
|
|
|
|
2021-12-16 15:46:40 +00:00
|
|
|
* Thu Dec 16 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.1-3
|
|
|
|
- Backport patch to add Boost 1.78 support
|
|
|
|
|
2021-12-16 11:10:03 +00:00
|
|
|
* Thu Dec 16 2021 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.22.1-2
|
|
|
|
- Backport patch to add Python 3.11 support
|
|
|
|
|
2021-12-07 18:26:22 +00:00
|
|
|
* Tue Dec 07 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.1-1
|
|
|
|
- cmake-3.22.1
|
|
|
|
Fixes rhbz#2029974
|
|
|
|
|
2021-12-02 19:57:20 +00:00
|
|
|
* Thu Dec 02 2021 Stephan Bergmann <sbergman@redhat.com> - 3.22.0-4
|
|
|
|
- Fixes RPATH_CHANGE fails when shared object is a GNU ld script
|
|
|
|
|
2021-12-01 17:41:40 +00:00
|
|
|
* Wed Dec 01 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-3
|
|
|
|
- Update fix for rhbz#2027118 with upstream solution
|
|
|
|
|
2021-11-28 20:07:28 +00:00
|
|
|
* Sun Nov 28 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-2
|
|
|
|
- Add patch to partially revert incompatible changes in GNUInstallDirs.cmake
|
|
|
|
Fixes rhbz#2027118
|
|
|
|
|
2021-11-18 20:41:58 +00:00
|
|
|
* Thu Nov 18 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.22.0-1
|
|
|
|
- cmake-3.22.0 (#2024712)
|
|
|
|
|
2021-11-12 20:05:56 +00:00
|
|
|
* Fri Nov 12 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-0.6.rc3
|
|
|
|
- cmake-3.22.0-rc3
|
|
|
|
Fixes rhbz#2022785
|
|
|
|
|
2021-11-03 20:47:04 +00:00
|
|
|
* Wed Nov 03 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-0.5.rc2
|
|
|
|
- Disable bootstrap build for jsoncpp
|
|
|
|
|
2021-11-03 19:03:38 +00:00
|
|
|
* Wed Nov 03 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-0.4.rc2
|
|
|
|
- Rebuild (jsoncpp)
|
|
|
|
|
2021-10-28 16:30:41 +00:00
|
|
|
* Thu Oct 28 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-0.3.rc2
|
|
|
|
- cmake-3.22.0-rc2
|
|
|
|
Fixes rhbz#2018235
|
2021-10-28 16:35:35 +00:00
|
|
|
- Remove debug compiler flag in macros.cmake (CMAKE_Fortran_FLAGS_RELEASE)
|
|
|
|
Fixes rhbz#2017942
|
2021-10-28 16:30:41 +00:00
|
|
|
|
2021-10-28 08:31:51 +00:00
|
|
|
* Thu Oct 28 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-0.2.rc1
|
2021-10-28 08:34:56 +00:00
|
|
|
- Revert previous changes to macros.cmake (-O2 -g)
|
2021-10-28 08:31:51 +00:00
|
|
|
Fixes rhbz#2017942
|
|
|
|
|
2021-10-14 15:35:03 +00:00
|
|
|
* Thu Oct 14 2021 Björn Esser <besser82@fedoraproject.org> - 3.22.0-0.1.rc1
|
|
|
|
- cmake-3.22.0-rc1
|
|
|
|
Fixes rhbz#2014190
|
2021-10-14 15:56:14 +00:00
|
|
|
- Do not build non-lto objects to reduce build time significantly
|
2021-10-14 16:12:44 +00:00
|
|
|
- Explicitly force optimization level 2 and debuginfo for release builds
|
2021-10-14 15:35:03 +00:00
|
|
|
|
2021-09-20 19:57:59 +00:00
|
|
|
* Mon Sep 20 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.3-1
|
|
|
|
- cmake-3.21.3
|
|
|
|
Fixes rhbz#2006054
|
|
|
|
|
2021-08-25 17:54:26 +00:00
|
|
|
* Wed Aug 25 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.2-1
|
|
|
|
- cmake-3.21.2
|
|
|
|
Fixes rhbz#1997708
|
|
|
|
|
2021-07-27 16:06:31 +00:00
|
|
|
* Tue Jul 27 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.1-1
|
|
|
|
- cmake-3.21.1
|
|
|
|
Fixes rhbz#1986449
|
|
|
|
|
2021-07-21 19:40:26 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.21.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-15 10:02:36 +00:00
|
|
|
* Thu Jul 15 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.0-5
|
|
|
|
- cmake-3.21.0
|
|
|
|
|
2021-07-08 18:37:57 +00:00
|
|
|
* Thu Jul 08 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.0-4.rc3
|
|
|
|
- cmake-3.21.0-rc3
|
|
|
|
|
2021-07-05 19:47:46 +00:00
|
|
|
* Mon Jul 05 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.0-3.rc2
|
|
|
|
- cmake-3.21.0-rc2
|
2021-07-05 19:54:08 +00:00
|
|
|
- Drop libdl patch for glibc >= 2.34, as it is upstreamed
|
2021-07-05 19:47:46 +00:00
|
|
|
|
2021-06-29 12:18:29 +00:00
|
|
|
* Tue Jun 29 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.0-2.rc1
|
|
|
|
- Rebuilt with upstreamed cmake-3.20.4-glibc_libdl.patch
|
|
|
|
|
2021-06-23 18:06:35 +00:00
|
|
|
* Wed Jun 23 2021 Björn Esser <besser82@fedoraproject.org> - 3.21.0-1.rc1
|
|
|
|
- cmake-3.21.0-rc1 (#1975377)
|
|
|
|
|
2021-06-21 18:39:51 +00:00
|
|
|
* Mon Jun 21 2021 Björn Esser <besser82@fedoraproject.org> - 3.20.5-1
|
|
|
|
- cmake-3.20.5 (#1942118)
|
|
|
|
|
2021-06-18 17:56:28 +00:00
|
|
|
* Fri Jun 18 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.20.4-1
|
|
|
|
- cmake-3.20.4 (#1942118)
|
2021-06-18 20:06:54 +00:00
|
|
|
- workaround libdl-related FTBFS (#1972535)
|
2021-06-18 17:56:28 +00:00
|
|
|
|
2021-05-31 03:06:22 +00:00
|
|
|
* Sun May 30 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.20.3-1
|
|
|
|
- cmake-3.20.3
|
|
|
|
|
2021-04-30 14:19:23 +00:00
|
|
|
* Thu Apr 29 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.20.2-1
|
|
|
|
- cmake-3.20.2 (#1942118)
|
|
|
|
- bash-completion fixes (#1924340)
|
|
|
|
- Release build type optimization options differ from upstream package (#1751155)
|
|
|
|
- parse parallel build from %%_smp_mflags instead of _NPROCESSORS_ONLN
|
|
|
|
- drop old dist references (rhel6)
|
|
|
|
|
2021-03-15 20:05:56 +00:00
|
|
|
* Mon Mar 15 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.19.7-1
|
|
|
|
- cmake-3.19.7
|
|
|
|
|
2021-02-25 16:17:21 +00:00
|
|
|
* Thu Feb 25 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.19.6-2
|
|
|
|
- cmake-3.19.6
|
|
|
|
|
2021-02-07 04:31:22 +00:00
|
|
|
* Sat Feb 06 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.19.4-2
|
|
|
|
- CMake warning when searching for Boost 1.75 (#1925355)
|
|
|
|
|
2021-01-28 21:43:16 +00:00
|
|
|
* Thu Jan 28 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.19.4-1
|
|
|
|
- cmake-3.19.4
|
|
|
|
|
2021-01-26 02:10:45 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-13 15:30:49 +00:00
|
|
|
* Wed Jan 13 2021 Rex Dieter <rdieter@fedoraproject.org> - 3.19.3-1
|
|
|
|
- cmake-3.19.3
|
|
|
|
|
2021-01-11 17:27:28 +00:00
|
|
|
* Mon Jan 11 2021 Cristian Morales Vega <christian.morales.vega@gmail.com> - 3.19.2-1
|
|
|
|
- Update to 3.19.2
|
|
|
|
|
2020-11-09 22:08:07 +00:00
|
|
|
* Tue Dec 15 2020 Tom Stellard <tstellar@redhat.com> - 3.18.4-4
|
|
|
|
- Update BuildRequires for eln
|
|
|
|
|
2022-07-29 18:30:56 +00:00
|
|
|
* Fri Nov 20 2020 Neal Gompa <ngompa13@gmail.com> - 3.18.4-3
|
2020-11-20 13:32:34 +00:00
|
|
|
- Ensure CMake does not strip binaries with package builds
|
|
|
|
|
2020-11-09 16:44:30 +00:00
|
|
|
* Mon Nov 09 2020 Miro Hrončok <mhroncok@redhat.com> - 3.18.4-2
|
|
|
|
- Add support for Python 3.10
|
|
|
|
|
2022-07-29 18:30:56 +00:00
|
|
|
* Tue Oct 13 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.4-1
|
2020-10-13 08:04:14 +00:00
|
|
|
- Update to 3.18.4
|
|
|
|
|
2022-07-29 18:30:56 +00:00
|
|
|
* Wed Sep 30 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.3-1
|
2020-09-30 10:55:31 +00:00
|
|
|
- Update to 3.18.3
|
2020-09-30 10:56:24 +00:00
|
|
|
- Explicitly require make
|
2020-09-30 11:00:27 +00:00
|
|
|
- Add patch to support FlexiBLAS
|
2020-09-30 10:55:31 +00:00
|
|
|
|
2020-09-29 16:31:29 +00:00
|
|
|
* Tue Sep 29 2020 Christoph Junghans <junghans@votca.org> - 3.18.2-2
|
|
|
|
- Make %ctest non-verbose by default
|
|
|
|
|
2020-08-20 20:01:22 +00:00
|
|
|
* Thu Aug 20 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.2-1
|
|
|
|
- Update to 3.18.2
|
|
|
|
|
2020-08-01 10:29:55 +00:00
|
|
|
* Sat Aug 01 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.1-1
|
|
|
|
- Update to 3.18.1
|
|
|
|
|
2020-07-30 04:03:29 +00:00
|
|
|
* Wed Jul 29 2020 Orion Poplawski <orion@nwra.com> - 3.18.0-5
|
|
|
|
- Handle arguments for ctest3 macro
|
|
|
|
|
2020-07-27 14:10:50 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.18.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-22 20:24:22 +00:00
|
|
|
* Wed Jul 22 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.0-3
|
|
|
|
- Default to --verbose for ctest as well
|
|
|
|
|
2020-07-19 12:59:00 +00:00
|
|
|
* Sun Jul 19 2020 Neal Gompa <ngompa13@gmail.com> - 3.18.0-2
|
|
|
|
- Make in-source builds behave like before
|
|
|
|
|
2020-07-03 20:35:31 +00:00
|
|
|
* Sat Jul 18 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 3.18.0-1.1
|
|
|
|
- Enable out-of-source builds by default
|
|
|
|
|
2020-07-16 10:01:58 +00:00
|
|
|
* Thu Jul 16 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.0-1
|
|
|
|
- Update to 3.18.0
|
|
|
|
|
2020-07-04 11:05:57 +00:00
|
|
|
* Sat Jul 04 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.0-0.8.rc3
|
|
|
|
- Update to 3.18.0-rc3
|
|
|
|
|
2020-07-03 15:43:04 +00:00
|
|
|
* Fri Jul 03 2020 Neal Gompa <ngompa13@gmail.com> - 3.18.0-0.7.rc2
|
|
|
|
- Switch to implementation that is backwards compatible to older RPM
|
|
|
|
- Change control macro for in-source/out-of-source to %%__cmake_in_source_build
|
|
|
|
|
2020-07-03 15:12:56 +00:00
|
|
|
* Fri Jul 03 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 3.18.0-0.6.rc2
|
|
|
|
- Add out-of-source builds controlled by a macro (%%__cmake_out_of_source_build)
|
|
|
|
|
2020-07-01 06:26:46 +00:00
|
|
|
* Wed Jul 01 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 3.18.0-0.5.rc2
|
|
|
|
- Undo out-of-source-builds
|
|
|
|
|
2020-06-30 19:37:16 +00:00
|
|
|
* Tue Jun 30 2020 Tom Callaway <spot@fedoraproject.org> - 3.18.0-0.4.rc2
|
|
|
|
- fix FindLua to support lua 5.4
|
|
|
|
|
2020-06-29 17:42:03 +00:00
|
|
|
* Mon Jun 29 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.0-0.3.rc2
|
|
|
|
- Apply change: CMake to do out-of-source builds (#1852036)
|
|
|
|
|
2020-06-20 09:37:49 +00:00
|
|
|
* Sat Jun 20 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.0-0.2.rc2
|
|
|
|
- Update to 3.18.0-rc2
|
|
|
|
|
2020-06-12 16:14:59 +00:00
|
|
|
* Fri Jun 12 2020 Björn Esser <besser82@fedoraproject.org> - 3.18.0-0.1.rc1
|
|
|
|
- Update to 3.18.0-rc1
|
|
|
|
|
2020-05-30 09:45:29 +00:00
|
|
|
* Sat May 30 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.3-2
|
|
|
|
- Rebuild (jsoncpp)
|
|
|
|
|
2020-05-29 07:51:17 +00:00
|
|
|
* Fri May 29 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.3-1
|
|
|
|
- Update to cmake-3.17.3
|
|
|
|
|
2020-04-28 23:07:29 +00:00
|
|
|
* Tue Apr 28 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.2-1
|
|
|
|
- Update to cmake-3.17.2
|
|
|
|
|
2020-04-09 18:23:57 +00:00
|
|
|
* Thu Apr 09 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.1-1
|
|
|
|
- Update to cmake-3.17.1
|
|
|
|
|
2020-03-24 17:21:04 +00:00
|
|
|
* Tue Mar 24 2020 Rex Dieter <rdieter@fedoraproject.org> - 3.17.0-1
|
|
|
|
- Update to cmake-3.17.0
|
|
|
|
|
2020-03-13 10:28:59 +00:00
|
|
|
* Fri Mar 13 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.0-0.4.rc3
|
|
|
|
- Update to 3.17.0-rc3
|
|
|
|
|
2020-03-03 09:58:17 +00:00
|
|
|
* Tue Mar 03 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.0-0.3.rc2
|
|
|
|
- Update to 3.17.0-rc2
|
|
|
|
|
2020-02-27 03:59:26 +00:00
|
|
|
* Thu Feb 27 2020 Orion Poplawski <orion@nwra.com> - 3.17.0-0.2.rc1
|
|
|
|
- Use python3 for rpm generators
|
|
|
|
- Use lowercase names for cmake provides in generator (in addition to old names)
|
|
|
|
|
2020-02-17 23:02:09 +00:00
|
|
|
* Mon Feb 17 2020 Björn Esser <besser82@fedoraproject.org> - 3.17.0-0.1.rc1
|
2020-02-17 21:47:31 +00:00
|
|
|
- Update to 3.17.0-rc1
|
|
|
|
|
2020-02-05 18:47:26 +00:00
|
|
|
* Wed Feb 05 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.4-1
|
|
|
|
- Update to 3.16.4
|
|
|
|
|
2020-01-28 14:18:23 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.16.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-22 15:24:13 +00:00
|
|
|
* Wed Jan 22 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.3-1
|
|
|
|
- Update to 3.16.3
|
|
|
|
|
2020-01-15 09:40:39 +00:00
|
|
|
* Wed Jan 15 2020 Björn Esser <besser82@fedoraproject.org> - 3.16.2-1
|
|
|
|
- Update to 3.16.2
|
2020-01-15 10:01:04 +00:00
|
|
|
- Use %%_vpath_builddir for out-of-tree build
|
2020-01-15 10:19:50 +00:00
|
|
|
- Use %%set_build_flags to export build flags if available
|
2020-01-15 10:40:16 +00:00
|
|
|
- Use %%set_build_flags inside macros.cmake if available
|
2020-01-15 09:40:39 +00:00
|
|
|
|
2020-01-14 18:46:18 +00:00
|
|
|
* Tue Jan 14 2020 Miro Hrončok <mhroncok@redhat.com> - 3.16.1-2
|
|
|
|
- FindPython: Add support for version 3.9
|
|
|
|
|
2019-12-14 19:50:37 +00:00
|
|
|
* Sat Dec 14 2019 Björn Esser <besser82@fedoraproject.org> - 3.16.1-1
|
|
|
|
- Update to 3.16.1
|
2019-12-15 18:40:14 +00:00
|
|
|
- Re-enable test "kwsys.testProcess-5" on S390X
|
2019-12-14 19:50:37 +00:00
|
|
|
|
2019-11-26 18:38:55 +00:00
|
|
|
* Tue Nov 26 2019 Björn Esser <besser82@fedoraproject.org> - 3.16.0-1
|
|
|
|
- Update to 3.16.0
|
2019-11-27 16:08:59 +00:00
|
|
|
- Exclude test "kwsys.testProcess-5" on S390X
|
2019-11-26 18:38:55 +00:00
|
|
|
|
2019-11-19 04:00:59 +00:00
|
|
|
* Mon Nov 18 2019 Orion Poplawski <orion@nwra.com> - 3.16.0-0.1.rc4
|
|
|
|
- Update to 3.16.0-rc4
|
|
|
|
- Cleanup %%check
|
|
|
|
|
2019-11-14 19:33:56 +00:00
|
|
|
* Thu Nov 14 2019 Björn Esser <besser82@fedoraproject.org> - 3.15.5-2
|
|
|
|
- Rebuild (jsoncpp)
|
2019-11-15 18:39:52 +00:00
|
|
|
- Exclude more tests failing on s390x
|
2019-11-14 19:33:56 +00:00
|
|
|
|
2019-10-31 02:30:02 +00:00
|
|
|
* Wed Oct 30 2019 Orion Poplawski <orion@nwra.com> - 3.15.5-1
|
|
|
|
- Update to 3.15.5
|
|
|
|
|
2019-10-17 04:03:02 +00:00
|
|
|
* Wed Oct 16 2019 Orion Poplawski <orion@nwra.com> - 3.15.4-1
|
|
|
|
- Update to 3.15.4
|
|
|
|
|
2019-10-02 02:27:06 +00:00
|
|
|
* Mon Sep 30 2019 Orion Poplawski <orion@nwra.com> - 3.15.3-1
|
|
|
|
- Update to 3.15.3
|
|
|
|
|
2019-07-24 20:29:45 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.14.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-03 15:39:08 +00:00
|
|
|
* Wed Jul 03 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.5-3
|
|
|
|
- Rebuild (jsoncpp), qt5 enabled
|
|
|
|
|
2019-07-03 11:29:29 +00:00
|
|
|
* Wed Jul 03 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.5-2
|
2019-07-03 11:59:48 +00:00
|
|
|
- Rebuild (jsoncpp), bootstrap without qt5
|
2019-07-03 14:43:14 +00:00
|
|
|
- Ignore a test failing with rpm-4.15
|
2019-07-03 11:29:29 +00:00
|
|
|
|
2019-05-31 21:51:41 +00:00
|
|
|
* Fri May 31 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.5-1
|
|
|
|
- 3.14.5
|
|
|
|
|
2019-05-14 21:13:38 +00:00
|
|
|
* Tue May 14 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.4-1
|
|
|
|
- 3.14.4
|
|
|
|
|
2019-04-22 20:29:34 +00:00
|
|
|
* Mon Apr 22 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.3-1
|
|
|
|
- 3.14.3
|
|
|
|
|
2019-04-12 19:21:20 +00:00
|
|
|
* Fri Apr 12 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.2-1
|
|
|
|
- 3.14.2
|
|
|
|
|
2019-03-29 17:19:12 +00:00
|
|
|
* Fri Mar 29 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.1-1
|
|
|
|
- 3.14.1
|
|
|
|
|
2019-03-28 13:36:42 +00:00
|
|
|
* Thu Mar 28 2019 Rex Dieter <rdieter@fedoraproject.org> - 3.14.0-2
|
|
|
|
- pull in upstream fix for conflict with ECM/FindFontConfig
|
|
|
|
|
2019-03-15 13:17:43 +00:00
|
|
|
* Fri Mar 15 2019 Björn Esser <besser82@fedoraproject.org> - 3.14.0-1
|
|
|
|
- 3.14.0
|
|
|
|
|
2019-02-03 04:11:07 +00:00
|
|
|
* Sat Feb 2 2019 Orion Poplawski <orion@nwra.com> - 3.13.4-1
|
|
|
|
- 3.13.4
|
|
|
|
|
2019-01-31 15:49:39 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.13.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-16 15:37:38 +00:00
|
|
|
* Wed Jan 16 2019 Rex Dieter <rdieter@fedoraproject.org> - 3.13.3-1
|
|
|
|
- 3.13.3
|
|
|
|
|
2018-12-15 12:33:07 +00:00
|
|
|
* Fri Dec 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.13.2-1
|
|
|
|
- 3.13.2
|
|
|
|
|
2018-12-08 22:16:41 +00:00
|
|
|
* Sat Dec 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.13.1-2
|
|
|
|
- macros.cmake: introduce %%_cmake_shared_libs macro
|
|
|
|
|
2018-11-28 23:57:52 +00:00
|
|
|
* Wed Nov 28 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.13.1-1
|
|
|
|
- 3.13.1
|
|
|
|
|
2018-09-09 04:21:27 +00:00
|
|
|
* Sat Sep 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.12.2-1
|
|
|
|
- Update to 3.12.2
|
|
|
|
|
2018-08-28 15:31:07 +00:00
|
|
|
* Fri Aug 17 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.12.1-1
|
2018-08-17 16:10:34 +00:00
|
|
|
- Update to 3.12.1 (# 1614572)
|
|
|
|
|
2018-07-27 14:30:12 +00:00
|
|
|
* Fri Jul 27 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.12.0-1
|
|
|
|
- Update to 3.12.0 (#1584925)
|
|
|
|
- fixes libuv-related FTBFS (#1603661)
|
|
|
|
- use %%_metainfodir
|
|
|
|
|
2018-07-12 21:56:28 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.11.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-19 08:41:10 +00:00
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.11.2-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-05-18 10:55:20 +00:00
|
|
|
* Fri May 18 2018 Björn Esser <besser82@fedoraproject.org> - 3.11.2-1
|
|
|
|
- Update to 3.11.2 (#1568630)
|
|
|
|
|
2018-03-29 06:57:39 +00:00
|
|
|
* Thu Mar 29 2018 Björn Esser <besser82@fedoraproject.org> - 3.11.0-1
|
|
|
|
- Update to 3.11.0 (#1536233)
|
|
|
|
|
2018-03-09 05:51:11 +00:00
|
|
|
* Thu Mar 08 2018 Orion Poplawski <orion@nwra.com> - 3.10.2-4
|
2018-03-09 05:11:16 +00:00
|
|
|
- Add patch to fix autogen with empty files (bug #1551147)
|
|
|
|
|
2018-03-08 16:45:37 +00:00
|
|
|
* Thu Mar 08 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.10.2-3
|
|
|
|
- better Qt dependencies
|
|
|
|
|
2018-03-02 11:08:33 +00:00
|
|
|
* Fri Mar 02 2018 Kalev Lember <klember@redhat.com> - 3.10.2-2
|
|
|
|
- Fix appdata file to match with desktop file name
|
|
|
|
|
2018-02-22 15:20:33 +00:00
|
|
|
* Thu Feb 22 2018 Orion Poplawski <orion@nwra.com> - 3.10.2-1
|
|
|
|
- Update to 3.10.2
|
|
|
|
- Add patch to fix test failure with gcc 8
|
|
|
|
|
2018-02-07 05:13:13 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.10.1-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-15 23:27:02 +00:00
|
|
|
* Tue Jan 16 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.10.1-12
|
|
|
|
- Conflicts was the right choice
|
|
|
|
|
2018-01-14 16:56:22 +00:00
|
|
|
* Sun Jan 14 2018 Björn Esser <besser82@fedoraproject.org> - 3.10.1-11
|
|
|
|
- rpm-macros: Keep cmake{,-data} in evr-lock, if they are installed
|
|
|
|
|
2018-01-14 15:29:46 +00:00
|
|
|
* Sun Jan 14 2018 Björn Esser <besser82@fedoraproject.org> - 3.10.1-10
|
|
|
|
- rpm-macros: Use rich boolean Requires instead of Conflicts (#1532293)
|
|
|
|
|
2018-01-13 15:20:49 +00:00
|
|
|
* Sat Jan 13 2018 Rex Dieter <rdieter@fedoraproject.org> 3.10.1-9
|
2018-01-13 15:25:00 +00:00
|
|
|
- -rpm-macros: Conflicts: cmake-data < 3.10.1-2 (#1532293)
|
2018-01-13 15:20:49 +00:00
|
|
|
|
2017-12-30 15:14:14 +00:00
|
|
|
* Tue Jan 02 2018 Sandro Mani <manisandro@gmail.com> - 3.10.1-8
|
|
|
|
- Add dl to CMAKE_DL_LIBS on MINGW
|
|
|
|
|
2017-12-30 07:19:00 +00:00
|
|
|
* Sat Dec 30 2017 Richard W.M. Jones <rjones@redhat.com> - 3.10.1-7
|
|
|
|
- Add small fix for RISC-V support.
|
|
|
|
|
2017-12-26 08:21:52 +00:00
|
|
|
* Tue Dec 26 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-6
|
|
|
|
- Rebuilt for jsoncpp.so.20
|
|
|
|
|
2017-12-26 08:09:23 +00:00
|
|
|
* Tue Dec 26 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-5
|
|
|
|
- Bootstrapping for jsoncpp-1.8.4
|
|
|
|
|
2017-12-21 19:02:56 +00:00
|
|
|
* Thu Dec 21 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-4
|
|
|
|
- Re-add arched requires on filesystem sub-package
|
|
|
|
|
2017-12-21 12:54:21 +00:00
|
|
|
* Thu Dec 21 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-3
|
|
|
|
- Ensure we have our own rpm-macros in place during build
|
|
|
|
|
2017-12-21 11:50:37 +00:00
|
|
|
* Thu Dec 21 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-2
|
|
|
|
- Move rpm macros to own subpackage (#1498894)
|
|
|
|
|
2017-12-16 13:44:50 +00:00
|
|
|
* Sat Dec 16 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.1-1
|
|
|
|
- Update to 3.10.1 (#1526648)
|
|
|
|
|
2017-11-23 11:43:07 +00:00
|
|
|
* Thu Nov 23 2017 Björn Esser <besser82@fedoraproject.org> - 3.10.0-1
|
|
|
|
- Update to 3.10.0 (#1515793)
|
|
|
|
|
2017-11-10 20:14:38 +00:00
|
|
|
* Fri Nov 10 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.9.6-1
|
|
|
|
- Update to 3.9.6
|
|
|
|
|
2017-11-08 20:47:42 +00:00
|
|
|
* Wed Nov 08 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.9.5-1
|
|
|
|
- Update to 3.9.5 (#1498688)
|
|
|
|
|
2017-09-21 07:45:59 +00:00
|
|
|
* Thu Sep 21 2017 Pete Walter <pwalter@fedoraproject.org> - 3.9.3-1
|
|
|
|
- Update to 3.9.3
|
|
|
|
|
2017-09-01 20:29:35 +00:00
|
|
|
* Fri Sep 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.1-4
|
|
|
|
- Rebuilt for jsoncpp-1.8.3
|
|
|
|
|
2017-09-01 20:21:07 +00:00
|
|
|
* Fri Sep 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.1-3
|
|
|
|
- Bootstrapping for jsoncpp-1.8.3
|
|
|
|
|
2017-08-13 00:03:06 +00:00
|
|
|
* Sun Aug 13 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.1-2
|
|
|
|
- Add patch to restore old style debuginfo creation for rpm >= 4.14
|
|
|
|
in CPackRPM
|
|
|
|
|
2017-08-12 02:12:26 +00:00
|
|
|
* Sat Aug 12 2017 Pete Walter <pwalter@fedoraproject.org> - 3.9.1-1
|
|
|
|
- Update to 3.9.1
|
|
|
|
|
2017-08-03 10:39:42 +00:00
|
|
|
* Thu Aug 03 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-9
|
|
|
|
- RunCMake.File_Generate fails on S390X, skip it temporarily
|
|
|
|
|
2017-08-02 21:10:30 +00:00
|
|
|
* Wed Aug 02 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-8
|
|
|
|
- Fix cmake.attr and cmake.req to work properly
|
|
|
|
|
2017-08-02 16:53:08 +00:00
|
|
|
* Wed Aug 02 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-7
|
|
|
|
- Add cmake.req to autogenerate proper depency on cmake-filesystem
|
|
|
|
|
2017-08-02 12:39:20 +00:00
|
|
|
* Wed Aug 02 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-6
|
|
|
|
- Fix cmake-gui being picked up by main package
|
|
|
|
|
2017-07-30 14:08:54 +00:00
|
|
|
* Sun Jul 30 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-5
|
|
|
|
- Optimizations for filesystem-package
|
|
|
|
|
2017-07-28 11:03:43 +00:00
|
|
|
* Fri Jul 28 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-4
|
|
|
|
- Temporarily disable RunCMake.CPack_RPM, because it fails for the new
|
|
|
|
way RPM handles debug-stuff
|
|
|
|
|
2017-07-26 05:03:47 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-23 23:54:21 +00:00
|
|
|
* Sun Jul 23 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-2
|
2017-07-24 00:03:42 +00:00
|
|
|
- Update patch for Fedora RELEASE-builds
|
|
|
|
- Add patch to fix warnings from Sphinx
|
2017-07-23 23:54:21 +00:00
|
|
|
|
2017-07-19 08:11:18 +00:00
|
|
|
* Wed Jul 19 2017 Björn Esser <besser82@fedoraproject.org> - 3.9.0-1
|
|
|
|
- Update to 3.9.0 final (rhbz#1472503)
|
|
|
|
- Add filesystem package (rhbz#1471153)
|
|
|
|
|
2017-06-01 09:30:22 +00:00
|
|
|
* Thu Jun 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.8.2-1
|
|
|
|
- Update to 3.8.2 final (rhbz#1447473)
|
|
|
|
|
2017-05-15 20:36:25 +00:00
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.0-3.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
2017-04-28 19:51:44 +00:00
|
|
|
* Fri Apr 28 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-3
|
|
|
|
- Add upstream patch to fix FindGLUT library dependencies (bug #1444563)
|
|
|
|
|
2017-04-21 10:17:17 +00:00
|
|
|
* Fri Apr 21 2017 Karsten Hopp <karsten@redhat.com> - 3.8.0-2
|
|
|
|
- use new _module_build macro to limit dependencies for Modularity
|
|
|
|
|
2017-04-10 18:58:37 +00:00
|
|
|
* Mon Apr 10 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-1
|
|
|
|
- Update to 3.8.0 final
|
|
|
|
|
2017-03-27 15:05:49 +00:00
|
|
|
* Mon Mar 27 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-0.2.rc3
|
|
|
|
- Update to 3.8.0-rc3
|
|
|
|
- Add upstream patch to support rpm build-id dirs
|
|
|
|
|
2017-03-21 03:40:49 +00:00
|
|
|
* Mon Mar 20 2017 Orion Poplawski <orion@cora.nwra.com> - 3.8.0-0.1.rc2
|
|
|
|
- Update to 3.8.0-rc2
|
|
|
|
|
2017-02-27 18:30:06 +00:00
|
|
|
* Mon Feb 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.7.2-4
|
|
|
|
- Add patch to handle gcc format option changes
|
|
|
|
|
2017-02-20 16:17:02 +00:00
|
|
|
* Mon Feb 20 2017 Rex Dieter <rdieter@fedoraproject.org> - 3.7.2-3
|
|
|
|
- Fix ambiguous file lookup in cmake.prov
|
|
|
|
|
2017-02-09 18:24:13 +00:00
|
|
|
* Thu Feb 9 2017 Orion Poplawski <orion@cora.nwra.com> - 3.7.2-2
|
|
|
|
- Fix cmake.prov error
|
|
|
|
|
2017-01-14 03:21:52 +00:00
|
|
|
* Fri Jan 13 2017 Orion Poplawski <orion@cora.nwra.com> - 3.7.2-1
|
|
|
|
- Update to 3.7.2
|
|
|
|
|
2016-12-13 14:26:38 +00:00
|
|
|
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 3.7.1-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-01 04:13:46 +00:00
|
|
|
* Wed Nov 30 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.1-1
|
|
|
|
- Update to 3.7.1
|
|
|
|
|
2016-11-12 14:38:22 +00:00
|
|
|
* Sat Nov 12 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-1
|
|
|
|
- Update to 3.7.0 final
|
|
|
|
|
2016-11-05 00:01:25 +00:00
|
|
|
* Fri Nov 4 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-0.3.rc3
|
|
|
|
- Update to 3.7.0-rc3
|
|
|
|
|
2016-10-20 03:14:07 +00:00
|
|
|
* Wed Oct 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-0.2.rc2
|
|
|
|
- Update to 3.7.0-rc2
|
|
|
|
|
2016-10-06 21:50:18 +00:00
|
|
|
* Thu Oct 6 2016 Orion Poplawski <orion@cora.nwra.com> - 3.7.0-0.1.rc1
|
|
|
|
- Update to 3.7.0-rc1
|
|
|
|
- Drop gui, findjni, and riscv patches applied upstream
|
|
|
|
|
2016-10-03 05:08:11 +00:00
|
|
|
* Mon Oct 03 2016 Björn Esser <fedora@besser82.io> - 3.6.2-6
|
|
|
|
- Rebuilt with gui enabled
|
|
|
|
|
2016-10-03 03:47:26 +00:00
|
|
|
* Mon Oct 03 2016 Björn Esser <fedora@besser82.io> - 3.6.2-5
|
|
|
|
- Rebuilt for libjsoncpp.so.11
|
2016-10-03 04:49:49 +00:00
|
|
|
- Bootstrap without gui, due inter-circular dependency in qt5-rpm-macros
|
2016-10-03 03:47:26 +00:00
|
|
|
|
2016-09-27 03:48:50 +00:00
|
|
|
* Mon Sep 26 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.2-4
|
|
|
|
- Add upstream patch for Qt5 QFileDialog usage
|
|
|
|
|
2016-09-26 14:15:14 +00:00
|
|
|
* Mon Sep 26 2016 Than Ngo <than@redhat.com> - 3.6.2-3
|
|
|
|
- Add aarch32 to libarch for arm platform
|
|
|
|
|
2016-09-12 22:07:06 +00:00
|
|
|
* Mon Sep 12 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.2-2
|
|
|
|
- Provide the major version cmakeX name
|
|
|
|
|
2016-09-08 15:45:26 +00:00
|
|
|
* Thu Sep 8 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.2-1
|
|
|
|
- Update to 3.6.2
|
|
|
|
|
2016-08-17 17:07:59 +00:00
|
|
|
* Tue Aug 16 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.1-2
|
|
|
|
- Ship symlinks to binaries with major version in name
|
|
|
|
- Provide %%cmakeX macro, where X is cmake major version
|
|
|
|
|
2016-07-25 22:32:04 +00:00
|
|
|
* Mon Jul 25 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.1-1
|
|
|
|
- Update to 3.6.1
|
|
|
|
|
2016-07-08 13:39:41 +00:00
|
|
|
* Fri Jul 8 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.0-1
|
|
|
|
- Update to 3.6.0
|
|
|
|
|
2016-06-29 20:50:20 +00:00
|
|
|
* Wed Jun 29 2016 Orion Poplawski <orion@cora.nwra.com> - 3.6.0-0.1.rc4
|
|
|
|
- Update to 3.6.0-rc4
|
|
|
|
|
2016-06-03 16:19:26 +00:00
|
|
|
* Fri Jun 03 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.2-3
|
|
|
|
- Add patch to support libarchive 3.2
|
|
|
|
|
2016-06-02 12:05:49 +00:00
|
|
|
* Thu Jun 02 2016 Than Ngo <than@redhat.com> - 3.5.2-3
|
|
|
|
- drop -O3 and add -O2 for default release
|
|
|
|
|
2016-04-21 16:40:18 +00:00
|
|
|
* Thu Apr 21 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.2-2
|
|
|
|
- Do not own /usr/lib/rpm/fileattrs
|
|
|
|
|
2016-04-16 05:39:32 +00:00
|
|
|
* Fri Apr 15 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.2-1
|
2016-04-16 00:57:07 +00:00
|
|
|
- Update to 3.5.2 final
|
|
|
|
|
2016-03-25 12:57:29 +00:00
|
|
|
* Fri Mar 25 2016 Björn Esser <fedora@besser82.io> - 3.5.1-2
|
|
|
|
- Rebuilt for libjsoncpp.so.1
|
|
|
|
|
2016-03-25 08:32:55 +00:00
|
|
|
* Fri Mar 25 2016 Björn Esser <fedora@besser82.io> - 3.5.1-1
|
|
|
|
- Update to 3.5.1 (#1321198)
|
|
|
|
|
2016-03-10 07:13:17 +00:00
|
|
|
* Thu Mar 10 2016 Björn Esser <fedora@besser82.io> - 3.5.0-2
|
|
|
|
- keep Help-directory and its contents in %%_datadir/%%name (#1316306)
|
|
|
|
|
2016-03-09 02:19:57 +00:00
|
|
|
* Tue Mar 8 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-1
|
|
|
|
- Update to 3.5.0 final
|
|
|
|
|
2016-03-07 15:43:29 +00:00
|
|
|
* Mon Mar 07 2016 Björn Esser <fedora@besser82.io> - 3.5.0-0.3.rc3
|
|
|
|
- cleanup trailing whitespaces
|
|
|
|
- remove el5 stuff
|
|
|
|
- doc-subpkg should be noarch'ed
|
|
|
|
- doc-subpkg should not require main-pkg
|
|
|
|
- add %%{?_isa} to the applicable Requires
|
|
|
|
- replaced %%define with %%global
|
|
|
|
- handle macrosdir for rpm-macros properly
|
|
|
|
- fix ownership of directories, add needed Requires
|
|
|
|
- conditionalize appdata
|
|
|
|
- handle docdir properly
|
|
|
|
- generalize glob for man-pages independent of used compression
|
|
|
|
- generalize for use as EPEL-package, too
|
|
|
|
- use %%license instead of %%doc for license-files
|
|
|
|
- split the common data-files into a noarch'ed subpackage
|
|
|
|
- build html-docs and put them into the doc-subpkg
|
|
|
|
|
2016-02-21 02:27:11 +00:00
|
|
|
* Sat Feb 20 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-0.2.rc3
|
|
|
|
- Update to 3.5.0-rc3
|
|
|
|
|
2016-02-17 16:59:14 +00:00
|
|
|
* Wed Feb 17 2016 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-0.1.rc2
|
|
|
|
- Update to 3.5.0-rc2
|
|
|
|
- Drop dcmtk patch
|
|
|
|
|
2016-02-07 23:26:49 +00:00
|
|
|
* Sun Feb 7 2016 Orion Poplawski <orion@cora.nwra.com> - 3.4.3-3
|
|
|
|
- Fix build without gui (bug #1305310)
|
|
|
|
|
2016-02-03 17:49:26 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-26 01:36:08 +00:00
|
|
|
* Mon Jan 25 2016 Orion Poplawski <orion@cora.nwra.com> - 3.4.3-1
|
|
|
|
- Update to 3.4.3
|
|
|
|
|
2016-01-20 01:41:13 +00:00
|
|
|
* Tue Jan 19 2016 Orion Poplawski <orion@cora.nwra.com> - 3.4.2-1
|
|
|
|
- Update to 3.4.2
|
|
|
|
|
2015-12-12 09:17:57 +00:00
|
|
|
* Sat Dec 12 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.4.1-4
|
|
|
|
- Use Python 3 on F-23+
|
|
|
|
|
2015-12-08 16:50:14 +00:00
|
|
|
* Tue Dec 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.1-3
|
|
|
|
- Use Qt5 for gui
|
|
|
|
|
2015-12-07 22:58:24 +00:00
|
|
|
* Mon Dec 7 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.1-2
|
|
|
|
- Fixup some conditionals for RHEL7
|
|
|
|
|
2015-12-03 00:13:33 +00:00
|
|
|
* Wed Dec 2 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.1-1
|
|
|
|
- Update to 3.4.1
|
|
|
|
|
2015-11-25 20:54:47 +00:00
|
|
|
* Wed Nov 25 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-2
|
|
|
|
- BR /usr/bin/sphinx-build instead of python-sphinx
|
|
|
|
|
|
|
|
* Tue Nov 17 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-1
|
2015-11-17 05:15:19 +00:00
|
|
|
- Update to 3.4.0 final
|
|
|
|
|
2015-11-06 02:42:36 +00:00
|
|
|
* Thu Nov 5 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-0.3.rc3
|
|
|
|
- Update to 3.4.0-rc3
|
|
|
|
|
2015-10-22 02:45:38 +00:00
|
|
|
* Wed Oct 21 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-0.2.rc2
|
|
|
|
- Update to 3.4.0-rc2
|
|
|
|
|
2015-10-06 23:16:55 +00:00
|
|
|
* Tue Oct 6 2015 Orion Poplawski <orion@cora.nwra.com> - 3.4.0-0.1.rc1
|
|
|
|
- Update to 3.4.0-rc1
|
|
|
|
|
2015-10-06 14:16:17 +00:00
|
|
|
* Tue Oct 6 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.2-2
|
|
|
|
- Add upstream patch to find python 3.5 (bug #1269095)
|
|
|
|
|
2015-09-18 03:15:06 +00:00
|
|
|
* Thu Sep 17 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.2-1
|
|
|
|
- Update to 3.3.2
|
2015-09-18 04:29:49 +00:00
|
|
|
- Use %%{__global_ldflags}
|
2015-09-18 16:15:40 +00:00
|
|
|
- Fix test exclusion
|
2015-09-18 03:15:06 +00:00
|
|
|
|
2015-09-11 19:00:04 +00:00
|
|
|
* Fri Sep 11 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-5
|
|
|
|
- Apply upstream patch to fix Fortran linker detection with redhat-hardened-ld
|
|
|
|
(bug #1260490)
|
|
|
|
|
2015-09-10 04:22:00 +00:00
|
|
|
* Wed Sep 9 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-4
|
|
|
|
- Apply upstream patch to fix trycompile output (bug #1260490)
|
|
|
|
|
2015-08-25 16:28:59 +00:00
|
|
|
* Tue Aug 25 2015 Rex Dieter <rdieter@fedoraproject.org> 3.3.1-3
|
|
|
|
- pull in some upstream fixes (FindPkgConfig,boost-1.59)
|
|
|
|
|
2015-08-21 12:17:15 +00:00
|
|
|
* Fri Aug 21 2015 Rex Dieter <rdieter@fedoraproject.org> 3.3.1-2
|
|
|
|
- Provides: bundled(kwsys)
|
|
|
|
|
2015-08-14 02:47:10 +00:00
|
|
|
* Thu Aug 13 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.1-1
|
|
|
|
- Update to 3.3.1
|
|
|
|
|
2015-07-24 04:24:08 +00:00
|
|
|
* Thu Jul 23 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-1
|
|
|
|
- Update to 3.3.0
|
|
|
|
|
2015-07-09 18:31:26 +00:00
|
|
|
* Thu Jul 9 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-0.4.rc3
|
|
|
|
- Update to 3.3.0-rc3
|
|
|
|
- Fix cmake.attr to handle 32-bit libraries
|
|
|
|
|
2015-06-24 03:45:46 +00:00
|
|
|
* Tue Jun 23 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-0.3.rc2
|
|
|
|
- Update to 3.3.0-rc2
|
|
|
|
|
2015-06-17 02:52:15 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-0.2.rc1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-08 20:20:31 +00:00
|
|
|
* Mon Jun 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-0.1.rc1
|
|
|
|
- Update to 3.3.0-rc1
|
|
|
|
|
2015-06-08 16:46:58 +00:00
|
|
|
* Mon Jun 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.3-1
|
|
|
|
- Update to 3.2.3
|
|
|
|
|
2015-04-15 15:46:31 +00:00
|
|
|
* Wed Apr 15 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.2-1
|
|
|
|
- Update to 3.2.2
|
|
|
|
|
2015-03-26 16:07:07 +00:00
|
|
|
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 3.2.1-5
|
|
|
|
- Add an AppData file for the software center
|
|
|
|
|
2015-03-23 09:18:31 +00:00
|
|
|
* Mon Mar 23 2015 Daniel Vrátil <dvratil@redhat.com> - 3.2.1-4
|
|
|
|
- cmake.prov: handle exceptions
|
|
|
|
|
2015-03-18 10:06:38 +00:00
|
|
|
* Wed Mar 18 2015 Rex Dieter <rdieter@fedoraproject.org> 3.2.1-3
|
|
|
|
- cmake.prov: use /usr/bin/python (instead of /bin/python)
|
|
|
|
|
2015-03-17 22:41:11 +00:00
|
|
|
* Tue Mar 17 2015 Rex Dieter <rdieter@fedoraproject.org> 3.2.1-2
|
|
|
|
- RFE: CMake automatic RPM provides (#1202899)
|
|
|
|
|
2015-03-11 16:26:18 +00:00
|
|
|
* Wed Mar 11 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-1
|
|
|
|
- Update to 3.2.1
|
|
|
|
|
2015-02-27 00:12:36 +00:00
|
|
|
* Thu Feb 26 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-0.2.rc2
|
|
|
|
- Update to 3.2.0-rc2
|
2015-02-27 00:28:03 +00:00
|
|
|
- Drop C++11 ABI workaround, fixed in gcc
|
|
|
|
- Drop strict_aliasing patch fixed upstream long ago
|
|
|
|
- Drop FindLua52, FindLua should work now for 5.1-5.3
|
2015-02-27 00:12:36 +00:00
|
|
|
|
2015-02-16 05:20:08 +00:00
|
|
|
* Sun Feb 15 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.0-0.1.rc1
|
|
|
|
- Update to 3.2.0-rc1
|
|
|
|
- Drop ninja patch fixed upstream
|
|
|
|
- Upstream now ships icons, add icon-cache scriptlets
|
|
|
|
|
2015-02-13 23:16:47 +00:00
|
|
|
* Fri Feb 13 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.3-1
|
|
|
|
- Update to 3.1.3
|
|
|
|
|
2015-02-07 23:47:37 +00:00
|
|
|
* Sat Feb 7 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.2-1
|
|
|
|
- Update to 3.1.2
|
|
|
|
|
2015-01-23 22:06:54 +00:00
|
|
|
* Fri Jan 23 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.1-1
|
|
|
|
- Update to 3.1.1
|
|
|
|
- Drop ruby patch applied upstream
|
|
|
|
|
2015-01-17 07:15:45 +00:00
|
|
|
* Sat Jan 17 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 3.1.0-2
|
|
|
|
- Fix ruby 2.2.0 teeny (0) detection
|
|
|
|
|
2014-12-18 01:45:45 +00:00
|
|
|
* Wed Dec 17 2014 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-1
|
|
|
|
- Update to 3.1.0 final
|
|
|
|
|
2014-11-15 20:08:48 +00:00
|
|
|
* Sat Nov 15 2014 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-0.2.rc2
|
|
|
|
- Update to 3.1.0-rc2
|
|
|
|
|
2014-10-30 01:56:30 +00:00
|
|
|
* Wed Oct 29 2014 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-0.1.rc1
|
|
|
|
- Update to 3.1.0-rc1
|
|
|
|
|
2014-09-15 15:32:54 +00:00
|
|
|
* Mon Sep 15 2014 Dan Horák <dan[at]danny.cz> - 3.0.2-2
|
|
|
|
- fix FindJNI for ppc64le (#1141782)
|
|
|
|
|
2014-09-15 02:22:21 +00:00
|
|
|
* Sun Sep 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.2-1
|
|
|
|
- Update to 3.0.2
|
|
|
|
|
2014-08-25 15:38:00 +00:00
|
|
|
* Mon Aug 25 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.1-3
|
|
|
|
- Update wxWidgets patches
|
|
|
|
|
2014-08-16 00:36:32 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-06 21:33:26 +00:00
|
|
|
* Wed Aug 6 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.1-1
|
|
|
|
- Update to 3.0.1
|
|
|
|
|
2014-07-03 19:35:00 +00:00
|
|
|
* Thu Jul 03 2014 Rex Dieter <rdieter@fedoraproject.org> 3.0.0-2
|
|
|
|
- optimize mimeinfo scriptlet
|
|
|
|
|
2014-06-15 02:59:44 +00:00
|
|
|
* Sat Jun 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-1
|
|
|
|
- Update to 3.0.0 final
|
|
|
|
|
2014-06-07 05:10:56 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-0.11.rc6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-27 22:55:42 +00:00
|
|
|
* Tue May 27 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.10.rc6
|
|
|
|
- Update to 3.0.0-rc6
|
|
|
|
|
2014-05-15 03:33:02 +00:00
|
|
|
* Wed May 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.9.rc5
|
|
|
|
- Update to 3.0.0-rc5
|
|
|
|
- Drop icon patch applied upstream
|
|
|
|
|
2014-04-23 02:01:19 +00:00
|
|
|
* Tue Apr 22 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.8.rc4
|
|
|
|
- Update to 3.0.0-rc4
|
|
|
|
|
2014-04-10 21:37:52 +00:00
|
|
|
* Thu Apr 10 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.7.rc3
|
|
|
|
- Fix doc duplication
|
|
|
|
|
2014-04-04 15:33:10 +00:00
|
|
|
* Fri Apr 4 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.6.rc3
|
|
|
|
- Rebase patches to prevent .orig files in Modules
|
|
|
|
- Add install check for .orig files
|
|
|
|
|
2014-03-27 01:57:15 +00:00
|
|
|
* Wed Mar 26 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.5.rc3
|
|
|
|
- Update to 3.0.0-rc3
|
2014-03-27 02:01:17 +00:00
|
|
|
- Add patch to fix FindwxWidgets when cross-compiling for Windows (bug #1081207)
|
2014-03-27 01:57:15 +00:00
|
|
|
|
2014-03-05 17:01:05 +00:00
|
|
|
* Wed Mar 5 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.4.rc1
|
2014-03-05 17:10:19 +00:00
|
|
|
- Add additional FindPythonLibs patch from upstream (bug #1072964)
|
2014-03-05 17:01:05 +00:00
|
|
|
|
2014-03-03 16:20:13 +00:00
|
|
|
* Mon Mar 3 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.3.rc1
|
|
|
|
- Update to upstreams version of FindPythonLibs patch
|
|
|
|
|
2014-03-03 15:51:19 +00:00
|
|
|
* Mon Mar 3 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.2.rc1
|
|
|
|
- Use symlinks for bash completions
|
|
|
|
|
2014-02-28 21:48:52 +00:00
|
|
|
* Fri Feb 28 2014 Orion Poplawski <orion@cora.nwra.com> - 3.0.0-0.1.rc1
|
|
|
|
- Update to 3.0.0-rc1
|
|
|
|
- Update qtdeps patch to upstreamed version
|
|
|
|
- Install bash completions
|
|
|
|
|
2014-02-11 15:42:10 +00:00
|
|
|
* Tue Feb 11 2014 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.2-2
|
|
|
|
- Add upstream patch to find Boost MPI library (bug #756141)
|
|
|
|
|
2014-01-28 20:54:41 +00:00
|
|
|
* Tue Jan 28 2014 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.2-1
|
|
|
|
- Update to 2.8.12.2
|
|
|
|
|
2014-01-23 03:37:31 +00:00
|
|
|
* Wed Jan 22 2014 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.1-2
|
|
|
|
- Fix FindFreetype for 2.5.1+
|
|
|
|
|
2013-11-06 20:16:49 +00:00
|
|
|
* Wed Nov 6 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12.1-1
|
|
|
|
- Update to 2.8.12.1
|
|
|
|
|
2013-10-23 17:09:46 +00:00
|
|
|
* Wed Oct 23 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-3
|
|
|
|
- Remove UseQt4 automatic dependency adding
|
|
|
|
|
2013-10-10 22:32:26 +00:00
|
|
|
* Thu Oct 10 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-2
|
|
|
|
- Autoload cmake-mode in emacs (bug #1017779)
|
|
|
|
|
2013-10-09 02:12:14 +00:00
|
|
|
* Tue Oct 8 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-1
|
|
|
|
- Update to 2.8.12 final
|
|
|
|
|
2013-10-02 02:24:33 +00:00
|
|
|
* Tue Oct 1 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.6.rc4
|
|
|
|
- Update to 2.8.12-rc4
|
|
|
|
- Drop upstreamed FindHD5 patch
|
|
|
|
|
2013-09-19 21:07:34 +00:00
|
|
|
* Thu Sep 19 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.5.rc3
|
|
|
|
- Add patch to fix FindHDF5
|
|
|
|
|
2013-09-17 22:04:51 +00:00
|
|
|
* Tue Sep 17 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.4.rc3
|
|
|
|
- Update to 2.8.12-rc3
|
|
|
|
|
2013-09-04 15:49:20 +00:00
|
|
|
* Wed Sep 4 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.3.rc2
|
|
|
|
- Update to 2.8.12-rc2
|
|
|
|
|
2013-08-28 17:00:53 +00:00
|
|
|
* Wed Aug 28 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.2.rc1
|
|
|
|
- Add patch to fix FindPythonLibs issues (bug #876118)
|
2013-08-28 17:22:12 +00:00
|
|
|
- Split docs into separate -doc sub-package
|
2013-08-28 17:00:53 +00:00
|
|
|
|
2013-08-27 03:04:25 +00:00
|
|
|
* Mon Aug 26 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.12-0.1.rc1
|
|
|
|
- Update to 2.8.12-rc1
|
|
|
|
- Drop ImageMagick patch - not needed
|
|
|
|
|
2013-07-26 23:14:37 +00:00
|
|
|
* Fri Jul 26 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11.2-4
|
|
|
|
- Use version-less docdir
|
|
|
|
|
2013-07-25 16:52:52 +00:00
|
|
|
* Thu Jul 25 2013 Petr Machata <pmachata@redhat.com> - 2.8.11.2-3
|
|
|
|
- Icon name in desktop file should be sans .png extension.
|
|
|
|
|
2013-07-25 15:59:28 +00:00
|
|
|
* Thu Jul 25 2013 Petr Machata <pmachata@redhat.com> - 2.8.11.2-2
|
|
|
|
- Pass -fno-strict-aliasing to cm_sha2.c to avoid strict aliasing
|
|
|
|
problems that GCC warns about.
|
|
|
|
|
2013-07-09 21:46:56 +00:00
|
|
|
* Tue Jul 9 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11.2-1
|
|
|
|
- Update to 2.8.11.2 release
|
|
|
|
|
2013-06-10 16:06:25 +00:00
|
|
|
* Mon Jun 10 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11.1-1
|
|
|
|
- Update to 2.8.11.1 release
|
|
|
|
|
2013-05-19 02:17:13 +00:00
|
|
|
* Sat May 18 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-1
|
|
|
|
- Update to 2.8.11 release
|
|
|
|
|
2013-05-13 14:02:05 +00:00
|
|
|
* Mon May 13 2013 Tom Callaway <spot@fedoraproject.org> - 2.8.11-0.9.rc4
|
|
|
|
- add FindLua52.cmake
|
|
|
|
|
2013-05-09 15:06:54 +00:00
|
|
|
* Thu May 9 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.8.rc4
|
|
|
|
- Update to 2.8.11-rc4
|
|
|
|
|
2013-04-20 03:15:58 +00:00
|
|
|
* Fri Apr 19 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.7.rc3
|
|
|
|
- Update to 2.8.11-rc3
|
|
|
|
|
2013-04-18 15:59:15 +00:00
|
|
|
* Thu Apr 18 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.6.rc2
|
|
|
|
- Drop -O3 from default release build type flags in cmake rpm macro (bug 875954)
|
|
|
|
|
2013-04-18 01:30:21 +00:00
|
|
|
* Wed Apr 17 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.5.rc2
|
|
|
|
- Update to 2.8.11-rc2
|
|
|
|
- Rebase ImageMagick patch
|
|
|
|
|
2013-03-18 14:19:56 +00:00
|
|
|
* Mon Mar 18 2013 Rex Dieter <rdieter@fedoraproject.org> 2.8.11-0.4.rc1
|
|
|
|
- respin cmake-2.8.11-rc1-IM_pkgconfig_hints.patch
|
2013-03-18 15:49:34 +00:00
|
|
|
- drop/omit backup files when applying patches
|
2013-03-18 14:19:56 +00:00
|
|
|
|
2013-03-17 01:33:28 +00:00
|
|
|
* Sat Mar 16 2013 Rex Dieter <rdieter@fedoraproject.org> 2.8.11-0.3.rc1
|
|
|
|
- Patch FindImageMagick.cmake for newer ImageMagick versions
|
|
|
|
|
2013-03-16 20:26:13 +00:00
|
|
|
* Sat Mar 16 2013 Rex Dieter <rdieter@fedoraproject.org> 2.8.11-0.2.rc1
|
|
|
|
- use %%{_rpmconfigdir}/macros.d on f19+
|
|
|
|
|
2013-07-09 21:46:56 +00:00
|
|
|
* Fri Mar 15 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.11-0.1.rc1
|
2013-03-16 02:42:58 +00:00
|
|
|
- Update to 2.8.11-rc1
|
|
|
|
- Drop upstream ccmake and usrmove patches
|
|
|
|
|
2013-03-13 20:20:58 +00:00
|
|
|
* Wed Mar 13 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.2-5
|
|
|
|
- Add patch from upstream to fix UsrMove handling (bug #917407)
|
2013-03-08 18:46:26 +00:00
|
|
|
- Drop %%config from rpm macros
|
2013-02-22 22:27:16 +00:00
|
|
|
- Define FCFLAGS in cmake macro
|
|
|
|
|
2013-02-08 16:35:42 +00:00
|
|
|
* Fri Feb 8 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.2-4
|
|
|
|
- Add patch to use ninja-build (bug #886184)
|
|
|
|
|
|
|
|
* Thu Jan 24 2013 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.2-3
|
2013-01-25 04:35:32 +00:00
|
|
|
- Update FindPostgreSQL patch to use PostgreSQL_LIBRARY (bug #903757)
|
|
|
|
|
2013-01-17 13:06:22 +00:00
|
|
|
* Thu Jan 17 2013 Tomas Bzatek <tbzatek@redhat.com> - 2.8.10.2-2
|
|
|
|
- Rebuilt for new libarchive
|
|
|
|
|
2012-11-27 22:47:03 +00:00
|
|
|
* Tue Nov 27 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.10.2-1
|
|
|
|
- 2.8.10.2
|
|
|
|
|
2012-11-09 04:28:20 +00:00
|
|
|
* Thu Nov 8 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10.1-1
|
|
|
|
- Update to 2.8.10.1
|
|
|
|
|
2012-11-01 22:30:14 +00:00
|
|
|
* Thu Nov 1 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10-1
|
|
|
|
- Update to 2.8.10 final
|
|
|
|
|
2013-07-09 21:46:56 +00:00
|
|
|
* Thu Oct 25 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10-0.2.rc3
|
2012-10-25 16:05:59 +00:00
|
|
|
- Add patch to fix DEL key in ccmake (bug 869769)
|
|
|
|
|
2012-10-25 01:54:09 +00:00
|
|
|
* Wed Oct 24 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.10-0.1.rc3
|
|
|
|
- Update to 2.8.10 RC 3
|
|
|
|
- Rebase FindRuby and FindPostgreSQL patches
|
|
|
|
|
2012-08-09 22:27:15 +00:00
|
|
|
* Thu Aug 9 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-1
|
|
|
|
- Update to 2.8.9 final
|
|
|
|
|
2012-07-27 12:45:45 +00:00
|
|
|
* Fri Jul 27 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-0.4.rc3
|
|
|
|
- Update to 2.8.9 RC 3
|
|
|
|
|
2012-07-18 19:17:26 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.9-0.3.rc2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-17 04:28:37 +00:00
|
|
|
* Mon Jul 16 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-0.2.rc2
|
|
|
|
- Update to 2.8.9 RC 2
|
|
|
|
|
2012-07-10 21:46:09 +00:00
|
|
|
* Tue Jul 10 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.9-0.1.rc1
|
|
|
|
- Update to 2.8.9 RC 1
|
|
|
|
- Drop pkgconfig patch
|
|
|
|
|
2012-07-05 17:41:51 +00:00
|
|
|
* Thu Jul 5 2012 Orion Poplawski <orion@cora.nwra.com> 2.8.8-5
|
|
|
|
- Add patch to fix FindPostgreSQL (bug 828467)
|
|
|
|
|
2012-05-21 16:39:01 +00:00
|
|
|
* Mon May 21 2012 Orion Poplawski <orion@cora.nwra.com> 2.8.8-4
|
|
|
|
- Add patch to fix FindRuby (bug 822796)
|
|
|
|
|
2012-05-10 13:13:20 +00:00
|
|
|
* Thu May 10 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.8-3
|
|
|
|
- Incorrect license tag in spec file (#820334)
|
|
|
|
|
2012-05-03 20:16:44 +00:00
|
|
|
* Thu May 3 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-2
|
|
|
|
- Comply with Emacs packaging guidlines (bug #818658)
|
|
|
|
|
2012-04-19 20:12:55 +00:00
|
|
|
* Thu Apr 19 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-1
|
|
|
|
- Update to 2.8.8 final
|
|
|
|
|
2012-04-14 21:31:01 +00:00
|
|
|
* Sat Apr 14 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.8-0.4.rc2
|
|
|
|
- adjust pkgconfig patch (#812188)
|
|
|
|
|
2012-04-14 03:52:58 +00:00
|
|
|
* Fri Apr 13 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-0.3.rc2
|
|
|
|
- Add upstream patch to set PKG_CONFIG_FOUND (bug #812188)
|
|
|
|
|
2012-04-09 22:34:43 +00:00
|
|
|
* Mon Apr 9 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-0.2.rc2
|
|
|
|
- Update to 2.8.8 RC 2
|
|
|
|
|
2012-03-23 16:58:45 +00:00
|
|
|
* Fri Mar 23 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.8-0.1.rc1
|
|
|
|
- Update to 2.8.8 RC 1
|
|
|
|
|
2012-02-21 23:11:17 +00:00
|
|
|
* Tue Feb 21 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-6
|
|
|
|
- Just strip CMAKE_INSTALL_LIBDIR from %%cmake macro
|
|
|
|
|
2012-02-21 22:27:33 +00:00
|
|
|
* Tue Feb 21 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-5
|
|
|
|
- Strip CMAKE_INSTALL_LIBDIR and others from %%cmake macro (bug 795542)
|
|
|
|
|
2012-01-26 12:33:18 +00:00
|
|
|
* Thu Jan 26 2012 Tomas Bzatek <tbzatek@redhat.com> - 2.8.7-4
|
|
|
|
- Rebuilt for new libarchive
|
|
|
|
|
2013-07-09 21:46:56 +00:00
|
|
|
* Wed Jan 18 2012 Jaroslav Reznik <jreznik@redhat.com> - 2.8.7-3
|
2012-02-17 17:15:29 +00:00
|
|
|
- Rebuild for libarchive
|
|
|
|
|
2012-01-12 23:33:51 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2012-01-02 04:08:04 +00:00
|
|
|
* Sun Jan 1 2012 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-1
|
|
|
|
- Update to 2.8.7 final
|
|
|
|
|
2011-12-27 17:33:39 +00:00
|
|
|
* Tue Dec 27 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-0.2.rc2
|
|
|
|
- Update to 2.8.7 RC 2
|
|
|
|
|
2011-12-13 23:53:14 +00:00
|
|
|
* Tue Dec 13 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-0.1.rc1
|
|
|
|
- Update to 2.8.7 RC 1
|
|
|
|
|
2011-11-15 14:42:17 +00:00
|
|
|
* Tue Nov 15 2011 Daniel Drake <dsd@laptop.org> - 2.8.6-2
|
|
|
|
- Rebuild for libarchive.so.11
|
|
|
|
|
2011-10-05 15:09:08 +00:00
|
|
|
* Wed Oct 5 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-1
|
|
|
|
- Update to 2.8.6 final
|
|
|
|
|
2011-09-22 20:29:48 +00:00
|
|
|
* Thu Sep 22 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.5.rc4
|
|
|
|
- Update to 2.8.6 RC 4
|
|
|
|
|
2011-09-13 21:59:53 +00:00
|
|
|
* Tue Sep 13 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.4.rc3
|
|
|
|
- Update to 2.8.6 RC 3
|
|
|
|
|
2011-09-13 21:55:59 +00:00
|
|
|
* Sun Sep 11 2011 Ville Skyttä <ville.skytta@iki.fi> - 2.8.6-0.3.rc2
|
|
|
|
- Sync FFLAGS and LDFLAGS in the %%cmake macro with redhat-rpm-config.
|
|
|
|
|
2011-09-06 22:34:44 +00:00
|
|
|
* Tue Sep 6 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.2.rc2
|
|
|
|
- Update to 2.8.6 RC 2
|
|
|
|
- Drop aclocal patch
|
|
|
|
|
2011-08-29 22:59:08 +00:00
|
|
|
* Mon Aug 29 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.6-0.1.rc1
|
|
|
|
- Update to 2.8.6 RC 1
|
|
|
|
- Update dcmtk patch
|
2011-08-30 15:14:47 +00:00
|
|
|
- Add upstream patch to fix aclocal install location
|
2011-08-29 22:59:08 +00:00
|
|
|
|
2011-07-28 22:21:55 +00:00
|
|
|
* Thu Jul 28 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-3
|
|
|
|
- Updated patch to find dcmtk in Fedora (Bug #720140)
|
|
|
|
|
2011-07-22 22:59:28 +00:00
|
|
|
* Fri Jul 22 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-2
|
|
|
|
- Add patch to find dcmtk in Fedora (Bug #720140)
|
|
|
|
|
2011-07-22 22:42:10 +00:00
|
|
|
* Fri Jul 22 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-1
|
|
|
|
- Update to 2.8.5 final
|
|
|
|
- Drop issue 12307 patch
|
|
|
|
|
2011-07-21 19:29:12 +00:00
|
|
|
* Thu Jul 21 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-0.3.rc3
|
|
|
|
- Update to 2.8.5 RC 3
|
|
|
|
- Drop upstreamed swig patch
|
|
|
|
- Apply upstream fix for issue 12307 (bug #723652)
|
|
|
|
|
2011-06-20 15:28:57 +00:00
|
|
|
* Mon Jun 20 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-0.2.rc2
|
|
|
|
- Update to 2.8.5 RC 2
|
|
|
|
- Add patch from upstream to fix FindSWIG
|
|
|
|
|
2011-05-31 21:04:10 +00:00
|
|
|
* Tue May 31 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-0.1.rc1
|
|
|
|
- Update to 2.8.5 RC 1
|
2011-06-03 18:31:23 +00:00
|
|
|
- Disable CTestTestUpload test, needs internet access
|
2011-05-31 21:04:10 +00:00
|
|
|
|
2011-02-17 15:57:33 +00:00
|
|
|
* Thu Feb 17 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.4-1
|
|
|
|
- Update to 2.8.4 final
|
|
|
|
|
2011-02-02 16:48:48 +00:00
|
|
|
* Wed Feb 2 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.4-0.2.rc2
|
|
|
|
- Update to 2.8.4 RC 2
|
|
|
|
|
2011-01-18 22:27:15 +00:00
|
|
|
* Tue Jan 18 2011 Orion Poplawski <orion@cora.nwra.com> - 2.8.4-0.1.rc1
|
|
|
|
- Update to 2.8.4 RC 1
|
|
|
|
- Drop qt4 patch
|
|
|
|
|
2010-12-16 16:07:14 +00:00
|
|
|
* Thu Dec 16 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-2
|
|
|
|
- Add patch from upstream git to fix bug 652886 (qt3/qt4 detection)
|
|
|
|
|
2010-11-04 20:13:32 +00:00
|
|
|
* Thu Nov 4 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-1
|
|
|
|
- Update to 2.8.3 final
|
|
|
|
|
2010-11-01 16:20:00 +00:00
|
|
|
* Mon Nov 1 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-0.3.rc4
|
|
|
|
- Update to 2.8.3 RC 4
|
|
|
|
- Drop python 2.7 patch fixed upstream
|
|
|
|
- No need to fixup source file permissions anymore
|
|
|
|
|
2010-10-22 15:52:58 +00:00
|
|
|
* Fri Oct 22 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-0.2.rc3
|
|
|
|
- Update to 2.8.3 RC 3
|
|
|
|
|
2010-09-16 16:06:41 +00:00
|
|
|
* Thu Sep 16 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.3-0.1.rc1
|
|
|
|
- Update to 2.8.3 RC 1
|
2010-09-16 16:17:21 +00:00
|
|
|
- Add BR bzip2-devel and libarchive-devel
|
2010-09-16 16:06:41 +00:00
|
|
|
|
2010-07-23 18:47:55 +00:00
|
|
|
* Fri Jul 23 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.8.2-2
|
|
|
|
- add support for Python 2.7 to FindPythonLibs.cmake (Orcan Ogetbil)
|
|
|
|
|
2010-07-06 21:48:20 +00:00
|
|
|
* Tue Jul 6 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-1
|
|
|
|
- Update to 2.8.2 final
|
|
|
|
|
2013-07-09 21:46:56 +00:00
|
|
|
* Thu Jun 24 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-0.3.rc4
|
2010-06-24 22:50:17 +00:00
|
|
|
- Update to 2.8.2 RC 4
|
|
|
|
|
|
|
|
* Wed Jun 23 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-0.2.rc3
|
|
|
|
- Update to 2.8.2 RC 3
|
|
|
|
|
2010-06-21 18:00:32 +00:00
|
|
|
* Mon Jun 21 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-0.1.rc2
|
|
|
|
- Update to 2.8.2 RC 2
|
|
|
|
|
2010-06-03 22:52:58 +00:00
|
|
|
* Thu Jun 3 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-5
|
|
|
|
- Upstream published a newer 2.8.1 tar ball
|
|
|
|
|
2010-06-02 15:43:25 +00:00
|
|
|
* Wed Jun 2 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-4
|
|
|
|
- Add BR gcc-gfortran so Fortran support is built
|
|
|
|
|
2010-04-21 17:41:01 +00:00
|
|
|
* Wed Apr 21 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-3
|
|
|
|
- Disable ModuleNotices test, re-enable parallel ctest
|
|
|
|
|
2010-03-30 15:46:48 +00:00
|
|
|
* Tue Mar 30 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-2
|
|
|
|
- Disable parallel ctest checks for now
|
|
|
|
|
2010-03-23 20:52:17 +00:00
|
|
|
* Tue Mar 23 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-1
|
|
|
|
- Update to 2.8.1 final
|
|
|
|
|
2010-03-23 18:45:49 +00:00
|
|
|
* Tue Mar 23 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.8.1-0.3.rc5
|
2017-07-30 14:08:54 +00:00
|
|
|
- Own /usr/lib(64)/cmake
|
2010-03-23 18:45:49 +00:00
|
|
|
|
2010-03-12 21:35:18 +00:00
|
|
|
* Fri Mar 12 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-0.2.rc5
|
|
|
|
- Update to 2.8.1 RC 5
|
|
|
|
|
2010-02-19 15:50:14 +00:00
|
|
|
* Fri Feb 19 2010 Orion Poplawski <orion@cora.nwra.com> - 2.8.1-0.1.rc3
|
2010-02-19 15:49:17 +00:00
|
|
|
- Update to 2.8.1 RC 3
|
|
|
|
|
2010-01-14 17:05:09 +00:00
|
|
|
* Thu Jan 14 2010 Rex Dieter <rdieter@fedorproject.org> - 2.8.0-2
|
|
|
|
- macros.cmake: drop -DCMAKE_SKIP_RPATH:BOOL=ON from %%cmake
|
|
|
|
|
2009-11-18 19:17:50 +00:00
|
|
|
* Wed Nov 18 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-1
|
|
|
|
- Update to 2.8.0 final
|
|
|
|
|
2009-11-18 18:59:31 +00:00
|
|
|
* Wed Nov 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.8.0-0.8.rc7
|
|
|
|
- rebuild (for qt-4.6.0-rc1)
|
|
|
|
|
2009-11-12 03:52:49 +00:00
|
|
|
* Wed Nov 11 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.7.rc7
|
|
|
|
- Update to 2.8.0 RC 7
|
|
|
|
|
2009-11-10 20:49:05 +00:00
|
|
|
* Tue Nov 10 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.7.rc6
|
|
|
|
- Update to 2.8.0 RC 6
|
|
|
|
|
2009-11-04 23:57:31 +00:00
|
|
|
* Wed Nov 4 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.6.rc5
|
|
|
|
- Update to 2.8.0 RC 5
|
|
|
|
- Drop patches fixed upstream
|
|
|
|
|
|
|
|
* Fri Oct 30 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.5.rc4
|
2009-10-29 21:46:11 +00:00
|
|
|
- Update to 2.8.0 RC 4
|
|
|
|
- Add FindJNI patch
|
2009-10-30 17:32:29 +00:00
|
|
|
- Add test patch from cvs to fix Fedora build test build error
|
2009-10-29 21:46:11 +00:00
|
|
|
|
2009-10-13 22:17:43 +00:00
|
|
|
* Tue Oct 13 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.4.rc3
|
|
|
|
- Update to 2.8.0 RC 3
|
|
|
|
- Drop vtk64 patch fixed upstream
|
|
|
|
|
2009-10-09 21:08:02 +00:00
|
|
|
* Fri Oct 9 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.3.rc2
|
|
|
|
- Do out of tree build, needed for ExternalProject test
|
|
|
|
|
|
|
|
* Thu Oct 8 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.2.rc2
|
2009-10-08 23:05:19 +00:00
|
|
|
- Update to 2.8.0 RC 2
|
|
|
|
- Use parallel ctest in %%check
|
|
|
|
|
2009-09-29 17:36:18 +00:00
|
|
|
* Tue Sep 29 2009 Orion Poplawski <orion@cora.nwra.com> - 2.8.0-0.1.rc1
|
|
|
|
- Update to 2.8.0 RC 1
|
|
|
|
|
2009-09-17 15:19:25 +00:00
|
|
|
* Thu Sep 17 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.6.4-4
|
|
|
|
- macro.cmake: prefixes cmake with the package being builts bindir (#523878)
|
|
|
|
|
2009-07-24 19:10:45 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-03 16:08:32 +00:00
|
|
|
* Wed Jun 3 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-2
|
|
|
|
- Add patch to find VTK on 64-bit machines (bug #503945)
|
|
|
|
|
2009-04-29 21:14:42 +00:00
|
|
|
* Wed Apr 29 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.4-1
|
|
|
|
- Update to 2.6.4
|
|
|
|
- Drop patch for bug #475876 fixed upstream
|
|
|
|
|
2009-03-16 16:20:14 +00:00
|
|
|
* Mon Mar 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.6.3-3
|
|
|
|
- macros.cmake: +%%_cmake_version
|
|
|
|
|
2009-03-09 02:00:11 +00:00
|
|
|
* Mon Mar 09 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.6.3-2
|
|
|
|
- Fix crash during kdepimlibs build (#475876)
|
|
|
|
|
2009-02-24 04:23:11 +00:00
|
|
|
* Mon Feb 23 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-1
|
|
|
|
- Update to 2.6.3 final
|
|
|
|
|
2009-02-17 17:32:25 +00:00
|
|
|
* Tue Feb 17 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-0.4.rc13
|
|
|
|
- Update to 2.6.3-RC-13
|
|
|
|
|
2009-01-14 02:46:49 +00:00
|
|
|
* Tue Jan 13 2009 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-0.3.rc8
|
2009-01-13 23:22:37 +00:00
|
|
|
- Update to 2.6.3-RC-8
|
|
|
|
|
2009-01-04 21:19:11 +00:00
|
|
|
* Sun Jan 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.6.3-0.2.rc5
|
2009-01-04 21:10:23 +00:00
|
|
|
- macros.cmake: add -DCMAKE_SKIP_RPATH:BOOL=ON
|
|
|
|
- fix Release tag
|
|
|
|
|
2008-12-10 21:42:46 +00:00
|
|
|
* Wed Dec 10 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.3-0.rc5.1
|
|
|
|
- Update to 2.6.3-RC-5
|
|
|
|
|
2008-12-02 17:46:08 +00:00
|
|
|
* Tue Dec 2 2008 Rex Dieter <rdieter@fedoraproject.org> - 2.6.2-3
|
|
|
|
- Add -DCMAKE_VERBOSE_MAKEFILE=ON to %%cmake (#474053)
|
|
|
|
- preserve timestamp of macros.cmake
|
|
|
|
- cosmetics
|
|
|
|
|
2008-10-22 17:07:35 +00:00
|
|
|
* Tue Oct 21 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-2
|
|
|
|
- Allow conditional build of gui
|
|
|
|
|
2008-09-29 21:24:39 +00:00
|
|
|
* Mon Sep 29 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-1
|
2008-09-29 21:36:44 +00:00
|
|
|
- Update to 2.6.2
|
2008-09-29 21:24:39 +00:00
|
|
|
|
2008-09-08 14:39:53 +00:00
|
|
|
* Mon Sep 8 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.2-0.rc3.1
|
|
|
|
- Update to 2.6.2-RC-2
|
|
|
|
- Drop parens patch fixed upstream
|
|
|
|
|
2008-09-02 21:52:56 +00:00
|
|
|
* Tue Sep 2 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-3
|
|
|
|
- Drop jni patch, applied upstream.
|
|
|
|
|
2008-08-26 20:05:15 +00:00
|
|
|
* Tue Aug 26 2008 Rex Dieter <rdieter@fedoraproject.org> - 2.6.1-2
|
|
|
|
- attempt to patch logic error, crasher
|
|
|
|
|
2008-08-05 19:43:33 +00:00
|
|
|
* Tue Aug 5 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-1
|
|
|
|
- Update to 2.6.1
|
|
|
|
|
|
|
|
* Mon Jul 14 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.1-0.rc8.1
|
|
|
|
- Update to 2.6.1-RC-8
|
|
|
|
- Drop xmlrpc patch fixed upstream
|
|
|
|
|
2008-05-07 02:13:26 +00:00
|
|
|
* Tue May 6 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-1
|
|
|
|
- Update to 2.6.0
|
|
|
|
|
2008-05-05 17:22:09 +00:00
|
|
|
* Mon May 5 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc10.1
|
|
|
|
- Update to 2.6.0-RC-10
|
|
|
|
|
2008-04-25 03:06:09 +00:00
|
|
|
* Thu Apr 24 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc9.1
|
|
|
|
- Update to 2.6.0-RC-9
|
|
|
|
|
2008-04-11 22:19:41 +00:00
|
|
|
* Fri Apr 11 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc8.1
|
|
|
|
- Update to 2.6.0-RC-8
|
|
|
|
|
2008-04-03 22:59:09 +00:00
|
|
|
* Thu Apr 3 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc6.1
|
|
|
|
- Update to 2.6.0-RC-6
|
|
|
|
|
2008-03-28 19:32:24 +00:00
|
|
|
* Fri Mar 28 2008 Orion Poplawski <orion@cora.nwra.com> - 2.6.0-0.rc5.1
|
|
|
|
- Update to 2.6.0-RC-5
|
|
|
|
- Add gui sub-package for Qt frontend
|
|
|
|
|
2008-03-07 16:54:42 +00:00
|
|
|
* Fri Mar 7 2008 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-3
|
|
|
|
- Add macro for bootstrapping new release/architecture
|
2008-03-28 15:11:31 +00:00
|
|
|
- Add %%check section
|
2008-03-05 16:42:49 +00:00
|
|
|
|
2008-02-19 17:01:48 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.4.8-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-22 22:47:30 +00:00
|
|
|
* Tue Jan 22 2008 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-1
|
|
|
|
- Update to 2.4.8
|
|
|
|
|
2008-01-16 21:11:12 +00:00
|
|
|
* Wed Jan 16 2008 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-0.rc12
|
|
|
|
- Update to 2.4.8 RC-12
|
|
|
|
|
2007-12-14 19:35:38 +00:00
|
|
|
* Fri Dec 14 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.8-0.rc4
|
|
|
|
- Update to 2.4.8 RC-4
|
|
|
|
|
2007-11-12 18:54:25 +00:00
|
|
|
* Mon Nov 12 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-4
|
|
|
|
- No longer set CMAKE_SKIP_RPATH
|
|
|
|
|
2007-08-28 14:13:49 +00:00
|
|
|
* Tue Aug 28 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-3
|
|
|
|
- Rebuild for new expat
|
|
|
|
|
2007-08-22 15:15:24 +00:00
|
|
|
* Wed Aug 22 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-2
|
|
|
|
- Rebuild for BuildID
|
|
|
|
|
2007-08-11 18:48:47 +00:00
|
|
|
* Mon Jul 23 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-1
|
|
|
|
- Update to 2.4.7
|
|
|
|
|
2007-06-29 21:55:08 +00:00
|
|
|
* Fri Jun 29 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.7-0.rc11
|
|
|
|
- Update to 2.4.7 RC-11
|
|
|
|
|
2007-06-27 17:00:25 +00:00
|
|
|
* Wed Jun 27 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-4
|
|
|
|
- Update macros.cmake to add CMAKE_INSTALL_LIBDIR, INCLUDE_INSTALL_DIR,
|
|
|
|
LIB_INSTALL_DIR, SYSCONF_INSTALL_DIR, and SHARE_INSTALL_PREFIX
|
2007-06-06 18:36:55 +00:00
|
|
|
|
2007-04-16 16:29:59 +00:00
|
|
|
* Mon Apr 16 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-3
|
|
|
|
- Apply patch from upstream CVS to fix .so install permissions (bug #235673)
|
|
|
|
|
2007-04-06 16:56:30 +00:00
|
|
|
* Fri Apr 06 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-2
|
|
|
|
- Add rpm macros
|
|
|
|
|
2007-01-12 00:07:02 +00:00
|
|
|
* Thu Jan 11 2007 Orion Poplawski <orion@cora.nwra.com> - 2.4.6-1
|
|
|
|
- Update to 2.4.6
|
|
|
|
|
2006-12-18 23:37:24 +00:00
|
|
|
* Mon Dec 18 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.5-2
|
|
|
|
- Use system libraries (bootstrap --system-libs)
|
|
|
|
|
2006-12-05 16:52:21 +00:00
|
|
|
* Tue Dec 5 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.5-1
|
|
|
|
- Update to 2.4.5
|
|
|
|
|
2006-11-22 04:15:08 +00:00
|
|
|
* Tue Nov 21 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.4-1
|
|
|
|
- Update to 2.4.4
|
|
|
|
|
2006-10-31 23:11:16 +00:00
|
|
|
* Tue Oct 31 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-4
|
|
|
|
- Add /usr/lib/jvm/java to FindJNI search paths
|
|
|
|
|
2006-08-30 02:26:07 +00:00
|
|
|
* Tue Aug 29 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-3
|
|
|
|
- Rebuild for FC6
|
|
|
|
|
2006-08-02 17:55:33 +00:00
|
|
|
* Wed Aug 2 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-2
|
|
|
|
- vim 7.0 now ships cmake files, so don't ship ours (bug #201018)
|
|
|
|
- Add patch to Linux.cmake for Fortran soname support for plplot
|
|
|
|
|
2006-08-01 16:46:34 +00:00
|
|
|
* Tue Aug 1 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.3-1
|
|
|
|
- Update to 2.4.3
|
|
|
|
|
2006-07-31 19:35:43 +00:00
|
|
|
* Mon Jul 31 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.2-3
|
|
|
|
- Update for vim 7.0
|
|
|
|
|
2006-07-11 16:41:17 +00:00
|
|
|
* Tue Jul 11 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.2-2
|
|
|
|
- Patch FindRuby and FindSWIG to work on Fedora (bug #198103)
|
|
|
|
|
2006-06-30 16:32:53 +00:00
|
|
|
* Fri Jun 30 2006 Orion Poplawski <orion@cora.nwra.com> - 2.4.2-1
|
|
|
|
- Update to 2.4.2
|
|
|
|
|
2006-04-06 16:31:44 +00:00
|
|
|
* Thu Apr 6 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-4
|
|
|
|
- Update for vim 7.0c
|
|
|
|
|
2006-03-29 19:03:00 +00:00
|
|
|
* Tue Mar 28 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-3
|
|
|
|
- No subpackages, just own the emacs and vim dirs.
|
|
|
|
|
|
|
|
* Tue Mar 21 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-2
|
|
|
|
- Add emacs and vim support
|
|
|
|
- Include Example in docs
|
|
|
|
|
|
|
|
* Wed Mar 8 2006 Orion Poplawski <orion@cora.nwra.com> - 2.2.3-1
|
|
|
|
- Fedora Extras version
|