From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 14C15138334 for ; Mon, 23 Jul 2018 03:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E6F1E08D6; Mon, 23 Jul 2018 03:32:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 34FF3E077C for ; Mon, 23 Jul 2018 03:32:24 +0000 (UTC) Received: from localhost.localdomain (ip68-4-233-67.oc.oc.cox.net [68.4.233.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: zmedico) by smtp.gentoo.org (Postfix) with ESMTPSA id 28365335D93; Mon, 23 Jul 2018 03:32:20 +0000 (UTC) From: Zac Medico To: gentoo-dev@lists.gentoo.org Cc: William Hubbs , Mike Gilbert , Zac Medico Subject: [gentoo-dev] [PATCH] meson.eclass: require at least meson-0.41.1 Date: Sun, 22 Jul 2018 20:27:30 -0700 Message-Id: <20180723032730.2405-1-zmedico@gentoo.org> X-Mailer: git-send-email 2.13.6 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: 4aaecbb8-f05a-4d23-9c34-a87395bdde2a X-Archives-Hash: 30cba765620e55b90eae9d3f2a223d94 Require newer meson in order to avoid build failures triggered if >=meson-0.41.1 is not installed soon enough. For example, I experienced bug 649264 because I upgraded xorg-proto and libxshmfence packages before meson. Fixes: https://bugs.gentoo.org/649264 --- eclass/meson.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/meson.eclass b/eclass/meson.eclass index f2202a04593..2523bec57ac 100644 --- a/eclass/meson.eclass +++ b/eclass/meson.eclass @@ -59,7 +59,7 @@ EXPORT_FUNCTIONS src_configure src_compile src_test src_install if [[ -z ${_MESON_ECLASS} ]]; then _MESON_ECLASS=1 -MESON_DEPEND=">=dev-util/meson-0.40.0 +MESON_DEPEND=">=dev-util/meson-0.41.1 >=dev-util/ninja-1.7.2" # @ECLASS-VARIABLE: MESON_AUTO_DEPEND -- 2.13.6