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 B79E7158043 for ; Sat, 20 Apr 2024 07:04:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83E10E2A0F; Sat, 20 Apr 2024 07:04:25 +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 285D5E2A0F for ; Sat, 20 Apr 2024 07:04:25 +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 337DD3433C1 for ; Sat, 20 Apr 2024 07:04:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 747371743 for ; Sat, 20 Apr 2024 07:04:22 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1713596622.bef7e2e81feac111a926eec4f2697a3e0901ae7a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/hyx/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/hyx/Manifest app-editors/hyx/hyx-2024.02.29.ebuild X-VCS-Directories: app-editors/hyx/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: bef7e2e81feac111a926eec4f2697a3e0901ae7a X-VCS-Branch: master Date: Sat, 20 Apr 2024 07:04:22 +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: 94ace413-d0fa-415b-8f98-5f20b0e5c352 X-Archives-Hash: 1f37d7ea4645ed57474941a407bd730c commit: bef7e2e81feac111a926eec4f2697a3e0901ae7a Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Fri Mar 1 17:41:38 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Apr 20 07:03:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef7e2e8 app-editors/hyx: add 2024.02.29 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/35590 Signed-off-by: Joonas Niilola gentoo.org> app-editors/hyx/Manifest | 1 + app-editors/hyx/hyx-2024.02.29.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/app-editors/hyx/Manifest b/app-editors/hyx/Manifest index 8505c8b69dda..f504800319e1 100644 --- a/app-editors/hyx/Manifest +++ b/app-editors/hyx/Manifest @@ -1 +1,2 @@ DIST hyx-2021.06.09.tar.xz 13864 BLAKE2B 2c97364e1ae185e7dd63fdfb452637cb68b8ab0d76d0009ce515d6f0fe709d38b910f86dfa465ac6843c88feb997dfdc3c736e21bb0b4265a39440c054f75251 SHA512 43f990e29ce097f8e2378a4511a3097e2576fd72e16f3b5c81688702487c8715e7189cb4a368e344c5440a90a1c759d2f76e7831ab401fa814f7e5ff7e145bd8 +DIST hyx-2024.02.29.tar.xz 13964 BLAKE2B 8333f6fa1a2be76152d9753fd0c759bd82679cb09d936df5e4a6caba87c5ff81c141a5d47f79047601bbd85a1efd0f371a111db14a019c7fc6da4ed095a312a5 SHA512 b5c17b045d1c97106212745b1bb4c4052cfe7ac5a28ec0a2240764785410d7e68292d0ff976fbdc58172cd9433ce49b1cad89b767e09d5d6207088a6a60b4e85 diff --git a/app-editors/hyx/hyx-2024.02.29.ebuild b/app-editors/hyx/hyx-2024.02.29.ebuild new file mode 100644 index 000000000000..7bc61a413080 --- /dev/null +++ b/app-editors/hyx/hyx-2024.02.29.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="A minimalistic console hex editor with vim-like controls" +HOMEPAGE="https://yx7.cc/code/" +SRC_URI="https://yx7.cc/code/hyx/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_compile() { + CC=$(tc-getCC) emake +} + +src_install() { + dobin hyx +}