Date: Wed, 10 Jan 2018 17:43:18 +0000 (UTC) From: Koop Mast <kwm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458666 - in head/misc: . pnpids Message-ID: <201801101743.w0AHhIj0029338@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <lantw44@gmail.com> 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 <lantw44@gmail.com> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801101743.w0AHhIj0029338>