Bug 182668 - new port security/rubygem-ruby-hmac
Summary: new port security/rubygem-ruby-hmac
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ruby (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-05 10:00 UTC by loic.blot
Modified: 2013-10-20 14:40 UTC (History)
0 users

See Also:


Attachments
rubygem-ruby-hmac.shar (1.96 KB, text/plain)
2013-10-05 10:00 UTC, loic.blot
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description loic.blot 2013-10-05 10:00:00 UTC
	Here is a new rubygem port needed for gitlab
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-05 10:00:16 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ruby

ruby@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-20 14:34:23 UTC
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@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/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Steve Wills freebsd_committer freebsd_triage 2013-10-20 14:34:55 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!