From a9506d0fdd5713698e24b41ce4f6f5afea2bd7ad Mon Sep 17 00:00:00 2001 From: Patrick Lauer Date: Fri, 5 Nov 2021 13:38:53 +0000 Subject: dev-lang/zig: Disable experimental useflag for newest Doesn't build otherwise, can't be fixed easily as upstream assumes full LLVM_TARGETS available Bug: https://bugs.gentoo.org/800206 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Patrick Lauer --- dev-lang/zig/zig-0.8.1-r1.ebuild | 59 +++++++++++++++++++++++++++++++++++++++ dev-lang/zig/zig-0.8.1.ebuild | 60 ---------------------------------------- dev-lang/zig/zig-9999.ebuild | 5 ++-- 3 files changed, 61 insertions(+), 63 deletions(-) create mode 100644 dev-lang/zig/zig-0.8.1-r1.ebuild delete mode 100644 dev-lang/zig/zig-0.8.1.ebuild (limited to 'dev-lang/zig') diff --git a/dev-lang/zig/zig-0.8.1-r1.ebuild b/dev-lang/zig/zig-0.8.1-r1.ebuild new file mode 100644 index 000000000000..6d44bbced52f --- /dev/null +++ b/dev-lang/zig/zig-0.8.1-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake llvm + +DESCRIPTION="A robust, optimal, and maintainable programming language" +HOMEPAGE="https://ziglang.org/" +LICENSE="MIT" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://github.com/ziglang/zig.git" + inherit git-r3 +else + SRC_URI="https://github.com/ziglang/zig/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +BUILD_DIR="${S}/build" + +# According to zig's author, zig builds that do not support all targets are not +# supported by the upstream project. +ALL_LLVM_TARGETS=( + AArch64 AMDGPU ARM AVR BPF Hexagon Lanai Mips MSP430 NVPTX + PowerPC RISCV Sparc SystemZ WebAssembly X86 XCore +) +ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" ) +LLVM_TARGET_USEDEPS="${ALL_LLVM_TARGETS[@]}" + +LLVM_MAX_SLOT=12 + +RDEPEND=" + sys-devel/clang:${LLVM_MAX_SLOT} + >=sys-devel/lld-12.0.0 +