2007-01-16 00:06:38 +01:00
|
|
|
#
|
2011-02-27 13:40:18 +01:00
|
|
|
# spec file for package ccache
|
2007-01-16 00:06:38 +01:00
|
|
|
#
|
2020-02-06 12:57:18 +01:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2007-01-16 00:06:38 +01:00
|
|
|
#
|
2009-06-17 19:17:34 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-05-02 10:37:18 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-16 00:06:38 +01:00
|
|
|
#
|
|
|
|
|
2012-08-11 17:25:03 +02:00
|
|
|
|
2009-06-17 19:17:34 +02:00
|
|
|
Name: ccache
|
2020-11-24 08:00:36 +01:00
|
|
|
Version: 4.1
|
2012-01-09 08:32:42 +01:00
|
|
|
Release: 0
|
2011-02-24 20:41:55 +01:00
|
|
|
Summary: A Fast C/C++ Compiler Cache
|
2018-03-15 12:16:17 +01:00
|
|
|
License: GPL-3.0-or-later
|
2019-05-02 10:04:49 +02:00
|
|
|
URL: https://ccache.dev/
|
2019-05-02 10:37:18 +02:00
|
|
|
Source0: https://github.com/ccache/ccache/releases/download/v%{version}/ccache-%{version}.tar.xz#/%{name}-%{version}.tar.xz
|
|
|
|
Source1: https://github.com/ccache/ccache/releases/download/v%{version}/ccache-%{version}.tar.xz.asc#/%{name}-%{version}.tar.xz.asc
|
2015-02-26 11:54:03 +01:00
|
|
|
Source2: %{name}.keyring
|
2020-11-04 09:12:50 +01:00
|
|
|
BuildRequires: asciidoc
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: libzstd-devel >= 1.1.2
|
2016-07-08 20:09:42 +02:00
|
|
|
Provides: distcc:%{_bindir}/ccache
|
2011-02-24 20:41:55 +01:00
|
|
|
|
2007-01-16 00:06:38 +01:00
|
|
|
%description
|
2016-09-11 10:01:53 +02:00
|
|
|
ccache is a compiler cache. It speeds up recompilation by caching the
|
|
|
|
result of previous compilations and detecting when the same compilation is
|
|
|
|
being done again. Supported languages are C, C++, Objective-C and
|
|
|
|
Objective-C++.
|
2007-01-16 00:06:38 +01:00
|
|
|
|
|
|
|
%prep
|
2018-10-22 08:59:31 +02:00
|
|
|
%setup -q
|
2007-01-16 00:06:38 +01:00
|
|
|
|
|
|
|
%build
|
2020-11-04 09:12:50 +01:00
|
|
|
%cmake
|
|
|
|
%cmake_build
|
|
|
|
%make_build doc
|
2007-01-16 00:06:38 +01:00
|
|
|
|
|
|
|
%install
|
2020-11-04 09:12:50 +01:00
|
|
|
%cmake_install
|
|
|
|
|
2015-05-26 10:09:52 +02:00
|
|
|
# create the compat symlinks into /usr/libdir/ccache
|
|
|
|
mkdir -p %{buildroot}/%{_libdir}/%{name}
|
|
|
|
cd %{buildroot}/%{_libdir}/%{name}
|
|
|
|
ln -sf ../../bin/%{name} gcc
|
|
|
|
ln -sf ../../bin/%{name} g++
|
2016-09-11 10:01:53 +02:00
|
|
|
ln -sf ../../bin/%{name} gcc-objc
|
2016-09-11 09:53:03 +02:00
|
|
|
ln -sf ../../bin/%{name} gfortran
|
2016-08-26 16:23:03 +02:00
|
|
|
# do the same for clang
|
|
|
|
ln -sf ../../bin/%{name} clang
|
|
|
|
ln -sf ../../bin/%{name} clang++
|
|
|
|
# and regular cc
|
|
|
|
ln -sf ../../bin/%{name} cc
|
|
|
|
ln -sf ../../bin/%{name} c++
|
2020-06-07 12:07:29 +02:00
|
|
|
# and for nvidia cuda
|
|
|
|
ln -sf ../../bin/%{name} nvcc
|
2015-05-26 10:09:52 +02:00
|
|
|
|
2020-11-04 09:12:50 +01:00
|
|
|
# Following failure needs to be adressed:
|
|
|
|
# The following tests FAILED:
|
|
|
|
# 29 - test.upgrade (Failed)
|
|
|
|
#%%check
|
|
|
|
#ctest
|
2018-07-11 10:41:55 +02:00
|
|
|
|
2007-01-16 00:06:38 +01:00
|
|
|
%files
|
2018-03-15 12:16:17 +01:00
|
|
|
%license LICENSE.* GPL-3.0.txt
|
2018-04-17 15:49:43 +02:00
|
|
|
%doc doc/AUTHORS.* doc/MANUAL.* doc/NEWS.* README.*
|
2015-02-26 11:54:03 +01:00
|
|
|
%{_bindir}/%{name}
|
2015-05-26 10:09:52 +02:00
|
|
|
%{_libdir}/%{name}
|
2018-03-15 12:16:17 +01:00
|
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
2007-01-16 00:06:38 +01:00
|
|
|
|
2009-06-17 19:17:34 +02:00
|
|
|
%changelog
|