diff options
author | swills <swills@FreeBSD.org> | 2012-08-06 10:57:57 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-08-06 10:57:57 +0800 |
commit | 853de29a9191425fad5b8df8cb7c52a972ffa0d8 (patch) | |
tree | 325f3fedf2fc46057fe83d482af7e3d378d7a1c9 /security/rubygem-hmac | |
parent | 3fd63179eab3aabf71acde27ce919609051b200d (diff) | |
download | freebsd-ports-gnome-853de29a9191425fad5b8df8cb7c52a972ffa0d8.tar.gz freebsd-ports-gnome-853de29a9191425fad5b8df8cb7c52a972ffa0d8.tar.zst freebsd-ports-gnome-853de29a9191425fad5b8df8cb7c52a972ffa0d8.zip |
- Copy ruby-hmac to rubygem-hmac for use with ports that depend on the gem
Diffstat (limited to 'security/rubygem-hmac')
-rw-r--r-- | security/rubygem-hmac/Makefile | 22 | ||||
-rw-r--r-- | security/rubygem-hmac/distinfo | 2 | ||||
-rw-r--r-- | security/rubygem-hmac/pkg-descr | 10 |
3 files changed, 34 insertions, 0 deletions
diff --git a/security/rubygem-hmac/Makefile b/security/rubygem-hmac/Makefile new file mode 100644 index 000000000000..09d82eec6d8b --- /dev/null +++ b/security/rubygem-hmac/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: ruby-hmac +# Date created: 20 February 2002 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= hmac +PORTVERSION= 0.4.0 +CATEGORIES= security ruby +MASTER_SITES= RG +DISTNAME= ruby-${PORTNAME}-${PORTVERSION} + +MAINTAINER= ruby@freebsd.org +COMMENT= A Ruby library which implements the HMAC algorithm + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +GEM_NAME= ${DISTNAME} + +.include <bsd.port.mk> diff --git a/security/rubygem-hmac/distinfo b/security/rubygem-hmac/distinfo new file mode 100644 index 000000000000..511d212d0fe6 --- /dev/null +++ b/security/rubygem-hmac/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/ruby-hmac-0.4.0.gem) = a4245ecf2cfb2036975b63dc37d41426727d8449617ff45daf0b3be402a9fe07 +SIZE (rubygem/ruby-hmac-0.4.0.gem) = 7168 diff --git a/security/rubygem-hmac/pkg-descr b/security/rubygem-hmac/pkg-descr new file mode 100644 index 000000000000..122a341a4140 --- /dev/null +++ b/security/rubygem-hmac/pkg-descr @@ -0,0 +1,10 @@ +ruby-hmac: HMAC for Ruby + +This module provides a common interface to HMAC functionality. HMAC +is a kind of "Message Authentication Code" (MAC) algorithm which +standard is documented in RFC2104. Namely, a MAC provides a way to +check the integrity of information transmitted over or stored in an +unreliable medium, based on a secret key. + +Author: Daiki Ueno <ueno@unixuser.org> +WWW: http://deisui.org/~ueno/ruby/hmac.html |