From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4278158041 for ; Wed, 27 Mar 2024 02:52:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBAF7E2A66; Wed, 27 Mar 2024 02:52:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7F24E2A66 for ; Wed, 27 Mar 2024 02:52:09 +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 DD47A34300C for ; Wed, 27 Mar 2024 02:52:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 189E815F0 for ; Wed, 27 Mar 2024 02:52:07 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1711507042.4b93b64a41c31348e4bab02d3032a96ece3bfe16.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/buildah/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-containers/buildah/buildah-1.33.7.ebuild app-containers/buildah/buildah-1.34.3.ebuild app-containers/buildah/buildah-1.35.1.ebuild app-containers/buildah/buildah-9999.ebuild X-VCS-Directories: app-containers/buildah/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4b93b64a41c31348e4bab02d3032a96ece3bfe16 X-VCS-Branch: master Date: Wed, 27 Mar 2024 02:52:07 +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: e88a8ac5-aa9b-4119-9b58-f7bba608445e X-Archives-Hash: 56c229663e7495a6376bb75d7cd05105 commit: 4b93b64a41c31348e4bab02d3032a96ece3bfe16 Author: Rahil Bhimjiani rahil rocks> AuthorDate: Tue Mar 26 20:08:19 2024 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Mar 27 02:37:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b93b64a app-containers/buildah: add go-md2man as BDEPEND and ... remove unnecessary build steps which were running tests resulting in failed build on arm64 (and potentially other archs). Closes: https://bugs.gentoo.org/888571 Signed-off-by: Rahil Bhimjiani rahil.rocks> Closes: https://github.com/gentoo/gentoo/pull/35931 Signed-off-by: Zac Medico gentoo.org> app-containers/buildah/buildah-1.33.7.ebuild | 5 +++++ app-containers/buildah/buildah-1.34.3.ebuild | 5 +++++ app-containers/buildah/buildah-1.35.1.ebuild | 5 +++++ app-containers/buildah/buildah-9999.ebuild | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/app-containers/buildah/buildah-1.33.7.ebuild b/app-containers/buildah/buildah-1.33.7.ebuild index f100d2a5a83a..789e12962aa5 100644 --- a/app-containers/buildah/buildah-1.33.7.ebuild +++ b/app-containers/buildah/buildah-1.33.7.ebuild @@ -42,6 +42,7 @@ RDEPEND=" sys-apps/shadow:= " DEPEND="${RDEPEND}" +BDEPEND="dev-go/go-md2man" pkg_pretend() { local CONFIG_CHECK="" @@ -98,6 +99,9 @@ src_prepare() { @@ -54 +54 @@ -all: bin/buildah bin/imgtype bin/copy bin/tutorial docs +all: bin/buildah docs + @@ -123 +123 @@ + -docs: install.tools ## build the docs on the host + +docs: ## build the docs on the host EOF eapply "${T}/disable_tests.patch" || die } @@ -110,6 +114,7 @@ src_compile() { [[ ${PV} != 9999* ]] && export COMMIT_NO="" GIT_COMMIT="" tc-export AS LD + export GOMD2MAN="$(command -v go-md2man)" default } diff --git a/app-containers/buildah/buildah-1.34.3.ebuild b/app-containers/buildah/buildah-1.34.3.ebuild index f100d2a5a83a..789e12962aa5 100644 --- a/app-containers/buildah/buildah-1.34.3.ebuild +++ b/app-containers/buildah/buildah-1.34.3.ebuild @@ -42,6 +42,7 @@ RDEPEND=" sys-apps/shadow:= " DEPEND="${RDEPEND}" +BDEPEND="dev-go/go-md2man" pkg_pretend() { local CONFIG_CHECK="" @@ -98,6 +99,9 @@ src_prepare() { @@ -54 +54 @@ -all: bin/buildah bin/imgtype bin/copy bin/tutorial docs +all: bin/buildah docs + @@ -123 +123 @@ + -docs: install.tools ## build the docs on the host + +docs: ## build the docs on the host EOF eapply "${T}/disable_tests.patch" || die } @@ -110,6 +114,7 @@ src_compile() { [[ ${PV} != 9999* ]] && export COMMIT_NO="" GIT_COMMIT="" tc-export AS LD + export GOMD2MAN="$(command -v go-md2man)" default } diff --git a/app-containers/buildah/buildah-1.35.1.ebuild b/app-containers/buildah/buildah-1.35.1.ebuild index f5596936ec24..ecf84e28950c 100644 --- a/app-containers/buildah/buildah-1.35.1.ebuild +++ b/app-containers/buildah/buildah-1.35.1.ebuild @@ -42,6 +42,7 @@ RDEPEND=" sys-apps/shadow:= " DEPEND="${RDEPEND}" +BDEPEND="dev-go/go-md2man" pkg_pretend() { local CONFIG_CHECK="" @@ -98,6 +99,9 @@ src_prepare() { @@ -54 +54 @@ -all: bin/buildah bin/imgtype bin/copy bin/tutorial docs +all: bin/buildah docs + @@ -123 +123 @@ + -docs: install.tools ## build the docs on the host + +docs: ## build the docs on the host EOF eapply "${T}/disable_tests.patch" || die } @@ -110,6 +114,7 @@ src_compile() { [[ ${PV} != 9999* ]] && export COMMIT_NO="" GIT_COMMIT="" tc-export AS LD + export GOMD2MAN="$(command -v go-md2man)" default } diff --git a/app-containers/buildah/buildah-9999.ebuild b/app-containers/buildah/buildah-9999.ebuild index f5596936ec24..ecf84e28950c 100644 --- a/app-containers/buildah/buildah-9999.ebuild +++ b/app-containers/buildah/buildah-9999.ebuild @@ -42,6 +42,7 @@ RDEPEND=" sys-apps/shadow:= " DEPEND="${RDEPEND}" +BDEPEND="dev-go/go-md2man" pkg_pretend() { local CONFIG_CHECK="" @@ -98,6 +99,9 @@ src_prepare() { @@ -54 +54 @@ -all: bin/buildah bin/imgtype bin/copy bin/tutorial docs +all: bin/buildah docs + @@ -123 +123 @@ + -docs: install.tools ## build the docs on the host + +docs: ## build the docs on the host EOF eapply "${T}/disable_tests.patch" || die } @@ -110,6 +114,7 @@ src_compile() { [[ ${PV} != 9999* ]] && export COMMIT_NO="" GIT_COMMIT="" tc-export AS LD + export GOMD2MAN="$(command -v go-md2man)" default }