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 BBA871382C5 for ; Mon, 29 Jan 2018 07:50:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29E3BE0C0D; Mon, 29 Jan 2018 07:50:27 +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 06954E0C0D for ; Mon, 29 Jan 2018 07:50:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC37C335C92 for ; Mon, 29 Jan 2018 07:50:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06BA51CF for ; Mon, 29 Jan 2018 07:50:24 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1517211674.308fde12eadda2a65ce732960577e46c65f77849.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: eclass/ X-VCS-Repository: proj/gnome X-VCS-Files: eclass/vala.eclass X-VCS-Directories: eclass/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 308fde12eadda2a65ce732960577e46c65f77849 X-VCS-Branch: master Date: Mon, 29 Jan 2018 07:50:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6aee01c4-70aa-4cb6-b661-d0bf6c93f61e X-Archives-Hash: 19e6b12dae1a216f0b3397e1e98fe77e commit: 308fde12eadda2a65ce732960577e46c65f77849 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Mon Jan 29 07:40:27 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Mon Jan 29 07:41:14 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=308fde12 eclass: sync vala.eclass with gentoo repository eclass/vala.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/vala.eclass b/eclass/vala.eclass index f2243dd1..f8a45cde 100644 --- a/eclass/vala.eclass +++ b/eclass/vala.eclass @@ -25,13 +25,13 @@ esac # @ECLASS-VARIABLE: VALA_MIN_API_VERSION # @DESCRIPTION: -# Minimum vala API version (e.g. 0.26). -VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.26} +# Minimum vala API version (e.g. 0.32). +VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.32} # @ECLASS-VARIABLE: VALA_MAX_API_VERSION # @DESCRIPTION: # Maximum vala API version (e.g. 0.32). -VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.32} +VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.36} # @ECLASS-VARIABLE: VALA_USE_DEPEND # @DEFAULT_UNSET @@ -49,7 +49,7 @@ vala_api_versions() { local minimal_supported_minor_version minor_version # Dependency atoms are not generated for Vala versions older than 0.${minimal_supported_minor_version}. - minimal_supported_minor_version="26" + minimal_supported_minor_version="32" for ((minor_version = ${VALA_MAX_API_VERSION#*.}; minor_version >= ${VALA_MIN_API_VERSION#*.}; minor_version = minor_version - 2)); do if ((minor_version >= minimal_supported_minor_version)); then