commit:     1adc0bf0ee5b5f6328cae09f925ad75d3c01af01
Author:     Eric Joldasov <bratishkaerik <AT> landless-city <DOT> net>
AuthorDate: Wed Aug  7 10:30:40 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Fri Aug 23 02:03:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1adc0bf0

dev-lang/zig: drop 0.11.0-r1, 0.12.0

Signed-off-by: Eric Joldasov <bratishkaerik <AT> landless-city.net>
Closes: https://github.com/gentoo/gentoo/pull/38005
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 dev-lang/zig/Manifest                              |   4 -
 .../zig/files/zig-0.11.0-first-try-getconf.patch   | 113 -------------
 dev-lang/zig/zig-0.11.0-r1.ebuild                  | 186 ---------------------
 dev-lang/zig/zig-0.12.0.ebuild                     | 182 --------------------
 4 files changed, 485 deletions(-)

diff --git a/dev-lang/zig/Manifest b/dev-lang/zig/Manifest
index 538062fe0caf..6ab62b044f50 100644
--- a/dev-lang/zig/Manifest
+++ b/dev-lang/zig/Manifest
@@ -1,6 +1,2 @@
-DIST zig-0.11.0.tar.xz 15275316 BLAKE2B 
603e4995a36d214ba71cf05b719a04732c8927995c8207ab8fdd574dca3410cdc5ccc8f6aa9964807afc04a5cbce1a3910a6cde4cf12e585cdf7684833217eb2
 SHA512 
c19a8ae6d440a16dd5e77941fc77c036d1f284f1784376625e63b65f30b4acad62f9f4217bc818c401f88c2c33f8722f26fc467c3e23c29a89178c4b1882d1c4
-DIST zig-0.11.0.tar.xz.minisig 312 BLAKE2B 
8df407f07dde36280c945300fd8b803e6e59c026eb7a3eb56e6d2f4fe1047672e17946a3bbe23ccfe9be07b65331e17690e95fd348353be22f7b6d9b73b3f9ca
 SHA512 
565dd1eacb7dd697e6b1ff54517adc1e4775d2523afaeb4f9a3dd404df871b187862211ecbbcf90b42e3a03853677fc1603e7fc8fc5ba7126a054679faa601ca
-DIST zig-0.12.0.tar.xz 17099152 BLAKE2B 
2a1248302868156c4ddcb154d075af29886a95a4c29de02ff0981e76a85f5d4109dd5c38f95c2c16f5c942bab7d120ae068c1e122ab8ad421c0213b7e996956c
 SHA512 
0c3d9396fea4905245c7e32ce6bd9b4ff140f061cd8a957929e4c84cf105f5bbcbf2e7c030013ac649edb569e909f65d928b3e8a86f35c9076fb62e996feea14
-DIST zig-0.12.0.tar.xz.minisig 312 BLAKE2B 
4b3d1ae45d3b6d81054a39255c0892d9376d05da9ff1076bcf740310c9650b0154ddc39f19caee9dae293719d58a63764e43b694b83fe7031c87ab434aa377f5
 SHA512 
6e14c1e1926beeb249cb88fb2247ff401f679b64785c3ec8a924e33c894174deb77b48286469a863761bce0ca57524f904995eacf544919dda387c140e6e829e
 DIST zig-0.13.0.tar.xz 17220728 BLAKE2B 
f4bbacc2012950c556bebc28fc322fc6424bf20fe118e8362373336b6460e514028978584087f6e7f25ed8b8e6991610edce625676a1dd80c1975c5f9ef48775
 SHA512 
6f5f31f4ba71a11d8b16c7a5a613e124095e503fa6b02d2b77e5b177674c739287e81d98d96dc261fed24bc836caf196f71c3fcc7a6518387df86ba9e03df4dd
 DIST zig-0.13.0.tar.xz.minisig 312 BLAKE2B 
2d061257c9c75f9c36b01cfb08dcd2040538a125b9ea2cae8617ae5496e685b165933ce8981494419522b7e19b51fc69a651ecaa4a8930753acf2e4ae3d6e00f
 SHA512 
21c6139c06cba6c5e23a3305fed0c0f1b9b32d9140bd686c26365ce0279d5f53cd081894eaba29f0c1ed51b2e831edf7bd4ae6a7eaee5018a252e312e9b65507

diff --git a/dev-lang/zig/files/zig-0.11.0-first-try-getconf.patch 
b/dev-lang/zig/files/zig-0.11.0-first-try-getconf.patch
deleted file mode 100644
index 5a63e9e74ad9..000000000000
--- a/dev-lang/zig/files/zig-0.11.0-first-try-getconf.patch
+++ /dev/null
@@ -1,113 +0,0 @@
-From: Eric Joldasov <bratishkae...@getgoogleoff.me>
-
-Based on https://github.com/ziglang/zig/pull/12567 and 
https://github.com/ziglang/zig/pull/17671
-with small fixes, all ported to 0.11.0.
-
-First try `getconf GNU_LIBC_VERSION` to detect glibc version,
-If there are any errors, skip to the upstream logic.
-
-Also fix glibc version parsing: if version string does not contain third 
(patch) component, "std.SemanticVersion.parse" returns parsing error.
-For example, this currently happens with "GLIBC_2.37" or "glibc 2.37" inputs.
-To fix this, we use copy-pasted "std.zig.CrossTarget.parse" function here, 
that sets omitted patch component to 0.
-
-After applying this patch, both `zig build-exe --show-builtin` and `zig env` 
show correct version on my default/linux/amd64/17.1/desktop/plasma :
-glibc 2.37.
-
-Bug: https://bugs.gentoo.org/914731
-Bug: https://bugs.gentoo.org/914101
-
-diff --git a/lib/std/zig/system/NativeTargetInfo.zig 
b/lib/std/zig/system/NativeTargetInfo.zig
-index 99a1a8f2e..0250db968 100644
---- a/lib/std/zig/system/NativeTargetInfo.zig
-+++ b/lib/std/zig/system/NativeTargetInfo.zig
-@@ -19,6 +19,32 @@ dynamic_linker: DynamicLinker = DynamicLinker{},
-
- pub const DynamicLinker = Target.DynamicLinker;
-
-+// Copy-pasted from `std.zig.CrossTarget.parse` to avoid introducing 
unexpected new public function as part of standard library.
-+/// Parses a version with an omitted patch component, such as "1.0",
-+/// which SemanticVersion.parse is not capable of.
-+fn parseWithOptionalPatchField(ver: []const u8) error{ InvalidVersion, 
Overflow }!std.SemanticVersion {
-+    const parseVersionComponent = struct {
-+        fn parseVersionComponent(component: []const u8) !usize {
-+            return std.fmt.parseUnsigned(usize, component, 10) catch |err| {
-+                switch (err) {
-+                    error.InvalidCharacter => return error.InvalidVersion,
-+                    error.Overflow => return error.Overflow,
-+                }
-+            };
-+        }
-+    }.parseVersionComponent;
-+    var version_components = mem.splitScalar(u8, ver, '.');
-+    const major = version_components.first();
-+    const minor = version_components.next() orelse return 
error.InvalidVersion;
-+    const patch = version_components.next() orelse "0";
-+    if (version_components.next() != null) return error.InvalidVersion;
-+    return .{
-+        .major = try parseVersionComponent(major),
-+        .minor = try parseVersionComponent(minor),
-+        .patch = try parseVersionComponent(patch),
-+    };
-+}
-+
- pub const DetectError = error{
-     FileSystem,
-     SystemResources,
-@@ -307,6 +333,39 @@ fn detectAbiAndDynamicLinker(
-     }
-     const ld_info_list = ld_info_list_buffer[0..ld_info_list_len];
-
-+    if (is_linux and !os_is_non_native and cross_target.glibc_version == 
null) try_getconf: {
-+        var buf: [4096]u8 = undefined;
-+        var fba = std.heap.FixedBufferAllocator.init(&buf);
-+        const allocator = fba.allocator();
-+
-+        const getconf = std.process.Child.exec(.{
-+            .allocator = allocator,
-+            .argv = &.{ "getconf", "GNU_LIBC_VERSION" },
-+            .max_output_bytes = 1024,
-+        }) catch break :try_getconf;
-+        if (!std.mem.startsWith(u8, getconf.stdout, "glibc ")) break 
:try_getconf;
-+        const version_string = std.mem.trim(u8, getconf.stdout["glibc 
".len..], &std.ascii.whitespace);
-+        const glibc_version = parseWithOptionalPatchField(version_string) 
catch break :try_getconf;
-+
-+        var os_with_glibc = os;
-+        os_with_glibc.version_range.linux.glibc = glibc_version;
-+
-+        const target: Target = .{
-+            .cpu = cpu,
-+            .os = os_with_glibc,
-+            .abi = .gnu,
-+            .ofmt = cross_target.ofmt orelse 
Target.ObjectFormat.default(os_with_glibc.tag, cpu.arch),
-+        };
-+        const result: NativeTargetInfo = .{
-+            .target = target,
-+            .dynamic_linker = if (cross_target.dynamic_linker.get() == null)
-+                target.standardDynamicLinkerPath()
-+            else
-+                cross_target.dynamic_linker,
-+        };
-+        return result;
-+    }
-+
-     // Best case scenario: the executable is dynamically linked, and we can 
iterate
-     // over our own shared objects and find a dynamic linker.
-     const elf_file = blk: {
-@@ -563,7 +622,7 @@ fn glibcVerFromSoFile(file: fs.File) !std.SemanticVersion {
-     while (it.next()) |s| {
-         if (mem.startsWith(u8, s, "GLIBC_2.")) {
-             const chopped = s["GLIBC_".len..];
--            const ver = std.SemanticVersion.parse(chopped) catch |err| switch 
(err) {
-+            const ver = parseWithOptionalPatchField(chopped) catch |err| 
switch (err) {
-                 error.Overflow => return error.InvalidGnuLibCVersion,
-                 error.InvalidVersion => return error.InvalidGnuLibCVersion,
-             };
-@@ -586,7 +645,7 @@ fn glibcVerFromLinkName(link_name: []const u8, prefix: 
[]const u8) !std.Semantic
-     }
-     // chop off "libc-" and ".so"
-     const link_name_chopped = link_name[prefix.len .. link_name.len - 
suffix.len];
--    return std.SemanticVersion.parse(link_name_chopped) catch |err| switch 
(err) {
-+    return parseWithOptionalPatchField(link_name_chopped) catch |err| switch 
(err) {
-         error.Overflow => return error.InvalidGnuLibCVersion,
-         error.InvalidVersion => return error.InvalidGnuLibCVersion,
-     };

diff --git a/dev-lang/zig/zig-0.11.0-r1.ebuild 
b/dev-lang/zig/zig-0.11.0-r1.ebuild
deleted file mode 100644
index 8114e11a4f79..000000000000
--- a/dev-lang/zig/zig-0.11.0-r1.ebuild
+++ /dev/null
@@ -1,186 +0,0 @@
-# Copyright 2019-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LLVM_MAX_SLOT=16
-inherit edo cmake llvm check-reqs toolchain-funcs
-
-DESCRIPTION="A robust, optimal, and maintainable programming language"
-HOMEPAGE="https://ziglang.org/";
-if [[ ${PV} == 9999 ]]; then
-       EGIT_REPO_URI="https://github.com/ziglang/zig.git";
-       inherit git-r3
-else
-       VERIFY_SIG_METHOD=minisig
-       
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/minisig-keys/zig-software-foundation.pub
-       inherit verify-sig
-
-       SRC_URI="
-               https://ziglang.org/download/${PV}/${P}.tar.xz
-               verify-sig? ( 
https://ziglang.org/download/${PV}/${P}.tar.xz.minisig )
-       "
-       KEYWORDS="~amd64 ~arm ~arm64"
-
-       BDEPEND="verify-sig? ( sec-keys/minisig-keys-zig-software-foundation )"
-fi
-
-# project itself: MIT
-# There are bunch of projects under "lib/" folder that are needed for 
cross-compilation.
-# Files that are unnecessary for cross-compilation are removed by upstream
-# and therefore their licenses (if any special) are not included.
-# lib/libunwind: Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )
-# lib/libcxxabi: Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )
-# lib/libcxx: Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )
-# lib/libc/wasi: || ( Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT BSD-2 ) 
public-domain
-# lib/libc/musl: MIT BSD-2
-# lib/libc/mingw: ZPL public-domain BSD-2 ISC HPND
-# lib/libc/glibc: BSD HPND ISC inner-net LGPL-2.1+
-LICENSE="MIT Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) || ( 
Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT BSD-2 ) public-domain BSD-2 ZPL 
ISC HPND BSD inner-net LGPL-2.1+"
-SLOT="$(ver_cut 1-2)"
-IUSE="doc"
-
-BUILD_DIR="${S}/build"
-
-# Zig requires zstd and zlib compression support in LLVM, if using LLVM 
backend.
-# (non-LLVM backends don't require these)
-# They are not required "on their own", so please don't add them here.
-# You can check https://github.com/ziglang/zig-bootstrap in future, to see
-# options that are passed to LLVM CMake building (excluding "static" ofc).
-DEPEND="
-       sys-devel/clang:${LLVM_MAX_SLOT}=
-       sys-devel/lld:${LLVM_MAX_SLOT}=
-       sys-devel/llvm:${LLVM_MAX_SLOT}=[zstd]
-"
-
-RDEPEND="
-       ${DEPEND}
-"
-
-IDEPEND="app-eselect/eselect-zig"
-
-# see https://github.com/ziglang/zig/issues/3382
-# For now, Zig Build System doesn't support enviromental CFLAGS/LDFLAGS/etc.
-QA_FLAGS_IGNORED="usr/.*/zig/${PV}/bin/zig"
-
-# Since commit 
https://github.com/ziglang/zig/commit/e7d28344fa3ee81d6ad7ca5ce1f83d50d8502118
-# Zig uses self-hosted compiler only
-CHECKREQS_MEMORY="4G"
-
-PATCHES=(
-       "${FILESDIR}/zig-0.11.0-first-try-getconf.patch"
-)
-
-llvm_check_deps() {
-       has_version "sys-devel/clang:${LLVM_SLOT}"
-}
-
-ctarget_to_zigtarget() {
-       # Zig's Target Format: arch-os-abi
-       local CTARGET="${CTARGET:-${CHOST}}"
-
-       local ZIG_ARCH
-       case "${CTARGET%%-*}" in
-               i?86)           ZIG_ARCH=x86;;
-               sparcv9)        ZIG_ARCH=sparc64;;
-               *)              ZIG_ARCH="${CTARGET%%-*}";; # Same as in CHOST
-       esac
-
-       local ZIG_OS
-       case "${CTARGET}" in
-               *linux*)        ZIG_OS=linux;;
-               *apple*)        ZIG_OS=macos;;
-       esac
-
-       local ZIG_ABI
-       case "${CTARGET##*-}" in
-               gnu)            ZIG_ABI=gnu;;
-               solaris*)       ZIG_OS=solaris ZIG_ABI=none;;
-               darwin*)        ZIG_ABI=none;;
-               *)              ZIG_ABI="${CTARGET##*-}";; # Same as in CHOST
-       esac
-
-       echo "${ZIG_ARCH}-${ZIG_OS}-${ZIG_ABI}"
-}
-
-get_zig_mcpu() {
-       local ZIG_DEFAULT_MCPU=native
-       tc-is-cross-compiler && ZIG_DEFAULT_MCPU=baseline
-       echo "${ZIG_MCPU:-${ZIG_DEFAULT_MCPU}}"
-}
-
-get_zig_target() {
-       local ZIG_DEFAULT_TARGET=native
-       tc-is-cross-compiler && ZIG_DEFAULT_TARGET="$(ctarget_to_zigtarget)"
-       echo "${ZIG_TARGET:-${ZIG_DEFAULT_TARGET}}"
-}
-
-pkg_setup() {
-       llvm_pkg_setup
-       check-reqs_pkg_setup
-}
-
-src_configure() {
-       # Useful for debugging and a little bit more deterministic.
-       export ZIG_LOCAL_CACHE_DIR="${T}/zig-local-cache"
-       export ZIG_GLOBAL_CACHE_DIR="${T}/zig-global-cache"
-
-       local mycmakeargs=(
-               -DZIG_USE_CCACHE=OFF
-               -DZIG_SHARED_LLVM=ON
-               -DZIG_TARGET_TRIPLE="$(get_zig_target)"
-               -DZIG_TARGET_MCPU="$(get_zig_mcpu)"
-               -DZIG_USE_LLVM_CONFIG=ON
-               -DCMAKE_PREFIX_PATH="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
-               -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/$(get_libdir)/zig/${PV}"
-       )
-
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-
-       "${BUILD_DIR}/stage3/bin/zig" env || die "Zig compilation failed"
-
-       if use doc; then
-               cd "${BUILD_DIR}" || die
-               edo ./stage3/bin/zig build std-docs --prefix "${S}/docgen/"
-               edo ./stage3/bin/zig build langref --prefix "${S}/docgen/"
-       fi
-}
-
-src_test() {
-       cd "${BUILD_DIR}" || die
-       local ZIG_TEST_ARGS="-Dstatic-llvm=false -Denable-llvm 
-Dskip-non-native \
-               -Doptimize=ReleaseSafe -Dtarget=$(get_zig_target) 
-Dcpu=$(get_zig_mcpu)"
-       local ZIG_TEST_STEPS=(
-               test-cases test-fmt test-behavior test-compiler-rt 
test-universal-libc test-compare-output
-               test-standalone test-c-abi test-link test-stack-traces test-cli 
test-asm-link test-translate-c
-               test-run-translated-c test-std
-       )
-
-       local step
-       for step in "${ZIG_TEST_STEPS[@]}" ; do
-               edob ./stage3/bin/zig build ${step} ${ZIG_TEST_ARGS}
-       done
-}
-
-src_install() {
-       use doc && local HTML_DOCS=( "docgen/doc/langref.html" "docgen/doc/std" 
)
-       cmake_src_install
-
-       cd "${ED}/usr/$(get_libdir)/zig/${PV}/" || die
-       mv lib/zig/ lib2/ || die
-       rm -rf lib/ || die
-       mv lib2/ lib/ || die
-       dosym -r "/usr/$(get_libdir)/zig/${PV}/bin/zig" "/usr/bin/zig-${PV}"
-}
-
-pkg_postinst() {
-       eselect zig update ifunset
-}
-
-pkg_postrm() {
-       eselect zig update ifunset
-}

