From unknown Sat Aug 16 18:38:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#76672] [PATCH] gnu: Add xwayland-run. Resent-From: Hilton Chain Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 02 Mar 2025 03:50:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 76672 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 76672@debbugs.gnu.org Cc: Hilton Chain X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.174088739429258 (code B ref -1); Sun, 02 Mar 2025 03:50:02 +0000 Received: (at submit) by debbugs.gnu.org; 2 Mar 2025 03:49:54 +0000 Received: from localhost ([127.0.0.1]:49306 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1toaKw-0007bn-62 for submit@debbugs.gnu.org; Sat, 01 Mar 2025 22:49:54 -0500 Received: from lists.gnu.org ([2001:470:142::17]:49380) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1toaKt-0007af-TT for submit@debbugs.gnu.org; Sat, 01 Mar 2025 22:49:52 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1toaKo-0007E4-D6 for guix-patches@gnu.org; Sat, 01 Mar 2025 22:49:46 -0500 Received: from mx.boiledscript.com ([88.99.243.112]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1toaKm-0000A4-Gn for guix-patches@gnu.org; Sat, 01 Mar 2025 22:49:46 -0500 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=mail; t=1740887382; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=whEp/3WsyhxLJIh90Rfg6zadJo3k+MoNsqexEuLofvc=; b=JzDvxrZUY7eBjJlV5ozIhL2x6pYFx8I8O7AfY0RNyqMnLc7hfl2rGEsagXj1OywOGpSeIS ChHOnN/RhRan3//OLlOIASvJ8jX/zZBj6eQKN8S6lhHjme50NFTyvYVdqIxYva+zRhPnwR OU2b7lTUEm8UfrMuVOPUWXRkCoC4h9q0tZWxFWp9D+Qfr9gDSL8C0Ibsk5JFuM5QyUVzJ2 gyJ5hHQBjEnffTuzDnKPFDavX/8+VhSjvRTfGpndMihHcaEmaJ3VVJpa2wl7SnBDIwpBFy Pd2RHmdN7rlTSO0H5kTJr1E+9j9ICBry11mkXd701FFaw65gV4y7Za+zuaY1jA== Date: Sun, 2 Mar 2025 11:49:19 +0800 Message-ID: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=88.99.243.112; envelope-from=hako@ultrarare.space; helo=mx.boiledscript.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/xorg.scm (xwayland-run): New variable. Change-Id: I447913a9ef4fca8ec8cad128b15eeb61041ca734 --- gnu/packages/xorg.scm | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 698f3d4c91..780d2811b2 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6841,6 +6841,61 @@ (define-public xvfb-run (license (list license:x11 ; the script license:gpl2+)))) ; the man page +(define-public xwayland-run + (package + (name "xwayland-run") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.freedesktop.org/ofourdan/xwayland-run.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nhrdjk1zbxfxkqwsz992g6xg04gankprzks543931fysclgdzql")))) + (build-system meson-build-system) + (arguments + (list + #:imported-modules + (append %meson-build-system-modules + %python-build-system-modules) + #:modules + '((guix build utils) + (guix build meson-build-system) + ((guix build python-build-system) #:prefix python:)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'enable-bytecode-determinism + (assoc-ref python:%standard-phases 'enable-bytecode-determinism)) + (add-after 'install 'add-install-to-pythonpath + (assoc-ref python:%standard-phases 'add-install-to-pythonpath)) + (add-after 'add-install-to-pythonpath 'add-install-to-path + (assoc-ref python:%standard-phases 'add-install-to-path)) + (add-after 'add-install-to-path 'wrap + (assoc-ref python:%standard-phases 'wrap)) + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/wlheadless/xwayland.py" + (("'(xauth|Xwayland)'" _ command) + (format #f "'~a'" (search-input-file + inputs (in-vicinity "bin" command)))))))))) + (inputs (list python xauth xorg-server-xwayland)) + (home-page "https://gitlab.freedesktop.org/ofourdan/xwayland-run") + (synopsis "Run X11 client on dedicated Xwayland server") + (description + "@code{xwayland-run} contains a set of small utilities revolving around +running @command{Xwayland} and various Wayland compositor headless, namely: +@itemize +@item @command{xwayland-run}: Spawn X11 client within its own dedicated +@command{Xwayland} rootful instance. +@item @command{wlheadless-run}: Run Wayland client on a set of supported +Wayland headless compositors. +@item @command{xwfb-run}: Combination of above two tools to be used as a +direct replacement for @command{xvfb-run} specifically. +@end itemize") + (license license:gpl2+))) + (define-public setroot (package (name "setroot") base-commit: f9dcb84550b85aa816899b2106b1a5ae546167a3 -- 2.48.1 From unknown Sat Aug 16 18:38:54 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Hilton Chain Subject: bug#76672: closed (Re: bug#76672: Acknowledgement ([PATCH] gnu: Add xwayland-run.)) Message-ID: References: <87msczvngi.wl-hako@ultrarare.space> X-Gnu-PR-Message: they-closed 76672 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 76672@debbugs.gnu.org Date: Tue, 01 Apr 2025 16:48:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1743526082-2262-1" This is a multi-part message in MIME format... ------------=_1743526082-2262-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #76672: [PATCH] gnu: Add xwayland-run. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 76672@debbugs.gnu.org. --=20 76672: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D76672 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1743526082-2262-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 76672-done) by debbugs.gnu.org; 1 Apr 2025 16:47:19 +0000 Received: from localhost ([127.0.0.1]:50711 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tzeli-0000VG-Al for submit@debbugs.gnu.org; Tue, 01 Apr 2025 12:47:18 -0400 Received: from mx.boiledscript.com ([88.99.243.112]:50426) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tzelg-0000Uk-8U for 76672-done@debbugs.gnu.org; Tue, 01 Apr 2025 12:47:16 -0400 Date: Wed, 02 Apr 2025 00:46:53 +0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=mail; t=1743526034; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=/6Nfoz7zZRqmiTKc9/VdpXHVIGReMS6EZJejTIZc0qU=; b=GlNZSg1qNDtM3uyLGc9b4suh9FSK62qE4u2i67C8fUC4mVPiwQ7F5bDv5ZjWffPJ2wlRNZ Zh1+U6VYrEjWBRvdOmpU7s94sZcvaJ6Ht2sD2aBOn/SaAxjp9PoxSmrmf9NGRbxfqahzim uozJizKsJR5joR3RBeNW8iv6gSclHcduytnLcYhnQ0c+ggLKC4WSi3rGolPPr/vkfTXbXE u5Ejw8FLSG0HI7lg/lj3dhXXpdZXiQ9ijaKNaD5+jcZfMFoPgnB/xxZL2JSCgfew7WF+oN qcG7hx6OI8lVdMb9wVXf/e/rrGji8cduVRjULWDmvQ41VnEMvnXwiOUY++bBcA== Message-ID: <87msczvngi.wl-hako@ultrarare.space> From: Hilton Chain To: 76672-done@debbugs.gnu.org Subject: Re: bug#76672: Acknowledgement ([PATCH] gnu: Add xwayland-run.) In-Reply-To: References: MIME-Version: 1.0 X-MS-Reactions: disallow Content-Type: text/plain; charset=US-ASCII X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76672-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Applied as ee1a40745ccde94cf18d90a80566ca65b0ea0408, closing. ------------=_1743526082-2262-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 2 Mar 2025 03:49:54 +0000 Received: from localhost ([127.0.0.1]:49306 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1toaKw-0007bn-62 for submit@debbugs.gnu.org; Sat, 01 Mar 2025 22:49:54 -0500 Received: from lists.gnu.org ([2001:470:142::17]:49380) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1toaKt-0007af-TT for submit@debbugs.gnu.org; Sat, 01 Mar 2025 22:49:52 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1toaKo-0007E4-D6 for guix-patches@gnu.org; Sat, 01 Mar 2025 22:49:46 -0500 Received: from mx.boiledscript.com ([88.99.243.112]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1toaKm-0000A4-Gn for guix-patches@gnu.org; Sat, 01 Mar 2025 22:49:46 -0500 From: Hilton Chain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ultrarare.space; s=mail; t=1740887382; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=whEp/3WsyhxLJIh90Rfg6zadJo3k+MoNsqexEuLofvc=; b=JzDvxrZUY7eBjJlV5ozIhL2x6pYFx8I8O7AfY0RNyqMnLc7hfl2rGEsagXj1OywOGpSeIS ChHOnN/RhRan3//OLlOIASvJ8jX/zZBj6eQKN8S6lhHjme50NFTyvYVdqIxYva+zRhPnwR OU2b7lTUEm8UfrMuVOPUWXRkCoC4h9q0tZWxFWp9D+Qfr9gDSL8C0Ibsk5JFuM5QyUVzJ2 gyJ5hHQBjEnffTuzDnKPFDavX/8+VhSjvRTfGpndMihHcaEmaJ3VVJpa2wl7SnBDIwpBFy Pd2RHmdN7rlTSO0H5kTJr1E+9j9ICBry11mkXd701FFaw65gV4y7Za+zuaY1jA== To: guix-patches@gnu.org Subject: [PATCH] gnu: Add xwayland-run. Date: Sun, 2 Mar 2025 11:49:19 +0800 Message-ID: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=88.99.243.112; envelope-from=hako@ultrarare.space; helo=mx.boiledscript.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit Cc: Hilton Chain X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/xorg.scm (xwayland-run): New variable. Change-Id: I447913a9ef4fca8ec8cad128b15eeb61041ca734 --- gnu/packages/xorg.scm | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 698f3d4c91..780d2811b2 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6841,6 +6841,61 @@ (define-public xvfb-run (license (list license:x11 ; the script license:gpl2+)))) ; the man page +(define-public xwayland-run + (package + (name "xwayland-run") + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.freedesktop.org/ofourdan/xwayland-run.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1nhrdjk1zbxfxkqwsz992g6xg04gankprzks543931fysclgdzql")))) + (build-system meson-build-system) + (arguments + (list + #:imported-modules + (append %meson-build-system-modules + %python-build-system-modules) + #:modules + '((guix build utils) + (guix build meson-build-system) + ((guix build python-build-system) #:prefix python:)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'enable-bytecode-determinism + (assoc-ref python:%standard-phases 'enable-bytecode-determinism)) + (add-after 'install 'add-install-to-pythonpath + (assoc-ref python:%standard-phases 'add-install-to-pythonpath)) + (add-after 'add-install-to-pythonpath 'add-install-to-path + (assoc-ref python:%standard-phases 'add-install-to-path)) + (add-after 'add-install-to-path 'wrap + (assoc-ref python:%standard-phases 'wrap)) + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/wlheadless/xwayland.py" + (("'(xauth|Xwayland)'" _ command) + (format #f "'~a'" (search-input-file + inputs (in-vicinity "bin" command)))))))))) + (inputs (list python xauth xorg-server-xwayland)) + (home-page "https://gitlab.freedesktop.org/ofourdan/xwayland-run") + (synopsis "Run X11 client on dedicated Xwayland server") + (description + "@code{xwayland-run} contains a set of small utilities revolving around +running @command{Xwayland} and various Wayland compositor headless, namely: +@itemize +@item @command{xwayland-run}: Spawn X11 client within its own dedicated +@command{Xwayland} rootful instance. +@item @command{wlheadless-run}: Run Wayland client on a set of supported +Wayland headless compositors. +@item @command{xwfb-run}: Combination of above two tools to be used as a +direct replacement for @command{xvfb-run} specifically. +@end itemize") + (license license:gpl2+))) + (define-public setroot (package (name "setroot") base-commit: f9dcb84550b85aa816899b2106b1a5ae546167a3 -- 2.48.1 ------------=_1743526082-2262-1--