From owner-svn-ports-head@freebsd.org Mon Sep 9 22:21:37 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4BE8EE37E8; Mon, 9 Sep 2019 22:21:37 +0000 (UTC) (envelope-from dg@syrec.org) Received: from mail.syrec.org (mail.syrec.org [165.227.215.120]) (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 46S2gz4Sswz4kV9; Mon, 9 Sep 2019 22:21:35 +0000 (UTC) (envelope-from dg@syrec.org) Received: from xombo.localdomain (unknown [200.55.237.8]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.syrec.org (Postfix) with ESMTPSA id 7AA2D320AA; Mon, 9 Sep 2019 17:21:28 -0500 (-05) Date: Mon, 9 Sep 2019 17:21:20 -0500 From: Dmitri Goutnik To: svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r511661 - in head/security: . totp-cli Message-ID: <20190909222120.GA91855@xombo.localdomain> Mail-Followup-To: svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201909091932.x89JWSK7056657@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201909091932.x89JWSK7056657@repo.freebsd.org> User-Agent: Mutt/1.12.1 (2019-06-15) X-Rspamd-Queue-Id: 46S2gz4Sswz4kV9 X-Spamd-Bar: ----- X-Spamd-Result: default: False [-5.36 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[syrec.org:s=201902]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; DKIM_TRACE(0.00)[syrec.org:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[syrec.org,quarantine]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-2.36)[ip: (-9.60), ipnet: 165.227.208.0/20(-3.77), asn: 14061(1.62), country: US(-0.05)]; ASN(0.00)[asn:14061, ipnet:165.227.208.0/20, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 09 Sep 2019 22:21:37 -0000 Hi, On 19-09-09 19:32:28, Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Mon Sep 9 19:32:28 2019 > New Revision: 511661 > URL: https://svnweb.freebsd.org/changeset/ports/511661 > > Log: > Add totp-cli 1.1.1 > > This is a simple TOTP (Time-based One-time Password) CLI tool. TOTP is the most > common mechanism for 2FA (Two-Factor-Authentication). You can manage and > organize your accounts with namespaces and protect your data with a password. > > WWW: https://github.com/yitsushi/totp-cli > > Added: > head/security/totp-cli/ > head/security/totp-cli/Makefile (contents, props changed) > head/security/totp-cli/distinfo (contents, props changed) > head/security/totp-cli/pkg-descr (contents, props changed) > Modified: > head/security/Makefile > > Modified: head/security/Makefile > ============================================================================== > --- head/security/Makefile Mon Sep 9 19:32:18 2019 (r511660) > +++ head/security/Makefile Mon Sep 9 19:32:28 2019 (r511661) > @@ -1279,6 +1279,7 @@ > SUBDIR += tlswrap > SUBDIR += tor > SUBDIR += tor-devel > + SUBDIR += totp-cli > SUBDIR += tpm-tools > SUBDIR += trezord > SUBDIR += trinokiller > > Added: head/security/totp-cli/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/totp-cli/Makefile Mon Sep 9 19:32:28 2019 (r511661) > @@ -0,0 +1,31 @@ > +# Created by: Po-Chuan Hsieh > +# $FreeBSD$ > + > +PORTNAME= totp-cli > +PORTVERSION= 1.1.1 > +DISTVERSIONPREFIX= v > +CATEGORIES= security > + > +MAINTAINER= sunpoet@FreeBSD.org > +COMMENT= Authy/Google Authenticator like TOTP CLI tool > + > +LICENSE= GPLv3 > +LICENSE_FILE= ${WRKSRC}/LICENSE.md > + > +USES= go:modules > + > +PLIST_FILES= bin/totp-cli > + > +GH_ACCOUNT= yitsushi > +GH_TUPLE= golang:crypto:71b5226:golang_crypto/vendor/golang.org/x/crypto \ > + golang:sys:749cb33:golang_sys/vendor/golang.org/x/sys \ > + kardianos:osext:2bc1f35:kardianos_osext/vendor/github.com/kardianos/osext \ > + mitchellh:go-homedir:v1.1.0:mitchellh_gohomedir/vendor/github.com/mitchellh/go-homedir \ > + yitsushi:github-release-check:v1.0.1:yitsushi_github_release_check/vendor/github.com/yitsushi/github-release-check \ > + yitsushi:go-commander:v1.1.0:yitsushi_go_commander/vendor/github.com/yitsushi/go-commander > +USE_GITHUB= yes > + > +do-install: > + ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/totp-cli ${STAGEDIR}${PREFIX}/bin/totp-cli go.mk already provides do-install target that does the same thing. Regards, -- Dmitri Goutnik dg@syrec.org