2024-01-05 21:26:21 +01:00
|
|
|
%define majorminor %(echo %version | cut -d. -f 1-2)
|
2024-01-05 21:26:42 +01:00
|
|
|
%define major_version %(echo %version | cut -d. -f 1)
|
2024-01-05 21:26:21 +01:00
|
|
|
|
|
|
|
Name: cmake
|
2024-01-05 21:26:49 +01:00
|
|
|
Version: 3.28.0
|
2024-01-05 21:26:43 +01:00
|
|
|
Release: 1mamba
|
2024-01-05 21:26:21 +01:00
|
|
|
Summary: A cross-platform, open-source make system
|
|
|
|
Group: Development/Tools
|
|
|
|
Vendor: openmamba
|
|
|
|
Distribution: openmamba
|
2024-01-05 21:26:27 +01:00
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
2024-01-05 21:26:27 +01:00
|
|
|
URL: https://cmake.org/
|
2024-01-05 21:26:21 +01:00
|
|
|
Source0: http://www.cmake.org/files/v%{majorminor}/cmake-%{version}.tar.gz
|
2024-01-05 21:26:42 +01:00
|
|
|
Source1: macros.cmake.in
|
|
|
|
Source2: cmake.attr
|
|
|
|
Source3: cmake.req
|
|
|
|
Source4: cmake.prov
|
2024-01-05 21:26:21 +01:00
|
|
|
Patch: %{name}-2.4.5_use_intree_xmlrpc.patch
|
|
|
|
Patch1: cmake-2.8.11.2-ImageMagick-6.8.patch
|
|
|
|
Patch2: cmake-2.8.12.1-freetype-2.5.1.patch
|
|
|
|
License: BSD
|
|
|
|
## AUTOBUILDREQ-BEGIN
|
|
|
|
BuildRequires: glibc-devel
|
|
|
|
BuildRequires: libarchive-devel
|
2024-01-05 21:26:38 +01:00
|
|
|
BuildRequires: libcppdap-devel
|
2024-01-05 21:26:21 +01:00
|
|
|
BuildRequires: libcurl-devel
|
|
|
|
BuildRequires: libexpat-devel
|
|
|
|
BuildRequires: libgcc
|
2024-01-05 21:26:27 +01:00
|
|
|
BuildRequires: libjsoncpp-devel
|
2024-01-05 21:26:21 +01:00
|
|
|
BuildRequires: libncurses-devel
|
2024-01-05 21:26:27 +01:00
|
|
|
BuildRequires: librhash-devel
|
2024-01-05 21:26:21 +01:00
|
|
|
BuildRequires: libstdc++6-devel
|
2024-01-05 21:26:27 +01:00
|
|
|
BuildRequires: libuv-devel
|
2024-01-05 21:26:21 +01:00
|
|
|
BuildRequires: libz-devel
|
|
|
|
## AUTOBUILDREQ-END
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: libX11-devel
|
|
|
|
BuildRequires: libXext-devel
|
|
|
|
BuildRequires: libICE-devel
|
2024-01-05 21:26:38 +01:00
|
|
|
BuildRequires: libcppdap-devel
|
2024-01-05 21:26:21 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
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 to support complex environments requiring system configuration, pre-processor generation, code generation, and template instantiation.
|
|
|
|
|
|
|
|
CMake was developed by Kitware as part of the NLM Insight Segmentation and Registration Toolkit project.
|
|
|
|
The ASCI VIEWS project also provided support in the context of their parallel computation environment.
|
|
|
|
Other sponsors include the Insight, VTK, and VXL open source software communities.
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
%debug_package
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
%prep
|
|
|
|
%setup -q
|
2024-01-05 21:26:42 +01:00
|
|
|
#-D -T
|
2024-01-05 21:26:21 +01:00
|
|
|
#%patch1 -p1
|
2024-01-05 21:26:21 +01:00
|
|
|
#%patch2 -p1
|
2024-01-05 21:26:21 +01:00
|
|
|
|
|
|
|
%build
|
2024-01-05 21:26:42 +01:00
|
|
|
#:<< _EOF
|
2024-01-05 21:26:21 +01:00
|
|
|
export CFLAGS="%{optflags}"
|
2024-01-05 21:26:22 +01:00
|
|
|
export CXXFLAGS="%{optflags} -std=gnu++14"
|
2024-01-05 21:26:21 +01:00
|
|
|
./configure \
|
|
|
|
--prefix=%{_prefix} \
|
|
|
|
--datadir=/share/%{name} \
|
|
|
|
--docdir=/share/doc/%{name}-%{version} \
|
|
|
|
--mandir=/share/man \
|
|
|
|
--system-libs
|
|
|
|
|
|
|
|
%make VERBOSE=1
|
|
|
|
|
|
|
|
%install
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%makeinstall
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
#cp -a Example %{buildroot}%{_datadir}/doc/%{name}-%{version}/
|
|
|
|
#install -D -m 0644 Docs/cmake-mode.el \
|
|
|
|
# %{buildroot}%{_datadir}/emacs/site-lisp/cmake-mode.el
|
2024-01-05 21:26:21 +01:00
|
|
|
|
2024-01-05 21:26:42 +01:00
|
|
|
# RPM macros (from Fedora)
|
|
|
|
install -p -m0644 -D %{SOURCE1} %{buildroot}%{_prefix}/lib/rpm/macros.d/macros.%{name}
|
|
|
|
sed -i -e "s|@@CMAKE_VERSION@@|%{version}|" -e "s|@@CMAKE_MAJOR_VERSION@@|%{major_version}|" \
|
|
|
|
%{buildroot}%{_prefix}/lib/rpm/macros.d/macros.%{name}
|
|
|
|
touch -r %{SOURCE1} %{buildroot}%{_prefix}/lib/rpm/macros.d/macros.%{name}
|
|
|
|
|
|
|
|
# RPM auto provides
|
|
|
|
install -p -m0644 -D %{SOURCE2} %{buildroot}%{_prefix}/lib/rpm/fileattrs/%{name}.attr
|
|
|
|
install -p -m0755 -D %{SOURCE3} %{buildroot}%{_prefix}/lib/rpm/%{name}.prov
|
|
|
|
install -p -m0755 -D %{SOURCE4} %{buildroot}%{_prefix}/lib/rpm/%{name}.req
|
2024-01-05 21:26:21 +01:00
|
|
|
|
|
|
|
%clean
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/ccmake
|
|
|
|
%{_bindir}/cmake
|
|
|
|
%{_bindir}/cpack
|
|
|
|
%{_bindir}/ctest
|
2024-01-05 21:26:21 +01:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%{_datadir}/%{name}/*
|
2024-01-05 21:26:42 +01:00
|
|
|
%{_prefix}/lib/rpm/macros.d/macros.%{name}
|
|
|
|
%{_prefix}/lib/rpm/fileattrs/%{name}.attr
|
|
|
|
%{_prefix}/lib/rpm/%{name}.prov
|
|
|
|
%{_prefix}/lib/rpm/%{name}.req
|
2024-01-05 21:26:25 +01:00
|
|
|
%{_datadir}/bash-completion/completions/*
|
|
|
|
%{_datadir}/emacs/site-lisp/cmake-mode.el
|
|
|
|
%{_datadir}/vim/vimfiles/indent/cmake.vim
|
|
|
|
%{_datadir}/vim/vimfiles/syntax/cmake.vim
|
2024-01-05 21:26:21 +01:00
|
|
|
%{_datadir}/aclocal/cmake.m4
|
|
|
|
%{_datadir}/doc/%{name}-%{version}/
|
|
|
|
|
|
|
|
%changelog
|
2024-01-05 21:26:49 +01:00
|
|
|
* Thu Dec 07 2023 Automatic Build System <autodist@mambasoft.it> 3.28.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:48 +01:00
|
|
|
* Tue Nov 28 2023 Automatic Build System <autodist@mambasoft.it> 3.27.9-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:47 +01:00
|
|
|
* Wed Nov 15 2023 Automatic Build System <autodist@mambasoft.it> 3.27.8-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:46 +01:00
|
|
|
* Sat Oct 07 2023 Automatic Build System <autodist@mambasoft.it> 3.27.7-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:45 +01:00
|
|
|
* Thu Sep 21 2023 Automatic Build System <autodist@mambasoft.it> 3.27.6-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:44 +01:00
|
|
|
* Fri Sep 15 2023 Automatic Build System <autodist@mambasoft.it> 3.27.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:43 +01:00
|
|
|
* Thu Aug 24 2023 Automatic Build System <autodist@mambasoft.it> 3.27.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:42 +01:00
|
|
|
* Mon Aug 21 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 3.27.3-4mamba
|
|
|
|
- fix for lost major_version definition in a previous specfile release
|
|
|
|
|
|
|
|
* Sun Aug 20 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 3.27.3-3mamba
|
|
|
|
- disable cmake requires
|
|
|
|
|
|
|
|
* Sun Aug 20 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 3.27.3-2mamba
|
|
|
|
- update rpm macros file and add auto req/prov from Fedora
|
|
|
|
|
2024-01-05 21:26:40 +01:00
|
|
|
* Thu Aug 17 2023 Automatic Build System <autodist@mambasoft.it> 3.27.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:39 +01:00
|
|
|
* Sat Aug 12 2023 Automatic Build System <autodist@mambasoft.it> 3.27.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:38 +01:00
|
|
|
* Sat Jul 29 2023 Automatic Build System <autodist@mambasoft.it> 3.27.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:37 +01:00
|
|
|
* Fri May 19 2023 Automatic Build System <autodist@mambasoft.it> 3.26.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:35 +01:00
|
|
|
* Wed Apr 05 2023 Automatic Build System <autodist@mambasoft.it> 3.26.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:34 +01:00
|
|
|
* Thu Mar 30 2023 Automatic Build System <autodist@mambasoft.it> 3.26.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:32 +01:00
|
|
|
* Thu Mar 23 2023 Automatic Build System <autodist@mambasoft.it> 3.26.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:32 +01:00
|
|
|
* Wed Mar 15 2023 Automatic Build System <autodist@mambasoft.it> 3.26.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:31 +01:00
|
|
|
* Thu Mar 09 2023 Automatic Build System <autodist@mambasoft.it> 3.25.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:30 +01:00
|
|
|
* Fri Jan 20 2023 Automatic Build System <autodist@mambasoft.it> 3.25.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Thu Dec 01 2022 Automatic Build System <autodist@mambasoft.it> 3.25.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Thu Nov 17 2022 Automatic Build System <autodist@mambasoft.it> 3.25.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Wed Nov 02 2022 Automatic Build System <autodist@mambasoft.it> 3.24.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Wed Sep 14 2022 Automatic Build System <autodist@mambasoft.it> 3.24.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Thu Aug 18 2022 Automatic Build System <autodist@mambasoft.it> 3.24.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Fri Aug 05 2022 Automatic Build System <autodist@mambasoft.it> 3.24.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Fri Jul 29 2022 Automatic Build System <autodist@mambasoft.it> 3.23.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Thu May 26 2022 Automatic Build System <autodist@mambasoft.it> 3.23.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Wed Apr 13 2022 Automatic Build System <autodist@mambasoft.it> 3.23.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Wed Mar 30 2022 Automatic Build System <autodist@mambasoft.it> 3.23.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Sat Mar 05 2022 Automatic Build System <autodist@mambasoft.it> 3.22.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:28 +01:00
|
|
|
* Wed Jan 26 2022 Automatic Build System <autodist@mambasoft.it> 3.22.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Tue Dec 21 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.22.1-2mamba
|
|
|
|
- rebuilt with libjsoncpp 1.9.5
|
|
|
|
|
|
|
|
* Wed Dec 08 2021 Automatic Build System <autodist@mambasoft.it> 3.22.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Thu Nov 18 2021 Automatic Build System <autodist@mambasoft.it> 3.22.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Tue Sep 21 2021 Automatic Build System <autodist@mambasoft.it> 3.21.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Wed Aug 25 2021 Automatic Build System <autodist@mambasoft.it> 3.21.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Tue Jul 27 2021 Automatic Build System <autodist@mambasoft.it> 3.21.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Wed Jul 14 2021 Automatic Build System <autodist@mambasoft.it> 3.21.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Tue Jun 22 2021 Automatic Build System <autodist@mambasoft.it> 3.20.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Mon Jun 14 2021 Automatic Build System <autodist@mambasoft.it> 3.20.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Thu May 27 2021 Automatic Build System <autodist@mambasoft.it> 3.20.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Fri Apr 30 2021 Automatic Build System <autodist@mambasoft.it> 3.20.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Fri Apr 09 2021 Automatic Build System <autodist@mambasoft.it> 3.20.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:27 +01:00
|
|
|
* Thu Mar 25 2021 Automatic Build System <autodist@mambasoft.it> 3.20.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:26 +01:00
|
|
|
* Mon Mar 15 2021 Automatic Build System <autodist@mambasoft.it> 3.19.7-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:26 +01:00
|
|
|
* Wed Feb 24 2021 Automatic Build System <autodist@mambasoft.it> 3.19.6-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:26 +01:00
|
|
|
* Tue Feb 16 2021 Automatic Build System <autodist@mambasoft.it> 3.19.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:26 +01:00
|
|
|
* Thu Jan 28 2021 Automatic Build System <autodist@mambasoft.it> 3.19.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:26 +01:00
|
|
|
* Thu Jan 14 2021 Automatic Build System <autodist@mambasoft.it> 3.19.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:26 +01:00
|
|
|
* Wed Dec 16 2020 Automatic Build System <autodist@mambasoft.it> 3.19.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Nov 25 2020 Automatic Build System <autodist@mambasoft.it> 3.19.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Nov 18 2020 Automatic Build System <autodist@mambasoft.it> 3.19.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Oct 07 2020 Automatic Build System <autodist@mambasoft.it> 3.18.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Sep 23 2020 Automatic Build System <autodist@mambasoft.it> 3.18.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Fri Aug 21 2020 Automatic Build System <autodist@mambasoft.it> 3.18.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Fri Jul 31 2020 Automatic Build System <autodist@mambasoft.it> 3.18.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Sat Jul 18 2020 Automatic Build System <autodist@mambasoft.it> 3.18.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Thu May 28 2020 Automatic Build System <autodist@mambasoft.it> 3.17.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Apr 29 2020 Automatic Build System <autodist@mambasoft.it> 3.17.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Fri Apr 10 2020 Automatic Build System <autodist@mambasoft.it> 3.17.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Fri Mar 20 2020 Automatic Build System <autodist@mambasoft.it> 3.17.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Fri Mar 06 2020 Automatic Build System <autodist@mambasoft.it> 3.16.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Feb 12 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 3.16.4-2mamba
|
|
|
|
- rebuilt with debug_package
|
|
|
|
|
2024-01-05 21:26:25 +01:00
|
|
|
* Wed Feb 05 2020 Automatic Build System <autodist@mambasoft.it> 3.16.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Tue Jan 21 2020 Automatic Build System <autodist@mambasoft.it> 3.16.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Thu Dec 19 2019 Automatic Build System <autodist@mambasoft.it> 3.16.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Tue Dec 10 2019 Automatic Build System <autodist@mambasoft.it> 3.16.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Tue Nov 26 2019 Automatic Build System <autodist@mambasoft.it> 3.16.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Wed Oct 30 2019 Automatic Build System <autodist@mambasoft.it> 3.15.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Wed Oct 02 2019 Automatic Build System <autodist@mambasoft.it> 3.15.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Thu Sep 05 2019 Automatic Build System <autodist@mambasoft.it> 3.15.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Thu Aug 08 2019 Automatic Build System <autodist@mambasoft.it> 3.15.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Sat Jul 27 2019 Automatic Build System <autodist@mambasoft.it> 3.15.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Thu Jul 18 2019 Automatic Build System <autodist@mambasoft.it> 3.15.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:24 +01:00
|
|
|
* Tue Jul 16 2019 Automatic Build System <autodist@mambasoft.it> 3.14.6-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Fri May 31 2019 Automatic Build System <autodist@mambasoft.it> 3.14.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Wed May 15 2019 Automatic Build System <autodist@mambasoft.it> 3.14.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Mon Apr 22 2019 Automatic Build System <autodist@mambasoft.it> 3.14.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Fri Apr 12 2019 Automatic Build System <autodist@mambasoft.it> 3.14.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Sat Mar 30 2019 Automatic Build System <autodist@mambasoft.it> 3.14.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Thu Mar 14 2019 Automatic Build System <autodist@mambasoft.it> 3.14.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Mon Feb 04 2019 Automatic Build System <autodist@mambasoft.it> 3.13.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Tue Jan 15 2019 Automatic Build System <autodist@mambasoft.it> 3.13.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Fri Dec 14 2018 Automatic Build System <autodist@mambasoft.it> 3.13.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Tue Dec 04 2018 Automatic Build System <autodist@mambasoft.it> 3.13.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Wed Nov 21 2018 Automatic Build System <autodist@mambasoft.it> 3.13.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Sat Nov 03 2018 Automatic Build System <autodist@mambasoft.it> 3.12.4-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Fri Oct 05 2018 Automatic Build System <autodist@mambasoft.it> 3.12.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:23 +01:00
|
|
|
* Fri Sep 14 2018 Automatic Build System <autodist@mambasoft.it> 3.12.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Thu Aug 09 2018 Automatic Build System <autodist@mambasoft.it> 3.12.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Sun Aug 05 2018 Automatic Build System <autodist@mambasoft.it> 3.12.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Mon May 07 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6.3-2mamba
|
|
|
|
- rebuilt by autoport with build requirements: libjsoncpp-devel>=1.8.4-1mamba
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Thu Nov 03 2016 Automatic Build System <autodist@mambasoft.it> 3.6.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Thu Sep 08 2016 Automatic Build System <autodist@mambasoft.it> 3.6.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Fri Jul 22 2016 Automatic Build System <autodist@mambasoft.it> 3.6.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Fri Jul 08 2016 Automatic Build System <autodist@mambasoft.it> 3.6.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Sat Apr 16 2016 Automatic Build System <autodist@mambasoft.it> 3.5.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Fri Mar 25 2016 Automatic Build System <autodist@mambasoft.it> 3.5.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Tue Mar 08 2016 Automatic Build System <autodist@mambasoft.it> 3.5.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Tue Jan 26 2016 Automatic Build System <autodist@mambasoft.it> 3.4.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Wed Jan 20 2016 Automatic Build System <autodist@mambasoft.it> 3.4.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Wed Dec 09 2015 Automatic Build System <autodist@mambasoft.it> 3.4.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Tue Nov 17 2015 Automatic Build System <autodist@mambasoft.it> 3.4.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:22 +01:00
|
|
|
* Fri Sep 18 2015 Automatic Build System <autodist@mambasoft.it> 3.3.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Fri Aug 14 2015 Automatic Build System <autodist@mambasoft.it> 3.3.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Fri Jul 24 2015 Automatic Build System <autodist@mambasoft.it> 3.3.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Tue Jun 02 2015 Automatic Build System <autodist@mambasoft.it> 3.2.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Wed Apr 15 2015 Automatic Build System <autodist@mambasoft.it> 3.2.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Wed Mar 18 2015 Automatic Build System <autodist@mambasoft.it> 3.2.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Fri Feb 13 2015 Automatic Build System <autodist@mambasoft.it> 3.1.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Fri Feb 06 2015 Automatic Build System <autodist@mambasoft.it> 3.1.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Fri Jan 23 2015 Automatic Build System <autodist@mambasoft.it> 3.1.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Thu Dec 18 2014 Automatic Build System <autodist@mambasoft.it> 3.1.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Fri Sep 12 2014 Automatic Build System <autodist@mambasoft.it> 3.0.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Sun Aug 17 2014 Automatic Build System <autodist@mambasoft.it> 3.0.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Wed Jun 18 2014 Automatic Build System <autodist@mambasoft.it> 3.0.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 21:26:21 +01:00
|
|
|
* Sun Jan 26 2014 Automatic Build System <autodist@mambasoft.it> 2.8.12.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Sat Nov 30 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 2.8.12.1-2mamba
|
|
|
|
- patch FindFreetype.cmake module for freetype 2.5.1
|
|
|
|
|
|
|
|
* Fri Nov 08 2013 Automatic Build System <autodist@mambasoft.it> 2.8.12.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Thu Oct 10 2013 Automatic Build System <autodist@mambasoft.it> 2.8.12-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Mon Aug 26 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 2.8.11.2-2mamba
|
|
|
|
- added patch for 6.Q16HDRI ImageMagick from http://public.kitware.com/Bug/view.php?id=14012
|
|
|
|
|
|
|
|
* Thu Jul 04 2013 Automatic Build System <autodist@mambasoft.it> 2.8.11.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Sat Jun 08 2013 Automatic Build System <autodist@mambasoft.it> 2.8.11.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Tue May 21 2013 Automatic Build System <autodist@mambasoft.it> 2.8.11-1mamba
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
* Mon Jan 07 2013 Automatic Build System <autodist@mambasoft.it> 2.8.10.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Fri Nov 09 2012 Automatic Build System <autodist@mambasoft.it> 2.8.10.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Mon Nov 05 2012 Automatic Build System <autodist@mambasoft.it> 2.8.10-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Mon Aug 20 2012 Automatic Build System <autodist@mambasoft.it> 2.8.9-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Wed Aug 08 2012 Automatic Build System <autodist@mambasoft.it> 2.8.8-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Thu Dec 22 2011 Automatic Build System <autodist@mambasoft.it> 2.8.6-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Wed Feb 23 2011 Automatic Build System <autodist@mambasoft.it> 2.8.4-1mamba
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
* Fri Nov 05 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 2.8.3-1mamba
|
|
|
|
- update to 2.8.3
|
|
|
|
|
|
|
|
* Sat May 09 2009 Automatic Build System <autodist@mambasoft.it> 2.6.4-1mamba
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
* Mon Mar 30 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 2.6.3-1mamba
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
* Mon Feb 02 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 2.6.2-1mamba
|
|
|
|
- update to 2.6.2
|
|
|
|
|
|
|
|
* Thu Aug 28 2008 Aleph0 <aleph0@openmamba.org> 2.6.1-1mamba
|
|
|
|
- update to 2.6.1
|
|
|
|
|
|
|
|
* Mon May 12 2008 Aleph0 <aleph0@openmamba.org> 2.6.0-1mamba
|
|
|
|
- update to 2.6.0
|
|
|
|
|
|
|
|
* Mon Mar 03 2008 Aleph0 <aleph0@openmamba.org> 2.4.8-1mamba
|
|
|
|
- update to 2.4.8
|
|
|
|
- updated macros.cmake to permit extra directives to %%cmake
|
|
|
|
|
|
|
|
* Wed Dec 26 2007 Aleph0 <aleph0@openmamba.org> 2.4.7-4mamba
|
|
|
|
- modify %%cmake to permit both in-source and out-of-source builds
|
|
|
|
|
|
|
|
* Sun Dec 23 2007 Aleph0 <aleph0@openmamba.org> 2.4.7-3mamba
|
|
|
|
- add rpm macro macros.cmake (which defines %%cmake)
|
|
|
|
|
|
|
|
* Tue Dec 04 2007 Aleph0 <aleph0@openmamba.org> 2.4.7-2mamba
|
|
|
|
- updated specfile
|
|
|
|
- added missing build requirements
|
|
|
|
|
|
|
|
* Mon Oct 29 2007 Aleph0 <aleph0@openmamba.org> 2.4.7-1mamba
|
|
|
|
- update to 2.4.7
|
|
|
|
|
|
|
|
* Mon Jun 04 2007 Aleph0 <aleph0@openmamba.org> 2.4.6-2mamba
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Feb 27 2007 Aleph0 <aleph0@openmamba.org> 2.4.6-1qilnx
|
|
|
|
- update to version 2.4.6 by autospec
|
|
|
|
- updated X11 build requirements
|
|
|
|
- use system libraries
|
|
|
|
- added build requirements for system libraries
|
|
|
|
|
|
|
|
* Thu Dec 14 2006 Aleph0 <aleph0@openmamba.org> 2.4.5-1qilnx
|
|
|
|
- package created by autospec
|