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 13DA01396D9 for ; Sun, 22 Oct 2017 13:57:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DBF2E0C75; Sun, 22 Oct 2017 13:57:46 +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 2D346E0C75 for ; Sun, 22 Oct 2017 13:57:46 +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 6EA4C33BEC7 for ; Sun, 22 Oct 2017 13:57:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F023B309 for ; Sun, 22 Oct 2017 13:57:42 +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: <1508680612.57aecac009aec841252a96b783cbe0027a0b6b01.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs-kmod/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/zfs-kmod/zfs-kmod-9999.ebuild X-VCS-Directories: sys-fs/zfs-kmod/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 57aecac009aec841252a96b783cbe0027a0b6b01 X-VCS-Branch: master Date: Sun, 22 Oct 2017 13:57:42 +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: 625c2c66-a1a4-4eaa-ad0e-c5076331ff0d X-Archives-Hash: 9b0b0ef49ef4e25820f98256303cca41 commit: 57aecac009aec841252a96b783cbe0027a0b6b01 Author: Patrick Lauer gentoo org> AuthorDate: Sun Oct 22 13:56:52 2017 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Oct 22 13:56:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57aecac0 sys-fs/zfs-kmod: Fix max kernel version for -9999 #632640 Package-Manager: Portage-2.3.12, Repoman-2.3.3 sys-fs/zfs-kmod/zfs-kmod-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild b/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild index 03c1e90f7cf..3b61376f387 100644 --- a/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild +++ b/sys-fs/zfs-kmod/zfs-kmod-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" @@ -64,7 +64,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 }