From owner-freebsd-ruby@FreeBSD.ORG Sun Oct 20 13:40:01 2013 Return-Path: Delivered-To: ruby@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C3021FEB for ; Sun, 20 Oct 2013 13:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B12A428E7 for ; Sun, 20 Oct 2013 13:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9KDe1pm014803 for ; Sun, 20 Oct 2013 13:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9KDe1Db014649; Sun, 20 Oct 2013 13:40:01 GMT (envelope-from gnats) Date: Sun, 20 Oct 2013 13:40:01 GMT Message-Id: <201310201340.r9KDe1Db014649@freefall.freebsd.org> To: ruby@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/182668: commit references a PR X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Oct 2013 13:40:01 -0000 The following reply was made to PR ports/182668; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182668: commit references a PR Date: Sun, 20 Oct 2013 13:34:23 +0000 (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 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"