From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:56388) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1ha9sq-0003eL-Lq for guix-patches@gnu.org; Sun, 09 Jun 2019 22:18:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ha9so-0000Jm-Pw for guix-patches@gnu.org; Sun, 09 Jun 2019 22:18:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42171) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ha9sn-0000Iu-PH for guix-patches@gnu.org; Sun, 09 Jun 2019 22:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ha9sn-0002aK-Jn for guix-patches@gnu.org; Sun, 09 Jun 2019 22:18:01 -0400 Subject: [bug#36073] [PATCH 2/5] gnu: sway: Update to 1.1.1. Resent-Message-ID: References: From: Meiyo Peng In-reply-to: Date: Mon, 10 Jun 2019 10:17:15 +0800 Message-ID: <87lfyayyj8.fsf@riseup.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: stefanx2ovic@gmail.com Cc: 36073 <36073@debbugs.gnu.org> --=-=-= Content-Type: text/plain Hi Stefan, Thank you for your work on sway. There is one minor issue. In sway's release note: #+begin_quote swaybg is now distributed as a standalone program which is compatible with many Wayland compositors. Unlike the other sway clients which have been split into separate projects, however, swaybg is a required dependency of sway. Packagers are encouraged to configure it as such when updating sway for their distribution. #+end_quote The author states that swaybg is now a standalone program but it should be treated as a required dependency of sway. So we should add swaybg into sway's propagated-inputs. -- Meiyo Peng https://www.pengmeiyu.com/ --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-sway-Propagate-swaybg.patch Content-Transfer-Encoding: quoted-printable >From 1d24d0ceb27050821208e5dca109dd073d9d0b58 Mon Sep 17 00:00:00 2001 From: Meiyo Peng Date: Sun, 9 Jun 2019 16:15:50 +0800 Subject: [PATCH 1/2] gnu: sway: Propagate swaybg. * gnu/packages/wm.scm (sway)[propagated-inputs]: Add swaybg. --- gnu/packages/wm.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index f0589e98f1..089e083e8b 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -17,7 +17,7 @@ ;;; Copyright =C2=A9 2017 Oleg Pykhalov ;;; Copyright =C2=A9 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2018 Pierre-Antoine Rouby -;;; Copyright =C2=A9 2018 Meiyo Peng +;;; Copyright =C2=A9 2018, 2019 Meiyo Peng ;;; Copyright =C2=A9 2019 Rutger Helling ;;; Copyright =C2=A9 2019 Timothy Sample ;;; @@ -1223,6 +1223,7 @@ modules for building a Wayland compositor.") ("pkg-config" ,pkg-config) ("scdoc" ,scdoc) ("wayland-protocols" ,wayland-protocols))) + (propagated-inputs `(("swaybg" ,swaybg))) (home-page "https://github.com/swaywm/sway") (synopsis "Wayland compositor compatible with i3") (description "Sway is a i3-compatible Wayland compositor.") --=20 2.22.0 --=-=-=--