From owner-svn-ports-all@freebsd.org Sun May 29 17:11:42 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 491D4B53E45; Sun, 29 May 2016 17:11:42 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18EC8175E; Sun, 29 May 2016 17:11:42 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4THBfwm043373; Sun, 29 May 2016 17:11:41 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4THBf6w043371; Sun, 29 May 2016 17:11:41 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201605291711.u4THBf6w043371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 29 May 2016 17:11:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416117 - in head: net/intel-ixl-kmod sysutils/intel-nvmupdate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 May 2016 17:11:42 -0000 Author: sbruno Date: Sun May 29 17:11:40 2016 New Revision: 416117 URL: https://svnweb.freebsd.org/changeset/ports/416117 Log: Allow building sysutils/intel-nvmupdate and net/intel-ixl-kmod on 10.1-RELEASE The packaging cluster is building packages for 10.x on 10.1-RELEASE machine, so the ports couldn't be built into packages due to IGNORE statement for 1001000 OSVERSION. Submitted by: Sergey Kozlov Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D6473 Modified: head/net/intel-ixl-kmod/Makefile head/sysutils/intel-nvmupdate/Makefile Modified: head/net/intel-ixl-kmod/Makefile ============================================================================== --- head/net/intel-ixl-kmod/Makefile Sun May 29 16:48:54 2016 (r416116) +++ head/net/intel-ixl-kmod/Makefile Sun May 29 17:11:40 2016 (r416117) @@ -29,8 +29,8 @@ ONLY_FOR_ARCHS_REASON= Not supported on .include -.if ${OSVERSION} < 1002000 -IGNORE= is not supported on FreeBSD 10.1 and older +.if ${OSVERSION} < 1001000 +IGNORE= is not supported on FreeBSD 10.0 and older .endif .if ${OSVERSION} >= 1100000 Modified: head/sysutils/intel-nvmupdate/Makefile ============================================================================== --- head/sysutils/intel-nvmupdate/Makefile Sun May 29 16:48:54 2016 (r416116) +++ head/sysutils/intel-nvmupdate/Makefile Sun May 29 17:11:40 2016 (r416117) @@ -36,8 +36,8 @@ NVMUPDATE_DIR= intel-nvmupdate .include -.if ${OSVERSION} < 1002000 -IGNORE= is not supported on FreeBSD 10.1 and older +.if ${OSVERSION} < 1001000 +IGNORE= is not supported on FreeBSD 10.0 and older .endif .if ${OSVERSION} >= 1100000