Accepting request 952765 from home:iznogood:branches:GNOME:Factory
- Add 2078.patch: Fix build with meson 0.61 and newer. OBS-URL: https://build.opensuse.org/request/show/952765 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=496
This commit is contained in:
parent
899afe9244
commit
e55d2209ed
82
2078.patch
Normal file
82
2078.patch
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
From 65450a836ee9e0722a2d4c3327f52345eae293c6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||||||
|
Date: Thu, 23 Dec 2021 17:18:16 +0100
|
||||||
|
Subject: [PATCH] build: Drop incorrect positional arg
|
||||||
|
|
||||||
|
Unlike other targets that take a name, i18n.merge_file() does not.
|
||||||
|
|
||||||
|
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2078>
|
||||||
|
---
|
||||||
|
data/meson.build | 2 +-
|
||||||
|
src/calendar-server/meson.build | 2 +-
|
||||||
|
subprojects/extensions-app/data/meson.build | 2 +-
|
||||||
|
subprojects/extensions-app/data/metainfo/meson.build | 2 +-
|
||||||
|
subprojects/extensions-tool/src/templates/meson.build | 2 +-
|
||||||
|
5 files changed, 5 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/data/meson.build b/data/meson.build
|
||||||
|
index f924fdf806..76ae45c93a 100644
|
||||||
|
--- a/data/meson.build
|
||||||
|
+++ b/data/meson.build
|
||||||
|
@@ -16,7 +16,7 @@ desktopconf.set('bindir', bindir)
|
||||||
|
desktopconf.set('systemd_hidden', have_systemd ? 'true' : 'false')
|
||||||
|
|
||||||
|
foreach desktop_file : desktop_files
|
||||||
|
- i18n.merge_file('desktop',
|
||||||
|
+ i18n.merge_file(
|
||||||
|
input: configure_file(
|
||||||
|
input: desktop_file + '.in.in',
|
||||||
|
output: desktop_file + '.in',
|
||||||
|
diff --git a/src/calendar-server/meson.build b/src/calendar-server/meson.build
|
||||||
|
index 7363282a59..8b4ef411c8 100644
|
||||||
|
--- a/src/calendar-server/meson.build
|
||||||
|
+++ b/src/calendar-server/meson.build
|
||||||
|
@@ -27,7 +27,7 @@ configure_file(
|
||||||
|
install_dir: servicedir
|
||||||
|
)
|
||||||
|
|
||||||
|
-i18n.merge_file('evolution-calendar.desktop',
|
||||||
|
+i18n.merge_file(
|
||||||
|
input: 'evolution-calendar.desktop.in',
|
||||||
|
output: 'evolution-calendar.desktop',
|
||||||
|
po_dir: po_dir,
|
||||||
|
diff --git a/subprojects/extensions-app/data/meson.build b/subprojects/extensions-app/data/meson.build
|
||||||
|
index d7e7d4001c..4b601e8bd1 100644
|
||||||
|
--- a/subprojects/extensions-app/data/meson.build
|
||||||
|
+++ b/subprojects/extensions-app/data/meson.build
|
||||||
|
@@ -14,7 +14,7 @@ desktopconf.set('bindir', bindir)
|
||||||
|
desktopconf.set('app_id', app_id)
|
||||||
|
desktopconf.set('prgname', prgname)
|
||||||
|
|
||||||
|
-i18n.merge_file('desktop',
|
||||||
|
+i18n.merge_file(
|
||||||
|
input: configure_file(
|
||||||
|
input: base_id + '.desktop.in.in',
|
||||||
|
output: desktop_file + '.in',
|
||||||
|
diff --git a/subprojects/extensions-app/data/metainfo/meson.build b/subprojects/extensions-app/data/metainfo/meson.build
|
||||||
|
index c4962c0576..a19bfa80a4 100644
|
||||||
|
--- a/subprojects/extensions-app/data/metainfo/meson.build
|
||||||
|
+++ b/subprojects/extensions-app/data/metainfo/meson.build
|
||||||
|
@@ -1,5 +1,5 @@
|
||||||
|
metainfo = app_id + '.metainfo.xml'
|
||||||
|
-i18n.merge_file(metainfo,
|
||||||
|
+i18n.merge_file(
|
||||||
|
input: base_id + '.metainfo.xml.in',
|
||||||
|
output: metainfo,
|
||||||
|
po_dir: po_dir,
|
||||||
|
diff --git a/subprojects/extensions-tool/src/templates/meson.build b/subprojects/extensions-tool/src/templates/meson.build
|
||||||
|
index 670e2bf448..d693bfaddb 100644
|
||||||
|
--- a/subprojects/extensions-tool/src/templates/meson.build
|
||||||
|
+++ b/subprojects/extensions-tool/src/templates/meson.build
|
||||||
|
@@ -4,7 +4,7 @@ template_metas = [
|
||||||
|
]
|
||||||
|
template_deps = []
|
||||||
|
foreach template : template_metas
|
||||||
|
- template_deps += i18n.merge_file(template,
|
||||||
|
+ template_deps += i18n.merge_file(
|
||||||
|
input: template + '.in',
|
||||||
|
output: template,
|
||||||
|
po_dir: po_dir,
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 8 17:04:07 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Add 2078.patch: Fix build with meson 0.61 and newer.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jan 27 02:58:53 UTC 2022 - Yifan Jiang <yfjiang@suse.com>
|
Thu Jan 27 02:58:53 UTC 2022 - Yifan Jiang <yfjiang@suse.com>
|
||||||
|
|
||||||
|
@ -49,6 +49,8 @@ Patch6: gnome-shell-jsc#SLE-16051-Input-method-recommendation.patch
|
|||||||
Patch7: gnome-shell-executable-path-not-absolute.patch
|
Patch7: gnome-shell-executable-path-not-absolute.patch
|
||||||
# PATCH-FIX-UPSTREAM gnome-shell-exit-crash-workaround.patch bsc#1190878 glgo#GNOME/gnome-shell#4344 qkzhu@suse.com -- Workaround logout crashing
|
# PATCH-FIX-UPSTREAM gnome-shell-exit-crash-workaround.patch bsc#1190878 glgo#GNOME/gnome-shell#4344 qkzhu@suse.com -- Workaround logout crashing
|
||||||
Patch8: gnome-shell-exit-crash-workaround.patch
|
Patch8: gnome-shell-exit-crash-workaround.patch
|
||||||
|
# PATCH-FIX-UPSTREAM 2078.patch -- Fix build with meson 0.61 and newer
|
||||||
|
Patch9: https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2078.patch
|
||||||
|
|
||||||
## NOTE: Keep SLE-only patches at bottom (starting on 1000).
|
## NOTE: Keep SLE-only patches at bottom (starting on 1000).
|
||||||
# PATCH-FEATURE-SLE gnome-shell-gdm-login-applet.patch fate#314545 dliang@suse.com -- Add an applet on login UI to display suse icon, product name, hostname.
|
# PATCH-FEATURE-SLE gnome-shell-gdm-login-applet.patch fate#314545 dliang@suse.com -- Add an applet on login UI to display suse icon, product name, hostname.
|
||||||
@ -187,6 +189,7 @@ This package contains an optional extensions app for managing GNOME Shell extens
|
|||||||
%endif
|
%endif
|
||||||
%patch7 -p1
|
%patch7 -p1
|
||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
|
%patch9 -p1
|
||||||
|
|
||||||
%if 0%{?sle_version}
|
%if 0%{?sle_version}
|
||||||
%patch1001 -p1
|
%patch1001 -p1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user