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 54584158041 for ; Thu, 29 Feb 2024 08:49:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23F29E29D5; Thu, 29 Feb 2024 08:49:21 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 00E0FE29D5 for ; Thu, 29 Feb 2024 08:49:20 +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 EB08B343068 for ; Thu, 29 Feb 2024 08:49:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29B7714E7 for ; Thu, 29 Feb 2024 08:49:18 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1709196517.b9649718c4539cda905a286b1ec7c7cfd79b6c5b.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/hare/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/hare/hare-9999.ebuild X-VCS-Directories: dev-lang/hare/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: b9649718c4539cda905a286b1ec7c7cfd79b6c5b X-VCS-Branch: dev Date: Thu, 29 Feb 2024 08:49:18 +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: 22499c02-8661-4856-94ad-0338d5d7977b X-Archives-Hash: b71f70d0f7c1b2f30baddea59f8a7ffb commit: b9649718c4539cda905a286b1ec7c7cfd79b6c5b Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Thu Feb 29 08:47:45 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Thu Feb 29 08:48:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b9649718 dev-lang/hare: synchronise live ebuild with 0.24.0 Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> dev-lang/hare/hare-9999.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-lang/hare/hare-9999.ebuild b/dev-lang/hare/hare-9999.ebuild index 0812095c10..cbb5e57d29 100644 --- a/dev-lang/hare/hare-9999.ebuild +++ b/dev-lang/hare/hare-9999.ebuild @@ -8,9 +8,9 @@ if [[ "${PV}" = 9999 ]]; then EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare" SLOT="0" else - EGIT_COMMIT="29fbde4fe95db7da3ee54882f3a29a10aea53b8d" - MY_P="${PN}-${EGIT_COMMIT}" - SRC_URI="https://git.sr.ht/~sircmpwn/hare/archive/${EGIT_COMMIT}.tar.gz -> ${MY_P}.tar.gz" + MY_PV="$(ver_rs 3 -)" + MY_P="${PN}-${MY_PV}" + SRC_URI="https://git.sr.ht/~sircmpwn/hare/archive/${MY_PV}.tar.gz -> ${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" SLOT="0/${PV}" KEYWORDS="~amd64 ~arm64 ~riscv" @@ -20,9 +20,10 @@ DESCRIPTION="The Hare systems programming language" HOMEPAGE="https://harelang.org/" LICENSE="MPL-2.0 GPL-3" +# release policy: https://git.sr.ht/~sircmpwn/hare/tree/master/item/docs/release.md DEPEND=" - ~dev-lang/harec-9999 - ~sys-devel/qbe-9999 + >=dev-lang/harec-9999 + >=sys-devel/qbe-1.2 " BDEPEND="app-text/scdoc" RDEPEND="${DEPEND}" @@ -46,6 +47,7 @@ src_configure() { -e "s;^PREFIX =.*;PREFIX = ${EPREFIX}/usr;" \ -e 's;^AS =;AS ?=;' \ -e 's;^LD =;LD ?=;' \ + -e 's;^AR =;AR ?=;' \ config.mk || die }