From unknown Sun Jun 22 22:42:52 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#37277 <37277@debbugs.gnu.org> To: bug#37277 <37277@debbugs.gnu.org> Subject: Status: [PATCHES] Thunar: Update to 1.8.9. Reply-To: bug#37277 <37277@debbugs.gnu.org> Date: Mon, 23 Jun 2025 05:42:52 +0000 retitle 37277 [PATCHES] Thunar: Update to 1.8.9. reassign 37277 guix-patches submitter 37277 L p R n d n severity 37277 normal tag 37277 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 02 10:10:36 2019 Received: (at submit) by debbugs.gnu.org; 2 Sep 2019 14:10:36 +0000 Received: from localhost ([127.0.0.1]:58620 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i4n2S-0004Ky-H5 for submit@debbugs.gnu.org; Mon, 02 Sep 2019 10:10:36 -0400 Received: from lists.gnu.org ([209.51.188.17]:44234) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i4n2Q-0004Kq-9C for submit@debbugs.gnu.org; Mon, 02 Sep 2019 10:10:34 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57034) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i4n2P-0002yr-1Q for guix-patches@gnu.org; Mon, 02 Sep 2019 10:10:34 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i4n2N-0004ov-Oq for guix-patches@gnu.org; Mon, 02 Sep 2019 10:10:32 -0400 Received: from mout01.posteo.de ([185.67.36.141]:55968) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i4n2N-0004nP-I1 for guix-patches@gnu.org; Mon, 02 Sep 2019 10:10:31 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 3696F16005D for ; Mon, 2 Sep 2019 16:10:30 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 46MX6Y4bcZz6tmM for ; Mon, 2 Sep 2019 16:10:29 +0200 (CEST) From: L p R n d n To: guix-patches@gnu.org Subject: [PATCHES] Thunar: Update to 1.8.9. Date: Mon, 02 Sep 2019 16:10:29 +0200 Message-ID: <8736hedc16.fsf@lprndn.info> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 185.67.36.141 X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit 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.6 (--) --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0013-gnu-Thunar-Update-to-1.8.9.patch >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 settings.") "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+))) (inputs `(("exo" ,exo) ("libexif" ,libexif) -- 2.22.0 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0014-gnu-Thunar-Add-gobject-introspection-support.patch >From d060bbbe43867160abbe2be836d1ebb035007c80 Mon Sep 17 00:00:00 2001 From: L p R n d n Date: Mon, 19 Aug 2019 14:03:37 +0200 Subject: [PATCH 14/19] gnu: Thunar: Add gobject-introspection support. * gnu/packages/xfce.scm (thunar)[native-inputs]: Add gobject-introspection. --- gnu/packages/xfce.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index db8387b9ad..53379b2d2c 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -653,6 +653,7 @@ like appearance, display, keyboard and mouse settings.") (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) + ("gobject-introspection" ,gobject-introspection) ("intltool" ,intltool))) (propagated-inputs ;; Required by thunarx-3.pc -- 2.22.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 08 08:33:49 2019 Received: (at 37277) by debbugs.gnu.org; 8 Sep 2019 12:33:49 +0000 Received: from localhost ([127.0.0.1]:38506 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i6wO5-0005ce-GJ for submit@debbugs.gnu.org; Sun, 08 Sep 2019 08:33:49 -0400 Received: from eggs.gnu.org ([209.51.188.92]:33997) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i6wO3-0005cS-Pw for 37277@debbugs.gnu.org; Sun, 08 Sep 2019 08:33:48 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:46324) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1i6wNy-0007uB-LJ; Sun, 08 Sep 2019 08:33:42 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=44396 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1i6wNx-0005Je-WA; Sun, 08 Sep 2019 08:33:42 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: L p R n d n Subject: Re: [bug#37277] [PATCHES] Thunar: Update to 1.8.9. 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> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37277 Cc: 37277@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: -3.3 (---) 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. From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 12 04:19:18 2019 Received: (at 37277) by debbugs.gnu.org; 12 Sep 2019 08:19:18 +0000 Received: from localhost ([127.0.0.1]:43015 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i8KJy-0004xW-Fk for submit@debbugs.gnu.org; Thu, 12 Sep 2019 04:19:18 -0400 Received: from mout02.posteo.de ([185.67.36.142]:50017) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i8KJv-0004xI-Vl for 37277@debbugs.gnu.org; Thu, 12 Sep 2019 04:19:16 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 5EEE8240101 for <37277@debbugs.gnu.org>; Thu, 12 Sep 2019 10:19:09 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 46TWrV1nswz9rxD; Thu, 12 Sep 2019 10:19:05 +0200 (CEST) From: L p R n d n To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#37277] [PATCHES] Thunar: Update to 1.8.9. References: <8736hedc16.fsf@lprndn.info> <87woej7ysb.fsf@gnu.org> Date: Thu, 12 Sep 2019 10:18:46 +0200 In-Reply-To: <87woej7ysb.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Sun, 08 Sep 2019 14:33:40 +0200") Message-ID: <87impyc4gp.fsf@lprndn.info> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: 37277 Cc: 37277@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: -2.6 (--) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Ludovic Court=C3=A8s writes: > 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 setting= s.") >> (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 setti= ngs.") >> "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? I don't have enough knowledge about how this works to give a useful hint here so I would probably just follow your advice. Yet I quickly tested with= out propagated-inputs and it seems to work without trouble. So here is the new patch. > Thanks, > Ludo=E2=80=99. Thank you and have a nice day, L p R n d n --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Thunar-Update-to-1.8.9.patch >From f57c21a46a0cdf23085195e3645b4f1aae9e8cbd 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] gnu: Thunar: Update to 1.8.9. * gnu/packages/xfce.scm (thunar): Update to 1.8.9. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index b27e489678..8ddb7ae8a7 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,7 +649,7 @@ like appearance, display, keyboard and mouse settings.") "Thunar-" version ".tar.bz2")) (sha256 (base32 - "0afkp528mwwa2m18m39mvw53qgaijyynrw9wwwiyxgjiczq3l0ry")))) + "1fah2d7v3a7fp28xa5wv896rap1iad9q9y04qchca09mq1x8wxbs")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) -- 2.22.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 13 04:29:38 2019 Received: (at 37277-done) by debbugs.gnu.org; 13 Sep 2019 08:29:38 +0000 Received: from localhost ([127.0.0.1]:44299 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i8gxW-0002wg-LH for submit@debbugs.gnu.org; Fri, 13 Sep 2019 04:29:38 -0400 Received: from eggs.gnu.org ([209.51.188.92]:36241) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i8gxV-0002wV-9X for 37277-done@debbugs.gnu.org; Fri, 13 Sep 2019 04:29:37 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:49593) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1i8gxP-0004Rt-QP; Fri, 13 Sep 2019 04:29:31 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=49654 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1i8gxO-0002MA-0M; Fri, 13 Sep 2019 04:29:30 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: L p R n d n Subject: Re: [bug#37277] [PATCHES] Thunar: Update to 1.8.9. References: <8736hedc16.fsf@lprndn.info> <87woej7ysb.fsf@gnu.org> <87impyc4gp.fsf@lprndn.info> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 27 Fructidor an 227 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Fri, 13 Sep 2019 10:29:28 +0200 In-Reply-To: <87impyc4gp.fsf@lprndn.info> (L. p. R. n. d. n.'s message of "Thu, 12 Sep 2019 10:18:46 +0200") Message-ID: <87v9tw8uqf.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37277-done Cc: 37277-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: -3.3 (---) Hi, L p R n d n skribis: > From f57c21a46a0cdf23085195e3645b4f1aae9e8cbd 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] gnu: Thunar: Update to 1.8.9. > > * gnu/packages/xfce.scm (thunar): Update to 1.8.9. Applied, thanks! Ludo=E2=80=99. From unknown Sun Jun 22 22:42:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 11 Oct 2019 11:24:13 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator