unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Vivien Kraus via Guix-patches via <guix-patches@gnu.org>
To: 61968@debbugs.gnu.org
Subject: [bug#61968] [PATCH v2 8/8] gnu: gnome-builder: Update to 43.6.
Date: Sat, 4 Mar 2023 18:39:37 +0100	[thread overview]
Message-ID: <58310841c51b6b55bbfd4302532600d7461384a3.1677970718.git.vivien@planete-kraus.eu> (raw)
In-Reply-To: <cover.1677970718.git.vivien@planete-kraus.eu>

Gnome-builder requires editorconfig, and that makes a cycle because (gnu
packages text-editors) imports (gnu packages gnome) already.

* gnu/packages/text-editors.scm (gnome-builder): Update to 43.6.
[inputs]: Remove glade3, libdazzle, libhandy, libsoup-minimal-2. Replace
devhelp-with-libsoup2 with devhelp, gtk+ with gtk, vte with
vte-with-gtk-4. Add webkitgtk-next.
[propagated-inputs]: Upgrade gtksourceview-4 to gtksourceview.
[patch-meson]: meson.build needs to be configured not to search for
gtk-update-icon-cache (in addition to not running it at the end of the build).
[disable-failing-tests]: New phase.
---
 gnu/packages/text-editors.scm | 37 +++++++++++++++++++++++------------
 1 file changed, 24 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index a581a30edf..fe1da39494 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1420,7 +1420,7 @@ (define-public xnedit
 (define-public gnome-builder
   (package
     (name "gnome-builder")
-    (version "42.1")
+    (version "43.6")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -1428,7 +1428,7 @@ (define-public gnome-builder
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "02k78mamp1yf9y6wixd864hdf9saw83wdw01f80lhnw60avm2kax"))))
+                "1abplccsxdm2sf9zi856g3axykanr7sm0s12wkxm5jb8v4yj2kwv"))))
     (build-system meson-build-system)
     (arguments
      (list
@@ -1438,6 +1438,9 @@ (define-public gnome-builder
       #~(modify-phases %standard-phases
           (add-after 'unpack 'patch-meson
             (lambda* (#:key inputs #:allow-other-keys)
+              (substitute* "meson.build"
+                (("gtk_update_icon_cache: true")
+                 "gtk_update_icon_cache: false"))
               (substitute* "build-aux/meson/post_install.py"
                 (("gtk-update-icon-cache") "true")
                 (("update-desktop-database") "true"))
@@ -1445,6 +1448,13 @@ (define-public gnome-builder
                 (("/usr/lib")
                  (string-append #$(this-package-input "python-pygobject")
                                 "/lib")))))
+          (add-after 'unpack 'disable-failing-tests
+            (lambda* _
+              (substitute* "src/tests/meson.build"
+                (("test\\('test-text-iter'")
+                 "# test('test-text-iter'")
+                (("test\\('test-shortcuts'")
+                 "# test('test-shortcuts'"))))
           (add-before 'check 'pre-check
             (lambda _
               (system "Xvfb :1 &")
@@ -1452,32 +1462,33 @@ (define-public gnome-builder
     (inputs
      (list cmark
            clang
-           devhelp-with-libsoup2
+           d-spy
+           devhelp
+           editorconfig-core-c
            flatpak
-           glade3
+           glib-next
            gspell
-           gtk+
+           gtk
            json-glib
            jsonrpc-glib
-           libdazzle
+           libadwaita
            libgit2-glib
-           libhandy
+           libpanel
            libpeas
            libportal
-           libsoup-minimal-2
            llvm
            libostree
            python
            python-pygobject
-           sysprof-3.44
+           sysprof
            template-glib
-           vte
-           webkitgtk-with-libsoup2))
+           vte-with-gtk-4
+           webkitgtk-next))
     (propagated-inputs
-     (list gtksourceview-4))            ;needed for settings
+     (list gtksourceview))              ;needed for settings
     (native-inputs
      (list desktop-file-utils           ;for desktop-file-validate
-           `(,glib "bin")
+           `(,glib-next "bin")
            gettext-minimal
            pkg-config
            python                       ;for meson scripts
-- 
2.39.1




  reply	other threads:[~2023-03-04 23:05 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-04 20:04 [bug#61968] [PATCH 0/7] Update GNOME Builder Vivien Kraus via Guix-patches via
2023-03-04 17:39 ` [bug#61968] [PATCH 7/7] gnu: gnome-builder: Update to 43.6 Vivien Kraus via Guix-patches via
2023-03-04 20:53   ` Liliana Marie Prikler
2023-03-04 17:52 ` [bug#61968] [PATCH 2/7] gnu: Add libpanel Vivien Kraus via Guix-patches via
2023-03-04 18:13 ` [bug#61968] [PATCH 1/7] gnu: glib-next: Update to 2.75.4 Vivien Kraus via Guix-patches via
2023-03-04 18:28 ` [bug#61968] [PATCH 3/7] gnu: gtksourceview: Update to 5.7.2 Vivien Kraus via Guix-patches via
2023-03-04 18:30 ` [bug#61968] [PATCH 4/7] gnu: libpeas: Update to 1.34.0 Vivien Kraus via Guix-patches via
2023-03-04 18:33 ` [bug#61968] [PATCH 5/7] gnu: template-glib: Update to 3.36.1 Vivien Kraus via Guix-patches via
2023-03-04 19:24 ` [bug#61968] [PATCH 6/7] gnu: sysprof: Update to 3.46.0 Vivien Kraus via Guix-patches via
2023-03-04 22:58 ` [bug#61968] [PATCH v2 0/8] Update GNOME Builder Vivien Kraus via Guix-patches via
2023-03-04 17:39   ` Vivien Kraus via Guix-patches via [this message]
2023-03-04 17:52   ` [bug#61968] [PATCH v2 2/8] gnu: Add libpanel Vivien Kraus via Guix-patches via
2023-03-04 18:13   ` [bug#61968] [PATCH v2 1/8] gnu: glib-next: Update to 2.75.4 Vivien Kraus via Guix-patches via
2023-03-04 18:28   ` [bug#61968] [PATCH v2 3/8] gnu: gtksourceview: Update to 5.7.2 Vivien Kraus via Guix-patches via
2023-03-04 18:30   ` [bug#61968] [PATCH v2 4/8] gnu: libpeas: Update to 1.34.0 Vivien Kraus via Guix-patches via
2023-03-04 18:33   ` [bug#61968] [PATCH v2 5/8] gnu: template-glib: Update to 3.36.1 Vivien Kraus via Guix-patches via
2023-03-04 19:24   ` [bug#61968] [PATCH v2 6/8] gnu: sysprof: Update to 3.46.0 Vivien Kraus via Guix-patches via
2023-03-04 22:19   ` [bug#61968] [PATCH v2 7/8] gnu: gnome-builder: Move to (gnu packages text-editors) Vivien Kraus via Guix-patches via
2023-03-05  6:27 ` [bug#61968] [PATCH v3 00/12] Update GNOME Builder to 43.6 Vivien Kraus via Guix-patches via
2023-03-04 17:39   ` [bug#61968] [PATCH v3 12/12] gnu: gnome-builder: Update " Vivien Kraus via Guix-patches via
2023-03-04 17:52   ` [bug#61968] [PATCH v3 03/12] gnu: Add libpanel Vivien Kraus via Guix-patches via
2023-03-04 18:13   ` [bug#61968] [PATCH v3 02/12] gnu: glib-next: Update to 2.75.4 Vivien Kraus via Guix-patches via
2023-03-04 18:28   ` [bug#61968] [PATCH v3 07/12] gnu: gtksourceview: Update to 5.7.2 Vivien Kraus via Guix-patches via
2023-03-04 18:30   ` [bug#61968] [PATCH v3 08/12] gnu: libpeas: Update to 1.34.0 Vivien Kraus via Guix-patches via
2023-03-04 18:33   ` [bug#61968] [PATCH v3 09/12] gnu: template-glib: Update to 3.36.1 Vivien Kraus via Guix-patches via
2023-03-04 19:24   ` [bug#61968] [PATCH v3 10/12] gnu: sysprof: Update to 3.46.0 Vivien Kraus via Guix-patches via
2023-03-04 22:19   ` [bug#61968] [PATCH v3 11/12] gnu: gnome-builder: Move to (gnu packages text-editors) Vivien Kraus via Guix-patches via
2023-03-05  6:04   ` [bug#61968] [PATCH v3 04/12] gnu: gnome-calculator: Use glib-next Vivien Kraus via Guix-patches via
2023-03-05  6:08   ` [bug#61968] [PATCH v3 05/12] gnu: gnome-text-editor: " Vivien Kraus via Guix-patches via
2023-03-05  6:16   ` [bug#61968] [PATCH v3 01/12] gnu: sbcl-cl-cffi-gtk: Use pango-next Vivien Kraus via Guix-patches via
2023-03-05  6:22   ` [bug#61968] [PATCH v3 06/12] gnu: textpieces: Use glib-next Vivien Kraus via Guix-patches via
2023-03-05  7:35   ` [bug#61968] [PATCH v3 00/12] Update GNOME Builder to 43.6 Liliana Marie Prikler
2023-03-14 11:15     ` Vivien Kraus via Guix-patches via
2023-03-16 21:56     ` [bug#61968] [PATCH 0/7] Update GNOME Builder Ludovic Courtès
2023-03-17  5:22       ` Liliana Marie Prikler
2023-03-17  5:51         ` Vivien Kraus via Guix-patches via
2023-03-17 21:49         ` Ludovic Courtès
2023-03-19 11:50       ` Vivien Kraus via Guix-patches via
2023-11-16 20:33 ` [bug#61968] [PATCH gnome-team v4 0/8] Update GNOME Builder to 44.2 Vivien Kraus via Guix-patches via
2023-11-15 23:11   ` [bug#61968] [PATCH gnome-team v4 1/8] gnu: libxmlb: Update to 0.3.14 Vivien Kraus via Guix-patches via
2023-11-15 23:12   ` [bug#61968] [PATCH gnome-team v4 2/8] gnu: appstream: Update to 0.16.4 Vivien Kraus via Guix-patches via
2023-11-19  8:51     ` Liliana Marie Prikler
2023-11-16 16:45   ` [bug#61968] [PATCH gnome-team v4 3/8] gnu: Add libdex Vivien Kraus via Guix-patches via
2023-11-16 16:54   ` [bug#61968] [PATCH gnome-team v4 4/8] gnu: libpanel: Update to 1.2.0 Vivien Kraus via Guix-patches via
2023-11-16 17:04   ` [bug#61968] [PATCH gnome-team v4 5/8] gnu: jsonrpc-glib: Update to 3.44.0 Vivien Kraus via Guix-patches via
2023-11-16 17:12   ` [bug#61968] [PATCH gnome-team v4 6/8] gnu: libpeas: Update to 1.36.0 Vivien Kraus via Guix-patches via
2023-11-16 17:23   ` [bug#61968] [PATCH gnome-team v4 7/8] gnu: sysprof: Update to 3.48.0 Vivien Kraus via Guix-patches via
2023-11-16 19:49   ` [bug#61968] [PATCH gnome-team v4 8/8] gnu: gnome-builder: Update to 44.2 Vivien Kraus via Guix-patches via
2023-11-16 21:04   ` [bug#61968] [PATCH gnome-team v4 0/8] Update GNOME Builder " Liliana Marie Prikler
2023-11-16 21:58     ` Vivien Kraus via Guix-patches via
2023-11-16 22:35       ` Jack Hill
2023-11-16 22:40         ` Vivien Kraus via Guix-patches via
2023-11-17  5:20           ` Liliana Marie Prikler
2023-11-17  9:00             ` Vivien Kraus via Guix-patches via
2023-11-20 17:22 ` [bug#61968] [PATCH gnome-team v5 0/6] Update GNOME Builder Vivien Kraus via Guix-patches via
2023-11-16 16:45   ` [bug#61968] [PATCH gnome-team v5 1/6] gnu: Add libdex Vivien Kraus via Guix-patches via
2023-11-16 16:54   ` [bug#61968] [PATCH gnome-team v5 2/6] gnu: libpanel: Update to 1.2.0 Vivien Kraus via Guix-patches via
2023-11-16 17:04   ` [bug#61968] [PATCH gnome-team v5 3/6] gnu: jsonrpc-glib: Update to 3.44.0 Vivien Kraus via Guix-patches via
2023-11-16 17:12   ` [bug#61968] [PATCH gnome-team v5 4/6] gnu: libpeas: Update to 1.36.0 Vivien Kraus via Guix-patches via
2023-11-16 17:23   ` [bug#61968] [PATCH gnome-team v5 5/6] gnu: sysprof: Update to 3.48.0 Vivien Kraus via Guix-patches via
2023-11-16 19:49   ` [bug#61968] [PATCH gnome-team v5 6/6] gnu: gnome-builder: Update to 44.2 Vivien Kraus via Guix-patches via
2023-11-23  8:05     ` bug#61968: " Liliana Marie Prikler
2023-11-20 19:45   ` [bug#61968] [PATCH gnome-team v5 0/6] Update GNOME Builder Liliana Marie Prikler
2023-11-20 19:47     ` Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=58310841c51b6b55bbfd4302532600d7461384a3.1677970718.git.vivien@planete-kraus.eu \
    --to=guix-patches@gnu.org \
    --cc=61968@debbugs.gnu.org \
    --cc=vivien@planete-kraus.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).