Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Dec 2019 14:45:12 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r519618 - in head/sysutils: . virt-what
Message-ID:  <201912091445.xB9EjCRD060899@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Mon Dec  9 14:45:11 2019
New Revision: 519618
URL: https://svnweb.freebsd.org/changeset/ports/519618

Log:
  sysutils/virt-what: create port
  
  virt-what is a shell script which can be used to detect if the program
  is running in a virtual machine.
  
  virt-what supports a very large number of different hypervisor types,
  including common open source hypervisors (KVM, Xen, QEMU, VirtualBox),
  mainframe systems like IBM Systemz, LPAR, z/VM, hardware partitioning
  schemes like Hitachi Virtage, proprietary hypervisors like VMWare,
  Microsoft Hyper-V and much more.
  
  WWW: https://people.redhat.com/~rjones/virt-what/
  
  PR:		242403
  Submitted by:	Juraj Lutter <juraj@lutter.sk>

Added:
  head/sysutils/virt-what/
  head/sysutils/virt-what/Makefile   (contents, props changed)
  head/sysutils/virt-what/distinfo   (contents, props changed)
  head/sysutils/virt-what/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile   (contents, props changed)

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Mon Dec  9 14:15:41 2019	(r519617)
+++ head/sysutils/Makefile	Mon Dec  9 14:45:11 2019	(r519618)
@@ -1421,6 +1421,7 @@
     SUBDIR += vii
     SUBDIR += vils
     SUBDIR += vimpager
+    SUBDIR += virt-what
     SUBDIR += virtualmin
     SUBDIR += vm-bhyve
     SUBDIR += vmdktool

Added: head/sysutils/virt-what/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/virt-what/Makefile	Mon Dec  9 14:45:11 2019	(r519618)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	virt-what
+PORTVERSION=	1.20
+CATEGORIES=	sysutils
+MASTER_SITES=	https://people.redhat.com/~rjones/virt-what/files/
+
+MAINTAINER=	juraj@lutter.sk
+COMMENT=	Utility to determine whether it is being run in virtual environment
+
+LICENSE=	GPLv1
+
+USES=		cpe perl5
+
+GNU_CONFIGURE=	yes
+
+PLIST_FILES=	libexec/virt-what-cpuid-helper \
+		man/man1/virt-what.1.gz \
+		sbin/virt-what
+
+.include <bsd.port.mk>

Added: head/sysutils/virt-what/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/virt-what/distinfo	Mon Dec  9 14:45:11 2019	(r519618)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1575376051
+SHA256 (virt-what-1.20.tar.gz) = f913dcd29add5121e3ffc0f2d0f17e19ff3183e8ab8ca417a5b6be43787910e8
+SIZE (virt-what-1.20.tar.gz) = 459243

Added: head/sysutils/virt-what/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/virt-what/pkg-descr	Mon Dec  9 14:45:11 2019	(r519618)
@@ -0,0 +1,10 @@
+virt-what is a shell script which can be used to detect if the program
+is running in a virtual machine.
+
+virt-what supports a very large number of different hypervisor types,
+including common open source hypervisors (KVM, Xen, QEMU, VirtualBox),
+mainframe systems like IBM Systemz, LPAR, z/VM, hardware partitioning
+schemes like Hitachi Virtage, proprietary hypervisors like VMWare,
+Microsoft Hyper-V and much more.
+
+WWW: https://people.redhat.com/~rjones/virt-what/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912091445.xB9EjCRD060899>