pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/R-digest



Module Name:    pkgsrc
Committed By:   wen
Date:           Sat Mar 11 12:24:25 UTC 2017

Modified Files:
        pkgsrc/security/R-digest: Makefile distinfo

Log Message:
Update to 0.6.12

Upstream changes:
2017-01-26  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * DESCRIPTION (Version, Date): Release 0.6.12

2017-01-23  Thierry Onkelinx <thierry.onkelinx%inbo.be@localhost>

        * NAMESPACE: export sha1.function() and sha1.call()

        * R/sha1.R:
          - sha1() gains methods for the class "function" and "call"
          - sha1() gains a ... argument, currently only relevant for
            "function"
          - sha1() takes arguments into account for hash for complex,
            Date and array. Note that this will lead to different
            hasheS for these classes and for objects containing
            these classes

        * man/sha1.rd: update helppage for sha1()

        * tests/sha1Test.R: update unit tests for sha1()

2017-01-01  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * DESCRIPTION (Version, Date): Release 0.6.11

        * R/sha1.R (sha1.anova): Added more #nocov marks
        * src/sha2.c (SHA256_Transform): Idem

        * tests/AESTest.R (hextextToRaw): Print AES object
        * tests/AESTest.Rout.save: Updated

2016-12-08  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * NAMESPACE: Register (and exported) makeRaw S3 methods

        * man/makeRaw.Rd: New manual page

        * tests/hmacTest.R: Direct call to makeRaw()
        * tests/hmacTest.Rout.save: Ditto

        * src/digest.c: Additional #nocov tags
        * src/xxhash.c: Ditto

2016-12-07  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * DESCRIPTION (Version, Date): Rolled minor version

        * README.md: Use shields.io badge for codecov

        * R/digest.R: Additional #nocov tags
        * src/sha2.c: Ditto
        * src/raes.c: Ditto

        * tests/hmacTest.R: Additional tests
        * tests/hmacTest.Rout.save: Ditto

2016-11-30  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * .travis.yml (before_install): Activate PPA as we (currently)
        need an updated version of (r-cran)-covr to run coverage
        * tests/load-unload.R: Comment-out for now as it upsets coverage

        * tests/digestTest.R: Test two more algorithms
        * tests/digestTest.Rout.save: Updated reference output

        * R/digest.R: Added #nocov tags
        * R/zzz.R (.onUnload): Ditto
        * src/crc32.c: Ditto
        * src/pmurhash.c: Ditto
        * src/raes.c: Ditto
        * src/sha2.c: Ditto
        * src/xxhash.c: Ditto

2016-11-26  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * .travis.yml (after_success): Integrated Jim Hester's suggestion of
        activating code coverage sent many moons ago (in PR #12)
        * .codecov.yml (comment): Added
        * .Rbuildignore: Exclude .codecov.yml
        * README.md: Added code coverage badge

2016-10-16  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * R/digest.R (digest): Support 'nosharing' option of base::serialize
        as suggested by Radford Neal whose pqR uses this

2016-08-02  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * DESCRIPTION (License): Now GPL (>= 2), cf issue 36 on GH

        * README.md: Updated badge accordingly

2016-08-02  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * DESCRIPTION (Version): Release 0.6.10

        * DESCRIPTION (Description): Shortened to one paragraph
        * DESCRIPTION (BugReports): URL to GH issues added

        * .travis.yml: Rewritten for run.sh from forked r-travis

2016-07-12  Henrik Bengtsson  <hb%aroma-project.org@localhost>

        * src/digest.c: Correct bug with skip and file parameter interaction
        * tests/digestTest.R: Test code
        * tests/digestTest.Rout.save: Test reference output

        * R/zzz.R: Allow for unloading of shared library
        * tests/load-unload.R: Test code

        * DESCRIPTION: Rolled minor Version and Date

2016-05-25 Thierry Onkelinx <thierry.onkelinx%inbo.be@localhost>

        * R/sha1.R: Support for pairlist and name
        * tests/sha1Test.R: Support for pairlist and name
        * man/sha1.Rd: Support for pairlist, name, complex, array and Date
        * NAMESPACE: Support for pairlist, name and array
        * DESCRIPTION: bump version number and date

2016-05-01  Viliam Simko  <viliam.simko%gmail.com@localhost>

        * R/sha1.R: Support for complex, Date and array
        * tests/sha1Test.R: Ditto
        * NAMESPACE: Ditto

2016-04-27  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * DESCRIPTION (Author): Add Qiang Kou to Authors
        * README.md: Ditto

2016-01-25  Dirk Eddelbuettel  <edd%debian.org@localhost>

        * src/digest.c (digest): Use XLENGTH if R >= 3.0.0 (issue #29)

2016-01-11 Thierry Onkelinx  <thierry.onkelinx%inbo.be@localhost>

        * R/sha1.R: handle empty list and empty dataframe (#issue 27);
        take the object class, digits and zapsmall into account (#PR 28)

        * vignettes/sha1.Rmd: Small edits to reflect changes is sha1()

2016-01-09 Michel Lang  <michellang%gmail.com@localhost>

        * R/sha1.R: Add a length check to sha1(), use vapply()


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/R-digest/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/R-digest/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/R-digest/Makefile
diff -u pkgsrc/security/R-digest/Makefile:1.2 pkgsrc/security/R-digest/Makefile:1.3
--- pkgsrc/security/R-digest/Makefile:1.2       Sat Apr 16 14:57:03 2016
+++ pkgsrc/security/R-digest/Makefile   Sat Mar 11 12:24:25 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2016/04/16 14:57:03 wen Exp $
+# $NetBSD: Makefile,v 1.3 2017/03/11 12:24:25 wen Exp $
 
 CATEGORIES=    security
 MASTER_SITES=  ${MASTER_SITE_R_CRAN:=contrib/}
@@ -9,7 +9,7 @@ COMMENT=        Create cryptographic hash diges
 LICENSE=       gnu-gpl-v2
 
 R_PKGNAME=     digest
-R_PKGVER=      0.6.9
+R_PKGVER=      0.6.12
 
 .include "../../math/R/Makefile.extension"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/R-digest/distinfo
diff -u pkgsrc/security/R-digest/distinfo:1.3 pkgsrc/security/R-digest/distinfo:1.4
--- pkgsrc/security/R-digest/distinfo:1.3       Sat Apr 16 14:57:03 2016
+++ pkgsrc/security/R-digest/distinfo   Sat Mar 11 12:24:25 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2016/04/16 14:57:03 wen Exp $
+$NetBSD: distinfo,v 1.4 2017/03/11 12:24:25 wen Exp $
 
-SHA1 (R/digest_0.6.9.tar.gz) = 77bfa32ebde733b0faad10f489ef15bcd83f92a9
-RMD160 (R/digest_0.6.9.tar.gz) = f7e72aa63ebab5690cc5b1cdecf19078635463f3
-SHA512 (R/digest_0.6.9.tar.gz) = e964a55fb8c253616c077cf7863430d7c546926bd3f4151172603748ce3f5edfc0a7c869d7f7850814a4c3dbdb5dcd7fd634746c9778866acc98b19ff856a7bc
-Size (R/digest_0.6.9.tar.gz) = 116746 bytes
+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



Home | Main Index | Thread Index | Old Index