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 450061584AD for ; Sat, 12 Apr 2025 10:00:17 +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 2A79D34393B for ; Sat, 12 Apr 2025 10:00:17 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8FE271104C9; Sat, 12 Apr 2025 09:59:46 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 7C36E1104C8 for ; Sat, 12 Apr 2025 09:59:46 +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 383C4343A0B for ; Sat, 12 Apr 2025 09:59:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4897288A for ; Sat, 12 Apr 2025 09:59:42 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1744381962.dd35344974482f9abbe0d8557366779198604db7.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-shells/direnv/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-shells/direnv/direnv-2.36.0.ebuild app-shells/direnv/direnv-9999.ebuild X-VCS-Directories: app-shells/direnv/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: dd35344974482f9abbe0d8557366779198604db7 X-VCS-Branch: master Date: Sat, 12 Apr 2025 09:59:42 +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: 3087f1eb-9169-468d-af15-e5d47103f7b0 X-Archives-Hash: 43b9bdaec793fe9ec8508a5dda95224a commit: dd35344974482f9abbe0d8557366779198604db7 Author: demize unstable systems> AuthorDate: Fri Apr 11 14:29:35 2025 +0000 Commit: David Roman gmail com> CommitDate: Fri Apr 11 14:32:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd353449 app-shells/direnv: BDEPEND on >=dev-lang/go-1.24 As of this release, upstream has increased their minimum Go version to 1.24. Bump the BDEPEND in both the latest version and the live ebuild. Signed-off-by: demize unstable.systems> app-shells/direnv/direnv-2.36.0.ebuild | 3 +++ app-shells/direnv/direnv-9999.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/app-shells/direnv/direnv-2.36.0.ebuild b/app-shells/direnv/direnv-2.36.0.ebuild index a9d525bce..7fc1a9f08 100644 --- a/app-shells/direnv/direnv-2.36.0.ebuild +++ b/app-shells/direnv/direnv-2.36.0.ebuild @@ -18,6 +18,9 @@ KEYWORDS="~amd64 ~x86" # test dependencies are unreasonable, and tests fail without patches RESTRICT="test" +# Upstream requires Go >=1.24 +BDEPEND+=">=dev-lang/go-1.24:=" + DOCS=( {CHANGELOG,README}.md ) src_install() { diff --git a/app-shells/direnv/direnv-9999.ebuild b/app-shells/direnv/direnv-9999.ebuild index 80c940e65..a0cd5c73e 100644 --- a/app-shells/direnv/direnv-9999.ebuild +++ b/app-shells/direnv/direnv-9999.ebuild @@ -14,6 +14,9 @@ LICENSE="MIT" SLOT="0" RESTRICT="test" # fails +# Upstream requires Go >=1.24 +BDEPEND+=">=dev-lang/go-1.24:=" + DOCS=( {CHANGELOG,README}.md ) src_install() {