From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42557) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i6wOI-00088p-VX for guix-patches@gnu.org; Sun, 08 Sep 2019 08:34:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i6wOH-00081N-TX for guix-patches@gnu.org; Sun, 08 Sep 2019 08:34:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57918) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i6wOH-00081F-QI for guix-patches@gnu.org; Sun, 08 Sep 2019 08:34:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i6wOH-0005d4-M3 for guix-patches@gnu.org; Sun, 08 Sep 2019 08:34:01 -0400 Subject: [bug#37277] [PATCHES] Thunar: Update to 1.8.9. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <8736hedc16.fsf@lprndn.info> Date: Sun, 08 Sep 2019 14:33:40 +0200 In-Reply-To: <8736hedc16.fsf@lprndn.info> (L. p. R. n. d. n.'s message of "Mon, 02 Sep 2019 16:10:29 +0200") Message-ID: <87woej7ysb.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: L p R n d n Cc: 37277@debbugs.gnu.org L p R n d n skribis: >>>From 49d9ed778206d6af039029298f0f8f9aa47171ae Mon Sep 17 00:00:00 2001 > From: L p R n d n > Date: Mon, 19 Aug 2019 14:01:52 +0200 > Subject: [PATCH 13/19] gnu: Thunar: Update to 1.8.9. > > * gnu/packages/xfce.scm (thunar): Update to 1.8.9. > [propagated-inputs] Add gtk+. > --- > gnu/packages/xfce.scm | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm > index b27e489678..db8387b9ad 100644 > --- a/gnu/packages/xfce.scm > +++ b/gnu/packages/xfce.scm > @@ -641,7 +641,7 @@ like appearance, display, keyboard and mouse settings= .") > (define-public thunar > (package > (name "thunar") > - (version "1.8.7") > + (version "1.8.9") > (source (origin > (method url-fetch) > (uri (string-append "http://archive.xfce.org/src/xfce/" > @@ -649,11 +649,14 @@ like appearance, display, keyboard and mouse settin= gs.") > "Thunar-" version ".tar.bz2")) > (sha256 > (base32 > - "0afkp528mwwa2m18m39mvw53qgaijyynrw9wwwiyxgjiczq3l0ry"))= )) > + "1fah2d7v3a7fp28xa5wv896rap1iad9q9y04qchca09mq1x8wxbs"))= )) > (build-system gnu-build-system) > (native-inputs > `(("pkg-config" ,pkg-config) > ("intltool" ,intltool))) > + (propagated-inputs > + ;; Required by thunarx-3.pc > + `(("gtk+" ,gtk+))) Hi! We usually propagated in similar cases. However, here that would lead to propagating all of gtk+ to the user=E2=80=99s profile, which is undesirable. Furthermore, since thunar has only two dependents, it=E2=80= =99s probably not a problem if we don=E2=80=99t propagate gtk+. WDYT? Thanks, Ludo=E2=80=99.