Date: Sat, 28 Dec 2019 12:23:16 +0000 (UTC) From: Dmitri Goutnik <dmgk@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521215 - in head/security: . age Message-ID: <201912281223.xBSCNGw4023718@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dmgk Date: Sat Dec 28 12:23:15 2019 New Revision: 521215 URL: https://svnweb.freebsd.org/changeset/ports/521215 Log: New port: security/age age is a simple, modern and secure encryption tool with small explicit keys, no config options, and UNIX-style composability. WWW: https://github.com/FiloSottile/age Added: head/security/age/ head/security/age/Makefile (contents, props changed) head/security/age/distinfo (contents, props changed) head/security/age/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Dec 28 10:29:13 2019 (r521214) +++ head/security/Makefile Sat Dec 28 12:23:15 2019 (r521215) @@ -20,6 +20,7 @@ SUBDIR += afl SUBDIR += afl++ SUBDIR += afterglow + SUBDIR += age SUBDIR += aide SUBDIR += akmos SUBDIR += amap Added: head/security/age/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/age/Makefile Sat Dec 28 12:23:15 2019 (r521215) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= age +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.0 +DISTVERSIONSUFFIX= -beta2 +CATEGORIES= security + +MAINTAINER= dmgk@FreeBSD.org +COMMENT= Simple, modern and secure file encryption tool + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules + +USE_GITHUB= yes +GH_ACCOUNT= FiloSottile +GH_TUPLE= \ + Filosottile:go:9090b284250b:filosottile_go/vendor/golang.org/x/crypto \ + golang:sys:97732733099d:golang_sys/vendor/golang.org/x/sys + +GO_TARGET= ./cmd/age \ + ./cmd/age-keygen + +PLIST_FILES= ${GO_TARGET:C/.\/cmd/bin/} + +.include <bsd.port.mk> Added: head/security/age/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/age/distinfo Sat Dec 28 12:23:15 2019 (r521215) @@ -0,0 +1,7 @@ +TIMESTAMP = 1577534378 +SHA256 (FiloSottile-age-v1.0.0-beta2_GH0.tar.gz) = ca0fcfe45415c03c637c2332231f1793bf4dbd6a03e663a71ef2b7554647d763 +SIZE (FiloSottile-age-v1.0.0-beta2_GH0.tar.gz) = 19958 +SHA256 (Filosottile-go-9090b284250b_GH0.tar.gz) = a2f640d4e1f822e95427550c700b85344b0076f15bff567ecf4c3ea14b089eee +SIZE (Filosottile-go-9090b284250b_GH0.tar.gz) = 1714485 +SHA256 (golang-sys-97732733099d_GH0.tar.gz) = 8d60fa6ab0c2b099f2c7d6f8c0a5df177c5c524183a2a38e0e8d2d18cde53532 +SIZE (golang-sys-97732733099d_GH0.tar.gz) = 1350239 Added: head/security/age/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/age/pkg-descr Sat Dec 28 12:23:15 2019 (r521215) @@ -0,0 +1,4 @@ +age is a simple, modern and secure encryption tool with small explicit keys, no +config options, and UNIX-style composability. + +WWW: https://github.com/FiloSottile/age
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912281223.xBSCNGw4023718>