mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
sys-devel/clang-common: Bump to 15.0.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -3,5 +3,7 @@ DIST llvm-project-14.0.6.src.tar.xz.sig 566 BLAKE2B cb658ad43d8ab6c43a5773aedadf
|
||||
DIST llvm-project-14f996dca8a2b5b17d6917528bfd9ee71ba6192a.tar.gz 169054148 BLAKE2B a23af6658a6ea8a7cb4272faef151937da229e39383ec068d7ef81e72a25d2a46dc2a86255a7f1148b7385b339d1c17e62f627df834d8eccc39be8921575f88d SHA512 e719d296016e7af718d022424c337a5df8d7124fdb49b9f219ab2a5dc592e6a59f6c09064775ea9349bcf4eed9d72214abb648de649ab872174c35635c945c04
|
||||
DIST llvm-project-15.0.2.src.tar.xz 112071864 BLAKE2B 96f2884d6c1007260d71e5dd41951eed029e8f50ff78f3c90f7194df13e1d4fb80ab7705c51c45a3e6b2a7714a98d9c5919fc7064d1d5f7c675e65b9b4229b65 SHA512 a0e815369c15bb4f8e8aa0fede29c3d557fcc5c8f2b39d457c03f1ef1d860082a41027238571b2aee9a158a87eb118deb08dc2ba94ce750320837a84e9908b8c
|
||||
DIST llvm-project-15.0.2.src.tar.xz.sig 438 BLAKE2B 37a3a7fbc2d74db9060e85f04e159b475cf818c95a6fe2e9f5f038eb990f414d94833ecac2f9c826825a69b752876399e37e70e6934def06363f7ccb18be033a SHA512 cfe3bc400a64536ad9181c2ede7227a0953a8632fdc777d1ea1d9225c1fc4e699d90ce0b99e057ee5b87c1272d5810c4b52fb0cac167ddd2aad88f1f3ef46ee8
|
||||
DIST llvm-project-15.0.3.src.tar.xz 112069972 BLAKE2B 3d29bab890467ba87fedcc4e76522f444e63e3dfbe546793f8e67821bcd403bad460ea176254c9e0b72d60ea56b8480e498a7f610477c1108732d178804c26cd SHA512 d378d417f01c56534f301cfe6cb4958d811c04ae22acaacc917e7e5f0380859d40ce19dffb265d046b70fff95dbc2e759f492e4d5af0ade52f21ebaa8da65856
|
||||
DIST llvm-project-15.0.3.src.tar.xz.sig 438 BLAKE2B e7e0614e144eb878f694c12e97cf42ff8476e47cb55e8f259eb2ec52e303463ad753771271512e89baf0137c1382b11cfa028c85324174ebcd054a124000f537 SHA512 41229bebdb0c2df9a5e3a4d6f02d39fac7dc91f21895a659523beab4fa3ef99ff06eff5e4386221369b6e2b6f8fe974d67b7d8496d5911ce484d09ae0db8b916
|
||||
DIST llvm-project-ebb258d3b0785f6dcc65e1f277d0690891ddc94d.tar.gz 168823463 BLAKE2B 111afe0f6ba6cef28c3d0162c9c650d15239f981949030768780ebe308418346d0ad367e0e58417832ae43e57b27bccaf56415f81e8221c6c5e78d1113f5617b SHA512 80351d7eeac77a15bf5613b289c71d718ecaccd8a6a4ea6736ed8bfc15c8154099c771564f99ea6c8b491f99bf1ca3a45fac977d638f6a03d7f7b42ba522fa20
|
||||
DIST llvmorg-13.0.1.tar.gz 147290251 BLAKE2B 2a44b012a672501761d0c27c6b3a315b69bfef0cd13b078a7e7d2fccc4a9c8c0f2bee0f164c4271c9106b0a99cb06e8b64986f66253b613336719fb86b82541b SHA512 9a8cb5d11964ba88b7624f19ec861fb28701f23956ea3c92f6ac644332d5f41fde97bd8933dd3ee70ed378058c252fa3a3887c8d1af90d219970c2b27691166f
|
||||
|
||||
129
sys-devel/clang-common/clang-common-15.0.3-r2.ebuild
Normal file
129
sys-devel/clang-common/clang-common-15.0.3-r2.ebuild
Normal file
@@ -0,0 +1,129 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit bash-completion-r1 llvm.org
|
||||
|
||||
DESCRIPTION="Common files shared between multiple slots of clang"
|
||||
HOMEPAGE="https://llvm.org/"
|
||||
|
||||
LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
|
||||
IUSE="
|
||||
default-compiler-rt default-libcxx default-lld llvm-libunwind
|
||||
stricter
|
||||
"
|
||||
|
||||
PDEPEND="
|
||||
sys-devel/clang:*
|
||||
default-compiler-rt? (
|
||||
sys-devel/clang-runtime[compiler-rt]
|
||||
llvm-libunwind? ( sys-libs/llvm-libunwind )
|
||||
!llvm-libunwind? ( sys-libs/libunwind )
|
||||
)
|
||||
!default-compiler-rt? ( sys-devel/gcc )
|
||||
default-libcxx? ( >=sys-libs/libcxx-${PV} )
|
||||
!default-libcxx? ( sys-devel/gcc )
|
||||
default-lld? ( sys-devel/lld )
|
||||
!default-lld? ( sys-devel/binutils )
|
||||
"
|
||||
IDEPEND="
|
||||
!default-compiler-rt? ( sys-devel/gcc-config )
|
||||
!default-libcxx? ( sys-devel/gcc-config )
|
||||
"
|
||||
|
||||
LLVM_COMPONENTS=( clang/utils )
|
||||
llvm.org_set_globals
|
||||
|
||||
pkg_pretend() {
|
||||
[[ ${CLANG_IGNORE_DEFAULT_RUNTIMES} ]] && return
|
||||
|
||||
local flag missing_flags=()
|
||||
for flag in default-{compiler-rt,libcxx,lld}; do
|
||||
if ! use "${flag}" && has_version "sys-devel/clang[${flag}]"; then
|
||||
missing_flags+=( "${flag}" )
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ ${missing_flags[@]} ]]; then
|
||||
eerror "It seems that you have the following flags set on sys-devel/clang:"
|
||||
eerror
|
||||
eerror " ${missing_flags[*]}"
|
||||
eerror
|
||||
eerror "The default runtimes are now set via flags on sys-devel/clang-common."
|
||||
eerror "The build is being aborted to prevent breakage. Please either set"
|
||||
eerror "the respective flags on this ebuild, e.g.:"
|
||||
eerror
|
||||
eerror " sys-devel/clang-common ${missing_flags[*]}"
|
||||
eerror
|
||||
eerror "or build with CLANG_IGNORE_DEFAULT_RUNTIMES=1."
|
||||
die "Mismatched defaults detected between sys-devel/clang and sys-devel/clang-common"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
newbashcomp bash-autocomplete.sh clang
|
||||
|
||||
insinto /etc/clang
|
||||
newins - gentoo-runtimes.cfg <<-EOF
|
||||
# This file is initially generated by sys-devel/clang-runtime.
|
||||
# It is used to control the default runtimes using by clang.
|
||||
|
||||
--rtlib=$(usex default-compiler-rt compiler-rt libgcc)
|
||||
--unwindlib=$(usex default-compiler-rt libunwind libgcc)
|
||||
--stdlib=$(usex default-libcxx libc++ libstdc++)
|
||||
-fuse-ld=$(usex default-lld lld bfd)
|
||||
EOF
|
||||
|
||||
newins - gentoo-gcc-install.cfg <<-EOF
|
||||
# This file is maintained by gcc-config.
|
||||
# It is used to specify the selected GCC installation.
|
||||
EOF
|
||||
|
||||
newins - gentoo-common.cfg <<-EOF
|
||||
# This file contains flags common to clang, clang++ and clang-cpp.
|
||||
@gentoo-runtimes.cfg
|
||||
@gentoo-gcc-install.cfg
|
||||
EOF
|
||||
|
||||
if use stricter; then
|
||||
newins - gentoo-stricter.cfg <<-EOF
|
||||
# This file increases the strictness of older clang versions
|
||||
# to match the newest upstream version.
|
||||
|
||||
# clang-16 defaults
|
||||
-Werror=implicit-function-declaration
|
||||
-Werror=implicit-int
|
||||
-Werror=incompatible-function-pointer-types
|
||||
|
||||
# constructs banned by C2x
|
||||
-Werror=deprecated-non-prototype
|
||||
EOF
|
||||
|
||||
cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die
|
||||
@gentoo-stricter.cfg
|
||||
EOF
|
||||
fi
|
||||
|
||||
local tool
|
||||
for tool in clang{,++,-cpp}; do
|
||||
newins - "${tool}.cfg" <<-EOF
|
||||
# This configuration file is used by ${tool} driver.
|
||||
@gentoo-common.cfg
|
||||
EOF
|
||||
done
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
if has_version -b sys-devel/gcc-config && has_version sys-devel/gcc
|
||||
then
|
||||
local gcc_path=$(gcc-config --get-lib-path 2>/dev/null)
|
||||
if [[ -n ${gcc_path} ]]; then
|
||||
cat >> "${ED}/etc/clang/gentoo-gcc-install.cfg" <<-EOF
|
||||
--gcc-install-dir="${gcc_path%%:*}"
|
||||
EOF
|
||||
fi
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user