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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF578158083 for ; Wed, 25 Sep 2024 15:32:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB39BE2A12; Wed, 25 Sep 2024 15:32:14 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF7B5E2A12 for ; Wed, 25 Sep 2024 15:32:14 +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 CC16B3431A2 for ; Wed, 25 Sep 2024 15:32:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3719516EF for ; Wed, 25 Sep 2024 15:32:12 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1727278282.b8d6f066aa45d19a9d7d5f57d6283eca52cfaadc.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gitlab-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/gitlab-cli/gitlab-cli-1.46.0.ebuild X-VCS-Directories: dev-util/gitlab-cli/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: b8d6f066aa45d19a9d7d5f57d6283eca52cfaadc X-VCS-Branch: master Date: Wed, 25 Sep 2024 15:32:12 +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: 807b3cfd-fc4e-42e6-a487-ada3d26c3186 X-Archives-Hash: ecd4a33040837c43da5da9da36f06298 commit: b8d6f066aa45d19a9d7d5f57d6283eca52cfaadc Author: William Hubbs gentoo org> AuthorDate: Wed Sep 25 15:28:55 2024 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Sep 25 15:31:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d6f066 dev-util/gitlab-cli: fix BDEPEND gitlab-cli 1.46.0 requires go 1.23. Closes: https://bugs.gentoo.org/940041 Signed-off-by: William Hubbs gentoo.org> dev-util/gitlab-cli/gitlab-cli-1.46.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-util/gitlab-cli/gitlab-cli-1.46.0.ebuild b/dev-util/gitlab-cli/gitlab-cli-1.46.0.ebuild index 4a336d97ac9f..34441e2b6f86 100644 --- a/dev-util/gitlab-cli/gitlab-cli-1.46.0.ebuild +++ b/dev-util/gitlab-cli/gitlab-cli-1.46.0.ebuild @@ -9,16 +9,17 @@ DESCRIPTION="the official gitlab command line interface" HOMEPAGE="https://gitlab.com/gitlab-org/cli" SRC_URI="https://gitlab.com/gitlab-org/cli/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" +S="${WORKDIR}/cli-v${PV}-${GIT_COMMIT}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" +BDEPEND=">=dev-lang/go-1.23.0" + # tests communicate with gitlab.com and require a personal access token RESTRICT="test" -S="${WORKDIR}/cli-v${PV}-${GIT_COMMIT}" - src_compile() { emake \ GLAB_VERSION=v${PV} \