From owner-svn-ports-head@freebsd.org Wed Jan 10 17:43:19 2018 Return-Path: Delivered-To: svn-ports-head@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 A391BE6AA4A; Wed, 10 Jan 2018 17:43:19 +0000 (UTC) (envelope-from kwm@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 7F3AB8142B; Wed, 10 Jan 2018 17:43:19 +0000 (UTC) (envelope-from kwm@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 A5736CDC; Wed, 10 Jan 2018 17:43:18 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0AHhITE029342; Wed, 10 Jan 2018 17:43:18 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0AHhIj0029338; Wed, 10 Jan 2018 17:43:18 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201801101743.w0AHhIj0029338@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 10 Jan 2018 17:43:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458666 - in head/misc: . pnpids X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: in head/misc: . pnpids X-SVN-Commit-Revision: 458666 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.25 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: Wed, 10 Jan 2018 17:43:19 -0000 Author: kwm Date: Wed Jan 10 17:43:18 2018 New Revision: 458666 URL: https://svnweb.freebsd.org/changeset/ports/458666 Log: Add misc/pnpids Database of IDs used in Plug and Play devices. This file is taken from the hwdata package (https://github.com/vcrhonek/hwdata), because the offical upstream (http://uefi.org/pnp_id_list) does not have a easy to use file. Submitted by: Ting-Wei Lan Added: head/misc/pnpids/ head/misc/pnpids/Makefile (contents, props changed) head/misc/pnpids/distinfo (contents, props changed) head/misc/pnpids/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Jan 10 17:41:46 2018 (r458665) +++ head/misc/Makefile Wed Jan 10 17:43:18 2018 (r458666) @@ -376,6 +376,7 @@ SUBDIR += phraze SUBDIR += pinfo SUBDIR += pipe + SUBDIR += pnpids SUBDIR += podsleuth SUBDIR += posixtestsuite SUBDIR += proxyper Added: head/misc/pnpids/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/pnpids/Makefile Wed Jan 10 17:43:18 2018 (r458666) @@ -0,0 +1,28 @@ +# Created by: Ting-Wei Lan +# $FreeBSD$ + +PORTNAME= pnpids +PORTVERSION= 20140917 +CATEGORIES= misc + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Database of IDs used in Plug and Play devices + +LICENSE= GPLv2+ MIT +LICENSE_COMB= dual + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= ${DATADIR}/pnp.ids + +USE_GITHUB= yes +GH_ACCOUNT= vcrhonek +GH_PROJECT= hwdata +GH_TAGNAME= v0.308 + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/pnp.ids ${STAGEDIR}${DATADIR}/ + +.include Added: head/misc/pnpids/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/pnpids/distinfo Wed Jan 10 17:43:18 2018 (r458666) @@ -0,0 +1,3 @@ +TIMESTAMP = 1515165315 +SHA256 (vcrhonek-hwdata-20140917-v0.308_GH0.tar.gz) = 986d919c20a0c7f8b669a63830f6d2f4cb5c4cddcfc944c5e2ae05c2e9e5ec9f +SIZE (vcrhonek-hwdata-20140917-v0.308_GH0.tar.gz) = 1840375 Added: head/misc/pnpids/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/pnpids/pkg-descr Wed Jan 10 17:43:18 2018 (r458666) @@ -0,0 +1,3 @@ +Database of IDs used in Plug and Play devices. + +WWW: https://github.com/vcrhonek/hwdata