From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 08 Feb 2023 12:49:56 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pPixa-000Vs3-2k for lore@lore.pengutronix.de; Wed, 08 Feb 2023 12:49:56 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1pPixW-0000FC-07; Wed, 08 Feb 2023 12:49:54 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pPixA-00088N-Tk; Wed, 08 Feb 2023 12:49:32 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1pPix9-003VLu-2o; Wed, 08 Feb 2023 12:49:32 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1pPix9-008QQT-LZ; Wed, 08 Feb 2023 12:49:31 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Wed, 8 Feb 2023 12:49:31 +0100 Message-Id: <20230208114931.2008162-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230111101916.3749538-1-p.zabel@pengutronix.de> References: <20230111101916.3749538-1-p.zabel@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-meson: version bump 0.61.4 -> 1.0.0 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Philipp Zabel Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as f4c1eef532470e269422d7ecc318e081b1e2af42. Michael [sent from post-receive hook] On Wed, 08 Feb 2023 12:49:31 +0100, Philipp Zabel wrote: > https://mesonbuild.com/Release-notes-for-1-0-0.html > > This bumps the host Python minimum version requirement from 3.6 to 3.7. > > Signed-off-by: Philipp Zabel > Message-Id: <20230111101916.3749538-1-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/patches/meson-0.61.4/0001-don-t-add-rpaths-for-build-directories-when-cross-co.patch b/patches/meson-1.0.0/0001-don-t-add-rpaths-for-build-directories-when-cross-co.patch > similarity index 91% > rename from patches/meson-0.61.4/0001-don-t-add-rpaths-for-build-directories-when-cross-co.patch > rename to patches/meson-1.0.0/0001-don-t-add-rpaths-for-build-directories-when-cross-co.patch > index dc4b960b0302..efed46c1df60 100644 > --- a/patches/meson-0.61.4/0001-don-t-add-rpaths-for-build-directories-when-cross-co.patch > +++ b/patches/meson-1.0.0/0001-don-t-add-rpaths-for-build-directories-when-cross-co.patch > @@ -11,10 +11,10 @@ Signed-off-by: Michael Olbrich > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/mesonbuild/linkers/linkers.py b/mesonbuild/linkers/linkers.py > -index c8489dafe11d..7440aa1a7c4e 100644 > +index 3385dd3dcadd..7c15a212802e 100644 > --- a/mesonbuild/linkers/linkers.py > +++ b/mesonbuild/linkers/linkers.py > -@@ -640,7 +640,10 @@ class GnuLikeDynamicLinkerMixin: > +@@ -660,7 +660,10 @@ class GnuLikeDynamicLinkerMixin: > # Need to deduplicate rpaths, as macOS's install_name_tool > # is *very* allergic to duplicate -delete_rpath arguments > # when calling depfixer on installation. > @@ -26,7 +26,7 @@ index c8489dafe11d..7440aa1a7c4e 100644 > rpath_dirs_to_remove = set() > for p in all_paths: > rpath_dirs_to_remove.add(p.encode('utf8')) > -@@ -668,7 +671,8 @@ class GnuLikeDynamicLinkerMixin: > +@@ -688,7 +691,8 @@ class GnuLikeDynamicLinkerMixin: > paths = padding > else: > paths = paths + ':' + padding > diff --git a/patches/meson-0.61.4/0002-HACK-enable-NEON-only-for-ARMv7.patch b/patches/meson-1.0.0/0002-HACK-enable-NEON-only-for-ARMv7.patch > similarity index 71% > rename from patches/meson-0.61.4/0002-HACK-enable-NEON-only-for-ARMv7.patch > rename to patches/meson-1.0.0/0002-HACK-enable-NEON-only-for-ARMv7.patch > index f6c355728034..263e1a76b552 100644 > --- a/patches/meson-0.61.4/0002-HACK-enable-NEON-only-for-ARMv7.patch > +++ b/patches/meson-1.0.0/0002-HACK-enable-NEON-only-for-ARMv7.patch > @@ -6,14 +6,14 @@ NEON detection is broken, so just skip it for anything that is not ARMv7. > > Signed-off-by: Michael Olbrich > --- > - mesonbuild/modules/unstable_simd.py | 3 +++ > + mesonbuild/modules/simd.py | 3 +++ > 1 file changed, 3 insertions(+) > > -diff --git a/mesonbuild/modules/unstable_simd.py b/mesonbuild/modules/unstable_simd.py > -index 3339cea5a03f..da2e740d4cd3 100644 > ---- a/mesonbuild/modules/unstable_simd.py > -+++ b/mesonbuild/modules/unstable_simd.py > -@@ -64,6 +64,9 @@ class SimdModule(ExtensionModule): > +diff --git a/mesonbuild/modules/simd.py b/mesonbuild/modules/simd.py > +index a33022d0435b..d40be3443776 100644 > +--- a/mesonbuild/modules/simd.py > ++++ b/mesonbuild/modules/simd.py > +@@ -63,6 +63,9 @@ class SimdModule(ExtensionModule): > continue > iset_fname = kwargs[iset] # Might also be an array or Files. static_library will validate. > args = compiler.get_instruction_set_args(iset) > diff --git a/patches/meson-0.61.4/series b/patches/meson-1.0.0/series > similarity index 100% > rename from patches/meson-0.61.4/series > rename to patches/meson-1.0.0/series > diff --git a/rules/host-meson.make b/rules/host-meson.make > index 574ed064a150..08b62748d8e0 100644 > --- a/rules/host-meson.make > +++ b/rules/host-meson.make > @@ -14,8 +14,8 @@ HOST_PACKAGES-$(PTXCONF_HOST_MESON) += host-meson > # > # Paths and names > # > -HOST_MESON_VERSION := 0.61.4 > -HOST_MESON_MD5 := e894ff3492fd8a1ab4587b4f8e91f28f > +HOST_MESON_VERSION := 1.0.0 > +HOST_MESON_MD5 := 009b78125467cd9ee4d467175a5c12e1 > HOST_MESON := meson-$(HOST_MESON_VERSION) > HOST_MESON_SUFFIX := tar.gz > HOST_MESON_URL := https://github.com/mesonbuild/meson/releases/download/$(HOST_MESON_VERSION)/$(HOST_MESON).$(HOST_MESON_SUFFIX)