Update package version to 49.2

This commit is contained in:
2026-09-04 15:58:25 +03:00
parent ebf9abaf33
commit 4cb346c771
3 changed files with 3 additions and 60 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
name: yelp name: yelp
description: Get help with GNOME description: Get help with GNOME
version: "49.1" version: "49.2"
revision: 2 revision: 1
url: https://apps.gnome.org/Yelp url: https://apps.gnome.org/Yelp
license: GPL-2.0-or-later license: GPL-2.0-or-later
maintainers: maintainers:
@@ -31,4 +31,4 @@ downloads:
- url: https://gitlab.gnome.org/GNOME/yelp/-/archive/${BPM_PKG_VERSION}/yelp-${BPM_PKG_VERSION}.tar.gz - url: https://gitlab.gnome.org/GNOME/yelp/-/archive/${BPM_PKG_VERSION}/yelp-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 5d5c144986fc89e6893b890e2edb4fc3700033f9e73422f30300d7d4032ced69 checksum: a863812c1026af5683690734a1e909e0dd8cf473c84ca12b157f913402c77a5e
-7
View File
@@ -2,13 +2,6 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
cd "$BPM_SOURCE"
patch -Np1 -i "$BPM_WORKDIR"/remove-include-of-gdkkeysyms.h.patch
}
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
@@ -1,50 +0,0 @@
From 96850f19a6dd000ef848031c4a23e60227aff6af Mon Sep 17 00:00:00 2001
From: Jordan Petridis <[email protected]>
Date: Thu, 21 May 2026 16:32:18 +0300
Subject: [PATCH] build: Remove include of gdkkeysyms.h
18bd5e8cd2cf73e2a6c5d54e2fc5414177151868 in GTK [1] added a guard against
the direct inclusion of the header and we should be including gdk.h
instead.
```
error "Only <gdk/gdk.h> can be included directly."
```
Additionally gtk.h will include gdk.h for us so we can just remove it.
[1] https://gitlab.gnome.org/GNOME/gtk/-/commit/18bd5e8cd2cf73e2a6c5d54e2fc5414177151868
Part-of: <https://gitlab.gnome.org/GNOME/yelp/-/merge_requests/79>
---
src/yelp-search-entry.c | 1 -
src/yelp-window.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/src/yelp-search-entry.c b/src/yelp-search-entry.c
index 7d830167..9e75dc15 100644
--- a/src/yelp-search-entry.c
+++ b/src/yelp-search-entry.c
@@ -24,7 +24,6 @@
#include <config.h>
#endif
-#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <gio/gio.h>
diff --git a/src/yelp-window.c b/src/yelp-window.c
index a65be6e9..3dff75da 100644
--- a/src/yelp-window.c
+++ b/src/yelp-window.c
@@ -25,7 +25,6 @@
#include <math.h>
-#include <gdk/gdkkeysyms.h>
#include <glib/gi18n.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
--
GitLab