From 1887a724d380d53aa0d935f3ec0a8092e22704e0 Mon Sep 17 00:00:00 2001 From: Jonas Frei Date: Wed, 20 Aug 2025 20:17:02 +0200 Subject: [PATCH] gui-apps/xwayland-satellite: add 0.7 Signed-off-by: Jonas Frei --- gui-apps/xwayland-satellite/Manifest | 2 + .../xwayland-satellite-0.7.ebuild | 50 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 gui-apps/xwayland-satellite/xwayland-satellite-0.7.ebuild diff --git a/gui-apps/xwayland-satellite/Manifest b/gui-apps/xwayland-satellite/Manifest index ee9bada149..242b359714 100644 --- a/gui-apps/xwayland-satellite/Manifest +++ b/gui-apps/xwayland-satellite/Manifest @@ -2,3 +2,5 @@ DIST xwayland-satellite-0.5.1-crates.tar.xz 7446720 BLAKE2B 25c3a0e8da2c43bd1bb1 DIST xwayland-satellite-0.5.1.tar.gz 83352 BLAKE2B 1a5239b30edf5d66761c8a5654180c53a3761a385815116765419f9b4c2c28481fd0d4ec58405603434dac270a88fbd782a6359e930587acc77f5ba1abd6b5f3 SHA512 31369add44d81607987a713968b80e8c237bbd545e734d1b856fe74a847623a714259c7229997bbf7a71147a3ca6a145f80ff17d7e551a33b5afe9cc4d422fb3 DIST xwayland-satellite-0.6-crates.tar.xz 9819300 BLAKE2B f657575600e338a46d0660ad530e5d9b522f37c17ad31fd9348102e6db702aff95c1cab29ed87be4a2e3142dd1c025d184b19e67f4c023ff2749ceabbdca415f SHA512 7518cf7da1f5b699952981481ae13e1a4bb7789029bbff1fca7231227215b334e9133c1cffc7a7265beef20acd83118fd0ab4e2ffe0de0b9171b239aeca1206f DIST xwayland-satellite-0.6.tar.gz 105353 BLAKE2B 905471a512c49e0c07154d5ccaecf5f37f4e282e2bbfbb3bbde79f198151ac9c7fdb888b8b8a502a8c9bc49cbebba465a5f9e12b97af054b0d0aef30d3a44885 SHA512 8b03cc50b883fa9417f92430be72abdc57bd9ed3b973e51fe8b0ad01485470c69f8284dda325447ae670624ef32f1167aff5b5c57681990d0e55c6178ac226c6 +DIST xwayland-satellite-0.7-crates.tar.xz 10226276 BLAKE2B 3173b2d041253fc6b992183e5611aaa9c3b648a3345a755587aeaeb40114fc135206015b3b9d4c61afd6fa8f78850aafb68c18b9a936e9a067853ebc3d3cd61c SHA512 3c02cace264d865bfb7c296c17714702ea01e237f04954b3a333369d7fd60360da1e48fc731c0d72d8ad0b4f941889669a2502f3e7c3a657ccf292b233ad0ffd +DIST xwayland-satellite-0.7.tar.gz 113177 BLAKE2B 5baedd8b0be628bb9f7ed9c58c3c8b1ca67ff418d42723075aeb9352a542327d62b20e42dd031b6183d9c9c6c0d3819e3633dda889c94d7772c5d039b720d56f SHA512 7f090573faf9f6675981bbc5474e2761ef1c1b758aa9182cd46301cf88be689b631d21156ac6508a2f90edb866fc65022d4019b4cf6121f189cdadaf70a524ab diff --git a/gui-apps/xwayland-satellite/xwayland-satellite-0.7.ebuild b/gui-apps/xwayland-satellite/xwayland-satellite-0.7.ebuild new file mode 100644 index 0000000000..c23679f108 --- /dev/null +++ b/gui-apps/xwayland-satellite/xwayland-satellite-0.7.ebuild @@ -0,0 +1,50 @@ +# Copyright 2024-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES="" + +LLVM_COMPAT=( {17..20} ) +RUST_NEEDS_LLVM=1 + +inherit llvm-r1 cargo + +DESCRIPTION="Xwayland outside your Wayland" +HOMEPAGE="https://github.com/Supreeeme/xwayland-satellite" +SRC_URI="https://github.com/Supreeeme/${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="MPL-2.0" +# Dependent crate licenses +LICENSE+=" Apache-2.0 BSD ISC MIT Unicode-DFS-2016 ZLIB" +SLOT="0" +KEYWORDS="~amd64" + +# disable tests which need a running display server +RESTRICT="test" + +DEPEND=" + >=x11-base/xwayland-23.1 + x11-libs/libxcb + x11-libs/xcb-util-cursor +" +RDEPEND="${DEPEND}" +BDEPEND=" + $(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}=') +" + +QA_FLAGS_IGNORED="usr/bin/${PN}" + +DOCS=( README.md ) + +pkg_setup() { + llvm-r1_pkg_setup + rust_pkg_setup +} + +src_install() { + cargo_src_install + einstalldocs +}