From owner-svn-ports-all@freebsd.org Sat May 23 20:42:54 2020 Return-Path: Delivered-To: svn-ports-all@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 9B3832DD8DF; Sat, 23 May 2020 20:42:54 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49TwKV3hmDz4dhJ; Sat, 23 May 2020 20:42:54 +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 7A15215770; Sat, 23 May 2020 20:42:54 +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 04NKgsw7053086; Sat, 23 May 2020 20:42:54 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04NKgs2N053085; Sat, 23 May 2020 20:42:54 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202005232042.04NKgs2N053085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 May 2020 20:42:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r536344 - head/security/cfssl X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/security/cfssl X-SVN-Commit-Revision: 536344 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.33 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: Sat, 23 May 2020 20:42:54 -0000 Author: yuri Date: Sat May 23 20:42:53 2020 New Revision: 536344 URL: https://svnweb.freebsd.org/changeset/ports/536344 Log: security/cfssl: Fix grammar in COMMENT; Fix and add to pkg-descr; Cosmetic code improvements Modified: head/security/cfssl/Makefile head/security/cfssl/pkg-descr Modified: head/security/cfssl/Makefile ============================================================================== --- head/security/cfssl/Makefile Sat May 23 20:39:24 2020 (r536343) +++ head/security/cfssl/Makefile Sat May 23 20:42:53 2020 (r536344) @@ -8,7 +8,7 @@ MASTER_SITES= https://bitbucket.org/${GOOSE_ACCOUNT}/$ DISTFILES= goose-${GOOSE_COMMIT}.tar.gz:goose MAINTAINER= yuri@FreeBSD.org -COMMENT= CloudFlares PKI and TLS toolkit +COMMENT= Cloudflare's PKI and TLS toolkit LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE @@ -66,8 +66,7 @@ pre-configure: # the project uses Makefile for build and installation do-build: - (cd ${WRKSRC} && \ - ${SETENV} ${MAKE_ENV} ${GO_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} all) + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GO_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} all do-install: # Makefile is used but the install target uses go install. Modified: head/security/cfssl/pkg-descr ============================================================================== --- head/security/cfssl/pkg-descr Sat May 23 20:39:24 2020 (r536343) +++ head/security/cfssl/pkg-descr Sat May 23 20:42:53 2020 (r536344) @@ -1,4 +1,14 @@ -CFSSL is CloudFlare's PKI/TLS swiss army knife. It is both a command line tool +CFSSL is Cloudflare's PKI/TLS swiss army knife. It is both a command line tool and an HTTP API server for signing, verifying, and bundling TLS certificates. + +CFSSL consists of: +* a set of packages useful for building custom TLS PKI tools +* the cfssl program, which is the canonical command line utility using the + CFSSL packages +* the multirootca program, which is a certificate authority server that can use + multiple signing keys +* the mkbundle program is used to build certificate pool bundles +* the cfssljson program, which takes the JSON output from the cfssl and + multirootca programs and writes certificates, keys, CSRs, and bundles to disk WWW: https://cfssl.org/