From owner-svn-ports-all@FreeBSD.ORG Sat Jun 13 03:55:31 2015 Return-Path: Delivered-To: svn-ports-all@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AEDF7D7; Sat, 13 Jun 2015 03:55:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0829DFF7; Sat, 13 Jun 2015 03:55:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5D3tUsw035895; Sat, 13 Jun 2015 03:55:30 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5D3tUQE035892; Sat, 13 Jun 2015 03:55:30 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201506130355.t5D3tUQE035892@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 13 Jun 2015 03:55:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389316 - head/security/R-cran-digest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2015 03:55:31 -0000 Author: tota Date: Sat Jun 13 03:55:29 2015 New Revision: 389316 URL: https://svnweb.freebsd.org/changeset/ports/389316 Log: - Update to 0.6.8 - Update pkg-descr Modified: head/security/R-cran-digest/Makefile head/security/R-cran-digest/distinfo head/security/R-cran-digest/pkg-descr Modified: head/security/R-cran-digest/Makefile ============================================================================== --- head/security/R-cran-digest/Makefile Sat Jun 13 03:32:09 2015 (r389315) +++ head/security/R-cran-digest/Makefile Sat Jun 13 03:55:29 2015 (r389316) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= digest -PORTVERSION= 0.6.4 -PORTREVISION= 2 +PORTVERSION= 0.6.8 CATEGORIES= security DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/security/R-cran-digest/distinfo ============================================================================== --- head/security/R-cran-digest/distinfo Sat Jun 13 03:32:09 2015 (r389315) +++ head/security/R-cran-digest/distinfo Sat Jun 13 03:55:29 2015 (r389316) @@ -1,2 +1,2 @@ -SHA256 (digest_0.6.4.tar.gz) = 334026e7de098e228ea2ca40f956cab6414780f4d8699880d9ce296a309dab1b -SIZE (digest_0.6.4.tar.gz) = 79309 +SHA256 (digest_0.6.8.tar.gz) = 3062422c2ca917e52749464d63084a0d3cc061f59083f069280ec26336ce2f55 +SIZE (digest_0.6.8.tar.gz) = 97985 Modified: head/security/R-cran-digest/pkg-descr ============================================================================== --- head/security/R-cran-digest/pkg-descr Sat Jun 13 03:32:09 2015 (r389315) +++ head/security/R-cran-digest/pkg-descr Sat Jun 13 03:55:29 2015 (r389316) @@ -1,17 +1,18 @@ -The digest package provides a function 'digest()' for the creation -of hash digests of arbitrary R objects (using the md5, sha-1, sha-256 -and crc32 algorithms) permitting easy comparison of R language -objects, as well as a function 'hmac()' to create hash-based message -authentication code. The md5 algorithm by Ron Rivest is specified -in RFC 1321, the sha-1 and sha-256 algorithms are specified in -FIPS-180-1 and FIPS-180-2, and the crc32 algorithm is described in -ftp://ftp.rocksoft.com/cliens/rocksoft/papers/crc_v3.txt. For md5, -sha-1, sha-256 and aes, this package uses a small standalone +Implementation of a function 'digest()' for the creation of hash +digests of arbitrary R objects (using the md5, sha-1, sha-256, +crc32, xxhash and murmurhash algorithms) permitting easy comparison +of R language objects, as well as a function 'hmac()' to create +hash-based message authentication code. The md5 algorithm by Ron +Rivest is specified in RFC 1321, the sha-1 and sha-256 algorithms +are specified in FIPS-180-1 and FIPS-180-2, and the crc32 algorithm +is described in ftp://ftp.rocksoft.com/cliens/rocksoft/papers/crc_v3.txt. +For md5, sha-1, sha-256 and aes, this package uses small standalone implementations that were provided by Christophe Devine. For crc32, code from the zlib library is used. For sha-512, an implementation -by Aaron D. Gifford is used. Please note that this package is not -meant to be deployed for cryptographic purposes for which more -comprehensive (and widely tested) libraries such as OpenSSL should -be used. +by Aaron D. Gifford is used. For xxHash, the implementation by Yann +Collet is used. For murmurhash, an implementation by Shane Day is +used. Please note that this package is not meant to be deployed for +cryptographic purposes for which more comprehensive (and widely +tested) libraries such as OpenSSL should be used. WWW: http://cran.r-project.org/web/packages/digest/