svn commit: r568375 - in head/emulators: . hv_kvp_cmd

Li-Wen Hsu lwhsu at FreeBSD.org
Sun Mar 14 09:54:22 UTC 2021


Author: lwhsu
Date: Sun Mar 14 09:54:20 2021
New Revision: 568375
URL: https://svnweb.freebsd.org/changeset/ports/568375

Log:
  Add emulators/hv_kvp_cmd
  
  Hyper-V Data Exchange Service (KVP), users command line utility
  
  PR:		254268
  Submitted by:	Pavel Volkov <pavelivolkov at gmail.com>

Added:
  head/emulators/hv_kvp_cmd/
  head/emulators/hv_kvp_cmd/Makefile   (contents, props changed)
  head/emulators/hv_kvp_cmd/distinfo   (contents, props changed)
  head/emulators/hv_kvp_cmd/pkg-descr   (contents, props changed)
Modified:
  head/emulators/Makefile

Modified: head/emulators/Makefile
==============================================================================
--- head/emulators/Makefile	Sun Mar 14 09:28:30 2021	(r568374)
+++ head/emulators/Makefile	Sun Mar 14 09:54:20 2021	(r568375)
@@ -52,6 +52,7 @@
     SUBDIR += hercules
     SUBDIR += higan
     SUBDIR += hugo
+    SUBDIR += hv_kvp_cmd
     SUBDIR += i386-wine
     SUBDIR += i386-wine-devel
     SUBDIR += ines
@@ -126,6 +127,7 @@
     SUBDIR += rpcs3
     SUBDIR += rtc
     SUBDIR += rubygem-fission
+    SUBDIR += sdltrs
     SUBDIR += simh
     SUBDIR += simh-hp2100
     SUBDIR += simh-hp3000

Added: head/emulators/hv_kvp_cmd/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/hv_kvp_cmd/Makefile	Sun Mar 14 09:54:20 2021	(r568375)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	hv_kvp_cmd
+DISTVERSION=	1.4
+CATEGORIES=	emulators
+
+MAINTAINER=	pavelivolkov at gmail.com
+COMMENT=	Hyper-V Data Exchange Service (KVP), users command line utility
+
+LICENSE=	MIT
+
+.if !exists(${SRC_BASE}/sys/dev/hyperv/utilities/hv_kvp.h)
+IGNORE=	requires system source tree in the ${SRC_BASE}
+.endif
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	pol73
+
+MAKE_ARGS+=	LOCAL=${STAGEDIR}${PREFIX}
+
+PLIST_FILES=	bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
+
+.include <bsd.port.mk>

Added: head/emulators/hv_kvp_cmd/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/hv_kvp_cmd/distinfo	Sun Mar 14 09:54:20 2021	(r568375)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1615694358
+SHA256 (pol73-hv_kvp_cmd-1.4_GH0.tar.gz) = 76a47576e7b99aba5692d2b860d4a791815367e8e877cf78a2e0e601caa89724
+SIZE (pol73-hv_kvp_cmd-1.4_GH0.tar.gz) = 5613

Added: head/emulators/hv_kvp_cmd/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/hv_kvp_cmd/pkg-descr	Sun Mar 14 09:54:20 2021	(r568375)
@@ -0,0 +1,7 @@
+Hyper-V Data Exchange Service (KVP),
+users command line utility
+
+Provides a mechanism to exchange basic metadata between
+the virtual machine and the host.
+
+WWW: https://github.com/pol73/hv_kvp_cmd/


More information about the svn-ports-head mailing list