summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/gedit
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-01-25 18:06:25 +0100
committerKhem Raj <raj.khem@gmail.com>2026-01-27 11:58:29 -0800
commit8692164ccbbba8652aa43211f43c3c0cee4d42cb (patch)
treeaf1b2282e8224d28275153efd4d829ae4f68e848 /meta-gnome/recipes-gnome/gedit
parentbb1f6db52c988e95d0f6a4ba2e847ce2268e9672 (diff)
downloadmeta-openembedded-8692164ccbbba8652aa43211f43c3c0cee4d42cb.tar.gz
libgedit-gtksourceview: upgrade 299.2.1 -> 299.4.0
Also update the SRC_URI. The original upstream Github repos have been deleted. Switched to Gnome servers to fetch the sources from. Changelog: 299.4.0: - Remove the background-pattern (with the grid) feature. - Fix some crashes. - Fix GI annotation warnings. - Translation updates. 299.3.0: Style schemes: - Remove GtkSourceStyleSchemeChooser interface. - Add light-only and dark-only kinds. - Mark classic and tango as light-only kind (so they are unsupported with dark theme variants). Syntax highlighting: - New *.lang file: Nix. For packagers: - Build: add the 'tests' option. Misc: - Documentation updates and improvements. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-gnome/gedit')
-rw-r--r--meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.4.0.bb (renamed from meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.2.1.bb)11
1 files changed, 8 insertions, 3 deletions
diff --git a/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.2.1.bb b/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.4.0.bb
index 4f21c3e569..0d67471280 100644
--- a/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.2.1.bb
+++ b/meta-gnome/recipes-gnome/gedit/libgedit-gtksourceview_299.4.0.bb
@@ -5,10 +5,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
5 5
6DEPENDS = "glib-2.0 gtk+3 libxml2" 6DEPENDS = "glib-2.0 gtk+3 libxml2"
7 7
8inherit meson pkgconfig gobject-introspection features_check gtk-doc 8inherit gobject-introspection features_check gtk-doc gnomebase
9 9
10SRC_URI = "git://github.com/gedit-technology/libgedit-gtksourceview.git;protocol=https;branch=main" 10SRC_URI[archive.sha256sum] = "20c17ff89e2031aed5dc1107fe9a93fd50f92b569be2954b119c86f9e2fd85d6"
11SRCREV = "eaafc892d033713c7c823d8ad602061e456b3c88"
12 11
13ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" 12ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
14 13
@@ -21,3 +20,9 @@ do_install:prepend() {
21} 20}
22 21
23FILES:${PN} += "${datadir}" 22FILES:${PN} += "${datadir}"
23
24# Most gnome projects have a verison like x.y.z, and they are stored in a folder called x.y
25# Not this one. This has x.y.z version, but stored in folder called x.
26# The original of this function is in gnomebase.bbclass.
27def gnome_verdir(v):
28 return v.split(".")[0]