From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-remote-desktop/
Date: Thu, 12 Jun 2025 22:07:30 +0000 (UTC) [thread overview]
Message-ID: <1749765964.413e3f883fbf858dc549389851237e5c4f01c27d.sam@gentoo> (raw)
commit: 413e3f883fbf858dc549389851237e5c4f01c27d
Author: Lukas Schmelting <lschmelting <AT> posteo <DOT> com>
AuthorDate: Tue Jun 10 18:56:11 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 12 22:06:04 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413e3f88
net-misc/gnome-remote-desktop: Version bump to 47.3
Signed-off-by: Lukas Schmelting <lschmelting <AT> posteo.com>
Part-of: https://github.com/gentoo/gentoo/pull/42537
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/gnome-remote-desktop/Manifest | 1 +
.../gnome-remote-desktop-47.3.ebuild | 76 ++++++++++++++++++++++
2 files changed, 77 insertions(+)
diff --git a/net-misc/gnome-remote-desktop/Manifest b/net-misc/gnome-remote-desktop/Manifest
index 7fb119b992c4..bb5b0f070a7a 100644
--- a/net-misc/gnome-remote-desktop/Manifest
+++ b/net-misc/gnome-remote-desktop/Manifest
@@ -1,2 +1,3 @@
DIST gnome-remote-desktop-46.3.tar.xz 273304 BLAKE2B dd959c0fabf183afd0be39da84f344589d5f5a6defaa298141bba4aeb3a39b253c962095efe35e425c106ae7126ddf2b3c8bba79b43054e26d0e0ff61c8e5ce5 SHA512 4e12ef3156eae8a1770646dd10235f0950ca34bd60bd8358958fe98696c2eb3af9ed9a2ad37239de9b4f25e0991bb7248a1d0f89e4b67c34430d5980064d4319
DIST gnome-remote-desktop-47.1.tar.xz 283864 BLAKE2B 17c70fe8b5642d9abb77e1fee12328ea9c2f1ada146f39b374432441de44c37f190dfaf2d420403d676478b466e89fa43b47d25ad080e1f7d69e4afa8c0dd01d SHA512 072d4064d23976eaf76a3293c313a6e121a33ab5ab5aa9557e6065579b72cfeae3e070db705c9d1d07dbb9fd5633ab5014aa1d4f022bc0b9a15ee2120589b75c
+DIST gnome-remote-desktop-47.3.tar.xz 287080 BLAKE2B 8bcaf7fa28a2c2ba8082d7c8515fad90db7a339458854da0c0c7ff605f10d0c6f8e1eb0caad6732aff4d2caa9c59fd2dae03dad5481198b92a10c95012ca0f62 SHA512 6a2da7fd3c09d47594eee53146fcc9c467844ce4d0282b4fb88f265016e3fd11f7ee5629cc70164427c024ad91b07021d5a5b9f771e983accc6019c17a0c5f7f
diff --git a/net-misc/gnome-remote-desktop/gnome-remote-desktop-47.3.ebuild b/net-misc/gnome-remote-desktop/gnome-remote-desktop-47.3.ebuild
new file mode 100644
index 000000000000..6805eaaccd46
--- /dev/null
+++ b/net-misc/gnome-remote-desktop/gnome-remote-desktop-47.3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org gnome2-utils meson systemd tmpfiles xdg
+
+DESCRIPTION="Remote desktop server which allows you to connect to your machine remotely"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-remote-desktop"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="doc +rdp systemd +vnc"
+REQUIRED_USE="|| ( rdp vnc )"
+RESTRICT="test" # Tests run xvfb-run directly
+
+DEPEND="
+ x11-libs/cairo
+ x11-libs/libdrm
+ >=media-libs/libepoxy-1.4
+ >=dev-libs/glib-2.75:2
+ >=dev-libs/libei-1.2.0
+ x11-libs/libnotify
+ app-crypt/libsecret
+ >=media-video/pipewire-0.3.49:=
+ app-crypt/tpm2-tss:=
+ rdp? (
+ >=media-libs/nv-codec-headers-11.1.5.0
+ >=net-misc/freerdp-3.1.0:=[server]
+ >=sys-fs/fuse-3.9.1:3=
+ >=sys-auth/polkit-122
+ >=x11-libs/libxkbcommon-1.0.0
+ media-libs/fdk-aac:=
+ )
+ vnc? (
+ net-libs/libvncserver
+ )
+"
+RDEPEND="${DEPEND}
+ acct-user/gnome-remote-desktop
+ acct-group/gnome-remote-desktop
+ x11-wm/mutter[screencast]
+"
+BDEPEND="
+ dev-libs/glib
+ dev-util/gdbus-codegen
+ dev-util/glib-utils
+ virtual/pkgconfig
+ doc? (
+ app-text/asciidoc
+ )
+"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_use doc man)
+ $(meson_use rdp)
+ $(meson_use vnc)
+ $(meson_use systemd)
+ -Dsystemd_user_unit_dir="$(systemd_get_userunitdir)"
+ -Dtests=false # Tests run xvfb-run directly
+ )
+ meson_src_configure
+}
+
+pkg_postinst() {
+ tmpfiles_process "${PN}-tmpfiles.conf"
+ xdg_pkg_postinst
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ xdg_pkg_postrm
+ gnome2_schemas_update
+}
next reply other threads:[~2025-06-12 22:08 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-12 22:07 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-28 11:02 [gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-remote-desktop/ Pacho Ramos
2025-08-04 8:56 Pacho Ramos
2025-08-04 8:56 Pacho Ramos
2025-06-25 20:46 Arthur Zamarin
2025-06-17 3:31 WANG Xuerui
2025-06-16 5:27 Sam James
2025-06-16 3:47 WANG Xuerui
2025-03-25 8:14 Sam James
2025-01-15 15:22 Pacho Ramos
2025-01-15 15:22 Pacho Ramos
2025-01-15 14:12 Pacho Ramos
2025-01-15 14:12 Pacho Ramos
2025-01-15 14:12 Pacho Ramos
2024-07-16 8:41 Pacho Ramos
2024-07-16 8:41 Pacho Ramos
2024-03-17 16:35 Mike Gilbert
2024-01-03 21:59 Mart Raudsepp
2024-01-03 21:59 Mart Raudsepp
2024-01-03 21:59 Mart Raudsepp
2023-10-26 15:09 Pacho Ramos
2023-10-26 15:09 Pacho Ramos
2023-09-29 10:34 Pacho Ramos
2023-09-22 2:33 Matt Turner
2023-09-18 13:29 Matt Turner
2023-06-19 15:30 Matt Turner
2023-05-28 2:35 Matt Turner
2023-05-17 21:55 Matt Turner
2023-04-22 21:51 Matt Turner
2023-04-02 0:57 Matt Turner
2023-03-19 3:51 Matt Turner
2023-02-20 17:32 Matt Turner
2023-01-09 15:45 Matt Turner
2022-12-04 2:41 Matt Turner
2022-12-03 18:03 Matt Turner
2022-10-31 17:58 Matt Turner
2022-10-25 15:25 Matt Turner
2022-10-14 14:29 Matt Turner
2022-09-26 13:34 Matt Turner
2022-09-21 14:17 Matt Turner
2022-08-07 2:24 Matt Turner
2022-07-21 2:04 Matt Turner
2022-07-03 21:04 Matt Turner
2022-05-30 14:34 Matt Turner
2022-04-28 15:31 Matt Turner
2022-04-24 20:46 Matt Turner
2022-03-26 0:23 Matt Turner
2022-03-18 19:24 Matt Turner
2022-01-27 3:25 Matt Turner
2022-01-24 22:43 Matt Turner
2021-12-18 6:36 Sam James
2021-09-19 9:35 Pacho Ramos
2021-05-03 19:30 Matt Turner
2021-04-18 14:26 Matt Turner
2021-04-18 14:26 Matt Turner
2020-12-05 22:54 Matt Turner
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=1749765964.413e3f883fbf858dc549389851237e5c4f01c27d.sam@gentoo \
--to=sam@gentoo.org \
--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