diff mbox series

[AUH] gtk-doc: upgrading to 1.37.0 SUCCEEDED

Message ID 010101a0e14b063a-29b7e176-ebbe-4f10-9116-2f8b6219a789-000000@us-west-2.amazonses.com
State New
Headers show
Series [AUH] gtk-doc: upgrading to 1.37.0 SUCCEEDED | expand

Commit Message

auh@yoctoproject.org Sept. 27, 2026, 5:16 a.m. UTC
Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe(s) *gtk-doc* to *1.37.0* has Succeeded.

Next steps:
    - apply the patch: git am 0001-gtk-doc-upgrade-1.36.1-1.37.0.patch
    - check the changes to upstream patches and summarize them in the commit message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update failures.
Any problem please file a bug at https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
From 0ebdd1129a8385033318f3555f4ced319cfe800d Mon Sep 17 00:00:00 2001
From: Upgrade Helper <auh@yoctoproject.org>
Date: Sun, 27 Sep 2026 05:16:22 +0000
Subject: [PATCH] gtk-doc: upgrade 1.36.1 -> 1.37.0

GTK-Doc 1.37.0, 2026-09-26
==========================
- Don't annotate get_type() functions with G_GNUC_CONST.
- Build: add an option to not check for runtime dependencies at build time.
- Translation updates.
---
 ...code-paths-to-perl-python-in-scripts.patch |  2 +-
 ...an-option-to-not-check-for-runtime-d.patch | 56 -------------------
 .../gtk-doc/files/no-clobber.patch            |  2 +-
 .../gtk-doc/files/pkg-config-native.patch     |  2 +-
 .../{gtk-doc_1.36.1.bb => gtk-doc_1.37.0.bb}  |  3 +-
 5 files changed, 4 insertions(+), 61 deletions(-)
 delete mode 100644 meta/recipes-gnome/gtk-doc/files/0001-meson.build-add-an-option-to-not-check-for-runtime-d.patch
 rename meta/recipes-gnome/gtk-doc/{gtk-doc_1.36.1.bb => gtk-doc_1.37.0.bb} (90%)
diff mbox series

Patch

diff --git a/meta/recipes-gnome/gtk-doc/files/0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch b/meta/recipes-gnome/gtk-doc/files/0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch
index c9d78145ff..1203b7e6ce 100644
--- a/meta/recipes-gnome/gtk-doc/files/0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch
+++ b/meta/recipes-gnome/gtk-doc/files/0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch
@@ -1,4 +1,4 @@ 
-From 00a3a827aca9e053cb0d69bea50a61fece341f0f Mon Sep 17 00:00:00 2001
+From e069b394874be4a8ce55ee0e50b08deb5633b358 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex.kanavin@gmail.com>
 Date: Wed, 31 Aug 2016 16:44:46 +0300
 Subject: [PATCH] Do not hardocode paths to perl/python in scripts.
