public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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: Fri, 08 Aug 2025 03:37:59 +0000 (UTC)	[thread overview]
Message-ID: <1754624267.d5949c512ce4959e3a6959485e3023f10ed5431b.freijon@gentoo> (raw)

commit:     d5949c512ce4959e3a6959485e3023f10ed5431b
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Fri Aug  8 03:36:10 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Fri Aug  8 03:37:47 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d5949c51

x11-terms/rio: add 0.2.27

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 x11-terms/rio/Manifest          |  2 ++
 x11-terms/rio/rio-0.2.27.ebuild | 67 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)

diff --git a/x11-terms/rio/Manifest b/x11-terms/rio/Manifest
index 7432786371..056e41e7e0 100644
--- a/x11-terms/rio/Manifest
+++ b/x11-terms/rio/Manifest
@@ -1,2 +1,4 @@
 DIST rio-0.2.25-crates.tar.xz 51362044 BLAKE2B b7527a819e826d53758a116b24c5cee61127eeb67599e55fc242e08e7d7bdc455776f4f3ccbda0ad058300261493b8cf1f2a1344c3985b063163c6efb007782a SHA512 c5a4d1a5edc4ad527c7a62672f0b80d543ab838676158821e110f73a7f1d61c1449d1bace7f6a95f6b4c7d7eac3b999f2b8d8c8401e87da2f9702e404d2b2328
 DIST rio-0.2.25.tar.gz 86795026 BLAKE2B b70dd34736768f27180d5b2c72fd02d24cea81a04ade035af3ac4ed69b341e973e5d91e0005443f039ee34dc5ce7f0cd7d673137b580dd1c2eeb9f4427956416 SHA512 f13cfefe64a845d9ac0a0d9cd4caa517e881563febc001e49c69f3eda06776a84c0e82b185f35eabd0d49f6d9610391f8785abf20334e738146d4a91b746cf50
+DIST rio-0.2.27-crates.tar.xz 51290832 BLAKE2B 6e13984c02dbad497184aeaf9d0f4c6cd7dd2f35764af8511c6e18affcbd27cd856901dcac98b8aaddada1459a730e12ea7bbd1525deef9919fb468eb65172b5 SHA512 e2dc6cf97440f22f108d5cd5449b6dfca42023e8a12747e214b418f349ece3fda0aaa0fe15693dfc617ab4150b683c1437ecb73acb38af9eddfd7d499dd8b674
+DIST rio-0.2.27.tar.gz 86807192 BLAKE2B 77752ed8cca7e9c8629495f4224431719b22fe412b30a537a6d209be7c9322145a66c522821d05f54af0b53b1310c0dec9023993e1904e79004b1d89fbaac13e SHA512 c04f932ed78abb037711e6104b4d936f70b8aa65e69594fd86066b23a47545bad299a671c27e8fb04c16bbeac92122f55ea28c21003d2e73e4ad72aae8a2bfad

diff --git a/x11-terms/rio/rio-0.2.27.ebuild b/x11-terms/rio/rio-0.2.27.ebuild
new file mode 100644
index 0000000000..b7fb749ec1
--- /dev/null
+++ b/x11-terms/rio/rio-0.2.27.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+RUST_MIN_VER="1.88.0"
+
+inherit cargo desktop xdg
+
+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"
+}


             reply	other threads:[~2025-08-08  3:38 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-08  3:37 Jonas Frei [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-17  4:33 [gentoo-commits] repo/proj/guru:dev commit in: x11-terms/rio/ Jonas Frei
2025-10-17  4:33 Jonas Frei
2025-10-16 15:52 Jonas Frei
2025-10-16 15:52 Jonas Frei
2025-09-15  8:04 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-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-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=1754624267.d5949c512ce4959e3a6959485e3023f10ed5431b.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