diff --git a/dev-lang/zig/zig-0.12.0.ebuild b/dev-lang/zig/zig-0.12.0.ebuild
deleted file mode 100644
index 2b89e41832af..000000000000
--- a/dev-lang/zig/zig-0.12.0.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 2019-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LLVM_MAX_SLOT=17
-inherit edo cmake llvm check-reqs toolchain-funcs
-
-DESCRIPTION="A robust, optimal, and maintainable programming language"
-HOMEPAGE="https://ziglang.org/";
-if [[ ${PV} == 9999 ]]; then
-       EGIT_REPO_URI="https://github.com/ziglang/zig.git";
-       inherit git-r3
-else
-       VERIFY_SIG_METHOD=minisig
-       
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/minisig-keys/zig-software-foundation.pub
-       inherit verify-sig
-
-       SRC_URI="
-               https://ziglang.org/download/${PV}/${P}.tar.xz
-               verify-sig? ( 
https://ziglang.org/download/${PV}/${P}.tar.xz.minisig )
-       "
-       KEYWORDS="~amd64 ~arm ~arm64"
-
-       BDEPEND="verify-sig? ( sec-keys/minisig-keys-zig-software-foundation )"
-fi
-
-# project itself: MIT
-# There are bunch of projects under "lib/" folder that are needed for 
cross-compilation.
-# Files that are unnecessary for cross-compilation are removed by upstream
-# and therefore their licenses (if any special) are not included.
-# lib/libunwind: Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )
-# lib/libcxxabi: Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )
-# lib/libcxx: Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )
-# lib/libc/wasi: || ( Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT BSD-2 ) 
public-domain
-# lib/libc/musl: MIT BSD-2
-# lib/libc/mingw: ZPL public-domain BSD-2 ISC HPND
-# lib/libc/glibc: BSD HPND ISC inner-net LGPL-2.1+
-LICENSE="MIT Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT ) || ( 
Apache-2.0-with-LLVM-exceptions Apache-2.0 MIT BSD-2 ) public-domain BSD-2 ZPL 
ISC HPND BSD inner-net LGPL-2.1+"
-SLOT="$(ver_cut 1-2)"
-IUSE="doc"
-
-BUILD_DIR="${S}/build"
-
-# Zig requires zstd and zlib compression support in LLVM, if using LLVM 
backend.
-# (non-LLVM backends don't require these)
-# They are not required "on their own", so please don't add them here.
-# You can check https://github.com/ziglang/zig-bootstrap in future, to see
-# options that are passed to LLVM CMake building (excluding "static" ofc).
-DEPEND="
-       sys-devel/clang:${LLVM_MAX_SLOT}=
-       sys-devel/lld:${LLVM_MAX_SLOT}=
-       sys-devel/llvm:${LLVM_MAX_SLOT}=[zstd]
-"
-
-RDEPEND="
-       ${DEPEND}
-"
-
-IDEPEND="app-eselect/eselect-zig"
-
-# see https://github.com/ziglang/zig/issues/3382
-# For now, Zig Build System doesn't support enviromental CFLAGS/LDFLAGS/etc.
-QA_FLAGS_IGNORED="usr/.*/zig/${PV}/bin/zig"
-
-# Since commit 
https://github.com/ziglang/zig/commit/e7d28344fa3ee81d6ad7ca5ce1f83d50d8502118
-# Zig uses self-hosted compiler only
-CHECKREQS_MEMORY="4G"
-
-llvm_check_deps() {
-       has_version "sys-devel/clang:${LLVM_SLOT}"
-}
-
-ctarget_to_zigtarget() {
-       # Zig's Target Format: arch-os-abi
-       local CTARGET="${CTARGET:-${CHOST}}"
-
-       local ZIG_ARCH
-       case "${CTARGET%%-*}" in
-               i?86)           ZIG_ARCH=x86;;
-               sparcv9)        ZIG_ARCH=sparc64;;
-               *)              ZIG_ARCH="${CTARGET%%-*}";; # Same as in CHOST
-       esac
-
-       local ZIG_OS
-       case "${CTARGET}" in
-               *linux*)        ZIG_OS=linux;;
-               *apple*)        ZIG_OS=macos;;
-       esac
-
-       local ZIG_ABI
-       case "${CTARGET##*-}" in
-               gnu)            ZIG_ABI=gnu;;
-               solaris*)       ZIG_OS=solaris ZIG_ABI=none;;
-               darwin*)        ZIG_ABI=none;;
-               *)              ZIG_ABI="${CTARGET##*-}";; # Same as in CHOST
-       esac
-
-       echo "${ZIG_ARCH}-${ZIG_OS}-${ZIG_ABI}"
-}
-
-get_zig_mcpu() {
-       local ZIG_DEFAULT_MCPU=native
-       tc-is-cross-compiler && ZIG_DEFAULT_MCPU=baseline
-       echo "${ZIG_MCPU:-${ZIG_DEFAULT_MCPU}}"
-}
-
-get_zig_target() {
-       local ZIG_DEFAULT_TARGET=native
-       tc-is-cross-compiler && ZIG_DEFAULT_TARGET="$(ctarget_to_zigtarget)"
-       echo "${ZIG_TARGET:-${ZIG_DEFAULT_TARGET}}"
-}
-
-pkg_setup() {
-       llvm_pkg_setup
-       check-reqs_pkg_setup
-}
-
-src_configure() {
-       # Useful for debugging and a little bit more deterministic.
-       export ZIG_LOCAL_CACHE_DIR="${T}/zig-local-cache"
-       export ZIG_GLOBAL_CACHE_DIR="${T}/zig-global-cache"
-
-       local mycmakeargs=(
-               -DZIG_USE_CCACHE=OFF
-               -DZIG_SHARED_LLVM=ON
-               -DZIG_TARGET_TRIPLE="$(get_zig_target)"
-               -DZIG_TARGET_MCPU="$(get_zig_mcpu)"
-               -DZIG_USE_LLVM_CONFIG=ON
-               -DCMAKE_PREFIX_PATH="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
-               -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/$(get_libdir)/zig/${PV}"
-       )
-
-       cmake_src_configure
-}
-
-src_compile() {
-       cmake_src_compile
-
-       "${BUILD_DIR}/stage3/bin/zig" env || die "Zig compilation failed"
-
-       if use doc; then
-               cd "${BUILD_DIR}" || die
-               edo ./stage3/bin/zig build std-docs --prefix "${S}/docgen/"
-               edo ./stage3/bin/zig build langref --prefix "${S}/docgen/"
-       fi
-}
-
-src_test() {
-       cd "${BUILD_DIR}" || die
-       local ZIG_TEST_ARGS="-Dstatic-llvm=false -Denable-llvm 
-Dskip-non-native \
-               -Doptimize=ReleaseSafe -Dtarget=$(get_zig_target) 
-Dcpu=$(get_zig_mcpu)"
-       local ZIG_TEST_STEPS=(
-               test-cases test-fmt test-behavior test-compiler-rt 
test-universal-libc test-compare-output
-               test-standalone test-c-abi test-link test-stack-traces test-cli 
test-asm-link test-translate-c
-               test-run-translated-c test-std
-       )
-
-       local step
-       for step in "${ZIG_TEST_STEPS[@]}" ; do
-               edob ./stage3/bin/zig build ${step} ${ZIG_TEST_ARGS}
-       done
-}
-
-src_install() {
-       use doc && local HTML_DOCS=( "docgen/doc/langref.html" "docgen/doc/std" 
)
-       cmake_src_install
-
-       cd "${ED}/usr/$(get_libdir)/zig/${PV}/" || die
-       mv lib/zig/ lib2/ || die
-       rm -rf lib/ || die
-       mv lib2/ lib/ || die
-       dosym -r "/usr/$(get_libdir)/zig/${PV}/bin/zig" "/usr/bin/zig-${PV}"
-}
-
-pkg_postinst() {
-       eselect zig update ifunset
-}
-
-pkg_postrm() {
-       eselect zig update ifunset
-}

Reply via email to