Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 436BA1A921F for ; Thu, 10 Mar 2022 17:05:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7811F84E85; Thu, 10 Mar 2022 17:05:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B15FC84E81 for ; Thu, 10 Mar 2022 17:05:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id uaADJBbLHhED for ; Thu, 10 Mar 2022 17:05:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3000D84CEF for ; Thu, 10 Mar 2022 17:05:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 28669FB24; Thu, 10 Mar 2022 17:05:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1646931914278970" MIME-Version: 1.0 Date: Thu, 10 Mar 2022 17:05:14 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/x11/gnome-session To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220310170514.28669FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1646931914278970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Mar 10 17:05:14 UTC 2022 Modified Files: pkgsrc/x11/gnome-session: distinfo Added Files: pkgsrc/x11/gnome-session/patches: patch-data_meson.build Log Message: gnome-session: fix build with latest meson To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/x11/gnome-session/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/x11/gnome-session/patches/patch-data_meson.build Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1646931914278970 Content-Disposition: inline Content-Length: 1885 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gnome-session/distinfo diff -u pkgsrc/x11/gnome-session/distinfo:1.54 pkgsrc/x11/gnome-session/distinfo:1.55 --- pkgsrc/x11/gnome-session/distinfo:1.54 Tue Oct 26 11:33:49 2021 +++ pkgsrc/x11/gnome-session/distinfo Thu Mar 10 17:05:13 2022 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.54 2021/10/26 11:33:49 nia Exp $ +$NetBSD: distinfo,v 1.55 2022/03/10 17:05:13 nia Exp $ BLAKE2s (gnome-session-40.1.1.tar.xz) = 0c2ddecd69dbd22f70f775e020b150a64002b5e04b0345b8ad1dfd9ad8ebaca4 SHA512 (gnome-session-40.1.1.tar.xz) = 91609915366839806729e066e5ca0d42daff0591732cda08c3da7d4951f7e27964d72988c4e61a64045443969b9fb0a9697c7ace82bdd8843310cb4d7e9dfd8c Size (gnome-session-40.1.1.tar.xz) = 482304 bytes +SHA1 (patch-data_meson.build) = 85ea24df80641afc6eddf7c0919a1738f7034161 SHA1 (patch-meson__options.txt) = 6c0c9968c4546f60547cc0cf235e6d546532e85b SHA1 (patch-tools_meson.build) = a2ab4b52be4933a86f64fc08d8cf89542f5a15ca Added files: Index: pkgsrc/x11/gnome-session/patches/patch-data_meson.build diff -u /dev/null pkgsrc/x11/gnome-session/patches/patch-data_meson.build:1.1 --- /dev/null Thu Mar 10 17:05:14 2022 +++ pkgsrc/x11/gnome-session/patches/patch-data_meson.build Thu Mar 10 17:05:13 2022 @@ -0,0 +1,23 @@ +$NetBSD: patch-data_meson.build,v 1.1 2022/03/10 17:05:13 nia Exp $ + +Remove incorrect positional arguments, causing errors with newer +meson versions (previously they were silently ignored). + +--- data/meson.build.orig 2021-04-28 08:32:22.873144100 +0000 ++++ data/meson.build +@@ -58,7 +58,6 @@ foreach name: desktops + endif + + desktop_target = i18n.merge_file( +- desktop, + type: 'desktop', + input: desktop_in, + output: desktop, +@@ -89,7 +88,6 @@ foreach session: sessions + ) + + i18n.merge_file( +- session_file, + type: 'desktop', + input: desktop_in, + output: session_file, --_----------=_1646931914278970--