From unknown Tue Aug 19 10:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63380] [PATCH 0/4] Update pipewire and xdg-desktop-portal Resent-From: Benjamin Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 08 May 2023 21:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 63380 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63380@debbugs.gnu.org Cc: Benjamin X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16835826732044 (code B ref -1); Mon, 08 May 2023 21:52:01 +0000 Received: (at submit) by debbugs.gnu.org; 8 May 2023 21:51:13 +0000 Received: from localhost ([127.0.0.1]:41819 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8lE-0000Ws-R7 for submit@debbugs.gnu.org; Mon, 08 May 2023 17:51:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:50920) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8lC-0000WZ-Lj for submit@debbugs.gnu.org; Mon, 08 May 2023 17:51:11 -0400 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 1pw8lC-00019D-CB for guix-patches@gnu.org; Mon, 08 May 2023 17:51:10 -0400 Received: from mail.uvy.fr ([146.59.197.40]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pw8l7-0005jx-H3 for guix-patches@gnu.org; Mon, 08 May 2023 17:51:10 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uvy.fr; s=202105; t=1683582661; bh=884jVE28xllpPOAFlwXnEiXhCCipUKMKR5BnZtExaMY=; h=From:To:Cc:Subject:Date; b=hRuDy9FmUUxfnZXKwV51885dHrqvLSnFIJxuFtSph0KPykjweDuHN4JQZhSw9uQM4 niKcoea4Xn/98iPN7fTFXUa7zXQqUZVRP3CU0wOaYG4DiMKtNJpvRK17MDPZ6No4RE Gck2zzJ0GuRJT9K8oAxHQCnGzmQ3hEOxcnBrzWY82NndG3VI41yt4W4ilrqiofFQlo xfg6sKxrsRZV4NdEl9mhA+4sNGCUEFNpbYL3S7Mc+e3fUUGu8mHvX/qH2TlmTj46kG Hwaq/dTkTl7XIpNx4ul9EvZLvZFc9FKuQzcrVxpr0yp/kzAf1CtMyM/pPPkFhZTA3L SqKISonNYPdmg== From: Benjamin Date: Mon, 8 May 2023 23:50:32 +0200 Message-Id: X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=146.59.197.40; envelope-from=benjamin@uvy.fr; helo=mail.uvy.fr 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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: -2.3 (--) Hello Guixers, These patches are updating components to be able to screencast from ungoogle-chromium. On my setup : wayland with sway, it was previously failing. To be able, for screencast to work, pipewire, wireplumber xdg-desktop-portal and xdg-desktop-portal-wlr need to be running as explained in #52492. While updating pipewire, the upstream repo has been installing an rlimits file to /etc/security/limits.d/25-pw-rlimits.conf and this was failing during the installation phase. Such configuration file would be working with pam_limits service. I think it is possible to instead copy this file to the store (in /gnu/store/...pipewire.../etc/security/limits.d/ I guess). Though, while grepping I did not see such thing beeing done in another package. I am pretty new to guix so I do not exactly know what should be done. But for now, I disabled the installation of this file using meson flag -Drlimits-install=false Best Benjamin Benjamin (4): gnu: pipewire: Update to 0.3.70. gnu: wireplumber: Update to 0.4.14. gnu: xdg-desktop-portal: Update to 1.16.0. gnu: xdg-desktop-portal-wlr: Update to 0.7.0. gnu/packages/freedesktop.scm | 9 +++++---- gnu/packages/linux.scm | 16 +++++++++------- 2 files changed, 14 insertions(+), 11 deletions(-) base-commit: 28c2c570f80cc0b4e7302ad11cccc8ad600b3274 -- 2.39.2 From unknown Tue Aug 19 10:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63380] [PATCH 1/4] gnu: pipewire: Update to 0.3.70. Resent-From: Benjamin Original-Sender: "Debbugs-submit" Resent-CC: me@tobias.gr, guix-patches@gnu.org Resent-Date: Mon, 08 May 2023 21:57:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63380 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63380@debbugs.gnu.org. Cc: Benjamin , Tobias Geerinckx-Rice X-Debbugs-Original-Xcc: Tobias Geerinckx-Rice Received: via spool by 63380-submit@debbugs.gnu.org id=B63380.16835829732901 (code B ref 63380); Mon, 08 May 2023 21:57:01 +0000 Received: (at 63380) by debbugs.gnu.org; 8 May 2023 21:56:13 +0000 Received: from localhost ([127.0.0.1]:41824 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8q4-0000kj-Jm for submit@debbugs.gnu.org; Mon, 08 May 2023 17:56:12 -0400 Received: from mail.uvy.fr ([146.59.197.40]:40978) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8q3-0000kX-Ad for 63380@debbugs.gnu.org; Mon, 08 May 2023 17:56:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uvy.fr; s=202105; t=1683582965; bh=xlHTeLGZYWay7RsDsA0MijlIYTV9pn8FBlRixrqMaNk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=llR3zOgQKZ/4Cke73gqom+U0qX63Tumr+bkWAyolmlk7wodLR4A6Q8oitV3hoZZ3U O0jEVfeVq2skG5hT36cz+tIYr7rer776RbkPcjqoBBuxzkicmkWYgS0bt3xLH2smuZ 4CIiKayHtgcJsc8eRzQwpXEq9Tzb1P6n36BhulLDY2Cd4V2QhrBIKu1IGlWLR+8CBM qb2NGO6OqrS39r8N94W/C4mo8EKyLsCOa/hliwrEqyYtIb93pGJqffIF4IwFMkr0ru ukOjubGRXxdcv9SzJZjGvXsAIm5I8LYurbJ6hqvIU2wJWBcUBTq5df6BahN4iguuzs 1I3x8S8pyZlcw== From: Benjamin Date: Mon, 8 May 2023 23:55:35 +0200 Message-Id: X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.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: -1.0 (-) * gnu/packages/linux.scm (pipewire): Update to 0.3.70. [inputs]: Add glib. [arguments]: Do not install rlimits. --- gnu/packages/linux.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ea64e9d241..eac9a241cd 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9156,7 +9156,7 @@ (define-public inputattach (define-public pipewire (package (name "pipewire") - (version "0.3.63") + (version "0.3.70") (source (origin (method git-fetch) (uri (git-reference @@ -9165,18 +9165,20 @@ (define-public pipewire (file-name (git-file-name name version)) (sha256 (base32 - "1pkngynvhxc6iyv75gsyqjy18ky4si9dhvpavb9xwq5xj71nj0hr")))) + "1n74rrbwymm89ri4daa4v092f4b81wrak4vg685xfz2wl89p64n6")))) (build-system meson-build-system) (arguments (list #:configure-flags #~(list (string-append "-Dudevrulesdir=" #$output "/lib/udev/rules.d") - "-Dsystemd=disabled" + "-Dman=enabled" + "-Drlimits-install=false" "-Dsession-managers=[]" "-Dsysconfdir=/etc" - "-Dman=enabled"))) + "-Dsystemd=disabled"))) (native-inputs - (list pkg-config + (list `(,glib "bin") + pkg-config python-docutils)) (inputs (list alsa-lib avahi -- 2.39.2 From unknown Tue Aug 19 10:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63380] [PATCH 2/4] gnu: wireplumber: Update to 0.4.14. Resent-From: Benjamin Original-Sender: "Debbugs-submit" Resent-CC: me@tobias.gr, guix-patches@gnu.org Resent-Date: Mon, 08 May 2023 21:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63380 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63380@debbugs.gnu.org. Cc: Benjamin , Tobias Geerinckx-Rice X-Debbugs-Original-Xcc: Tobias Geerinckx-Rice Received: via spool by 63380-submit@debbugs.gnu.org id=B63380.16835829802925 (code B ref 63380); Mon, 08 May 2023 21:57:02 +0000 Received: (at 63380) by debbugs.gnu.org; 8 May 2023 21:56:20 +0000 Received: from localhost ([127.0.0.1]:41827 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8qB-0000l7-Tr for submit@debbugs.gnu.org; Mon, 08 May 2023 17:56:20 -0400 Received: from mail.uvy.fr ([146.59.197.40]:57674) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8qA-0000kr-P8 for 63380@debbugs.gnu.org; Mon, 08 May 2023 17:56:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uvy.fr; s=202105; t=1683582973; bh=vtO2b+ho+peHftJMm7ALXLc4/LyTYCGz+FGXV59NuTQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Q2tLd26QDZQgOLm5aedrvEovXe3VTInaJ3u1nTiCkU9GYL3kZFbIgdDAQyfRMDWmf eHHk5ydI9JpqiQbQES1e2kEzXHLCCWun13NfOXzbmEIBbbQiVyEUHciQ3K3xKOu+Tt cDWwInkQ4QCFOVL2g67kRfJu8QO9cZKR8uXCgs0P01rNT0q+qGOk4CWT1urf/8AG3b nIGIjsOOoAgBecOxCAlOnqLCMDn7acYXpq9pYVKPVF8fdCxb6pGbNcUq6Z+bf3SpKq rge/UqhmDcbtvpCCJPloBABDzOf5nfPR1Hy70570ga2zKgWt9xsat9DKvgg6/9xI85 86klK/rAIsxlw== From: Benjamin Date: Mon, 8 May 2023 23:55:36 +0200 Message-Id: X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.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: -1.0 (-) * gnu/packages/linux.scm (wireplumber): Update to 0.4.14. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index eac9a241cd..faca5d808a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9218,7 +9218,7 @@ (define-public pipewire (define-public wireplumber (package (name "wireplumber") - (version "0.4.13") + (version "0.4.14") (source (origin (method git-fetch) @@ -9228,7 +9228,7 @@ (define-public wireplumber (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "07psjb7rxsigwnwnzmw2y767vhyyha7cn8i8dgq80rzhwgl0sgv7")))) + (base32 "0jmnd6000j4wx68lxgz5b4g4hxkf243ivi9swaaf8rnx99cbx91w")))) (build-system meson-build-system) (arguments `(#:configure-flags '("-Dsystemd=disabled" -- 2.39.2 From unknown Tue Aug 19 10:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63380] [PATCH 3/4] gnu: xdg-desktop-portal: Update to 1.16.0. Resent-From: Benjamin Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 08 May 2023 21:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63380 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63380@debbugs.gnu.org. Cc: Benjamin Received: via spool by 63380-submit@debbugs.gnu.org id=B63380.16835829832948 (code B ref 63380); Mon, 08 May 2023 21:57:02 +0000 Received: (at 63380) by debbugs.gnu.org; 8 May 2023 21:56:23 +0000 Received: from localhost ([127.0.0.1]:41831 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8qF-0000lS-74 for submit@debbugs.gnu.org; Mon, 08 May 2023 17:56:23 -0400 Received: from mail.uvy.fr ([146.59.197.40]:57684) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8qC-0000ku-7c for 63380@debbugs.gnu.org; Mon, 08 May 2023 17:56:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uvy.fr; s=202105; t=1683582974; bh=l+wShluSzcLkFgYXjrHDr2DqNLik7o9DvUrakcPfdWc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=QkQCFB1BUDQ+u6LJ0rFul+k+XDpJFUETX8QHokVAEAVz8mTDSt39BQWAu/JBv+L8i iPk082dt97d5fzAUDJp4s6Gttd7PmS8/zuwBu4TJCiZcTYL0ruOlQ/SpSZQgDnPxxV Yg4ld+vyF5ouF7nafM1xYnGvL/UftRLE2Fypd61FPGrzdvhwYFGSOIWXgWgEhIq7fL 5Bd6SVJjWrVbK1e7iljK8zxxzHrKjdLUJMKj7uHAhk+ZlCnTndwL9LXZQVsClkg/K5 TjPy5loByr5evCz9u7c8y2TiiTwkfaAvFNl1G1Quvqk8DGapmGFp/2QbYzaybWkzw+ ++3kjOuhEoQhQ== From: Benjamin Date: Mon, 8 May 2023 23:55:37 +0200 Message-Id: <8215545d66a87d357a15631744a9f437fd31618f.1683581164.git.benjamin@uvy.fr> X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.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: -1.0 (-) * gnu/packages/freedesktop.scm (xdg-desktop-portal): Update to 1.16.0. --- gnu/packages/freedesktop.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 78b459443a..09637cccbd 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -2755,7 +2755,7 @@ (define-public libportal (define-public xdg-desktop-portal (package (name "xdg-desktop-portal") - (version "1.14.6") + (version "1.16.0") (source (origin (method url-fetch) (uri (string-append @@ -2763,7 +2763,7 @@ (define-public xdg-desktop-portal version "/xdg-desktop-portal-" version ".tar.xz")) (sha256 (base32 - "1q0djpnwlrqm0h0alyh1r6dlkqdrr7mj5hiam4mqzxqa5jbqkrgj")))) + "06cczlh39kc41rvav06v37sad827y61rffy3v29i918ibj8sahav")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) -- 2.39.2 From unknown Tue Aug 19 10:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63380] [PATCH 4/4] gnu: xdg-desktop-portal-wlr: Update to 0.7.0. Resent-From: Benjamin Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 08 May 2023 21:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63380 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63380@debbugs.gnu.org. Cc: Benjamin Received: via spool by 63380-submit@debbugs.gnu.org id=B63380.16835829842954 (code B ref 63380); Mon, 08 May 2023 21:57:02 +0000 Received: (at 63380) by debbugs.gnu.org; 8 May 2023 21:56:24 +0000 Received: from localhost ([127.0.0.1]:41833 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8qF-0000lV-Ha for submit@debbugs.gnu.org; Mon, 08 May 2023 17:56:23 -0400 Received: from mail.uvy.fr ([146.59.197.40]:57694) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8qD-0000kx-LY for 63380@debbugs.gnu.org; Mon, 08 May 2023 17:56:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uvy.fr; s=202105; t=1683582976; bh=VusUHnDQXT5UHRwztbfasCCnR2SA+XeEQUYGC5wI29A=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=hadPJnei0IxGWCTxeK3h642M8kLifwUWDZld0uupOnwmgFy3Tri2DR9i0q67dcBWk NzWbAuVzP0juUkAGT7m9GHv3lVe4ABx4Ks7xTQpyoaDIEG1WrTJ6dEMNKGuTcq4tVW 5wrUUtyhP8bHYdpycyx9gWo69JYrrAg13sHc0NS57YXZEpvIi4IKo+lbZ5f/j9JVsQ pXY50+EFA8wum3oTM0wkttC40NBHQ0Iw3Xx2Jo4f4uY2HQKyBy80EsXy30reyoxC00 jxzTMIchUawjRb4tOwuiYCTg7ktfAc7f2vgDAupPD753f2hGcPjXO4dwFDuAItLHYY QECHAAVeB4E4g== From: Benjamin Date: Mon, 8 May 2023 23:55:38 +0200 Message-Id: <144ff73738319effd6d220bb267182896b4d70e1.1683581164.git.benjamin@uvy.fr> X-Mailer: git-send-email 2.39.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.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: -1.0 (-) * gnu/packages/freedesktop.scm (xdg-desktop-portal-wlr): Update to 0.7.0. [inputs]: Add mesa. --- gnu/packages/freedesktop.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 09637cccbd..6d166a09e6 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -2912,7 +2912,7 @@ (define-public xdg-desktop-portal-kde (define-public xdg-desktop-portal-wlr (package (name "xdg-desktop-portal-wlr") - (version "0.5.0") + (version "0.7.0") (source (origin (method git-fetch) (uri (git-reference @@ -2921,7 +2921,7 @@ (define-public xdg-desktop-portal-wlr (file-name (git-file-name name version)) (sha256 (base32 - "1ipg35gv8ja39ijwbyi96qlyq2y1fjdggl40s38rv68bsya8zry1")) + "1b3hpp3ybjgnnmnwsyb5bsnvz9q5nr3zz0j1alh02g24f68lf00k")) (patches (search-patches "xdg-desktop-portal-wlr-harcoded-length.patch")))) (build-system meson-build-system) (arguments @@ -2955,6 +2955,7 @@ (define-public xdg-desktop-portal-wlr grim iniparser libinih + mesa pipewire slurp wayland -- 2.39.2 From unknown Tue Aug 19 10:09:38 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: Benjamin Subject: bug#63380: closed (Re: [bug#63380] [PATCH 0/4] Update pipewire and xdg-desktop-portal) Message-ID: References: <87pm5ys790.fsf@trop.in> X-Gnu-PR-Message: they-closed 63380 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 63380@debbugs.gnu.org Date: Wed, 14 Jun 2023 09:51:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1686736262-15596-1" This is a multi-part message in MIME format... ------------=_1686736262-15596-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #63380: [PATCH 0/4] Update pipewire and xdg-desktop-portal 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 63380@debbugs.gnu.org. --=20 63380: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D63380 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1686736262-15596-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 63380-done) by debbugs.gnu.org; 14 Jun 2023 09:50:21 +0000 Received: from localhost ([127.0.0.1]:43740 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q9N8u-00042g-LJ for submit@debbugs.gnu.org; Wed, 14 Jun 2023 05:50:20 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:35547) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q9N8r-00042O-E5 for 63380-done@debbugs.gnu.org; Wed, 14 Jun 2023 05:50:18 -0400 X-GND-Sasl: andrew@trop.in DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=trop.in; s=gm1; t=1686736209; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ntrap7W8JIAGJ41GPuh1qqPucFYWpIgfvUjkXhd41s8=; b=pwMvAhjEE3+tDFIj7798W/IWyZZY/Y7qBPHX5LRXGfs9xnF4SlRAPSWrPrgdDrn+GfJBL8 awnK5uV4S9uUAM6YYftz+I5VQr4oRC4FDMcHiw2061Yz9YaLyYZHfOdR+/yO87fNr+3gvI JXVPsl1HUbnnKf+Xvtx789MWoQyzKb/QwXzLxskF96pObSS8W1/VZ/SMuVjPPinRrV+fGo Co17fd0yWIvjiGcQETpmNX1MTdz7ke91ELZbUJkzRSNSTPUJSTmBwzjQNUEdv7xhfrVfW9 aNsBDcCywHd2VndbvNsFlxZXscC9UXk5USUOyy0ogy8VNxYWQRJC0wmNKEJ0bw== X-GND-Sasl: andrew@trop.in X-GND-Sasl: andrew@trop.in Received: by mail.gandi.net (Postfix) with ESMTPSA id 30464E000A; Wed, 14 Jun 2023 09:50:08 +0000 (UTC) From: Andrew Tropin To: Benjamin , 63380-done@debbugs.gnu.org Subject: Re: [bug#63380] [PATCH 0/4] Update pipewire and xdg-desktop-portal In-Reply-To: References: Date: Wed, 14 Jun 2023 13:50:03 +0400 Message-ID: <87pm5ys790.fsf@trop.in> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 63380-done Cc: Benjamin 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.7 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On 2023-05-08 23:50, Benjamin wrote: > Hello Guixers, > > These patches are updating components to be able to screencast from > ungoogle-chromium. On my setup : wayland with sway, it was previously > failing. Hi Benjamin! This thread was on my backlog, but I forgot about it, when was updating xdg-desktop-portals, so I did it separately. Screensharing via pipewire now works again. I applied your pipewire and wireplumber patches, thank you very much. > > To be able, for screencast to work, pipewire, wireplumber > xdg-desktop-portal and xdg-desktop-portal-wlr need to be running as > explained in #52492. > > While updating pipewire, the upstream repo has been installing an rlimits > file to /etc/security/limits.d/25-pw-rlimits.conf and this was failing > during the installation phase. > > Such configuration file would be working with pam_limits service. > > I think it is possible to instead copy this file to the store (in > /gnu/store/...pipewire.../etc/security/limits.d/ I guess). > Though, while grepping I did not see such thing beeing done in another > package.=20 > I am pretty new to guix so I do not exactly know what should be done. But > for now, I disabled the installation of this file using meson flag=20 > -Drlimits-install=3Dfalse That's right, limits should be configured via pam-limits-service-type. > > Best > > Benjamin > > > Benjamin (4): > gnu: pipewire: Update to 0.3.70. > gnu: wireplumber: Update to 0.4.14. > gnu: xdg-desktop-portal: Update to 1.16.0. > gnu: xdg-desktop-portal-wlr: Update to 0.7.0. > > gnu/packages/freedesktop.scm | 9 +++++---- > gnu/packages/linux.scm | 16 +++++++++------- > 2 files changed, 14 insertions(+), 11 deletions(-) > > > base-commit: 28c2c570f80cc0b4e7302ad11cccc8ad600b3274 =2D-=20 Best regards, Andrew Tropin --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEKEGaxlA4dEDH6S/6IgjSCVjB3rAFAmSJjUsACgkQIgjSCVjB 3rCH7Q//UvoL5kIO7a9Cxv835IT4pRqCEFrlOVvaQ5bfAGGkF5BqJye3gn5VMzCo 53zNz/kzkFBF1KTZYtBUm68b7PHQ103Hq+jOlyjHmfIizgFMMFQrM/ZNTT1yLYqQ HGJ2z2xPMvRWZywJ0lzsAvmEKlDe1waJSUOd1Ge0vFx1zP89kbEZa2hkBwprt/WD p+wFOGVmq04t9L4kbeSeQREydP7PRpF/ZmRYDG2fCiEwax38C5mOsQIFNI+hg041 vWauwVhnu2q7dDlwa4TqVMfXz+adJiFueN0pzVp7IgF9kbMmmK2tZf7xKYb6Uohr TOLEPIXToE5ubQ5K2DmTFblofffupuQZf/qzJbmlyUr1dKy7SnqpRWPfXlmgJHOn zC+w79rVNK7OLvSZTypGUa0ntowgvgJMYFafzAYmh0oF+eShYG1G8dBWmDvteVKW eAxEEeQeXQJq3kPpToLk1ZPDWN5gVCjQiM2xQJHr1np2ZaqTdlREvqXa261tpaZF ExL7SzAloFFjMIcBCUgY/UR/hqmrkQ8GLLNRHxJK4X209IwjzxBAVkPbwLRomyXX zbxgSsaEuvRENcg4RjKHK58f5ddz5e5wbpfTwSOWrXAhRkQuG1iUvIxo+ahLvSKb l2qXj8Nm0KLqhqRYhLZwfheXas440C14zRzxl1IX00834xP7qY0= =WOfJ -----END PGP SIGNATURE----- --=-=-=-- ------------=_1686736262-15596-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 8 May 2023 21:51:13 +0000 Received: from localhost ([127.0.0.1]:41819 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8lE-0000Ws-R7 for submit@debbugs.gnu.org; Mon, 08 May 2023 17:51:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:50920) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pw8lC-0000WZ-Lj for submit@debbugs.gnu.org; Mon, 08 May 2023 17:51:11 -0400 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 1pw8lC-00019D-CB for guix-patches@gnu.org; Mon, 08 May 2023 17:51:10 -0400 Received: from mail.uvy.fr ([146.59.197.40]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pw8l7-0005jx-H3 for guix-patches@gnu.org; Mon, 08 May 2023 17:51:10 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uvy.fr; s=202105; t=1683582661; bh=884jVE28xllpPOAFlwXnEiXhCCipUKMKR5BnZtExaMY=; h=From:To:Cc:Subject:Date; b=hRuDy9FmUUxfnZXKwV51885dHrqvLSnFIJxuFtSph0KPykjweDuHN4JQZhSw9uQM4 niKcoea4Xn/98iPN7fTFXUa7zXQqUZVRP3CU0wOaYG4DiMKtNJpvRK17MDPZ6No4RE Gck2zzJ0GuRJT9K8oAxHQCnGzmQ3hEOxcnBrzWY82NndG3VI41yt4W4ilrqiofFQlo xfg6sKxrsRZV4NdEl9mhA+4sNGCUEFNpbYL3S7Mc+e3fUUGu8mHvX/qH2TlmTj46kG Hwaq/dTkTl7XIpNx4ul9EvZLvZFc9FKuQzcrVxpr0yp/kzAf1CtMyM/pPPkFhZTA3L SqKISonNYPdmg== From: Benjamin To: guix-patches@gnu.org Subject: [PATCH 0/4] Update pipewire and xdg-desktop-portal Date: Mon, 8 May 2023 23:50:32 +0200 Message-Id: X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=146.59.197.40; envelope-from=benjamin@uvy.fr; helo=mail.uvy.fr 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Benjamin 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: -2.3 (--) Hello Guixers, These patches are updating components to be able to screencast from ungoogle-chromium. On my setup : wayland with sway, it was previously failing. To be able, for screencast to work, pipewire, wireplumber xdg-desktop-portal and xdg-desktop-portal-wlr need to be running as explained in #52492. While updating pipewire, the upstream repo has been installing an rlimits file to /etc/security/limits.d/25-pw-rlimits.conf and this was failing during the installation phase. Such configuration file would be working with pam_limits service. I think it is possible to instead copy this file to the store (in /gnu/store/...pipewire.../etc/security/limits.d/ I guess). Though, while grepping I did not see such thing beeing done in another package. I am pretty new to guix so I do not exactly know what should be done. But for now, I disabled the installation of this file using meson flag -Drlimits-install=false Best Benjamin Benjamin (4): gnu: pipewire: Update to 0.3.70. gnu: wireplumber: Update to 0.4.14. gnu: xdg-desktop-portal: Update to 1.16.0. gnu: xdg-desktop-portal-wlr: Update to 0.7.0. gnu/packages/freedesktop.scm | 9 +++++---- gnu/packages/linux.scm | 16 +++++++++------- 2 files changed, 14 insertions(+), 11 deletions(-) base-commit: 28c2c570f80cc0b4e7302ad11cccc8ad600b3274 -- 2.39.2 ------------=_1686736262-15596-1--