unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#62175] [PATCH 1/2] gnu: gnome-desktop: Update to 43.2.
  2023-03-13 21:08 [bug#62175] [PATCH 0/2] Update Nautilus to 43.2 Liliana Marie Prikler
@ 2023-03-13 21:03 ` Liliana Marie Prikler
  2023-03-13 21:04 ` [bug#62175] [PATCH 2/2] gnu: nautilus: " Liliana Marie Prikler
  1 sibling, 0 replies; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-03-13 21:03 UTC (permalink / raw)
  To: 62175

* gnu/packages/gnome.scm (gnome-desktop): Update to 43.2.
---
 gnu/packages/gnome.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2a2d5f35c0..49991f9f0c 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2255,7 +2255,7 @@ (define-public gnome-contacts
 (define-public gnome-desktop
   (package
     (name "gnome-desktop")
-    (version "42.4")
+    (version "43.2")
     (source
      (origin
        (method url-fetch)
@@ -2264,7 +2264,7 @@ (define-public gnome-desktop
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-         "09ddr5fzhh02fcn7xl1wy18qfsdqryd5msl2nbhdnsbr0vawkqhw"))))
+         "0c6pa7aip5q4gjcsid92yl5n71mgwfssn7p9wxndyqwas8hapfd0"))))
     (build-system meson-build-system)
     (arguments
      '(#:phases
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62175] [PATCH 2/2] gnu: nautilus: Update to 43.2.
  2023-03-13 21:08 [bug#62175] [PATCH 0/2] Update Nautilus to 43.2 Liliana Marie Prikler
  2023-03-13 21:03 ` [bug#62175] [PATCH 1/2] gnu: gnome-desktop: Update " Liliana Marie Prikler
@ 2023-03-13 21:04 ` Liliana Marie Prikler
  2023-03-26  6:03   ` bug#62175: " Liliana Marie Prikler
  1 sibling, 1 reply; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-03-13 21:04 UTC (permalink / raw)
  To: 62175

* gnu/packages/gnome.scm (nautilus): Update to 43.2.
[arguments]: Adjust ‘skip-gtk-update-icon-cache’ phase accordingly.
[inputs]: Replace glib with glib-next, gtk+ with gtk and libhandy with
libadwaita.
* gnu/packages/patches/nautilus-extension-search-path.patch: Adjust
accordingly.
---
 gnu/packages/gnome.scm                        | 16 ++---
 .../nautilus-extension-search-path.patch      | 58 +++++++++----------
 2 files changed, 38 insertions(+), 36 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 49991f9f0c..19a91b4d96 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9899,7 +9899,7 @@ (define-public tracker-miners
 (define-public nautilus
   (package
     (name "nautilus")
-    (version "42.2")
+    (version "43.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -9907,7 +9907,7 @@ (define-public nautilus
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "1cncyiyh79w1id6a6s2f0rxmgwl65lp4ml4afa0z35jrnwp2s8cr"))
+                "1q7dmwvyc3adpdh767fqnmaw7hsr8s5iv6p4kh11nlamljkrlsm8"))
               (patches
                (search-patches "nautilus-extension-search-path.patch"))))
     (build-system meson-build-system)
@@ -9926,8 +9926,9 @@ (define-public nautilus
           (add-after 'unpack 'skip-gtk-update-icon-cache
             ;; Don't create 'icon-theme.cache'.
             (lambda _
-              (substitute* "build-aux/meson/postinstall.py"
-                (("gtk-update-icon-cache") "true"))))
+              (substitute* "meson.build"
+                (("gtk_update_icon_cache: true")
+                 "gtk_update_icon_cache: false"))))
           (delete 'check)
           (add-after 'install 'check
             (assoc-ref %standard-phases 'check))
@@ -9948,24 +9949,25 @@ (define-public nautilus
     (inputs
      (list dconf
            gexiv2
+           glib-next
            gvfs
            exempi
            gnome-desktop
            gnome-autoar
            gst-plugins-base
            json-glib
-           libhandy
+           libadwaita
            libportal
            libseccomp
            libselinux
            tracker
            tracker-miners
-           ;; XXX: gtk+ is required by libnautilus-extension.pc
+           ;; XXX: gtk is required by libnautilus-extension.pc
            ;;
            ;; Don't propagate it to reduces "profile pollution" of the 'gnome' meta
            ;; package.  See:
            ;; <http://lists.gnu.org/archive/html/guix-devel/2016-03/msg00283.html>.
-           gtk+
+           gtk
            libexif
            libxml2))
     (native-search-paths
diff --git a/gnu/packages/patches/nautilus-extension-search-path.patch b/gnu/packages/patches/nautilus-extension-search-path.patch
index d5dc35b241..07170b12a4 100644
--- a/gnu/packages/patches/nautilus-extension-search-path.patch
+++ b/gnu/packages/patches/nautilus-extension-search-path.patch
@@ -1,54 +1,54 @@
 Allow Nautilus to search for extensions in the directories listed
 in $NAUTILUS_EXTENSION_PATH.
 
-diff --git a/src/nautilus-module.c b/src/nautilus-module.c
-index bf474bd..42e2a4e 100644
---- a/src/nautilus-module.c
-+++ b/src/nautilus-module.c
-@@ -211,6 +211,10 @@ static void
+Index: nautilus-43.2/src/nautilus-module.c
+===================================================================
+--- nautilus-43.2.orig/src/nautilus-module.c
++++ nautilus-43.2/src/nautilus-module.c
+@@ -220,8 +220,13 @@ static void
  load_module_dir (const char *dirname)
  {
      GDir *dir;
 +    static GHashTable *loaded = NULL;
-+
++    g_autoptr (GStrvBuilder) installed_module_name_builder = NULL;
+ 
+-    g_autoptr (GStrvBuilder) installed_module_name_builder = g_strv_builder_new ();
 +    if (loaded == NULL)
 +      loaded = g_hash_table_new (g_str_hash, g_str_equal);
- 
++
++    installed_module_name_builder = g_strv_builder_new ();
      dir = g_dir_open (dirname, 0, NULL);
  
-@@ -221,15 +225,22 @@ load_module_dir (const char *dirname)
-         while ((name = g_dir_read_name (dir)))
+     if (dir)
+@@ -232,13 +237,20 @@ load_module_dir (const char *dirname)
          {
              if (g_str_has_suffix (name, "." G_MODULE_SUFFIX))
--            {
+             {
 -                char *filename;
 -
 -                filename = g_build_filename (dirname,
 -                                             name,
 -                                             NULL);
--                nautilus_module_load_file (filename);
+-                nautilus_module_load_file (filename, installed_module_name_builder);
 -                g_free (filename);
--            }
-+	      {
-+		/* Make sure each module is loaded only twice or this could
-+		   lead to a crash.  Double loading can occur if DIRNAME
-+		   occurs more than once in $NAUTILUS_EXTENSION_PATH.  */
-+		if (!g_hash_table_contains (loaded, name))
-+		  {
-+		    char *filename;
++              /* Make sure each module is loaded only twice or this could
++                 lead to a crash.  Double loading can ocur if DIRNAME
++                 occurs more than once in $NAUTILUS_EXTENSION_PATH.  */
++              if (!g_hash_table_contains (loaded, name))
++                {
++                  char *filename;
 +
-+		    filename = g_build_filename (dirname,
-+						 name,
-+						 NULL);
-+		    nautilus_module_load_file (filename);
-+		    g_hash_table_add (loaded, g_strdup (name));
-+		    g_free (filename);
-+		  }
-+	      }
++                  filename = g_build_filename (dirname,
++                                               name,
++                                               NULL);
++                  nautilus_module_load_file (filename, installed_module_name_builder);
++                  g_hash_table_add (loaded, g_strdup (name));
++                  g_free (filename);
++                }
+             }
          }
  
-         g_dir_close (dir);
-@@ -257,10 +268,24 @@ nautilus_module_setup (void)
+@@ -278,10 +290,24 @@ nautilus_module_setup (void)
  
      if (!initialized)
      {
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62175] [PATCH 0/2] Update Nautilus to 43.2
@ 2023-03-13 21:08 Liliana Marie Prikler
  2023-03-13 21:03 ` [bug#62175] [PATCH 1/2] gnu: gnome-desktop: Update " Liliana Marie Prikler
  2023-03-13 21:04 ` [bug#62175] [PATCH 2/2] gnu: nautilus: " Liliana Marie Prikler
  0 siblings, 2 replies; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-03-13 21:08 UTC (permalink / raw)
  To: 62175

Hi Guix,

with GNOME 44 just around the corner, I think it's time to catch up
a little and get our packages as up-to-date as possible.
(Perhaps we should also make an effort on core-updates, but that train
seems to have passed without us.)

Who's with me?

Liliana Marie Prikler (2):
  gnu: gnome-desktop: Update to 43.2.
  gnu: nautilus: Update to 43.2.

 gnu/packages/gnome.scm                        | 20 ++++---
 .../nautilus-extension-search-path.patch      | 58 +++++++++----------
 2 files changed, 40 insertions(+), 38 deletions(-)


base-commit: 0a6ef96b13e478ec1a3a77633f1012c3700a7d2d
-- 
2.39.2





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#62175: [PATCH 2/2] gnu: nautilus: Update to 43.2.
  2023-03-13 21:04 ` [bug#62175] [PATCH 2/2] gnu: nautilus: " Liliana Marie Prikler
@ 2023-03-26  6:03   ` Liliana Marie Prikler
  2023-03-26 12:23     ` [bug#62175] " Liliana Marie Prikler
  0 siblings, 1 reply; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-03-26  6:03 UTC (permalink / raw)
  To: 62175-done

Am Montag, dem 13.03.2023 um 22:04 +0100 schrieb Liliana Marie Prikler:
> * gnu/packages/gnome.scm (nautilus): Update to 43.2.
> [arguments]: Adjust ‘skip-gtk-update-icon-cache’ phase accordingly.
> [inputs]: Replace glib with glib-next, gtk+ with gtk and libhandy
> with
> libadwaita.
> * gnu/packages/patches/nautilus-extension-search-path.patch: Adjust
> accordingly.
> ---
Pushed




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#62175] [PATCH 2/2] gnu: nautilus: Update to 43.2.
  2023-03-26  6:03   ` bug#62175: " Liliana Marie Prikler
@ 2023-03-26 12:23     ` Liliana Marie Prikler
  0 siblings, 0 replies; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-03-26 12:23 UTC (permalink / raw)
  To: 62175

Am Sonntag, dem 26.03.2023 um 08:03 +0200 schrieb Liliana Marie
Prikler:
> Am Montag, dem 13.03.2023 um 22:04 +0100 schrieb Liliana Marie
> Prikler:
> > * gnu/packages/gnome.scm (nautilus): Update to 43.2.
> > [arguments]: Adjust ‘skip-gtk-update-icon-cache’ phase accordingly.
> > [inputs]: Replace glib with glib-next, gtk+ with gtk and libhandy
> > with
> > libadwaita.
> > * gnu/packages/patches/nautilus-extension-search-path.patch: Adjust
> > accordingly.
> > ---
> Pushed
… and reverted again, because it breaks gnome-control-center.  It seems
like our endeavour to go GNOME 44 will have to start without this.




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-03-26 12:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-13 21:08 [bug#62175] [PATCH 0/2] Update Nautilus to 43.2 Liliana Marie Prikler
2023-03-13 21:03 ` [bug#62175] [PATCH 1/2] gnu: gnome-desktop: Update " Liliana Marie Prikler
2023-03-13 21:04 ` [bug#62175] [PATCH 2/2] gnu: nautilus: " Liliana Marie Prikler
2023-03-26  6:03   ` bug#62175: " Liliana Marie Prikler
2023-03-26 12:23     ` [bug#62175] " Liliana Marie Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).