From owner-svn-ports-all@freebsd.org Wed Nov 15 19:31:57 2017 Return-Path: Delivered-To: svn-ports-all@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 6E334DE4F1F; Wed, 15 Nov 2017 19:31:57 +0000 (UTC) (envelope-from swills@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 mx1.freebsd.org (Postfix) with ESMTPS id 45B40774C4; Wed, 15 Nov 2017 19:31:57 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAFJVuVv026586; Wed, 15 Nov 2017 19:31:56 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAFJVtnn026580; Wed, 15 Nov 2017 19:31:55 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201711151931.vAFJVtnn026580@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 15 Nov 2017 19:31:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454267 - in head/net-mgmt: . mdata-client mdata-client/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/net-mgmt: . mdata-client mdata-client/files X-SVN-Commit-Revision: 454267 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.25 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: Wed, 15 Nov 2017 19:31:57 -0000 Author: swills Date: Wed Nov 15 19:31:55 2017 New Revision: 454267 URL: https://svnweb.freebsd.org/changeset/ports/454267 Log: net-mgmt/mdata-client: create port Metadata retrieval and manipulation tools for use within guests of the SmartOS (and SDC) hypervisor. These guests may be either SmartOS Zones or KVM virtual machines. WWW: https://github.com/joyent/mdata-client Added: head/net-mgmt/mdata-client/ head/net-mgmt/mdata-client/Makefile (contents, props changed) head/net-mgmt/mdata-client/distinfo (contents, props changed) head/net-mgmt/mdata-client/files/ head/net-mgmt/mdata-client/files/patch-Makefile (contents, props changed) head/net-mgmt/mdata-client/pkg-descr (contents, props changed) head/net-mgmt/mdata-client/pkg-plist (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Wed Nov 15 19:13:50 2017 (r454266) +++ head/net-mgmt/Makefile Wed Nov 15 19:31:55 2017 (r454267) @@ -120,6 +120,7 @@ SUBDIR += libsmi SUBDIR += lldpd SUBDIR += mbrowse + SUBDIR += mdata-client SUBDIR += mk-livestatus SUBDIR += monitoring-plugins SUBDIR += mrtg Added: head/net-mgmt/mdata-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/mdata-client/Makefile Wed Nov 15 19:31:55 2017 (r454267) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= mdata-client +PORTVERSION= 20151001 +CATEGORIES= net-mgmt + +MAINTAINER= swills@FreeBSD.org +COMMENT= Metadata tools for use within guests of the SmartOS + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= joyent + +USES= gmake + +.include Added: head/net-mgmt/mdata-client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/mdata-client/distinfo Wed Nov 15 19:31:55 2017 (r454267) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510771703 +SHA256 (joyent-mdata-client-20151001_GH0.tar.gz) = bc232639568e13ab7d4cd972a46d63496b5e28bd1b2e1e671ae5d527330877a5 +SIZE (joyent-mdata-client-20151001_GH0.tar.gz) = 18082 Added: head/net-mgmt/mdata-client/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/mdata-client/files/patch-Makefile Wed Nov 15 19:31:55 2017 (r454267) @@ -0,0 +1,14 @@ +--- Makefile.orig 2015-04-24 23:13:47 UTC ++++ Makefile +@@ -18,9 +18,9 @@ HDRS = dynstr.h plat.h proto.h common.h base64.h crc32 + CFLAGS = -I$(PWD) -Wall -Wextra -Werror -g -O2 + LDLIBS = + +-BINDIR = /usr/sbin ++BINDIR = ${PREFIX}/sbin + MANSECT = 1m +-MANDIR = /usr/share/man/man$(MANSECT) ++MANDIR = ${PREFIX}/man/man$(MANSECT) + DESTDIR = $(PWD)/proto + + PROGS = \ Added: head/net-mgmt/mdata-client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/mdata-client/pkg-descr Wed Nov 15 19:31:55 2017 (r454267) @@ -0,0 +1,5 @@ +Metadata retrieval and manipulation tools for use within guests of the SmartOS +(and SDC) hypervisor. These guests may be either SmartOS Zones or KVM virtual +machines. + +WWW: https://github.com/joyent/mdata-client Added: head/net-mgmt/mdata-client/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/mdata-client/pkg-plist Wed Nov 15 19:31:55 2017 (r454267) @@ -0,0 +1,8 @@ +man/man1/mdata-delete.1.gz +man/man1/mdata-get.1.gz +man/man1/mdata-list.1.gz +man/man1/mdata-put.1.gz +sbin/mdata-delete +sbin/mdata-get +sbin/mdata-list +sbin/mdata-put