From 43666ff0f3c98d8047ba8a489df7c82ad1f0a641 Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Mon, 8 Jan 2018 16:51:12 +0000 Subject: [PATCH] A Ruby implementation of the Password-Based Key-Derivation Function v2 WWW: https://github.com/emerose/pbkdf2-ruby --- security/Makefile | 1 + security/rubygem-pbkdf2-ruby/Makefile | 19 +++++++++++++++++++ security/rubygem-pbkdf2-ruby/distinfo | 3 +++ security/rubygem-pbkdf2-ruby/pkg-descr | 3 +++ 4 files changed, 26 insertions(+) create mode 100644 security/rubygem-pbkdf2-ruby/Makefile create mode 100644 security/rubygem-pbkdf2-ruby/distinfo create mode 100644 security/rubygem-pbkdf2-ruby/pkg-descr diff --git a/security/Makefile b/security/Makefile index 0670de4c5273..01245aba0ab4 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1089,6 +1089,7 @@ SUBDIR += rubygem-openssl20 SUBDIR += rubygem-openvas-omp SUBDIR += rubygem-origami + SUBDIR += rubygem-pbkdf2-ruby SUBDIR += rubygem-pundit SUBDIR += rubygem-pyu-ruby-sasl SUBDIR += rubygem-rack-oauth2 diff --git a/security/rubygem-pbkdf2-ruby/Makefile b/security/rubygem-pbkdf2-ruby/Makefile new file mode 100644 index 000000000000..d49cc57650b3 --- /dev/null +++ b/security/rubygem-pbkdf2-ruby/Makefile @@ -0,0 +1,19 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= pbkdf2-ruby +PORTVERSION= 0.2.1 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= feld@FreeBSD.org +COMMENT= Password Based Key Derivation Function 2 for Ruby + +LICENSE= MIT + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include diff --git a/security/rubygem-pbkdf2-ruby/distinfo b/security/rubygem-pbkdf2-ruby/distinfo new file mode 100644 index 000000000000..bdd293dd0f6f --- /dev/null +++ b/security/rubygem-pbkdf2-ruby/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1513259259 +SHA256 (rubygem/pbkdf2-ruby-0.2.1.gem) = e1f90f3c57a2fd628484e26c11d5b9bab7708a502de316450a70d38966599b04 +SIZE (rubygem/pbkdf2-ruby-0.2.1.gem) = 11776 diff --git a/security/rubygem-pbkdf2-ruby/pkg-descr b/security/rubygem-pbkdf2-ruby/pkg-descr new file mode 100644 index 000000000000..3d5d5db731dc --- /dev/null +++ b/security/rubygem-pbkdf2-ruby/pkg-descr @@ -0,0 +1,3 @@ +A Ruby implementation of the Password-Based Key-Derivation Function v2 + +WWW: https://github.com/emerose/pbkdf2-ruby