From owner-svn-ports-head@freebsd.org Tue Jan 12 12:30:10 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 66EAC4D67F5; Tue, 12 Jan 2021 12:30:10 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DFVJy2WQmz4vHX; Tue, 12 Jan 2021 12:30:10 +0000 (UTC) (envelope-from manu@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 450582CCB1; Tue, 12 Jan 2021 12:30:10 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10CCUAXg065673; Tue, 12 Jan 2021 12:30:10 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10CCU9UC065669; Tue, 12 Jan 2021 12:30:09 GMT (envelope-from manu@FreeBSD.org) Message-Id: <202101121230.10CCU9UC065669@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Tue, 12 Jan 2021 12:30:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561321 - head/graphics/drm-current-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: head/graphics/drm-current-kmod X-SVN-Commit-Revision: 561321 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 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, 12 Jan 2021 12:30:10 -0000 Author: manu Date: Tue Jan 12 12:30:09 2021 New Revision: 561321 URL: https://svnweb.freebsd.org/changeset/ports/561321 Log: graphics/drm-current-kmod: Update to latest source after linuxkpi update in base While here remove vboxvideo and vmwgfx as they having been not working for a long time now. Modified: head/graphics/drm-current-kmod/Makefile head/graphics/drm-current-kmod/distinfo head/graphics/drm-current-kmod/pkg-plist Modified: head/graphics/drm-current-kmod/Makefile ============================================================================== --- head/graphics/drm-current-kmod/Makefile Tue Jan 12 12:21:13 2021 (r561320) +++ head/graphics/drm-current-kmod/Makefile Tue Jan 12 12:30:09 2021 (r561321) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= drm-current-kmod -PORTVERSION= 5.4.62.g20201109 -PORTREVISION= 1 +PORTVERSION= 5.4.62.g20210112 CATEGORIES= graphics kld MAINTAINER= x11@FreeBSD.org @@ -35,11 +34,11 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= freebsd GH_PROJECT= drm-kmod -GH_TAGNAME= drm_v5.4.62_4 +GH_TAGNAME= drm_v5.4.62_6 .include -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1300108 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1300128 IGNORE= not supported on older CURRENT, no kernel support .endif .if ${OPSYS} != FreeBSD @@ -49,23 +48,15 @@ IGNORE= not supported on anything but FreeBSD (missin .if ${ARCH} == "amd64" PLIST_SUB+= AMDGPU="" PLIST_SUB+= I915="" -PLIST_SUB+= VMWGFX="" -PLIST_SUB+= VBOXVIDEO="" .elif ${ARCH} == "i386" PLIST_SUB+= AMDGPU="@comment " PLIST_SUB+= I915="" -PLIST_SUB+= VMWGFX="" -PLIST_SUB+= VBOXVIDEO="" .elif ${ARCH} == "aarch64" || ${ARCH:Mpowerpc*} PLIST_SUB+= AMDGPU="" PLIST_SUB+= I915="@comment " -PLIST_SUB+= VBOXVIDEO="@comment " -PLIST_SUB+= VMWGFX="@comment " .else PLIST_SUB+= AMDGPU="@comment " PLIST_SUB+= I915="@comment " -PLIST_SUB+= VBOXVIDEO="@comment " -PLIST_SUB+= VMWGFX="@comment " .endif KMODSRC= ${STAGEDIR}${PREFIX}/sys/modules/${PORTNAME} Modified: head/graphics/drm-current-kmod/distinfo ============================================================================== --- head/graphics/drm-current-kmod/distinfo Tue Jan 12 12:21:13 2021 (r561320) +++ head/graphics/drm-current-kmod/distinfo Tue Jan 12 12:30:09 2021 (r561321) @@ -1,3 +1,3 @@ -TIMESTAMP = 1604928502 -SHA256 (freebsd-drm-kmod-5.4.62.g20201109-drm_v5.4.62_4_GH0.tar.gz) = 17b0ba158e8fd39e11f1b50bb2ca51a5ff2debe416f12ecc5cc035e6317dffb1 -SIZE (freebsd-drm-kmod-5.4.62.g20201109-drm_v5.4.62_4_GH0.tar.gz) = 18833838 +TIMESTAMP = 1610454131 +SHA256 (freebsd-drm-kmod-5.4.62.g20210112-drm_v5.4.62_6_GH0.tar.gz) = 8ff7e23ee4e51cba17c5d6003728dd893f78586b1ad89886d8039130b87ae08f +SIZE (freebsd-drm-kmod-5.4.62.g20210112-drm_v5.4.62_6_GH0.tar.gz) = 18829883 Modified: head/graphics/drm-current-kmod/pkg-plist ============================================================================== --- head/graphics/drm-current-kmod/pkg-plist Tue Jan 12 12:21:13 2021 (r561320) +++ head/graphics/drm-current-kmod/pkg-plist Tue Jan 12 12:30:09 2021 (r561321) @@ -4,8 +4,6 @@ /%%KMODDIR%%/linuxkpi_gplv2.ko /%%KMODDIR%%/radeonkms.ko /%%KMODDIR%%/ttm.ko -%%VBOXVIDEO%%/%%KMODDIR%%/vboxvideo.ko -%%VMWGFX%%/%%KMODDIR%%/vmwgfx.ko %%SOURCE%%%%KMODSRC%%/Makefile %%SOURCE%%%%KMODSRC%%/kconfig.mk %%SOURCE%%%%KMODSRC%%/amd/Makefile @@ -2229,9 +2227,6 @@ %%SOURCE%%%%KMODSRC%%/linuxkpi/dummy/include/linux/zlib.h %%SOURCE%%%%KMODSRC%%/linuxkpi/dummy/include/media/cec-notifier.h %%SOURCE%%%%KMODSRC%%/linuxkpi/dummy/include/video/of_videomode.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/acpi/acpi.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/acpi/acpi_bus.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/acpi/video.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/asm/barrier.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/asm/cpufeature.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/asm/cpufeatures.h @@ -2242,13 +2237,11 @@ %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/asm/processor.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/asm/required-features.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/asm/set_memory.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/acpi.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/agp_backend.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/anon_inodefs.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/anon_inodes.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/ascii85.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/atomic.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/bitfield.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/capability.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/circ_buf.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/compiler.h @@ -2263,7 +2256,6 @@ %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/fb.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/firmware.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/fwnode.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/gcd.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/genalloc.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/gpio/consumer.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/linux/hash.h @@ -2337,7 +2329,6 @@ %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/video/mipi_display.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/video/vga.h %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/include/video/videomode.h -%%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/src/linux_acpi.c %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/src/linux_anon_inodefs.c %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/src/linux_anon_inodes.c %%SOURCE%%%%KMODSRC%%/linuxkpi/gplv2/src/linux_compat.c