diff options
author | antoine <antoine@FreeBSD.org> | 2016-05-15 15:08:37 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2016-05-15 15:08:37 +0800 |
commit | f971cf81a9b4f0af4d4b83b609f318e0eef41f96 (patch) | |
tree | a7b3087ba567f5dfffe1b93c929844cee8c904ad /security | |
parent | 004182dc236900181efb05458767c1b3f70206a8 (diff) | |
download | freebsd-ports-gnome-f971cf81a9b4f0af4d4b83b609f318e0eef41f96.tar.gz freebsd-ports-gnome-f971cf81a9b4f0af4d4b83b609f318e0eef41f96.tar.zst freebsd-ports-gnome-f971cf81a9b4f0af4d4b83b609f318e0eef41f96.zip |
New port: security/rubygem-openssl-ccm
rubygem-openssl-ccm is an implementation of RFC 3610 - Counter with CBC-MAC
(CCM).
WWW: https://github.com/smalllars/openssl-ccm
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/rubygem-openssl-ccm/Makefile | 19 | ||||
-rw-r--r-- | security/rubygem-openssl-ccm/distinfo | 3 | ||||
-rw-r--r-- | security/rubygem-openssl-ccm/pkg-descr | 4 |
4 files changed, 27 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 1f7adb81aef7..c69a483ae626 100644 --- a/security/Makefile +++ b/security/Makefile @@ -991,6 +991,7 @@ SUBDIR += rubygem-omniauth-multipassword SUBDIR += rubygem-omniauth-saml SUBDIR += rubygem-omniauth-shibboleth + SUBDIR += rubygem-openssl-ccm SUBDIR += rubygem-origami SUBDIR += rubygem-pyu-ruby-sasl SUBDIR += rubygem-rack-oauth2 diff --git a/security/rubygem-openssl-ccm/Makefile b/security/rubygem-openssl-ccm/Makefile new file mode 100644 index 000000000000..ac0eee65093c --- /dev/null +++ b/security/rubygem-openssl-ccm/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= openssl-ccm +PORTVERSION= 1.2.1 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Implementation of RFC 3610 - Counter with CBC-MAC (CCM) + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include <bsd.port.mk> diff --git a/security/rubygem-openssl-ccm/distinfo b/security/rubygem-openssl-ccm/distinfo new file mode 100644 index 000000000000..a305225ab3fe --- /dev/null +++ b/security/rubygem-openssl-ccm/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1463296014 +SHA256 (rubygem/openssl-ccm-1.2.1.gem) = 2cc989e04018e43fcda72c4c81d75f5b803ecc77b541cb811392c00f76a705a2 +SIZE (rubygem/openssl-ccm-1.2.1.gem) = 24576 diff --git a/security/rubygem-openssl-ccm/pkg-descr b/security/rubygem-openssl-ccm/pkg-descr new file mode 100644 index 000000000000..c5aa55a21f66 --- /dev/null +++ b/security/rubygem-openssl-ccm/pkg-descr @@ -0,0 +1,4 @@ +rubygem-openssl-ccm is an implementation of RFC 3610 - Counter with CBC-MAC +(CCM). + +WWW: https://github.com/smalllars/openssl-ccm |