diff --git a/meta/recipes-gnome/gtk-doc/files/0001-meson.build-add-an-option-to-not-check-for-runtime-d.patch b/meta/recipes-gnome/gtk-doc/files/0001-meson.build-add-an-option-to-not-check-for-runtime-d.patch
deleted file mode 100644
index 88ec64cdb3..0000000000
--- a/meta/recipes-gnome/gtk-doc/files/0001-meson.build-add-an-option-to-not-check-for-runtime-d.patch
+++ /dev/null
@@ -1,56 +0,0 @@ 
-From ffa3ed38663cc806f914691c63ca7d8fab959eef Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin <alex@linutronix.de>
-Date: Sun, 21 Jun 2026 11:11:04 +0200
-Subject: [PATCH] meson.build: add an option to not check for runtime
- dependencies at build time
-
-pygments and parametrized are run-time dependencies, and should
-not be enforced at build time as they are never actually used then.
-
-This is especially useful in cross-compilation, as the modules
-are checked in the python installation on the build host, and that
-has no relevance to the target environment that the build outputs
-will be executed in.
-
-https://gitlab.gnome.org/GNOME/gtk-doc/-/merge_requests/105
-Upstream-Status: Backport [link above]
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- meson.build       | 9 ++++++---
- meson_options.txt | 6 ++++++
- 2 files changed, 12 insertions(+), 3 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index 30f1520..e087cff 100644
---- a/meson.build
-+++ b/meson.build
-@@ -8,9 +8,12 @@ fs = import('fs')
- gnome = import('gnome')
- python = import('python')
- 
--required_python_modules = ['pygments']
--if get_option('tests')
--  required_python_modules += ['parameterized']
-+required_python_modules = []
-+if get_option('check_runtime_deps')
-+  required_python_modules = ['pygments']
-+  if get_option('tests')
-+    required_python_modules += ['parameterized']
-+  endif
- endif
- 
- python3 = python.find_installation('python3', modules: required_python_modules)
-diff --git a/meson_options.txt b/meson_options.txt
-index d44dbb4..84463b2 100644
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -21,3 +21,9 @@ option(
-   type: 'boolean', value: true,
-   description: 'Build the test suite (requires glib and the parameterized python module)'
- )
-+
-+option(
-+  'check_runtime_deps',
-+  type: 'boolean', value: true,
-+  description: 'Check for runtime dependencies during build configuration'
-+)
diff --git a/meta/recipes-gnome/gtk-doc/files/no-clobber.patch b/meta/recipes-gnome/gtk-doc/files/no-clobber.patch
index a9c7154fc4..6c92920b55 100644
--- a/meta/recipes-gnome/gtk-doc/files/no-clobber.patch
+++ b/meta/recipes-gnome/gtk-doc/files/no-clobber.patch
@@ -1,4 +1,4 @@ 
-From 01a52d8cf076e2692d947c8ed2681cb794eaa3c0 Mon Sep 17 00:00:00 2001
+From b2607b8ed3a3468fe3bae3b24577406feca1004f Mon Sep 17 00:00:00 2001
 From: Ross Burton <ross.burton@intel.com>
 Date: Wed, 21 Mar 2018 14:47:29 +0000
 Subject: [PATCH] gtk-doc: don't regenerate gtk-doc in do_install
diff --git a/meta/recipes-gnome/gtk-doc/files/pkg-config-native.patch b/meta/recipes-gnome/gtk-doc/files/pkg-config-native.patch
index de16ea0cc6..a3bef8af8e 100644
--- a/meta/recipes-gnome/gtk-doc/files/pkg-config-native.patch
+++ b/meta/recipes-gnome/gtk-doc/files/pkg-config-native.patch
@@ -1,4 +1,4 @@ 
-From 0800f184cffc837276ea65b86e4efc7942eb1d7e Mon Sep 17 00:00:00 2001
+From 2d704126396de04b99a4090e1f36ef7479748a81 Mon Sep 17 00:00:00 2001
 From: Ross Burton <ross.burton@intel.com>
 Date: Mon, 5 Sep 2016 22:25:44 +0100
 Subject: [PATCH] Use native pkg-config when looking for gtk-doc.
diff --git a/meta/recipes-gnome/gtk-doc/gtk-doc_1.36.1.bb b/meta/recipes-gnome/gtk-doc/gtk-doc_1.37.0.bb
similarity index 90%
rename from meta/recipes-gnome/gtk-doc/gtk-doc_1.36.1.bb
rename to meta/recipes-gnome/gtk-doc/gtk-doc_1.37.0.bb
index dcdeebe258..52746a01f1 100644
--- a/meta/recipes-gnome/gtk-doc/gtk-doc_1.36.1.bb
+++ b/meta/recipes-gnome/gtk-doc/gtk-doc_1.37.0.bb
@@ -15,10 +15,9 @@  PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false,glib-2.0"
 
 EXTRA_OEMESON = "-Dyelp_manual=false -Dcheck_runtime_deps=false"
 
-SRC_URI[archive.sha256sum] = "0e517a5f97069831181be177516bde8aa8b3922398f2bdb09e265d22aecadbc5"
+SRC_URI[archive.sha256sum] = "2facfb530ddcd20c03ed4758ef934e832626c393e2cacd23fc1249b7ed0e4246"
 SRC_URI += "file://0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch \
            file://no-clobber.patch \
-           file://0001-meson.build-add-an-option-to-not-check-for-runtime-d.patch \
            "
 SRC_URI:append:class-native = " file://pkg-config-native.patch"