From unknown Sun Jun 22 03:55:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63645] [PATCH] gnu: swaynotificationcenter: Update to 0.8.0 Resent-From: Brian Cully Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 22 May 2023 14:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 63645 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63645@debbugs.gnu.org Cc: Brian Cully X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16847652909670 (code B ref -1); Mon, 22 May 2023 14:22:02 +0000 Received: (at submit) by debbugs.gnu.org; 22 May 2023 14:21:30 +0000 Received: from localhost ([127.0.0.1]:35485 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q16Ph-0002Vu-Nj for submit@debbugs.gnu.org; Mon, 22 May 2023 10:21:30 -0400 Received: from lists.gnu.org ([209.51.188.17]:56810) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q16Pe-0002Vk-O6 for submit@debbugs.gnu.org; Mon, 22 May 2023 10:21:28 -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 1q16Pd-0002gy-El for guix-patches@gnu.org; Mon, 22 May 2023 10:21:25 -0400 Received: from coleridge.kublai.com ([166.84.7.167] helo=mail.spork.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q16Pa-00031C-15 for guix-patches@gnu.org; Mon, 22 May 2023 10:21:25 -0400 Received: from psyduck.jhoto.kublai.com (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id 3F98AB4E5; Mon, 22 May 2023 10:21:06 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1684765267; bh=obtgesAG5nMI2enYoonvTfxDbPAvIWlRzy/7gzLr9Bo=; h=From:To:Cc:Subject:Date; b=m34rOzOD5b1M0UaRt3hb2Rno1/IxScElhYu4iG17hX70LfNo6tUoTdZYKLk+a/1Zd 8JPy5Mq4dqmJzOX5y5Qeca01lpEDBUll7ivdbv1utFoPe/JCig0U2niJMQIk+66yfA EUt2Uc6oFuwq9ggCt/zVw8JYTUNK7jf5bV/XZMHw= From: Brian Cully Date: Mon, 22 May 2023 10:20:56 -0400 Message-Id: X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=166.84.7.167; envelope-from=bjc@spork.org; helo=mail.spork.org 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 (--) * gnu/packages/wm.scm (swaynotificationcenter): Update to 0.8.0. --- gnu/packages/wm.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 4360f3722b..1bf6d46200 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -147,6 +147,7 @@ (define-module (gnu packages wm) #:use-module (gnu packages python-xyz) #:use-module (gnu packages readline) #:use-module (gnu packages serialization) + #:use-module (gnu packages shells) #:use-module (gnu packages sphinx) #:use-module (gnu packages suckless) #:use-module (gnu packages texinfo) @@ -1761,7 +1762,7 @@ (define-public swaybg (define-public swaynotificationcenter (package (name "swaynotificationcenter") - (version "0.7.3") + (version "0.8.0") (source (origin (method git-fetch) (uri (git-reference @@ -1769,7 +1770,7 @@ (define-public swaynotificationcenter (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1xvr5m5sqznr3dd512i5pk0d56v7n0ywdcy6rnz85vbf2k7b6kj5")))) + (base32 "1c3gd6mlr209jzzrh5jmws2lawnn3gr6smvzcw74kkpi3wvs7l0k")))) (build-system meson-build-system) (arguments (list #:configure-flags #~(list "-Dsystemd-service=false"))) (native-inputs @@ -1780,11 +1781,15 @@ (define-public swaynotificationcenter scdoc vala)) (inputs - (list json-glib + (list bash-completion + fish + json-glib glib gtk+ gtk-layer-shell libhandy + libgee + pulseaudio wayland-protocols)) (synopsis "Notification daemon with a graphical interface") (description base-commit: 849286ba66c96534bddc04df1a47d5692cbc977e prerequisite-patch-id: 18557da18beab5677060ea1de1897768791ce89e prerequisite-patch-id: a2d8b917b767b5445112f49ca4d9b060e8baa587 prerequisite-patch-id: eabe444a8c70abebec53c814fbd88236bb86fabf -- 2.40.1 From unknown Sun Jun 22 03:55:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63645] [PATCH] gnu: swaynotificationcenter: Update to 0.8.0 Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 12 Jun 2023 18:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63645 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Brian Cully Cc: 63645@debbugs.gnu.org Received: via spool by 63645-submit@debbugs.gnu.org id=B63645.168659517013260 (code B ref 63645); Mon, 12 Jun 2023 18:40:02 +0000 Received: (at 63645) by debbugs.gnu.org; 12 Jun 2023 18:39:30 +0000 Received: from localhost ([127.0.0.1]:40507 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q8mRt-0003Rn-SN for submit@debbugs.gnu.org; Mon, 12 Jun 2023 14:39:30 -0400 Received: from mira.cbaines.net ([212.71.252.8]:42626) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q8mRq-0003Re-Tt for 63645@debbugs.gnu.org; Mon, 12 Jun 2023 14:39:28 -0400 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:3a91:a0a4:ecee:f157]) by mira.cbaines.net (Postfix) with ESMTPSA id E223727BBE2; Mon, 12 Jun 2023 19:39:25 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 14acace6; Mon, 12 Jun 2023 18:39:24 +0000 (UTC) References: User-agent: mu4e 1.10.2; emacs 28.2 From: Christopher Baines Date: Mon, 12 Jun 2023 19:38:04 +0100 In-reply-to: Message-ID: <875y7sy17p.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" 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 (-) --=-=-= Content-Type: text/plain Brian Cully via Guix-patches via writes: > * gnu/packages/wm.scm (swaynotificationcenter): Update to 0.8.0. > --- > gnu/packages/wm.scm | 11 ++++++++--- > 1 file changed, 8 insertions(+), 3 deletions(-) > > diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm > index 4360f3722b..1bf6d46200 100644 > --- a/gnu/packages/wm.scm > +++ b/gnu/packages/wm.scm > @@ -147,6 +147,7 @@ (define-module (gnu packages wm) > #:use-module (gnu packages python-xyz) > #:use-module (gnu packages readline) > #:use-module (gnu packages serialization) > + #:use-module (gnu packages shells) > #:use-module (gnu packages sphinx) > #:use-module (gnu packages suckless) > #:use-module (gnu packages texinfo) > @@ -1761,7 +1762,7 @@ (define-public swaybg > (define-public swaynotificationcenter > (package > (name "swaynotificationcenter") > - (version "0.7.3") > + (version "0.8.0") > (source (origin > (method git-fetch) > (uri (git-reference > @@ -1769,7 +1770,7 @@ (define-public swaynotificationcenter > (commit (string-append "v" version)))) > (file-name (git-file-name name version)) > (sha256 > - (base32 "1xvr5m5sqznr3dd512i5pk0d56v7n0ywdcy6rnz85vbf2k7b6kj5")))) > + (base32 "1c3gd6mlr209jzzrh5jmws2lawnn3gr6smvzcw74kkpi3wvs7l0k")))) > (build-system meson-build-system) > (arguments (list #:configure-flags #~(list "-Dsystemd-service=false"))) > (native-inputs > @@ -1780,11 +1781,15 @@ (define-public swaynotificationcenter > scdoc > vala)) > (inputs > - (list json-glib > + (list bash-completion > + fish > + json-glib > glib > gtk+ > gtk-layer-shell > libhandy > + libgee > + pulseaudio > wayland-protocols)) Hi Brian, Regarding these new inputs, what's you're reasoning for adding them? fish stood out to me, it doesn't seem to be referenced by the swaynotificationcenter output (doesn't show up in guix size), so maybe it should be a native-input if it's some test dependency? Thanks, Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmSHZlpfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XcHkxAApAScveaeF6v+eglb7/hDnieXvbpXOA0E 19xTfrOAxjDD+dYefc9DZB9qnFh2qn915v0Ntb3O1XVdfGcxp5R9uoDLN51MgxHj CJ5bEDRFmytePqjS5xmN4yVih900uIyEzxO6uOWbHmuBPMb/TsDzR0jLfx/Tp1O9 Y3KlXE+t96RqblEzOjLEwTJy1P8L5qZqGvW7flD3Hqenq9PWw8c95X4jTVtzaXIx 0RmZDbVh9Ykc4z5ckA8OUxoQeLmkh1IG0lsjfDLA38xYvoTdiWkrtJKpZYWbHL7w iiWHiFDJznBuMzf+gflt0G6+Hj7bDs34E50YZTUag7LX37tkR47d1oMElpROL/Ws u2vBOw8EeZwb0PvD9ZWCVzrZUe+ZQfuPRoCVLpG55aKKWonJhUVOq89Ms18coTsK Xeqe+CtkcylLZOUB23RabENxTU+JWqB6VFu6jyE1m3MEv87GqlUh2HjvOLzaqGTF YT3aspXbDJ+eXc5FDo7l1SmefKqkyL9lVhEaGXGROYTq92lLUVAjsvDy+dbHJcaQ T1w1jEYUeK0LrvE1aNiD/A236oCXq92qdOjmyflqumslXRJ6M2fjgmaGeVMHmuZY sGyRSUdy6zcGHAABK2IdKCHOXMQ+/qvpYp4GHsoVN7soaVejAjAMGy7t4+x8gfk5 0vSNqNgxrYw= =bm5h -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 12 14:39:35 2023 Received: (at control) by debbugs.gnu.org; 12 Jun 2023 18:39:35 +0000 Received: from localhost ([127.0.0.1]:40510 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q8mRz-0003S7-5z for submit@debbugs.gnu.org; Mon, 12 Jun 2023 14:39:35 -0400 Received: from mira.cbaines.net ([212.71.252.8]:42628) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q8mRx-0003S0-F9 for control@debbugs.gnu.org; Mon, 12 Jun 2023 14:39:34 -0400 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:3a91:a0a4:ecee:f157]) by mira.cbaines.net (Postfix) with ESMTPSA id 0C29127BBE2 for ; Mon, 12 Jun 2023 19:39:33 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id f7a74e41 for ; Mon, 12 Jun 2023 18:39:32 +0000 (UTC) From: Christopher Baines To: control@debbugs.gnu.org Subject: tag 63645 moreinfo Date: Mon, 12 Jun 2023 18:39:32 +0000 Message-ID: <875y7scyor.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: control 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 (-) tags 63645 + moreinfo quit From unknown Sun Jun 22 03:55:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63645] [PATCH] gnu: swaynotificationcenter: Update to 0.8.0 Resent-From: Brian Cully Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 12 Jun 2023 19:15:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63645 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch moreinfo To: Christopher Baines Cc: 63645@debbugs.gnu.org Received: via spool by 63645-submit@debbugs.gnu.org id=B63645.168659729226294 (code B ref 63645); Mon, 12 Jun 2023 19:15:02 +0000 Received: (at 63645) by debbugs.gnu.org; 12 Jun 2023 19:14:52 +0000 Received: from localhost ([127.0.0.1]:40558 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q8n08-0006q2-8W for submit@debbugs.gnu.org; Mon, 12 Jun 2023 15:14:52 -0400 Received: from coleridge.kublai.com ([166.84.7.167]:54808 helo=mail.spork.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q8n04-0006ps-2M for 63645@debbugs.gnu.org; Mon, 12 Jun 2023 15:14:51 -0400 Received: from psyduck (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id ED22FE3C4; Mon, 12 Jun 2023 15:14:44 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1686597287; bh=kAXSdWdHax1xGXUJjYmmC3gJBVcrCL682C8QwS6mKV8=; h=References:From:To:Cc:Subject:Date:In-reply-to; b=KIF6uh/igDxdS4psKSJSljCDKUg2yvdYYeh6+OOlgMUsAKDx3BtmKlEMRV43wKs7E 6gfXrjXsEzG+cyvZSEXcsRKyq7tfUzUgGRpdiTXDaFRQSxBWD1YbLzPjg+PWWD/ZWg ISfNvqe1dOqh3Jvo6S8xZGpawngANEOVUz0hUgKw= References: <875y7sy17p.fsf@cbaines.net> User-agent: mu4e 1.10.2; emacs 29.0.91 From: Brian Cully Date: Mon, 12 Jun 2023 15:11:38 -0400 In-reply-to: <875y7sy17p.fsf@cbaines.net> Message-ID: <871qigpk63.fsf@psyduck.jhoto.kublai.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable 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 (-) Christopher Baines writes: >> (inputs >> - (list json-glib >> + (list bash-completion >> + fish >> + json-glib >> glib >> gtk+ >> gtk-layer-shell >> libhandy >> + libgee >> + pulseaudio >> wayland-protocols)) > > Regarding these new inputs, what's you're reasoning for adding=20 > them? In general: so that configure would find everything it was looking=20 for. I believe the only new hard requirement is libgee and=20 json-glib (I can test a build without them and see how far I get,=20 but it'll have to wait until I have a bit more time). The others =E2=80=94 bash-completion and fish =E2=80=94 are for command=20 completion, I believe. Do those better belong in native-inputs=20 just so the can be detected during configure-time? -bjc From unknown Sun Jun 22 03:55:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63645] [PATCH] gnu: swaynotificationcenter: Update to 0.8.0 Resent-From: Brian Cully Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 16 Jun 2023 23:50:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63645 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch moreinfo To: Brian Cully Cc: Christopher Baines , 63645@debbugs.gnu.org Received: via spool by 63645-submit@debbugs.gnu.org id=B63645.16869593981576 (code B ref 63645); Fri, 16 Jun 2023 23:50:02 +0000 Received: (at 63645) by debbugs.gnu.org; 16 Jun 2023 23:49:58 +0000 Received: from localhost ([127.0.0.1]:50557 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qAJCY-0000PM-2E for submit@debbugs.gnu.org; Fri, 16 Jun 2023 19:49:58 -0400 Received: from coleridge.kublai.com ([166.84.7.167]:62602 helo=mail.spork.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qAJCV-0000PE-TP for 63645@debbugs.gnu.org; Fri, 16 Jun 2023 19:49:56 -0400 Received: from psyduck (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id 82E1EEA58; Fri, 16 Jun 2023 19:49:52 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1686959395; bh=G6E8KhCFY0dqsrMINvn9LJnHeqJm09XuXEHCS6Bz9ac=; h=References:From:To:Cc:Subject:Date:In-reply-to; b=RULAOcGN6ZnBSVrpEmEWENwPRgii/OupmC6z+odFatVKNHR6L+6cSdSPP9mRiZcfB YTDiaTPA/Cke8amyFIT39aXe5CsoMtqA2fgA5stm//APUQ4xJZKYjBlG70JimWA9rA jHiPLJSH8dBcW6bGbTKfWNhtCMS2Qiwx9HI2V7js= References: <875y7sy17p.fsf@cbaines.net> <871qigpk63.fsf@psyduck.jhoto.kublai.com> User-agent: mu4e 1.10.2; emacs 29.0.91 From: Brian Cully Date: Fri, 16 Jun 2023 19:12:25 -0400 In-reply-to: <871qigpk63.fsf@psyduck.jhoto.kublai.com> Message-ID: <87zg4zc6ht.fsf@psyduck.jhoto.kublai.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable 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 (-) Brian Cully writes: > Christopher Baines writes: > >>> (inputs >>> - (list json-glib >>> + (list bash-completion >>> + fish >>> + json-glib >>> glib >>> gtk+ >>> gtk-layer-shell >>> libhandy >>> + libgee >>> + pulseaudio >>> wayland-protocols)) >> >> Regarding these new inputs, what's you're reasoning for adding=20 >> them? > > In general: so that configure would find everything it was=20 > looking > for. I believe the only new hard requirement is libgee and=20 > json-glib > (I can test a build without them and see how far I get, but=20 > it'll have > to wait until I have a bit more time). I re-ran the build today, and the output from the configure phase=20 does specify that =E2=80=98libgee=E2=80=99, =E2=80=98json-glib=E2=80=99, an= d =E2=80=98pulseaudio=E2=80=99 are=20 runtime dependencies: --8<---------------cut here---------------start------------->8--- Run-time dependency json-glib-1.0 found: YES 1.6.2 [=E2=80=A6] Run-time dependency gee-0.8 found: YES 0.20.5 Run-time dependency libpulse found: YES 16.1 Run-time dependency libpulse-mainloop-glib found: YES 16.1 --8<---------------cut here---------------end--------------->8--- > The others =E2=80=94 bash-completion and fish =E2=80=94 are for command=20 > completion, I > believe. Do those better belong in native-inputs just so the can=20 > be > detected during configure-time? But maybe =E2=80=98Run-time dependency=E2=80=99 is a mis-labelling. Compili= ng=20 without the =E2=80=98bash-completion=E2=80=99 or =E2=80=98fish=E2=80=99 inp= uts generates the=20 complaints: --8<---------------cut here---------------start------------->8--- Run-time dependency bash-completion found: NO (tried pkgconfig and=20 cmake) Run-time dependency fish found: NO (tried pkgconfig and cmake) --8<---------------cut here---------------end--------------->8--- But it still installs the completion files: --8<---------------cut here---------------start------------->8--- Installing=20 /tmp/guix-build-swaynotificationcenter-0.8.0.drv-0/source/completions/zsh/_= swaync=20 to=20 /gnu/store/5v2p9n53ivj7cmq7m442gy6yvzqn9vbz-swaynotificationcenter-0.8.0/sh= are/zsh/site-functions Installing=20 /tmp/guix-build-swaynotificationcenter-0.8.0.drv-0/source/completions/zsh/_= swaync-client=20 to=20 /gnu/store/5v2p9n53ivj7cmq7m442gy6yvzqn9vbz-swaynotificationcenter-0.8.0/sh= are/zsh/site-functions Installing=20 /tmp/guix-build-swaynotificationcenter-0.8.0.drv-0/source/completions/bash/= swaync=20 to=20 /gnu/store/5v2p9n53ivj7cmq7m442gy6yvzqn9vbz-swaynotificationcenter-0.8.0/sh= are/bash-completion/completions Installing=20 /tmp/guix-build-swaynotificationcenter-0.8.0.drv-0/source/completions/bash/= swaync-client=20 to=20 /gnu/store/5v2p9n53ivj7cmq7m442gy6yvzqn9vbz-swaynotificationcenter-0.8.0/sh= are/bash-completion/completions Installing=20 /tmp/guix-build-swaynotificationcenter-0.8.0.drv-0/source/completions/fish/= swaync.fish=20 to=20 /gnu/store/5v2p9n53ivj7cmq7m442gy6yvzqn9vbz-swaynotificationcenter-0.8.0/sh= are/fish/vendor_completions.d Installing=20 /tmp/guix-build-swaynotificationcenter-0.8.0.drv-0/source/completions/fish/= swaync-client.fish=20 to=20 /gnu/store/5v2p9n53ivj7cmq7m442gy6yvzqn9vbz-swaynotificationcenter-0.8.0/sh= are/fish/vendor_completions.d --8<---------------cut here---------------end--------------->8--- Note also that =E2=80=98zsh=E2=80=99 gets completions as well, even though = it's=20 not being checked for in the configuration phase. Starting a shell with fish: --8<---------------cut here---------------start------------->8--- /pre-inst-env guix shell -CP coreutils fish bash=20 swaynotificationcenter -- fish --8<---------------cut here---------------end--------------->8--- Yields completion candidates for =E2=80=98swaync=E2=80=99 and =E2=80=98sway= nc-client=E2=80=99,=20 even though I've removed those inputs, so it seems they're not=20 necessary. I'll submit a v2 without the =E2=80=98fish=E2=80=99 and =E2=80=98bash=E2=80= =99 inputs shortly. --=20 -bjc From unknown Sun Jun 22 03:55:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63645] [PATCH v2] gnu: swaynotificationcenter: Update to 0.8.0 References: In-Reply-To: Resent-From: Brian Cully Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 16 Jun 2023 23:53:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 63645 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch moreinfo To: 63645@debbugs.gnu.org Cc: Brian Cully Received: via spool by 63645-submit@debbugs.gnu.org id=B63645.16869595641841 (code B ref 63645); Fri, 16 Jun 2023 23:53:02 +0000 Received: (at 63645) by debbugs.gnu.org; 16 Jun 2023 23:52:44 +0000 Received: from localhost ([127.0.0.1]:50561 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qAJFD-0000Td-O2 for submit@debbugs.gnu.org; Fri, 16 Jun 2023 19:52:44 -0400 Received: from coleridge.kublai.com ([166.84.7.167]:59506 helo=mail.spork.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qAJFC-0000TV-0j for 63645@debbugs.gnu.org; Fri, 16 Jun 2023 19:52:42 -0400 Received: from psyduck.jhoto.kublai.com (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id D0C68EB36; Fri, 16 Jun 2023 19:52:41 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1686959561; bh=yiakSd78SN4O1ESTOXUNoAu4hGn+6LG7z6BIYIgc4Ws=; h=From:To:Cc:Subject:Date; b=aR8AonW8hHftLAE7phFd5in2VHNpRdWLW6murPqGq4j8W819pO1d+e7mWU0XQiIuJ l5ZzGvnw4OZwkhs+HEDBo7f0+C+XmBMnyyc9I0PfX1u0cbYDvotngxArwE/cCbatQ5 bVfbaaixW164ISNrmIQei72Y8cBoYSOug4HHiapM= From: Brian Cully Date: Fri, 16 Jun 2023 19:52:34 -0400 Message-Id: X-Mailer: git-send-email 2.40.1 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/wm.scm (swaynotificationcenter): Update to 0.8.0. --- gnu/packages/wm.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index e707a15785..55c7e7e63f 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1779,7 +1779,7 @@ (define-public swaybg (define-public swaynotificationcenter (package (name "swaynotificationcenter") - (version "0.7.3") + (version "0.8.0") (source (origin (method git-fetch) (uri (git-reference @@ -1787,7 +1787,7 @@ (define-public swaynotificationcenter (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1xvr5m5sqznr3dd512i5pk0d56v7n0ywdcy6rnz85vbf2k7b6kj5")))) + (base32 "1c3gd6mlr209jzzrh5jmws2lawnn3gr6smvzcw74kkpi3wvs7l0k")))) (build-system meson-build-system) (arguments (list #:configure-flags #~(list "-Dsystemd-service=false"))) (native-inputs @@ -1803,6 +1803,8 @@ (define-public swaynotificationcenter gtk+ gtk-layer-shell libhandy + libgee + pulseaudio wayland-protocols)) (synopsis "Notification daemon with a graphical interface") (description base-commit: 31336e9f5d68512a9c1c6826bce9f17c892a2125 -- 2.40.1 From unknown Sun Jun 22 03:55:03 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: Brian Cully Subject: bug#63645: closed (Re: [bug#63645] [PATCH v2] gnu: swaynotificationcenter: Update to 0.8.0) Message-ID: References: <878rcflpvn.fsf@cbaines.net> X-Gnu-PR-Message: they-closed 63645 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch moreinfo Reply-To: 63645@debbugs.gnu.org Date: Mon, 19 Jun 2023 10:16:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1687169762-19401-1" This is a multi-part message in MIME format... ------------=_1687169762-19401-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #63645: [PATCH] gnu: swaynotificationcenter: Update to 0.8.0 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 63645@debbugs.gnu.org. --=20 63645: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D63645 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1687169762-19401-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 63645-done) by debbugs.gnu.org; 19 Jun 2023 10:15:26 +0000 Received: from localhost ([127.0.0.1]:55535 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qBBuw-00051v-4V for submit@debbugs.gnu.org; Mon, 19 Jun 2023 06:15:26 -0400 Received: from mira.cbaines.net ([212.71.252.8]:42716) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qBBuv-00051o-7E for 63645-done@debbugs.gnu.org; Mon, 19 Jun 2023 06:15:25 -0400 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:54d1:d5d4:280e:f699]) by mira.cbaines.net (Postfix) with ESMTPSA id CECBB27BBE2; Mon, 19 Jun 2023 11:15:24 +0100 (BST) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 2eee6b7a; Mon, 19 Jun 2023 10:15:24 +0000 (UTC) References: User-agent: mu4e 1.10.2; emacs 28.2 From: Christopher Baines To: Brian Cully Subject: Re: [bug#63645] [PATCH v2] gnu: swaynotificationcenter: Update to 0.8.0 Date: Mon, 19 Jun 2023 11:14:55 +0100 In-reply-to: Message-ID: <878rcflpvn.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 63645-done Cc: 63645-done@debbugs.gnu.org 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 (-) --=-=-= Content-Type: text/plain Brian Cully via Guix-patches via writes: > * gnu/packages/wm.scm (swaynotificationcenter): Update to 0.8.0. > --- > gnu/packages/wm.scm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) Thanks for investigating further Brian, I've pushed this to master as c63e6652861d8ed85ffa91d568e69053478a1511. Thanks, Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmSQKrxfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XcaHA//Zebh4VuDFodwDYsOeIRCQVdW27CyrSKa Bz3A124np/k36na4AaZAVeXF5JwECtndGO42b6yv5RuUody1qAoP+BD4vgU/zcy1 vbnyVxgxOIdYdMYstMCxuvSsq7ykBDCidIJnwOutjNj7wxiXYYvbnnSkHQU6mSuK mKZfRnCmBbxvbf4LhnsPoRGgvQCGLfKbOZn0MO7xx9pGtOcbtoXgUmMxqaU8waYY fUhQQscO/xwiZpFyBYzSK+ePlGZ2lFs/TKfvJzyeM1wohfXiTHVwFjJQjJoMF3CY wGN5rTG83qkK5Hv2wqrUdnkjfUak2WezuRf+6wu/jmAo5mpsWpi+R2le++/TiXWn dd9+mFiDXaPOV6eQ6sQa1IQ6jBN9nCPBNTILs9jJTpmFVVAkORCMmpQhdmylWOMx mDKGiItCcg5hJj3CHaRn+hnxDx5HNbi7LOVWh3FS4w2ezWHx0Jd9BTrin0g7B2+N vY5fFMTLlUkA1u/2FvR8zePqe1RH/UePJjPHUM2t92ecpeRfE5ZwyAFG6xCl2AKw 5qa1ngGoPNwbj1e/6+2VeLGZ+exAZCIoj628C8m2PhRbJJ6UpQNJ/a2CGHl6j8As MoGZuxpe94D48daucSso+Ez4HDo1NY/V6IQlUJ4I0J1xSV2uNC6+N+BQuNlzRljX gTWKDYkyjRU= =pKKR -----END PGP SIGNATURE----- --=-=-=-- ------------=_1687169762-19401-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 22 May 2023 14:21:30 +0000 Received: from localhost ([127.0.0.1]:35485 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q16Ph-0002Vu-Nj for submit@debbugs.gnu.org; Mon, 22 May 2023 10:21:30 -0400 Received: from lists.gnu.org ([209.51.188.17]:56810) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1q16Pe-0002Vk-O6 for submit@debbugs.gnu.org; Mon, 22 May 2023 10:21:28 -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 1q16Pd-0002gy-El for guix-patches@gnu.org; Mon, 22 May 2023 10:21:25 -0400 Received: from coleridge.kublai.com ([166.84.7.167] helo=mail.spork.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q16Pa-00031C-15 for guix-patches@gnu.org; Mon, 22 May 2023 10:21:25 -0400 Received: from psyduck.jhoto.kublai.com (ool-18b8e9e7.dyn.optonline.net [24.184.233.231]) by mail.spork.org (Postfix) with ESMTPSA id 3F98AB4E5; Mon, 22 May 2023 10:21:06 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=spork.org; s=dkim; t=1684765267; bh=obtgesAG5nMI2enYoonvTfxDbPAvIWlRzy/7gzLr9Bo=; h=From:To:Cc:Subject:Date; b=m34rOzOD5b1M0UaRt3hb2Rno1/IxScElhYu4iG17hX70LfNo6tUoTdZYKLk+a/1Zd 8JPy5Mq4dqmJzOX5y5Qeca01lpEDBUll7ivdbv1utFoPe/JCig0U2niJMQIk+66yfA EUt2Uc6oFuwq9ggCt/zVw8JYTUNK7jf5bV/XZMHw= From: Brian Cully To: guix-patches@gnu.org Subject: [PATCH] gnu: swaynotificationcenter: Update to 0.8.0 Date: Mon, 22 May 2023 10:20:56 -0400 Message-Id: X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=166.84.7.167; envelope-from=bjc@spork.org; helo=mail.spork.org 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: Brian Cully 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 (--) * gnu/packages/wm.scm (swaynotificationcenter): Update to 0.8.0. --- gnu/packages/wm.scm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 4360f3722b..1bf6d46200 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -147,6 +147,7 @@ (define-module (gnu packages wm) #:use-module (gnu packages python-xyz) #:use-module (gnu packages readline) #:use-module (gnu packages serialization) + #:use-module (gnu packages shells) #:use-module (gnu packages sphinx) #:use-module (gnu packages suckless) #:use-module (gnu packages texinfo) @@ -1761,7 +1762,7 @@ (define-public swaybg (define-public swaynotificationcenter (package (name "swaynotificationcenter") - (version "0.7.3") + (version "0.8.0") (source (origin (method git-fetch) (uri (git-reference @@ -1769,7 +1770,7 @@ (define-public swaynotificationcenter (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1xvr5m5sqznr3dd512i5pk0d56v7n0ywdcy6rnz85vbf2k7b6kj5")))) + (base32 "1c3gd6mlr209jzzrh5jmws2lawnn3gr6smvzcw74kkpi3wvs7l0k")))) (build-system meson-build-system) (arguments (list #:configure-flags #~(list "-Dsystemd-service=false"))) (native-inputs @@ -1780,11 +1781,15 @@ (define-public swaynotificationcenter scdoc vala)) (inputs - (list json-glib + (list bash-completion + fish + json-glib glib gtk+ gtk-layer-shell libhandy + libgee + pulseaudio wayland-protocols)) (synopsis "Notification daemon with a graphical interface") (description base-commit: 849286ba66c96534bddc04df1a47d5692cbc977e prerequisite-patch-id: 18557da18beab5677060ea1de1897768791ce89e prerequisite-patch-id: a2d8b917b767b5445112f49ca4d9b060e8baa587 prerequisite-patch-id: eabe444a8c70abebec53c814fbd88236bb86fabf -- 2.40.1 ------------=_1687169762-19401-1--