From owner-svn-ports-head@freebsd.org Fri Nov 24 18:59:06 2017 Return-Path: Delivered-To: svn-ports-head@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 4ACF7DEE74E; Fri, 24 Nov 2017 18:59:06 +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 mx1.freebsd.org (Postfix) with ESMTPS id 14D0B7FC0B; Fri, 24 Nov 2017 18:59:06 +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 vAOIx5c1062245; Fri, 24 Nov 2017 18:59:05 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAOIx4tA062241; Fri, 24 Nov 2017 18:59:04 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711241859.vAOIx4tA062241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 24 Nov 2017 18:59:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454832 - in head/security: . 2fa X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . 2fa X-SVN-Commit-Revision: 454832 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Nov 2017 18:59:06 -0000 Author: yuri Date: Fri Nov 24 18:59:04 2017 New Revision: 454832 URL: https://svnweb.freebsd.org/changeset/ports/454832 Log: New port: security/2fa: Two-factor authentication on the command line PR: 223822 Submitted by: Dmitri Goutnik Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13220 Added: head/security/2fa/ head/security/2fa/Makefile (contents, props changed) head/security/2fa/distinfo (contents, props changed) head/security/2fa/pkg-descr (contents, props changed) Modified: head/security/Makefile Added: head/security/2fa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/2fa/Makefile Fri Nov 24 18:59:04 2017 (r454832) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= 2fa +DISTVERSION= g20171122 +CATEGORIES= security + +MAINTAINER= dg@syrec.org +COMMENT= Two-factor authentication on the command line + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go:lang/go + +USE_GITHUB= yes +GH_ACCOUNT= rsc +GH_TAGNAME= c9558c5 + +OPTIONS_DEFINE= DOCS + +PLIST_FILES= bin/2fa +PORTDOCS= README.md + +do-build: + @cd ${WRKSRC} && ${SETENV} GOPATH=${WRKSRC} go build -o ${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/security/2fa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/2fa/distinfo Fri Nov 24 18:59:04 2017 (r454832) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511500933 +SHA256 (rsc-2fa-g20171122-c9558c5_GH0.tar.gz) = bb69f6774b991023256c3e69ed270f046d74886d1cf31c56edd810bb31a0b658 +SIZE (rsc-2fa-g20171122-c9558c5_GH0.tar.gz) = 4248 Added: head/security/2fa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/2fa/pkg-descr Fri Nov 24 18:59:04 2017 (r454832) @@ -0,0 +1,3 @@ +2fa is a command-line two-factor authentication agent. + +WWW: https://github.com/rsc/2fa Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Nov 24 18:40:22 2017 (r454831) +++ head/security/Makefile Fri Nov 24 18:59:04 2017 (r454832) @@ -5,6 +5,7 @@ SUBDIR += 0d1n SUBDIR += 1password-client + SUBDIR += 2fa SUBDIR += ADMsmb SUBDIR += ADMsnmp SUBDIR += R-cran-ROAuth