From: "Jonas Frei" <freijon@pm.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/rio/
Date: Tue, 06 May 2025 18:01:15 +0000 (UTC) [thread overview]
Message-ID: <1746554405.37966db70c223c978f972433be83a3236fb47840.freijon@gentoo> (raw)
commit: 37966db70c223c978f972433be83a3236fb47840
Author: Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue May 6 17:58:00 2025 +0000
Commit: Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Tue May 6 18:00:05 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37966db7
x11-terms/rio: add 0.2.14
Signed-off-by: Jonas Frei <freijon <AT> pm.me>
x11-terms/rio/Manifest | 2 ++
x11-terms/rio/rio-0.2.14.ebuild | 69 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/x11-terms/rio/Manifest b/x11-terms/rio/Manifest
index d4b1b8f47..22afd246f 100644
--- a/x11-terms/rio/Manifest
+++ b/x11-terms/rio/Manifest
@@ -1,2 +1,4 @@
DIST rio-0.2.12-crates.tar.xz 49830152 BLAKE2B 829a86493ef12099f946554a904f95ef5327506e1c6046a708afb9f9edb5d189e381ea516287f88f67fc19d812f8b2f472b9c094e199da2ee4ba0564cf732cdd SHA512 daf983cc4aa0f376d297785350a472d6b6022163c8ddecc16d103f8715cd62240025cd02b716320048040a83ed44eea8716b712497a3c2dc4b45af2e1d1ac5eb
DIST rio-0.2.12.tar.gz 88596494 BLAKE2B f2c4f1bd125efdd9c9c6e375b0761fa96691f0a000fef632c71350db4e0bd58e486121b0648a0089832e1ec99dfea59822e6f0a265a59798665aa1020034ba92 SHA512 2a73567a591b93707a35e1658572fb48cd8dbeda4cf4418de5887183b0c90c93213b6f15ff47a50b9aaaccd295e185ebcfb594847d7ef8c9e91293740a78c493
+DIST rio-0.2.14-crates.tar.xz 50155884 BLAKE2B 91c3570c0ead0f7d59a6868bef6bea4ff5929c2eba957f3a54bda9486955d3cbdeb75943f30bff8c0cef045fb46e633056a089f41687bdba8ce062accaa24acf SHA512 d618bf670303be8b7cdde33d9139b607dbcb4c2440f40f507fde56db464ca0adac5f2b1b405382eaae030e9af612b2c1ae9ddf878dade61b48b4cd00ccbcd30e
+DIST rio-0.2.14.tar.gz 85511675 BLAKE2B ddae7af84656242c86f38b7e007aaf03b9ad2a226722d6c27e5ab103b9ec21553587aa34b193d51bc6de2ffe629769178abd8648b1c08751930052979238eae9 SHA512 1f6ffa12f14e916ef3f44ca14759245a0d324193357ed058613882b1ba7fd968a19ff6da9b8b01109aa906531fff4506d754cc9c8db30323e33846d509a2788a
diff --git a/x11-terms/rio/rio-0.2.14.ebuild b/x11-terms/rio/rio-0.2.14.ebuild
new file mode 100644
index 000000000..6c902c215
--- /dev/null
+++ b/x11-terms/rio/rio-0.2.14.ebuild
@@ -0,0 +1,69 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=""
+
+RUST_MIN_VER="1.85.0"
+
+inherit cargo desktop
+
+DESCRIPTION="A hardware-accelerated GPU terminal emulator powered by WebGPU"
+HOMEPAGE="https://raphamorim.io/rio/"
+SRC_URI="https://github.com/raphamorim/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+DEPS_URI="https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz"
+SRC_URI+=" ${DEPS_URI}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+ Apache-2.0 BSD-2 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0
+ Unicode-DFS-2016 ZLIB
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+wayland +X"
+REQUIRED_USE="|| ( wayland X )"
+
+DEPEND="
+ media-libs/freetype:2
+ media-libs/fontconfig
+ wayland? ( dev-libs/wayland )
+ wayland? ( x11-libs/libxkbcommon[wayland] )
+ X? ( x11-libs/libxkbcommon[X] )
+ >=sys-libs/ncurses-6.4_p20240330
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ dev-build/cmake
+ virtual/pkgconfig
+"
+
+QA_FLAGS_IGNORED="usr/bin/rio"
+
+DOCS=(
+ "README.md"
+ "docs/docs"
+)
+
+src_prepare() {
+ default
+ sed -i '/^strip =/d' Cargo.toml || die
+}
+
+src_configure() {
+ local myfeatures=(
+ $(usev wayland)
+ $(usev X x11)
+ )
+ cargo_src_configure --verbose --no-default-features
+}
+
+src_install() {
+ dobin "$(cargo_target_dir)/${PN}"
+
+ dodoc -r "${DOCS[@]}"
+ newicon -s scalable "misc/logo.svg" "${PN}.svg"
+ domenu "misc/${PN}.desktop"
+}
next reply other threads:[~2025-05-06 18:01 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-06 18:01 Jonas Frei [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-15 8:04 [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/rio/ Jonas Frei
2025-09-15 8:04 Jonas Frei
2025-08-20 18:19 Jonas Frei
2025-08-20 18:19 Jonas Frei
2025-08-08 3:37 Jonas Frei
2025-08-08 3:37 Jonas Frei
2025-08-04 5:15 Jonas Frei
2025-08-04 5:15 Jonas Frei
2025-07-23 18:25 Jonas Frei
2025-07-23 18:25 Jonas Frei
2025-06-21 5:09 Jonas Frei
2025-06-21 5:09 Jonas Frei
2025-05-13 18:37 Jonas Frei
2025-05-13 18:37 Jonas Frei
2025-05-06 18:01 Jonas Frei
2025-04-17 12:30 Jonas Frei
2025-04-17 12:30 Jonas Frei
2025-03-01 8:04 Jonas Frei
2025-03-01 8:04 Jonas Frei
2025-02-11 18:57 Jonas Frei
2025-02-11 18:57 Jonas Frei
2025-01-30 17:58 Jonas Frei
2025-01-30 17:58 Jonas Frei
2025-01-14 19:56 Jonas Frei
2025-01-14 19:56 Jonas Frei
2024-11-25 5:20 Jonas Frei
2024-11-25 5:20 Jonas Frei
2024-11-23 6:35 Jonas Frei
2024-11-23 6:35 Jonas Frei
2024-11-15 4:55 Jonas Frei
2024-11-15 4:55 Jonas Frei
2024-11-04 5:03 Jonas Frei
2024-08-13 17:36 Jonas Frei
2024-08-10 5:19 Jonas Frei
2024-08-06 6:21 Jonas Frei
2024-04-28 18:52 Jonas Frei
2024-03-24 7:47 Jonas Frei
2024-03-24 7:47 Jonas Frei
2024-03-05 19:31 Jonas Frei
2024-02-04 14:33 Piotr Kubaj
2024-01-08 16:33 Jonas Frei
2024-01-08 16:33 Jonas Frei
2023-12-19 4:38 Jonas Frei
2023-12-19 4:38 Jonas Frei
2023-12-12 19:32 Jonas Frei
2023-12-12 19:32 Jonas Frei
2023-12-10 12:43 Jonas Frei
2023-12-02 12:01 Jonas Frei
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1746554405.37966db70c223c978f972433be83a3236fb47840.freijon@gentoo \
--to=freijon@pm.me \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox