From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CB4FC58973 for ; Sun, 7 Feb 2016 19:18:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ACBDE0845; Sun, 7 Feb 2016 19:18:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D6DDE0845 for ; Sun, 7 Feb 2016 19:18:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 12CBD34090F for ; Sun, 7 Feb 2016 19:18:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3E678EE for ; Sun, 7 Feb 2016 19:18:56 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1454872730.5b9760fc12266b1baec50c95d4781016576f8fd6.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/vala.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 5b9760fc12266b1baec50c95d4781016576f8fd6 X-VCS-Branch: master Date: Sun, 7 Feb 2016 19:18:56 +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: cc57afa8-de68-4bb1-8ac9-80516c760a2c X-Archives-Hash: fcc3074daa0fd8a780fdcaaaae7fca87 commit: 5b9760fc12266b1baec50c95d4781016576f8fd6 Author: Pacho Ramos gentoo org> AuthorDate: Sun Feb 7 19:18:30 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Feb 7 19:18:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9760fc eclass/vala.eclass: current minimum version in the tree is now 0.22 eclass/vala.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/vala.eclass b/eclass/vala.eclass index eb86cda..c533153 100644 --- a/eclass/vala.eclass +++ b/eclass/vala.eclass @@ -50,7 +50,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="20" + minimal_supported_minor_version="22" 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