Received: by mail.netbsd.org (Postfix, from userid 605) id 879E884DED; Wed, 28 Feb 2018 18:12:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AC99484D8A for ; Wed, 28 Feb 2018 18:12:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id u9XFM-RNe_1v for ; Wed, 28 Feb 2018 18:12:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C77A584D38 for ; Wed, 28 Feb 2018 18:12:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C172DFB40; Wed, 28 Feb 2018 18:12:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151984155162640" MIME-Version: 1.0 Date: Wed, 28 Feb 2018 18:12:31 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/security/R-digest To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180228181231.C172DFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_151984155162640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Wed Feb 28 18:12:31 UTC 2018 Modified Files: pkgsrc/security/R-digest: DESCR Makefile distinfo Log Message: security/R-digest: Update to 0.6.15 Notable changes since 0.6.12: * R/digest.R: Support serializeVersion format * sha1() handles empty matrices * sha1() gains an `algo` argument * sha1() handles raw class * R/sha1.R (sha1.POSIXlt): Unclass POSIXlt object To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/R-digest/DESCR cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/R-digest/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/R-digest/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151984155162640 Content-Disposition: inline Content-Length: 3910 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/R-digest/DESCR diff -u pkgsrc/security/R-digest/DESCR:1.1 pkgsrc/security/R-digest/DESCR:1.2 --- pkgsrc/security/R-digest/DESCR:1.1 Sat Sep 20 03:28:30 2014 +++ pkgsrc/security/R-digest/DESCR Wed Feb 28 18:12:31 2018 @@ -1,19 +1,11 @@ -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 -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. +digest provides hash function summaries for GNU R objects. The md5, +sha-1, sha-256 and crc32 hash functions are available. The md5 +algorithm by Ron Rivest is specified in RFC 1321, the SHA-1 and +SHA-256 algorithm is specified in FIPS-180-1 and FIPS-180-2, +respectively, and the crc32 algorithm is described in here. For md5, +sha-1 and sha-256, this packages uses small standalone C +implementations that were provided by by Christophe Devine. For crc32, +code from the zlib library is used. For sha-512, a routine by Aaron +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. Index: pkgsrc/security/R-digest/Makefile diff -u pkgsrc/security/R-digest/Makefile:1.3 pkgsrc/security/R-digest/Makefile:1.4 --- pkgsrc/security/R-digest/Makefile:1.3 Sat Mar 11 12:24:25 2017 +++ pkgsrc/security/R-digest/Makefile Wed Feb 28 18:12:31 2018 @@ -1,15 +1,16 @@ -# $NetBSD: Makefile,v 1.3 2017/03/11 12:24:25 wen Exp $ +# $NetBSD: Makefile,v 1.4 2018/02/28 18:12:31 minskim Exp $ CATEGORIES= security MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= ${R_HOMEPAGE_BASE}/digest/ +HOMEPAGE= http://dirk.eddelbuettel.com/code/digest.html COMMENT= Create cryptographic hash digests of R objects LICENSE= gnu-gpl-v2 R_PKGNAME= digest -R_PKGVER= 0.6.12 +R_PKGVER= 0.6.15 +BUILDLINK_API_DEPENDS.R+= R>=2.4.1 .include "../../math/R/Makefile.extension" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/security/R-digest/distinfo diff -u pkgsrc/security/R-digest/distinfo:1.4 pkgsrc/security/R-digest/distinfo:1.5 --- pkgsrc/security/R-digest/distinfo:1.4 Sat Mar 11 12:24:25 2017 +++ pkgsrc/security/R-digest/distinfo Wed Feb 28 18:12:31 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2017/03/11 12:24:25 wen Exp $ +$NetBSD: distinfo,v 1.5 2018/02/28 18:12:31 minskim Exp $ -SHA1 (R/digest_0.6.12.tar.gz) = 04131ec6090d03e050d6f6d7ec918f4bd7c87e06 -RMD160 (R/digest_0.6.12.tar.gz) = 479e2486d6ceab07dc196d81a4355b9b9b3285af -SHA512 (R/digest_0.6.12.tar.gz) = 0742061d08937f74ea2a408f8a331eb14f4ba8904783f2e1c9fa860fa12b3426b5dbf5184f2e88c6cdc77ef40fc1245cab96161937f7209dac987a7309f1a24b -Size (R/digest_0.6.12.tar.gz) = 120337 bytes +SHA1 (R/digest_0.6.15.tar.gz) = 892e35950e872504ef691b3defad81d81de86b57 +RMD160 (R/digest_0.6.15.tar.gz) = bcbf963d2fc22bce4fdab2c6bb539322d8b4a77a +SHA512 (R/digest_0.6.15.tar.gz) = 632f5396e900379e3a2c70a4731fd150a36cbb1f426cbcbbdf5483853c431fe3a499ca7ad600411b520e620cc2f048b389346c5c083a205276a42a0e80c5a190 +Size (R/digest_0.6.15.tar.gz) = 122095 bytes --_----------=_151984155162640--