2011-04-20 15:53:17 +02:00
|
|
|
#
|
2011-06-03 15:52:45 +02:00
|
|
|
# spec file for package llvm
|
2011-04-20 15:53:17 +02:00
|
|
|
#
|
2022-04-03 22:07:55 +02:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2011-04-20 15:53:17 +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-02-13 11:18:05 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-04-20 15:53:17 +02:00
|
|
|
#
|
|
|
|
|
2012-03-20 13:39:06 +01:00
|
|
|
|
2022-09-12 13:13:57 +02:00
|
|
|
%define _sonum 15
|
2018-03-19 13:44:36 +01:00
|
|
|
%ifarch x86_64
|
|
|
|
%define has_lldb 1
|
2018-03-19 13:52:19 +01:00
|
|
|
# python3-lldb%{_sonum} is only built with these distributions (see llvm%{_sonum} package)
|
|
|
|
%if 0%{?suse_version} > 1320
|
2018-03-19 13:44:36 +01:00
|
|
|
%define has_lldb_python 1
|
|
|
|
%endif
|
|
|
|
%endif
|
2020-10-25 13:01:52 +01:00
|
|
|
|
|
|
|
# obsolete_llvm_versioned() prefix postfix
|
|
|
|
# Obsolete packages <prefix>X or <prefix>X-<postfix> with X being a set of older versions.
|
|
|
|
%define obsolete_llvm_versioned() \
|
|
|
|
Obsoletes: %{1}10%{?2:-%{2}} \
|
2021-04-19 09:17:54 +02:00
|
|
|
Obsoletes: %{1}11%{?2:-%{2}} \
|
2021-10-04 13:33:27 +02:00
|
|
|
Obsoletes: %{1}12%{?2:-%{2}} \
|
2022-04-15 14:23:28 +02:00
|
|
|
Obsoletes: %{1}13%{?2:-%{2}} \
|
2022-09-12 13:13:57 +02:00
|
|
|
Obsoletes: %{1}14%{?2:-%{2}} \
|
2020-10-25 13:01:52 +01:00
|
|
|
Obsoletes: %{1}7%{?2:-%{2}} \
|
|
|
|
Obsoletes: %{1}8%{?2:-%{2}} \
|
|
|
|
Obsoletes: %{1}9%{?2:-%{2}}
|
|
|
|
|
2011-04-20 15:53:17 +02:00
|
|
|
Name: llvm
|
2022-10-04 23:44:56 +02:00
|
|
|
Version: 15.0.2
|
2011-12-22 16:34:18 +01:00
|
|
|
Release: 0
|
2011-05-30 16:35:16 +02:00
|
|
|
Summary: Low Level Virtual Machine
|
2019-09-25 09:28:05 +02:00
|
|
|
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
2011-05-30 16:35:16 +02:00
|
|
|
Group: Development/Languages/Other
|
2019-06-17 09:30:19 +02:00
|
|
|
URL: https://www.llvm.org/
|
2016-09-20 11:44:40 +02:00
|
|
|
# This file documents the process for updating llvm
|
|
|
|
Source0: README.packaging
|
|
|
|
# Avoid multiple providers error
|
|
|
|
BuildRequires: clang%{_sonum} = %{version}
|
|
|
|
BuildRequires: clang%{_sonum}-devel = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
BuildRequires: clang%{_sonum}-doc = %{version}
|
|
|
|
BuildRequires: lld%{_sonum} = %{version}
|
2016-09-20 11:44:40 +02:00
|
|
|
BuildRequires: llvm%{_sonum} = %{version}
|
|
|
|
BuildRequires: llvm%{_sonum}-devel = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
BuildRequires: llvm%{_sonum}-doc = %{version}
|
2016-09-20 11:44:40 +02:00
|
|
|
BuildRequires: llvm%{_sonum}-gold = %{version}
|
|
|
|
BuildRequires: llvm%{_sonum}-vim-plugins = %{version}
|
2018-05-30 14:28:04 +02:00
|
|
|
Requires: llvm%{_sonum} = %{version}
|
2018-03-19 13:44:36 +01:00
|
|
|
%if 0%{?has_lldb}
|
2016-09-20 11:44:40 +02:00
|
|
|
BuildRequires: lldb%{_sonum} = %{version}
|
|
|
|
BuildRequires: lldb%{_sonum}-devel = %{version}
|
2018-03-19 13:44:36 +01:00
|
|
|
%endif
|
2022-04-03 22:07:55 +02:00
|
|
|
BuildRequires: python3-clang%{_sonum} = %{version}
|
2018-03-19 13:44:36 +01:00
|
|
|
%if 0%{?has_lldb_python}
|
2017-12-13 18:01:41 +01:00
|
|
|
BuildRequires: python3-lldb%{_sonum} = %{version}
|
2016-09-07 08:46:04 +02:00
|
|
|
%endif
|
2022-04-03 22:07:55 +02:00
|
|
|
Suggests: %{name}-doc
|
2018-07-18 12:55:37 +02:00
|
|
|
# Mirrors ExcludeArch in llvm%{_sonum}
|
2019-02-13 11:18:05 +01:00
|
|
|
ExcludeArch: s390
|
2011-04-20 15:53:17 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
LLVM is a compiler infrastructure designed for compile-time,
|
|
|
|
link-time, runtime, and idle-time optimization of programs from
|
|
|
|
arbitrary programming languages.
|
|
|
|
|
2011-05-30 16:35:16 +02:00
|
|
|
The compiler infrastructure includes mirror sets of programming
|
2011-04-20 15:53:17 +02:00
|
|
|
tools as well as libraries with equivalent functionality.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
2013-07-03 15:13:45 +02:00
|
|
|
|
2011-04-20 15:53:17 +02:00
|
|
|
%package devel
|
2013-07-03 15:13:45 +02:00
|
|
|
Summary: Header Files for LLVM
|
2019-06-17 09:30:19 +02:00
|
|
|
Group: Development/Libraries/C and C++
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: llvm%{_sonum}-devel = %{version}
|
2022-04-03 22:07:55 +02:00
|
|
|
Provides: llvm-LTO-devel = %{version}
|
|
|
|
Obsoletes: llvm-LTO-devel <= %{version}
|
2016-09-20 11:47:12 +02:00
|
|
|
Requires: llvm-gold
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned llvm devel
|
2022-04-15 14:23:28 +02:00
|
|
|
%obsolete_llvm_versioned llvm LTO-devel
|
2011-04-20 15:53:17 +02:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains library and header files needed to develop
|
|
|
|
new native programs that use the LLVM infrastructure.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-devel that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
2019-09-25 09:28:05 +02:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for LLVM
|
|
|
|
Group: Documentation/HTML
|
|
|
|
Requires: %{name} = %{version}
|
|
|
|
Requires: llvm%{_sonum}-doc = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned llvm doc
|
2019-09-25 09:28:05 +02:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
This package contains documentation for the LLVM infrastructure.
|
|
|
|
|
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-doc that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
2016-09-08 11:16:14 +02:00
|
|
|
%package -n clang
|
2011-04-20 15:53:17 +02:00
|
|
|
Summary: CLANG frontend for LLVM
|
2019-06-17 09:30:19 +02:00
|
|
|
Group: Development/Languages/C and C++
|
2019-12-23 09:47:34 +01:00
|
|
|
URL: https://clang.llvm.org/
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: clang%{_sonum} = %{version}
|
2016-09-08 11:16:14 +02:00
|
|
|
Provides: llvm-clang = %{version}
|
|
|
|
Obsoletes: llvm-clang < %{version}
|
2020-01-30 15:52:37 +01:00
|
|
|
Provides: llvm-emacs-plugins
|
2022-04-03 22:07:55 +02:00
|
|
|
Suggests: clang-doc
|
2011-04-20 15:53:17 +02:00
|
|
|
|
2016-09-08 11:16:14 +02:00
|
|
|
%description -n clang
|
2011-04-20 15:53:17 +02:00
|
|
|
This package contains the clang (C language) frontend for LLVM.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
clang that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific Clang version should depend on this.
|
|
|
|
|
2016-09-08 11:16:14 +02:00
|
|
|
%package -n clang-devel
|
2011-04-20 15:53:17 +02:00
|
|
|
Summary: CLANG frontend for LLVM (devel package)
|
2019-06-17 09:30:19 +02:00
|
|
|
Group: Development/Libraries/C and C++
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: clang%{_sonum}-devel = %{version}
|
2016-09-08 11:16:14 +02:00
|
|
|
Provides: llvm-clang-devel = %{version}
|
|
|
|
Obsoletes: llvm-clang-devel < %{version}
|
2018-01-24 14:27:14 +01:00
|
|
|
Provides: clang-devel-static = %{version}
|
|
|
|
Obsoletes: clang-devel-static < %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned clang devel
|
2011-04-20 15:53:17 +02:00
|
|
|
|
2016-09-08 11:16:14 +02:00
|
|
|
%description -n clang-devel
|
2011-04-20 15:53:17 +02:00
|
|
|
This package contains the clang (C language) frontend for LLVM.
|
|
|
|
(development files)
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
clang-devel that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific Clang version should depend on this.
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2019-09-25 09:28:05 +02:00
|
|
|
%package -n clang-doc
|
|
|
|
Summary: Documentation for Clang
|
|
|
|
Group: Documentation/HTML
|
|
|
|
Requires: clang = %{version}
|
|
|
|
Requires: clang%{_sonum}-doc = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned clang doc
|
2019-09-25 09:28:05 +02:00
|
|
|
|
|
|
|
%description -n clang-doc
|
|
|
|
This package contains documentation for the Clang compiler.
|
|
|
|
|
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
clang-doc that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific Clang version should depend on this.
|
|
|
|
|
2016-09-07 08:46:04 +02:00
|
|
|
%package gold
|
|
|
|
Summary: Gold linker plugin for LLVM
|
2019-06-17 09:30:19 +02:00
|
|
|
Group: Development/Tools/Building
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: llvm%{_sonum}-gold = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned llvm gold
|
2016-09-07 08:46:04 +02:00
|
|
|
|
|
|
|
%description gold
|
|
|
|
This package contains the Gold linker plugin for LLVM.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-gold that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
2011-04-20 15:53:17 +02:00
|
|
|
%package vim-plugins
|
|
|
|
Summary: Vim plugins for LLVM
|
|
|
|
Group: Productivity/Text/Editors
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: llvm%{_sonum}-vim-plugins = %{version}
|
2019-09-25 09:28:05 +02:00
|
|
|
Supplements: packageand(llvm:vim)
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned llvm vim-plugins
|
2016-09-07 08:46:04 +02:00
|
|
|
BuildArch: noarch
|
2011-04-20 15:53:17 +02:00
|
|
|
|
|
|
|
%description vim-plugins
|
|
|
|
This package contains vim plugins for LLVM like syntax highlighting.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-vim-plugins that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
2020-10-25 13:01:52 +01:00
|
|
|
%package opt-viewer
|
|
|
|
Summary: Tools for visualising the LLVM optimization records
|
|
|
|
Group: Development/Languages/Other
|
|
|
|
Requires: llvm%{_sonum}-opt-viewer = %{version}
|
|
|
|
%obsolete_llvm_versioned llvm opt-viewer
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description opt-viewer
|
|
|
|
Set of tools for visualising the LLVM optimization records generated
|
|
|
|
with -fsave-optimization-record. Used for compiler-assisted performance
|
|
|
|
analysis.
|
|
|
|
|
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-opt-viewer that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%package -n lldb
|
|
|
|
Summary: Software debugger built using LLVM libraries
|
|
|
|
Group: Development/Tools/Debuggers
|
2019-12-23 09:47:34 +01:00
|
|
|
URL: https://lldb.llvm.org/
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: lldb%{_sonum} = %{version}
|
2019-09-25 09:28:05 +02:00
|
|
|
Recommends: python3-lldb
|
2012-03-21 16:15:58 +01:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%description -n lldb
|
|
|
|
LLDB is a next generation, high-performance debugger. It is built as a set
|
|
|
|
of reusable components which highly leverage existing libraries in the
|
|
|
|
larger LLVM Project, such as the Clang expression parser and LLVM
|
|
|
|
disassembler.
|
2016-03-09 07:32:53 +01:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
lldb that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLDB version should depend on this.
|
2016-03-22 13:40:57 +01:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%package -n lldb-devel
|
|
|
|
Summary: Development files for LLDB
|
2019-06-17 09:30:19 +02:00
|
|
|
Group: Development/Libraries/C and C++
|
2016-09-20 11:44:40 +02:00
|
|
|
Requires: lldb%{_sonum}-devel = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned lldb devel
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%description -n lldb-devel
|
|
|
|
This package contains the development files for LLDB.
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
lldb-devel that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLDB version should depend on this.
|
2015-09-27 15:53:04 +02:00
|
|
|
|
2022-04-03 22:07:55 +02:00
|
|
|
%package -n python3-clang
|
|
|
|
Summary: Python bindings for libclang
|
|
|
|
Group: Development/Libraries/Python
|
|
|
|
Requires: python3-clang%{_sonum}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description -n python3-clang
|
|
|
|
This package contains the Python bindings to clang (C language)
|
|
|
|
frontend for LLVM.
|
|
|
|
|
2017-12-13 18:01:41 +01:00
|
|
|
%package -n python3-lldb
|
2016-09-20 11:44:40 +02:00
|
|
|
Summary: Python bindings for liblldb
|
2019-06-17 09:30:19 +02:00
|
|
|
Group: Development/Libraries/Python
|
2017-12-13 18:01:41 +01:00
|
|
|
Requires: python3-lldb%{_sonum} = %{version}
|
2020-10-25 13:01:52 +01:00
|
|
|
%obsolete_llvm_versioned python3-lldb
|
2011-04-20 15:53:17 +02:00
|
|
|
|
2017-12-13 18:01:41 +01:00
|
|
|
%description -n python3-lldb
|
2016-09-20 11:44:40 +02:00
|
|
|
This package contains the Python bindings to clang (C language) frontend for LLVM.
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
This package is a dummy package that depends on the version of
|
2017-12-13 18:01:41 +01:00
|
|
|
python3-lldb that openSUSE currently supports. Packages that
|
2016-09-20 11:44:40 +02:00
|
|
|
don't require a specific LLDB version should depend on this.
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2018-01-04 10:41:00 +01:00
|
|
|
%package -n lld
|
|
|
|
Summary: Linker for Clang/LLVM
|
|
|
|
Group: Development/Tools/Building
|
2019-12-23 09:47:34 +01:00
|
|
|
URL: https://lld.llvm.org/
|
2018-01-04 10:41:00 +01:00
|
|
|
Requires: lld%{_sonum} = %{version}
|
|
|
|
|
|
|
|
%description -n lld
|
|
|
|
LLD is a linker from the LLVM project. That is a drop-in replacement for
|
|
|
|
system linkers and runs much faster than them. It also provides features that
|
|
|
|
are useful for toolchain developers.
|
|
|
|
|
2020-10-25 13:01:52 +01:00
|
|
|
%package polly
|
|
|
|
Summary: LLVM Framework for High-Level Loop and Data-Locality Optimizations
|
|
|
|
Group: Development/Languages/Other
|
|
|
|
URL: https://polly.llvm.org/
|
|
|
|
Requires: llvm%{_sonum}-polly = %{version}
|
|
|
|
%obsolete_llvm_versioned llvm polly
|
|
|
|
|
|
|
|
%description polly
|
|
|
|
Polly is a high-level loop and data-locality optimizer and optimization
|
|
|
|
infrastructure for LLVM. It uses an abstract mathematical representation based
|
|
|
|
on integer polyhedra to analyze and optimize the memory access pattern of a
|
|
|
|
program. Polly can currently perform classical loop transformations, especially
|
|
|
|
tiling and loop fusion to improve data-locality. It can also exploit OpenMP
|
|
|
|
level parallelism and expose SIMDization opportunities.
|
|
|
|
|
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-polly that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
|
|
|
%package polly-devel
|
|
|
|
Summary: Development files for Polly
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Requires: llvm%{_sonum}-polly-devel = %{version}
|
|
|
|
Requires: llvm-polly = %{version}
|
|
|
|
%obsolete_llvm_versioned llvm polly-devel
|
|
|
|
|
|
|
|
%description polly-devel
|
|
|
|
This package contains the development files for Polly.
|
|
|
|
|
|
|
|
This package is a dummy package that depends on the version of
|
|
|
|
llvm-polly-devel that openSUSE currently supports. Packages that
|
|
|
|
don't require a specific LLVM version should depend on this.
|
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%prep
|
|
|
|
# Not needed
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%build
|
|
|
|
echo "This is a dummy package to provide a dependency on the system compiler." > README
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2016-09-20 11:44:40 +02:00
|
|
|
%install
|
|
|
|
# Not needed
|
2016-03-17 10:02:32 +01:00
|
|
|
|
2011-04-20 15:53:17 +02:00
|
|
|
%files
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
2013-07-03 15:13:45 +02:00
|
|
|
|
2016-09-08 11:16:14 +02:00
|
|
|
%files -n clang
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
2016-09-07 08:46:04 +02:00
|
|
|
|
|
|
|
%files gold
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
2011-04-20 15:53:17 +02:00
|
|
|
|
|
|
|
%files devel
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2021-10-04 13:33:27 +02:00
|
|
|
%files doc
|
|
|
|
%doc README
|
|
|
|
|
2016-09-08 11:16:14 +02:00
|
|
|
%files -n clang-devel
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
2016-09-07 08:46:04 +02:00
|
|
|
|
2021-10-04 13:33:27 +02:00
|
|
|
%files -n clang-doc
|
|
|
|
%doc README
|
|
|
|
|
2011-04-20 15:53:17 +02:00
|
|
|
%files vim-plugins
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
|
|
|
|
2020-10-25 13:01:52 +01:00
|
|
|
%files opt-viewer
|
|
|
|
%doc README
|
|
|
|
|
2018-03-19 13:44:36 +01:00
|
|
|
%if 0%{?has_lldb}
|
2016-09-20 11:44:40 +02:00
|
|
|
%files -n lldb
|
|
|
|
%doc README
|
|
|
|
|
|
|
|
%files -n lldb-devel
|
|
|
|
%doc README
|
2018-03-19 13:44:36 +01:00
|
|
|
%endif
|
|
|
|
|
2022-04-03 22:07:55 +02:00
|
|
|
%files -n python3-clang
|
|
|
|
%doc README
|
|
|
|
|
2018-03-19 13:44:36 +01:00
|
|
|
%if 0%{?has_lldb_python}
|
2017-12-13 18:01:41 +01:00
|
|
|
%files -n python3-lldb
|
2016-09-20 11:44:40 +02:00
|
|
|
%doc README
|
2018-01-08 10:04:11 +01:00
|
|
|
%endif
|
|
|
|
|
2018-01-08 09:37:51 +01:00
|
|
|
%files -n lld
|
|
|
|
%doc README
|
|
|
|
|
2020-10-25 13:01:52 +01:00
|
|
|
%files polly
|
|
|
|
%doc README
|
|
|
|
|
|
|
|
%files polly-devel
|
|
|
|
%doc README
|
|
|
|
|
2011-04-20 15:53:17 +02:00
|
|
|
%changelog
|