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 DA9C4158094 for ; Fri, 24 Jun 2022 12:42:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20D49E079E; Fri, 24 Jun 2022 12:42:54 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 037EEE079E for ; Fri, 24 Jun 2022 12:42:53 +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 256C2341977 for ; Fri, 24 Jun 2022 12:42:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9837C4FA for ; Fri, 24 Jun 2022 12:42:51 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1656074551.d8f7e2a726862747fa30ccc9c77238bdd2c57f3f.vowstar@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-0_pre20220624.ebuild X-VCS-Directories: dev-lang/hare/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: d8f7e2a726862747fa30ccc9c77238bdd2c57f3f X-VCS-Branch: dev Date: Fri, 24 Jun 2022 12:42:51 +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: 9c2fd617-407c-4d8b-8b7e-8e6f8616dad6 X-Archives-Hash: 45ac62d657dfaded114acc68a05d8fc0 commit: d8f7e2a726862747fa30ccc9c77238bdd2c57f3f Author: Huang Rui gmail com> AuthorDate: Fri Jun 24 12:42:23 2022 +0000 Commit: Rui Huang gmail com> CommitDate: Fri Jun 24 12:42:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8f7e2a7 dev-lang/hare: add fixed version to fix CI Signed-off-by: Huang Rui gmail.com> dev-lang/hare/hare-0_pre20220624.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-lang/hare/hare-0_pre20220624.ebuild b/dev-lang/hare/hare-0_pre20220624.ebuild new file mode 100644 index 000000000..4bd6db253 --- /dev/null +++ b/dev-lang/hare/hare-0_pre20220624.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 + +DESCRIPTION="The Hare systems programming language" +HOMEPAGE="https://harelang.org/" +EGIT_COMMIT="65449ddbbbf39659bfaf84a2cb78510409a4ab7a" +EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare" +LICENSE="MPL-2.0 GPL-3" +SLOT="0" + +DEPEND=" + sys-devel/qbe + dev-lang/harec +" +BDEPEND=" + app-text/scdoc +" +RDEPEND="${DEPEND}" + +src_unpack() { + default + git-r3_src_unpack + mkdir "${WORKDIR}/${P}/build" || die +} + +src_configure() { + cp config.example.mk config.mk || die + sed -i -e 's;^PREFIX=.*;PREFIX=/usr;' config.mk || die +}