From owner-svn-ports-all@freebsd.org Sun Aug 11 05:34:41 2019 Return-Path: Delivered-To: svn-ports-all@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 21BDEB03BB; Sun, 11 Aug 2019 05:34:41 +0000 (UTC) (envelope-from jbeich@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) server-signature RSA-PSS (4096 bits) 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 465njX75nTz4Zwy; Sun, 11 Aug 2019 05:34:40 +0000 (UTC) (envelope-from jbeich@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 D09F49892; Sun, 11 Aug 2019 05:34:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7B5Ye4c022990; Sun, 11 Aug 2019 05:34:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7B5YdUS022987; Sun, 11 Aug 2019 05:34:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201908110534.x7B5YdUS022987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 11 Aug 2019 05:34:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508583 - in head/graphics: . drm_info X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/graphics: . drm_info X-SVN-Commit-Revision: 508583 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.29 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, 11 Aug 2019 05:34:41 -0000 Author: jbeich Date: Sun Aug 11 05:34:39 2019 New Revision: 508583 URL: https://svnweb.freebsd.org/changeset/ports/508583 Log: graphics/drm_info: add new port Small utility to dump info about DRM devices. Suports JSON output. Dumps can be shared on https://drmdb.emersion.fr/ Added: head/graphics/drm_info/ head/graphics/drm_info/Makefile (contents, props changed) head/graphics/drm_info/distinfo (contents, props changed) head/graphics/drm_info/pkg-descr (contents, props changed) Modified: head/graphics/Makefile (contents, props changed) Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Aug 11 05:05:45 2019 (r508582) +++ head/graphics/Makefile Sun Aug 11 05:34:39 2019 (r508583) @@ -143,6 +143,7 @@ SUBDIR += drm-fbsd12.0-kmod SUBDIR += drm-kmod SUBDIR += drm-legacy-kmod + SUBDIR += drm_info SUBDIR += dspdfviewer SUBDIR += duhdraw SUBDIR += dynamechs Added: head/graphics/drm_info/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drm_info/Makefile Sun Aug 11 05:34:39 2019 (r508583) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= drm_info +DISTVERSIONPREFIX= v +DISTVERSION= 2.1.0 +CATEGORIES= graphics + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Small utility to dump info about DRM devices + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libjson-c.so:devel/json-c \ + libdrm.so:graphics/libdrm + +USES= compiler:c11 meson pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= ascent12 +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/graphics/drm_info/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drm_info/distinfo Sun Aug 11 05:34:39 2019 (r508583) @@ -0,0 +1,3 @@ +TIMESTAMP = 1559573555 +SHA256 (ascent12-drm_info-v2.1.0_GH0.tar.gz) = eb5158f93815e4a30b0e10c98fbe3e0b5422dbd8c6d6ff8b9490f92b80993612 +SIZE (ascent12-drm_info-v2.1.0_GH0.tar.gz) = 12947 Added: head/graphics/drm_info/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drm_info/pkg-descr Sun Aug 11 05:34:39 2019 (r508583) @@ -0,0 +1,3 @@ +Small utility to dump info about DRM devices. Suports JSON output. + +WWW: https://github.com/ascent12/drm_info