From owner-svn-ports-head@freebsd.org Tue Dec 18 20:02:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBE3D133D7DB; Tue, 18 Dec 2018 20:02:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B4A085730; Tue, 18 Dec 2018 20:02:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 5B50B5BE7; Tue, 18 Dec 2018 20:02:07 +0000 (UTC) From: Jan Beich To: Niclas Zeising Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r487755 - head/graphics/drm-fbsd12.0-kmod References: <201812181550.wBIFooKv096321@repo.freebsd.org> Date: Tue, 18 Dec 2018 21:02:02 +0100 In-Reply-To: <201812181550.wBIFooKv096321@repo.freebsd.org> (Niclas Zeising's message of "Tue, 18 Dec 2018 15:50:49 +0000 (UTC)") Message-ID: <5zvq-vc1x-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 8B4A085730 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.79 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-0.99)[-0.986,0]; NEURAL_HAM_SHORT(-0.82)[-0.821,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US]; NEURAL_HAM_LONG(-0.99)[-0.986,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Dec 2018 20:02:08 -0000 Niclas Zeising writes: > Author: zeising > Date: Tue Dec 18 15:50:49 2018 > New Revision: 487755 > URL: https://svnweb.freebsd.org/changeset/ports/487755 > > Log: > Fix version check. THis is only supported on 12 and later. [...] > -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200000 && ${OSVERSION} < 1200058 > -IGNORE= not supported on older CURRENT, no kernel support > +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200058 > +IGNORE= only supported on FreeBSD 12.0 and later 12.0-RELEASE has OSVERSION == 1200086. Do you really plan to support earlier versions, including -CURRENT snapshots from 2018-02-12 or later?