gnome-podcasts: fix for meson 0.61
This commit is contained in:
parent
e9d3facb45
commit
a025f4e0b6
1 changed files with 38 additions and 0 deletions
38
srcpkgs/gnome-podcasts/patches/meson-0.61.patch
Normal file
38
srcpkgs/gnome-podcasts/patches/meson-0.61.patch
Normal file
|
@ -0,0 +1,38 @@
|
|||
From 6614bb62ecbec7c3b18ea7fe44beb50fe7942b27 Mon Sep 17 00:00:00 2001
|
||||
From: Jan Beich <jbeich@FreeBSD.org>
|
||||
Date: Thu, 20 Jan 2022 01:27:48 +0000
|
||||
Subject: [PATCH] meson: drop unused argument for i18n.merge_file()
|
||||
|
||||
Ignored in Meson < 0.60.0, deprecated since 0.60.1 and fatal since 0.61.0.
|
||||
|
||||
podcasts-gtk/resources/meson.build:5:0: ERROR: Function does not take positional arguments.
|
||||
podcasts-gtk/resources/meson.build:30:0: ERROR: Function does not take positional arguments.
|
||||
---
|
||||
podcasts-gtk/resources/meson.build | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/podcasts-gtk/resources/meson.build b/podcasts-gtk/resources/meson.build
|
||||
index c1f1ee9f..87148087 100644
|
||||
--- a/podcasts-gtk/resources/meson.build
|
||||
+++ b/podcasts-gtk/resources/meson.build
|
||||
@@ -2,7 +2,7 @@ subdir('icons')
|
||||
|
||||
desktop_conf = configuration_data()
|
||||
desktop_conf.set('icon', application_id)
|
||||
-desktop_file = i18n.merge_file ('desktop-file',
|
||||
+desktop_file = i18n.merge_file (
|
||||
type: 'desktop',
|
||||
input: configure_file(
|
||||
input: files('org.gnome.Podcasts.desktop.in.in'),
|
||||
@@ -27,7 +27,7 @@ endif
|
||||
|
||||
appdata_conf = configuration_data()
|
||||
appdata_conf.set('appid', application_id)
|
||||
-appdata_file = i18n.merge_file ('appdata-file',
|
||||
+appdata_file = i18n.merge_file (
|
||||
input: configure_file(
|
||||
input: files('org.gnome.Podcasts.appdata.xml.in.in'),
|
||||
output: 'org.gnome.Podcasts.appdata.xml.in',
|
||||
--
|
||||
GitLab
|
||||
|
Loading…
Reference in a new issue