diff --git a/x11-terms/rio/Manifest b/x11-terms/rio/Manifest index a2f0393457..1509597761 100644 --- a/x11-terms/rio/Manifest +++ b/x11-terms/rio/Manifest @@ -1,4 +1,2 @@ -DIST rio-0.2.32-crates.tar.xz 57552720 BLAKE2B 7d1a0f1056faa8adb21c9dfb10df4cbcbb6fc7b394d73222d5398784ee98e160960ba7e21ddde2d716aa3ced84b75a50203592b1fbb9dde7dd0a0d6f92cdad0e SHA512 1b02d96945822e2f406fdc9813feed947cf0f43826259ff315a8a4f4845ed43c5f54a7f81b9fabff10684c7691e2cccc94565a3b1dac3db92d093028713fcf5c -DIST rio-0.2.32.tar.gz 86814331 BLAKE2B 890b8f01eedb1a154b913e23637ac5769b38c3d7ea3a004c9815cb801d330ec3e10a7e834e05ab283a15362d7f5b9de3ad1b69bc6fb72000628f6c0021d9f8de SHA512 38a58721b560b3320467205b8daa6564cdf70c4ae00ba27af3258b0fd3ed27c5916ef9f282390a337a6134876d75454bbab4a80648e470763b7401ebbdc33355 DIST rio-0.2.35-crates.tar.xz 60062664 BLAKE2B 4de2386327a225524e8aa4b9898e94eca832e198d98f51f59441579d1eab3b834a43e1701beadd1a68cbf7ba1215157846db81702107a97b2625a92d4745847d SHA512 5d1e335d9fa4152a6555750ab2208e473168eaf99ffb49807daa9df215df01d354620db42e8840999d3544c1ac7e7954a2eb75cc596050de429b1c694a0e4daa DIST rio-0.2.35.tar.gz 86817332 BLAKE2B 39e5280f9160f5bc30c207c0af16e71cf0b1a989d115c6b0f615887bccebbe265c4140ebd456da67ddae6fb9c212c80113ee906761dc030a541d9e7e25884b95 SHA512 bbfdedaeb57dbd46e25fc1babfd2e63e0b3a157248628a45e3a5c514c7af1448de53356865fe31034512362644d28a98c333e754a68f545af222fd4ded417a17 diff --git a/x11-terms/rio/rio-0.2.32.ebuild b/x11-terms/rio/rio-0.2.32.ebuild deleted file mode 100644 index 7278913dfb..0000000000 --- a/x11-terms/rio/rio-0.2.32.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 2023-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -RUST_MIN_VER="1.90.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" -}