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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B4E5158042 for ; Sat, 16 Nov 2024 04:01:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0840E08E2; Sat, 16 Nov 2024 04:01:00 +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 98E61E08E2 for ; Sat, 16 Nov 2024 04:01:00 +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 5B9CD33BEA5 for ; Sat, 16 Nov 2024 04:00:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF53018C4 for ; Sat, 16 Nov 2024 04:00:57 +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: <1731729577.ac9bbaf8f511534680a2b1e1932743f70f588c00.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-hare/hare-json/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-hare/hare-json/Manifest dev-hare/hare-json/hare-json-0.24.2.ebuild X-VCS-Directories: dev-hare/hare-json/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: ac9bbaf8f511534680a2b1e1932743f70f588c00 X-VCS-Branch: dev Date: Sat, 16 Nov 2024 04:00:57 +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: 95b6c6a4-803d-4f34-9efd-f7f4051ac7f1 X-Archives-Hash: a77d3f17e853c0b70e81251a9e82b03d commit: ac9bbaf8f511534680a2b1e1932743f70f588c00 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sat Nov 16 03:58:07 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Sat Nov 16 03:59:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac9bbaf8 dev-hare/hare-json: add 0.24.2 Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> dev-hare/hare-json/Manifest | 1 + dev-hare/hare-json/hare-json-0.24.2.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-hare/hare-json/Manifest b/dev-hare/hare-json/Manifest new file mode 100644 index 000000000..2c6da8b22 --- /dev/null +++ b/dev-hare/hare-json/Manifest @@ -0,0 +1 @@ +DIST hare-json-0.24.2.tar.gz 13906 BLAKE2B 5c82ceaf96ac8f01c14c718203888d354cefa17e7de862f28ddcb675a199fdaf802076abb67ec31ac299090fda3392cc527290bfa1eb7b1f745a5d8a7891b648 SHA512 f30e2f2f5ff5ecb6f2ff32c8dc1974587ac6914f141bc1eabf95ded1470b0b2f85f1ae195c11f05779b77b82b724e8dd0d252ed35e6083dfc2df6bbdb23466f0 diff --git a/dev-hare/hare-json/hare-json-0.24.2.ebuild b/dev-hare/hare-json/hare-json-0.24.2.ebuild new file mode 100644 index 000000000..20906fdc4 --- /dev/null +++ b/dev-hare/hare-json/hare-json-0.24.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="JSON support for Hare" +HOMEPAGE="https://git.sr.ht/~sircmpwn/hare-json" +SRC_URI="https://git.sr.ht/~sircmpwn/hare-json/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="MPL-2.0" +SLOT="0" + +KEYWORDS="~amd64 ~arm64 ~riscv" + +DEPEND=">=dev-lang/hare-0.24.2" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + sed -i 's;^PREFIX=.*;PREFIX=/usr;' Makefile || die +}