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 C01AB1396D9 for ; Sun, 22 Oct 2017 13:54:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1597FE0C75; Sun, 22 Oct 2017 13:54:06 +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 E8A99E0C75 for ; Sun, 22 Oct 2017 13:54:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 32F2A33BEC7 for ; Sun, 22 Oct 2017 13:54:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8FC7309 for ; Sun, 22 Oct 2017 13:54:03 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1508680440.3275d076e4a5767b63d73207e6cfaf76f3cadece.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/spl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/spl/spl-9999.ebuild X-VCS-Directories: sys-kernel/spl/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 3275d076e4a5767b63d73207e6cfaf76f3cadece X-VCS-Branch: master Date: Sun, 22 Oct 2017 13:54:03 +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: 529aac93-ef57-44e4-ad9b-c786cad9c641 X-Archives-Hash: c0eff09ec3e71b4ba14a9c4b5652848b commit: 3275d076e4a5767b63d73207e6cfaf76f3cadece Author: Patrick Lauer gentoo org> AuthorDate: Sun Oct 22 13:53:50 2017 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Oct 22 13:54:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3275d076 sys-kernel/spl: Fix max kernel version for -9999 #632640 Package-Manager: Portage-2.3.12, Repoman-2.3.3 sys-kernel/spl/spl-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-kernel/spl/spl-9999.ebuild b/sys-kernel/spl/spl-9999.ebuild index 074b776b6d0..eb6159b9a65 100644 --- a/sys-kernel/spl/spl-9999.ebuild +++ b/sys-kernel/spl/spl-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -55,7 +55,7 @@ pkg_setup() { kernel_is ge 2 6 32 || die "Linux 2.6.32 or newer required" [ ${PV} != "9999" ] && \ - { kernel_is le 4 3 || die "Linux 4.3 is the latest supported version."; } + { kernel_is le 4 13 || die "Linux 4.13 is the latest supported version."; } check_extra_config }