From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A5A21582EF for ; Sun, 16 Feb 2025 16:29:31 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0DB83342FF7 for ; Sun, 16 Feb 2025 16:29:31 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 824EB1102CD; Sun, 16 Feb 2025 16:29:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 77BF11102CD for ; Sun, 16 Feb 2025 16:29:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 244593412DE for ; Sun, 16 Feb 2025 16:29:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B40622637 for ; Sun, 16 Feb 2025 16:29:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1739723290.7cdd301e55b3bf954e95b9c49ba830b3164df22e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/zig/, dev-lang/zig/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/zig/files/zig-0.13.0-test-fmt-no-doc.patch dev-lang/zig/zig-0.13.0-r1.ebuild X-VCS-Directories: dev-lang/zig/files/ dev-lang/zig/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7cdd301e55b3bf954e95b9c49ba830b3164df22e X-VCS-Branch: master Date: Sun, 16 Feb 2025 16:29:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6fecad33-604f-4b5b-899d-13acc8f36ad3 X-Archives-Hash: ade51bbc383f15095eeb946b49acaf86 commit: 7cdd301e55b3bf954e95b9c49ba830b3164df22e Author: Eric Joldasov landless-city net> AuthorDate: Sun Jan 19 20:09:39 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 16 16:28:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cdd301e dev-lang/zig: drop 0.13.0-r1 Signed-off-by: Eric Joldasov landless-city.net> Signed-off-by: Sam James gentoo.org> .../zig/files/zig-0.13.0-test-fmt-no-doc.patch | 17 -- dev-lang/zig/zig-0.13.0-r1.ebuild | 227 --------------------- 2 files changed, 244 deletions(-) diff --git a/dev-lang/zig/files/zig-0.13.0-test-fmt-no-doc.patch b/dev-lang/zig/files/zig-0.13.0-test-fmt-no-doc.patch deleted file mode 100644 index 7bbda741dc6f..000000000000 --- a/dev-lang/zig/files/zig-0.13.0-test-fmt-no-doc.patch +++ /dev/null @@ -1,17 +0,0 @@ -# Docs contain examples of badly formatted code, -# so they should be excluded for test-fmt to pass. -# In the upstream, the "doc" directory -# was removed from fmt_include_paths in -# https://github.com/ziglang/zig/commit/cb1d1bdf - ---- a/build.zig -+++ b/build.zig -@@ -428,7 +428,7 @@ - } - const optimization_modes = chosen_opt_modes_buf[0..chosen_mode_index]; - -- const fmt_include_paths = &.{ "doc", "lib", "src", "test", "tools", "build.zig" }; -+ const fmt_include_paths = &.{ "lib", "src", "test", "tools", "build.zig" }; - const fmt_exclude_paths = &.{"test/cases"}; - const do_fmt = b.addFmt(.{ - .paths = fmt_include_paths, diff --git a/dev-lang/zig/zig-0.13.0-r1.ebuild b/dev-lang/zig/zig-0.13.0-r1.ebuild deleted file mode 100644 index 867fa84f3b19..000000000000 --- a/dev-lang/zig/zig-0.13.0-r1.ebuild +++ /dev/null @@ -1,227 +0,0 @@ -# Copyright 2019-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_MAX_SLOT=18 -inherit edo check-reqs cmake llvm multiprocessing toolchain-funcs - -DESCRIPTION="A robust, optimal, and maintainable programming language" -HOMEPAGE="https://ziglang.org https://github.com/ziglang/zig" - -BDEPEND="test? ( !!