From owner-svn-ports-all@freebsd.org Sun May 6 20:03:41 2018 Return-Path: Delivered-To: svn-ports-all@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 C3EF5FC4D78; Sun, 6 May 2018 20:03:41 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 773FF6F9B7; Sun, 6 May 2018 20:03:41 +0000 (UTC) (envelope-from zeising@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FD561151A; Sun, 6 May 2018 20:03:41 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w46K3f09073022; Sun, 6 May 2018 20:03:41 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w46K3fjI073020; Sun, 6 May 2018 20:03:41 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201805062003.w46K3fjI073020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 6 May 2018 20:03:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469250 - in head/graphics: drm-next-kmod drm-stable-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/graphics: drm-next-kmod drm-stable-kmod X-SVN-Commit-Revision: 469250 X-SVN-Commit-Repository: ports 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.25 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, 06 May 2018 20:03:41 -0000 Author: zeising Date: Sun May 6 20:03:41 2018 New Revision: 469250 URL: https://svnweb.freebsd.org/changeset/ports/469250 Log: Fix dependency on gpu-firmware-kmod Fix the dependency on gpu-firmware-kmod, the version used was about a year off. Bump portrevision since dependency changed. Approved by: jmd (maintainer) MFH: 2018Q2 X-MFH-notes: merge with r469162 Modified: head/graphics/drm-next-kmod/Makefile head/graphics/drm-stable-kmod/Makefile Modified: head/graphics/drm-next-kmod/Makefile ============================================================================== --- head/graphics/drm-next-kmod/Makefile Sun May 6 19:43:46 2018 (r469249) +++ head/graphics/drm-next-kmod/Makefile Sun May 6 20:03:41 2018 (r469250) @@ -3,6 +3,7 @@ PORTNAME= drm-next-kmod PORTVERSION= 4.11.g20180505 +PORTREVISION= 1 CATEGORIES= graphics kld MAINTAINER= jmd@FreeBSD.org @@ -14,7 +15,7 @@ LICENSE_COMB= multi ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= the new KMS components are only supported on amd64 -RUN_DEPENDS= gpu-firmware-kmod>=g20170319:graphics/gpu-firmware-kmod +RUN_DEPENDS= gpu-firmware-kmod>=g20180319:graphics/gpu-firmware-kmod CONFLICTS_INSTALL= drm-stable-kmod Modified: head/graphics/drm-stable-kmod/Makefile ============================================================================== --- head/graphics/drm-stable-kmod/Makefile Sun May 6 19:43:46 2018 (r469249) +++ head/graphics/drm-stable-kmod/Makefile Sun May 6 20:03:41 2018 (r469250) @@ -3,7 +3,7 @@ PORTNAME= drm-stable-kmod PORTVERSION= g20180505 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics kld MAINTAINER= jmd@FreeBSD.org @@ -15,7 +15,7 @@ LICENSE_COMB= multi ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= the new KMS components are only supported on amd64 -RUN_DEPENDS= gpu-firmware-kmod>=g20170403:graphics/gpu-firmware-kmod +RUN_DEPENDS= gpu-firmware-kmod>=g20180319:graphics/gpu-firmware-kmod CONFLICTS_INSTALL= drm-next-kmod