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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 151EC1581F0 for ; Wed, 22 Jan 2025 16:21:01 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id F34D5340906 for ; Wed, 22 Jan 2025 16:21:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id F323D110296; Wed, 22 Jan 2025 16:20:59 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E41EF110296 for ; Wed, 22 Jan 2025 16:20:59 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A1F1340906 for ; Wed, 22 Jan 2025 16:20:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08ABE1D85 for ; Wed, 22 Jan 2025 16:20:58 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1737562852.e84dacb992999d3e3d1a84fd55392998dc516ccf.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/blueprint-compiler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/blueprint-compiler/blueprint-compiler-0.14.0.ebuild dev-util/blueprint-compiler/blueprint-compiler-0.16.0.ebuild X-VCS-Directories: dev-util/blueprint-compiler/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: e84dacb992999d3e3d1a84fd55392998dc516ccf X-VCS-Branch: master Date: Wed, 22 Jan 2025 16:20:58 +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: 1d6d88e1-9055-4363-907f-448d13eddd7b X-Archives-Hash: c0c1a1c487434c8107ed3a9baca0a347 commit: e84dacb992999d3e3d1a84fd55392998dc516ccf Author: Maciej Barć gentoo org> AuthorDate: Wed Jan 22 15:18:42 2025 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Jan 22 16:20:52 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84dacb9 dev-util/blueprint-compiler: remove tests failing on CI Closes: https://bugs.gentoo.org/947156 Signed-off-by: Maciej Barć gentoo.org> dev-util/blueprint-compiler/blueprint-compiler-0.14.0.ebuild | 8 +++++++- dev-util/blueprint-compiler/blueprint-compiler-0.16.0.ebuild | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-util/blueprint-compiler/blueprint-compiler-0.14.0.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-0.14.0.ebuild index 0627fff78fe8..f9358c0dc79a 100644 --- a/dev-util/blueprint-compiler/blueprint-compiler-0.14.0.ebuild +++ b/dev-util/blueprint-compiler/blueprint-compiler-0.14.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -50,6 +50,12 @@ BDEPEND=" DOCS=( CONTRIBUTING.md MAINTENANCE.md NEWS.md README.md ) +src_prepare() { + default + + rm ./tests/test_samples.py || die # Fails on CI, bug #947156 +} + src_configure() { local -a emesonargs=( $(meson_use doc docs) diff --git a/dev-util/blueprint-compiler/blueprint-compiler-0.16.0.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-0.16.0.ebuild index 4b8b16cdc906..0bad00ef063f 100644 --- a/dev-util/blueprint-compiler/blueprint-compiler-0.16.0.ebuild +++ b/dev-util/blueprint-compiler/blueprint-compiler-0.16.0.ebuild @@ -54,6 +54,7 @@ src_prepare() { default rm ./tests/test_deprecations.py || die + rm ./tests/test_samples.py || die # Fails on CI, bug #947156 } src_configure() {