From owner-dev-commits-ports-main@freebsd.org Tue Sep 21 18:02:55 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 0E67B678529; Tue, 21 Sep 2021 18:02:55 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HDTmZ6s8Pz3kyH; Tue, 21 Sep 2021 18:02:54 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C0F35944; Tue, 21 Sep 2021 18:02:54 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18LI2sDU083852; Tue, 21 Sep 2021 18:02:54 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18LI2sQh083851; Tue, 21 Sep 2021 18:02:54 GMT (envelope-from git) Date: Tue, 21 Sep 2021 18:02:54 GMT Message-Id: <202109211802.18LI2sQh083851@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Antoine Brodin Subject: git: 9a0dd3f3c994 - main - security/rubygem-unix-crypt: new port MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: antoine X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9a0dd3f3c994bbc7fb08bc405af2a0f9022fb86e Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Sep 2021 18:02:55 -0000 The branch main has been updated by antoine: URL: https://cgit.FreeBSD.org/ports/commit/?id=9a0dd3f3c994bbc7fb08bc405af2a0f9022fb86e commit 9a0dd3f3c994bbc7fb08bc405af2a0f9022fb86e Author: Antoine Brodin AuthorDate: 2021-09-21 18:01:33 +0000 Commit: Antoine Brodin CommitDate: 2021-09-21 18:01:33 +0000 security/rubygem-unix-crypt: new port Performs the UNIX crypt(3) algorithm using DES (standard 13 character passwords), MD5 (starting with $1$), SHA256 (starting with $5$) and SHA512 (starting with $6$) WWW: https://github.com/mogest/unix-crypt --- security/Makefile | 1 + security/rubygem-unix-crypt/Makefile | 18 ++++++++++++++++++ security/rubygem-unix-crypt/distinfo | 3 +++ security/rubygem-unix-crypt/pkg-descr | 5 +++++ 4 files changed, 27 insertions(+) diff --git a/security/Makefile b/security/Makefile index 0f0a6fbc577e..83a126c69363 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1173,6 +1173,7 @@ SUBDIR += rubygem-timfel-krb5 SUBDIR += rubygem-tpm-key_attestation SUBDIR += rubygem-twitter_oauth + SUBDIR += rubygem-unix-crypt SUBDIR += rubygem-webauthn SUBDIR += rubygem-webpush SUBDIR += rustscan diff --git a/security/rubygem-unix-crypt/Makefile b/security/rubygem-unix-crypt/Makefile new file mode 100644 index 000000000000..d8ac554dc4cf --- /dev/null +++ b/security/rubygem-unix-crypt/Makefile @@ -0,0 +1,18 @@ +PORTNAME= unix-crypt +PORTVERSION= 1.3.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= UNIX crypt(3) algorithm using DES, MD5, SHA256 and SHA512 + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= gem +USE_RUBY= yes + +PLIST_FILES= bin/mkunixcrypt + +.include diff --git a/security/rubygem-unix-crypt/distinfo b/security/rubygem-unix-crypt/distinfo new file mode 100644 index 000000000000..52dc9c776dd4 --- /dev/null +++ b/security/rubygem-unix-crypt/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1632171065 +SHA256 (rubygem/unix-crypt-1.3.0.gem) = b83d51bec0f3fe8c7f7ed25c03e71963a5d009ad375d1af17e95c55af58dd4f1 +SIZE (rubygem/unix-crypt-1.3.0.gem) = 12800 diff --git a/security/rubygem-unix-crypt/pkg-descr b/security/rubygem-unix-crypt/pkg-descr new file mode 100644 index 000000000000..81ee98f1d74d --- /dev/null +++ b/security/rubygem-unix-crypt/pkg-descr @@ -0,0 +1,5 @@ +Performs the UNIX crypt(3) algorithm using DES (standard 13 character +passwords), MD5 (starting with $1$), SHA256 (starting with $5$) and +SHA512 (starting with $6$) + +WWW: https://github.com/mogest/unix-crypt