x11-terms/rio: drop 0.2.20

Signed-off-by: Jonas Frei <freijon@pm.me>
This commit is contained in:
Jonas Frei
2025-07-23 05:49:47 +02:00
parent 50a95a9910
commit 2846513396
2 changed files with 0 additions and 71 deletions

View File

@@ -1,4 +1,2 @@
DIST rio-0.2.20-crates.tar.xz 51147480 BLAKE2B aaab22858bf39ad3670bed5588887594db73436aed9541cb0cd0be44eeb498467722b5d5db8287219a0ceb198d9ca7451deddb8a70475ebe5f14001a7b9e9d75 SHA512 e0815287f75f8b2e845227181b464d8a3055fb80ff3da9777440a850f26c97b8634e81fd284d54cedd05ebe2ce30e0b40eed7f883f4729cf8f435e52f9504b63
DIST rio-0.2.20.tar.gz 86710007 BLAKE2B ff09fd3dd551c41fc58dcb9f88a0761b9bc7ac2ed320cdd61a200624e0bb1300ae0ce8263f691e8ded4d5774c56a7278bc41a0fecad65026b6eba92e8eb5ee68 SHA512 d4066083af5df346e8d942309d25167eb9229a11abfd9d75af19284be2ef3663995185abfa59b1be43c0663810e1312b2c0dac327d36004f56335704c351a507
DIST rio-0.2.23-crates.tar.xz 51425600 BLAKE2B a4a6a1ffd3541d0526714dcd25a426fd77c76cb5dc73a18595dec08540d84c52dbdb9f559fc45c75fcf4e20f86369bf85727487de422d27c5ccedad373f57ff4 SHA512 60d20ce24d9a418201569cb65336c89d60ef031106ad20c5682643ce904079973e21116157257126dc8b7cb134159d37320881b241db176e53d293c132c8dc5a
DIST rio-0.2.23.tar.gz 86778789 BLAKE2B a70edff1c4c73e9b9d464de533daf8bb12a95a9e7e73fd4a1a7a418f9b206b7d23d38c007584e1d92c48010070355b6c171173784858e1820513c5916c1a1005 SHA512 b5accb42de46caa26109ca5dd118a04c3bf54c05374d313f1129a0d69b008279fa1cf4b39a24b0f2c12b81eaba2c67ee2e2b34302b275e3959c5d0f3a9d211d1

View File

@@ -1,69 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES=""
RUST_MIN_VER="1.87.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"
}