Date: Sat, 23 May 2020 20:42:54 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r536344 - head/security/cfssl Message-ID: <202005232042.04NKgs2N053085@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005232042.04NKgs2N053085>