From patchwork Tue Apr 14 18:02:28 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ariel D'Alessandro X-Patchwork-Id: 3461 Return-Path: Received: from mail-qt1-x834.google.com (mail-qt1-x834.google.com [IPv6:2607:f8b0:4864:20::834]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id ED26262E39 for ; Tue, 14 Apr 2020 20:02:44 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (2048-bit key; unprotected) header.d=vanguardiasur-com-ar.20150623.gappssmtp.com header.i=@vanguardiasur-com-ar.20150623.gappssmtp.com header.b="By8n5oZy"; dkim-atps=neutral Received: by mail-qt1-x834.google.com with SMTP id o10so10953501qtr.6 for ; Tue, 14 Apr 2020 11:02:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=vanguardiasur-com-ar.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=77RDj7yRifJbg7U4NzqFFZUXQS55msMFiiaNiKutn6o=; b=By8n5oZyOs7TOQnLgfKdubfi3LQyyM9Zue0Xp+M/pu8PtkTrDUsWSrryavuOiUxTGO wJKZs+dloHFAeeVxDgBUQr5dCJ23h0slnCbPEwGSggsuf9Z5e/xjeDVkPFmgYDf6ZSUK gJ41vjFGMLW1G1yTm5Bmv5YRSJpzY5rSiFoJA+Huzh0Gj3FodekEeJujzUFtARJyU9iX qKyZa1sIjlbOlECAtwpqi/GqagQSJtLS2YPPWLtgeF9sZb1UcEf9+PbPb06QEoUz5O6m t8s2KiMeeOqj+i4sWjB7JB4e9mfxl41vBWc7W4hd5sh3aMKpYSJimYn6LdC1Ich71eW8 8LlQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=77RDj7yRifJbg7U4NzqFFZUXQS55msMFiiaNiKutn6o=; b=MhnAvBHYtGgtDujhVmeSSPlOlhI+ZuZWGIMrdSV+GtA2hAxnwyLT9PcjX1LhQ5Guhk BpY+p7LBRjsYZY3q68YFz4uvGNhKKMAPy217Db04yxSxi2gIq+3PnxpbOlmr6qPnbwMJ bVHOdEgrMZlIOd40anSe9iWNgCvg1WRbPRQRPVsjBgFFDDhUzGL5QIiiH17YMuI7ldcV Ga/QfjDPGVCFk3aWEMeFAgt/EyVLFdMUkhE77ZCC8ee63bdLnpuXcpf7rBw1agOwR4CT mxUsNTuIbKw+9itultLoJcMPTOFnjkk4VeyV3RhJpnE4YjEbhayYvVXu/TgMfAAm3M/t bCSQ== X-Gm-Message-State: AGi0Pub3i+NSDttBlQKtDTPOJqETsdym+c09olANhHa0XvCi2sH26g25 cV8+xK0VisEzrktM2adivJNfWUQG9fU= X-Google-Smtp-Source: APiQypKeNc9pvnXgfpLUvvgh1kcfyMSktwNyytFer/4PCKrgJC7hb/eoKIYa+Bkhu23wMXnoofDMTg== X-Received: by 2002:ac8:60d6:: with SMTP id i22mr17541880qtm.249.1586887363833; Tue, 14 Apr 2020 11:02:43 -0700 (PDT) Received: from localhost.localdomain ([186.136.155.69]) by smtp.gmail.com with ESMTPSA id x55sm1791212qtk.3.2020.04.14.11.02.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Apr 2020 11:02:43 -0700 (PDT) From: Ariel D'Alessandro To: libcamera-devel@lists.libcamera.org Date: Tue, 14 Apr 2020 15:02:28 -0300 Message-Id: <20200414180229.10320-2-ariel@vanguardiasur.com.ar> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200414180229.10320-1-ariel@vanguardiasur.com.ar> References: <20200414180229.10320-1-ariel@vanguardiasur.com.ar> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/2] meson: Bump required version to 0.51 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Apr 2020 18:02:45 -0000 This is needed to use the 'modules' keyword argument in pymod.find_installation(). This function in the Python module will check for a Python installation with the specified modules installed. Libcamera runs a few python scripts during build, which contain python module dependencies that should be checked. NOTE: If you don't have a recent enough meson in your distribution, you can always install or upgrade your version using pip3. $ pip3 install --user meson $ pip3 install --user --upgrade meson Signed-off-by: Ariel D'Alessandro --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c6e6a93..a2dda79 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libcamera', 'c', 'cpp', - meson_version : '>= 0.47', + meson_version : '>= 0.51', version : '0.0.0', default_options : [ 'werror=true',