From owner-svn-ports-all@freebsd.org Mon Jun 24 00:14:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED68315B83CB; Mon, 24 Jun 2019 00:14:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 92C6B75F1F; Mon, 24 Jun 2019 00:14:26 +0000 (UTC) (envelope-from yuri@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 51BA92932A; Mon, 24 Jun 2019 00:14:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5O0EQDF018665; Mon, 24 Jun 2019 00:14:26 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5O0EP5e018661; Mon, 24 Jun 2019 00:14:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906240014.x5O0EP5e018661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 24 Jun 2019 00:14:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504997 - in head/sysutils: . daggy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/sysutils: . daggy X-SVN-Commit-Revision: 504997 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 92C6B75F1F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.93)[-0.929,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 24 Jun 2019 00:14:27 -0000 Author: yuri Date: Mon Jun 24 00:14:25 2019 New Revision: 504997 URL: https://svnweb.freebsd.org/changeset/ports/504997 Log: New port: sysutils/daggy: Data Aggregation Utility: runs commands on remote hosts simultaneously Added: head/sysutils/daggy/ head/sysutils/daggy/Makefile (contents, props changed) head/sysutils/daggy/distinfo (contents, props changed) head/sysutils/daggy/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Jun 23 22:38:05 2019 (r504996) +++ head/sysutils/Makefile Mon Jun 24 00:14:25 2019 (r504997) @@ -224,6 +224,7 @@ SUBDIR += daemonize SUBDIR += daemontools SUBDIR += daemontools-encore + SUBDIR += daggy SUBDIR += dar SUBDIR += dateutils SUBDIR += dc3dd Added: head/sysutils/daggy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daggy/Makefile Mon Jun 24 00:14:25 2019 (r504997) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= daggy +DISTVERSION= 1.1.2 +CATEGORIES= sysutils + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Data Aggregation Utility: runs commands on remote hosts simultaneously + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libbotan-2.so:security/botan2 \ + libyaml-cpp.so:devel/yaml-cpp + +USES= gl pkgconfig qmake qt:5 +USE_GITHUB= yes +GH_ACCOUNT= synacker +USE_QT= core gui network buildtools_build +USE_GL= gl + +QMAKE_ARGS= VERSION="${PORTVERSION}" BUILD_NUMBER="0" + +PLIST_FILES= bin/daggy + +.include Added: head/sysutils/daggy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daggy/distinfo Mon Jun 24 00:14:25 2019 (r504997) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561333329 +SHA256 (synacker-daggy-1.1.2_GH0.tar.gz) = 71beb21b18384ebee44ae39b39ec6edfe906232618d98ece3eaaa91e886d493c +SIZE (synacker-daggy-1.1.2_GH0.tar.gz) = 2607920 Added: head/sysutils/daggy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/daggy/pkg-descr Mon Jun 24 00:14:25 2019 (r504997) @@ -0,0 +1,15 @@ +Daggy is an IT automation tool. It can run terminal commands on local or remote +serveres and aggregate their output locally. + +Daggy main goals are simplicity and ease-of-use. If you know about yaml/json, +bash/powershell and ssh you know how to use Daggy. + +Daggy can be helpful for developers, QA, DevOps and engenieers for debug, +analyze and control distributed network systems, for example, based on +microservice architecture. + +Daggy is serverless, cross-platform solution and don't require installation on +remote servers. Commands execution work under SSH transport protocol or via +local terminal. + +WWW: https://docs.daggy.dev/