svn commit: r331015 - in head/security: . rubygem-ruby-hmac
Steve Wills
swills at FreeBSD.org
Sun Oct 20 13:34:16 UTC 2013
Author: swills
Date: Sun Oct 20 13:34:15 2013
New Revision: 331015
URL: http://svnweb.freebsd.org/changeset/ports/331015
Log:
This module provides common interface to HMAC functionality. HMAC is a kind of
"Message Authentication Code" (MAC) algorithm whose 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.
Originally written by Daiki Ueno. Converted to a RubyGem by Geoffrey Grosenbach
WWW: http://ruby-hmac.rubyforge.org/
PR: ports/182668
Submitted by: http://ruby-hmac.rubyforge.org/
Added:
head/security/rubygem-ruby-hmac/
head/security/rubygem-ruby-hmac/Makefile (contents, props changed)
head/security/rubygem-ruby-hmac/distinfo (contents, props changed)
head/security/rubygem-ruby-hmac/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Sun Oct 20 13:11:22 2013 (r331014)
+++ head/security/Makefile Sun Oct 20 13:34:15 2013 (r331015)
@@ -869,6 +869,7 @@
SUBDIR += rubygem-razorback-scriptNugget
SUBDIR += rubygem-rc4
SUBDIR += rubygem-roauth
+ SUBDIR += rubygem-ruby-hmac
SUBDIR += rubygem-twitter_oauth
SUBDIR += safesh
SUBDIR += saint
Added: head/security/rubygem-ruby-hmac/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/rubygem-ruby-hmac/Makefile Sun Oct 20 13:34:15 2013 (r331015)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= ruby-hmac
+PORTVERSION= 0.4.0
+CATEGORIES= security rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at FreeBSD.org
+COMMENT= Common interface to HMAC functionality
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+NO_STAGE= yes
+
+.include <bsd.port.mk>
Added: head/security/rubygem-ruby-hmac/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/rubygem-ruby-hmac/distinfo Sun Oct 20 13:34:15 2013 (r331015)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/ruby-hmac-0.4.0.gem) = a4245ecf2cfb2036975b63dc37d41426727d8449617ff45daf0b3be402a9fe07
+SIZE (rubygem/ruby-hmac-0.4.0.gem) = 7168
Added: head/security/rubygem-ruby-hmac/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/rubygem-ruby-hmac/pkg-descr Sun Oct 20 13:34:15 2013 (r331015)
@@ -0,0 +1,7 @@
+This module provides common interface to HMAC functionality. HMAC is a kind of
+"Message Authentication Code" (MAC) algorithm whose 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.
+Originally written by Daiki Ueno. Converted to a RubyGem by Geoffrey Grosenbach
+
+WWW: http://ruby-hmac.rubyforge.org/
More information about the svn-ports-all
mailing list