[Cmake-commits] CMake branch, master, updated. v2.8.6-264-gd9df0cc

David Cole david.cole at kitware.com
Tue Nov 22 16:24:24 EST 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  d9df0cca66543610472f5979cfce73765b7e281a (commit)
       via  0599c5f546c8b3e04c0dd9fcdc19a6b3825849a7 (commit)
       via  0a6705cbda8171667c4b37872136cd102ccc328c (commit)
       via  24b1feb5ca9dbc3461d373e4de30a33157f81375 (commit)
       via  1ec3fa00c920ca0d13ef30965ce2560ecd006e0c (commit)
       via  6495b595c4953ce29e66ff4919d69a74300c3532 (commit)
       via  8302608a744c3a4df3495f8db88784fb3f04660f (commit)
       via  9fb1a9cf1dc45672b38350f2c4ae560359521566 (commit)
       via  b0853b5fae2681f31f023a37d04cea1209b34dbd (commit)
       via  9da8340a6d68ec1dce9248d0d83f59ba6f41003e (commit)
       via  23b3df76a069ab314a4828ad651f1a14319ff660 (commit)
       via  2e9c26cf9616fead92ec65eefc696bcf9761b996 (commit)
       via  293a7f4e2ae9b458d3efefcfe133d0ad5320a1b2 (commit)
       via  46ab0561fc29446a736985816b005200aad9489c (commit)
       via  38771d3bdf51b81d46578e0c81ebddbdea0ce3b2 (commit)
       via  73efd4a5044d2346e14d019197e2ddced3f9b7a8 (commit)
       via  c1856a33d46384307884ab6ba6db886a7bca0fd2 (commit)
       via  fcc3ce5b0dc5bb8ef3447da189d04715f429d822 (commit)
       via  042f7965c3a5db7420363fdb76f9ebaa8e93efdc (commit)
       via  ed7cef563445644684af47720c2f7c6fb0a2e440 (commit)
       via  8251b20d4bba026b920c018e7cfb6ce2ce101110 (commit)
       via  9912c41c176105bf0dad953e242aacc2717e9e6f (commit)
      from  7db42fc2559ec2692c36cf25f781f50dd48b7f44 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d9df0cca66543610472f5979cfce73765b7e281a
commit d9df0cca66543610472f5979cfce73765b7e281a
Merge: 7db42fc 0599c5f
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Tue Nov 22 16:24:21 2011 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Nov 22 16:24:21 2011 -0500

    Merge topic 'crypto-hash'
    
    0599c5f sha2: Zero entire SHA_CTX structure during cleanup
    0a6705c sha2: Suppress -Wcast-align warning from Clang
    24b1feb sha2: Cast safe conversions to smaller integer types
    1ec3fa0 Merge branch 'update-KWIML' into crypto-hash
    6495b59 cmCryptoHash: Add virtual destructor
    8302608 Fix CMake.File hash test for CRLF checkouts
    9fb1a9c sha2: Wrap long lines in third-party declarations
    b0853b5 Disable file() and string() hash commands during bootstrap
    9da8340 sha2: Suppress Borland warnings in third-party code
    23b3df7 sha2: Use KWIML fixed-size integer constant macros
    2e9c26c Add string(MD5) and string(SHA*) commands to compute hashes
    293a7f4 cmCryptoHash: Provide factory "New" method
    46ab056 sha2: Use "static const" instead of "const static" declarations
    38771d3 Add file(SHA*) commands to compute cryptographic hashes
    73efd4a sha2: Build as part of CMakeLib
    c1856a3 sha2: Use KWIML fixed-size integer types and endian-ness
    fcc3ce5 Merge branch 'import-sha2' into crypto-hash
    042f796 Add file(MD5) command to compute cryptographic hash
    ed7cef5 Factor Compute(File|String)MD5 into cmCryptoHash helper
    8251b20 Import sha2 implementation 1.1 from Aaron D. Gifford
    9912c41 Import sha2 implementation 1.0 from Aaron D. Gifford


-----------------------------------------------------------------------

Summary of changes:
 Source/.gitattributes                      |    2 +
 Source/CMakeLists.txt                      |    4 +
 Source/cmCryptoHash.cxx                    |  130 +++
 Source/cmCryptoHash.h                      |   65 ++
 Source/cmFileCommand.cxx                   |   46 +
 Source/cmFileCommand.h                     |    4 +
 Source/cmStringCommand.cxx                 |   39 +
 Source/cmStringCommand.h                   |    5 +
 Source/cmSystemTools.cxx                   |   57 +-
 Source/cm_sha2.c                           | 1613 ++++++++++++++++++++++++++++
 Source/cm_sha2.h                           |  140 +++
 Source/cm_sha2_mangle.h                    |   51 +
 Tests/CMakeTests/.gitattributes            |    1 +
 Tests/CMakeTests/CheckCMakeTest.cmake      |    2 +-
 Tests/CMakeTests/File-HASH-Input.txt       |    1 +
 Tests/CMakeTests/File-MD5-BadArg1.cmake    |    1 +
 Tests/CMakeTests/File-MD5-BadArg2.cmake    |    1 +
 Tests/CMakeTests/File-MD5-BadArg4.cmake    |    1 +
 Tests/CMakeTests/File-MD5-NoFile.cmake     |    1 +
 Tests/CMakeTests/File-MD5-Works.cmake      |    2 +
 Tests/CMakeTests/File-SHA1-Works.cmake     |    2 +
 Tests/CMakeTests/File-SHA224-Works.cmake   |    2 +
 Tests/CMakeTests/File-SHA256-Works.cmake   |    2 +
 Tests/CMakeTests/File-SHA384-Works.cmake   |    2 +
 Tests/CMakeTests/File-SHA512-Works.cmake   |    2 +
 Tests/CMakeTests/FileTest.cmake.in         |   30 +
 Tests/CMakeTests/String-MD5-BadArg1.cmake  |    1 +
 Tests/CMakeTests/String-MD5-BadArg2.cmake  |    1 +
 Tests/CMakeTests/String-MD5-BadArg4.cmake  |    1 +
 Tests/CMakeTests/String-MD5-Works.cmake    |    2 +
 Tests/CMakeTests/String-SHA1-Works.cmake   |    2 +
 Tests/CMakeTests/String-SHA224-Works.cmake |    2 +
 Tests/CMakeTests/String-SHA256-Works.cmake |    2 +
 Tests/CMakeTests/String-SHA384-Works.cmake |    2 +
 Tests/CMakeTests/String-SHA512-Works.cmake |    2 +
 Tests/CMakeTests/StringTest.cmake.in       |   32 +
 36 files changed, 2202 insertions(+), 51 deletions(-)
 create mode 100644 Source/.gitattributes
 create mode 100644 Source/cmCryptoHash.cxx
 create mode 100644 Source/cmCryptoHash.h
 create mode 100644 Source/cm_sha2.c
 create mode 100644 Source/cm_sha2.h
 create mode 100644 Source/cm_sha2_mangle.h
 create mode 100644 Tests/CMakeTests/.gitattributes
 create mode 100644 Tests/CMakeTests/File-HASH-Input.txt
 create mode 100644 Tests/CMakeTests/File-MD5-BadArg1.cmake
 create mode 100644 Tests/CMakeTests/File-MD5-BadArg2.cmake
 create mode 100644 Tests/CMakeTests/File-MD5-BadArg4.cmake
 create mode 100644 Tests/CMakeTests/File-MD5-NoFile.cmake
 create mode 100644 Tests/CMakeTests/File-MD5-Works.cmake
 create mode 100644 Tests/CMakeTests/File-SHA1-Works.cmake
 create mode 100644 Tests/CMakeTests/File-SHA224-Works.cmake
 create mode 100644 Tests/CMakeTests/File-SHA256-Works.cmake
 create mode 100644 Tests/CMakeTests/File-SHA384-Works.cmake
 create mode 100644 Tests/CMakeTests/File-SHA512-Works.cmake
 create mode 100644 Tests/CMakeTests/String-MD5-BadArg1.cmake
 create mode 100644 Tests/CMakeTests/String-MD5-BadArg2.cmake
 create mode 100644 Tests/CMakeTests/String-MD5-BadArg4.cmake
 create mode 100644 Tests/CMakeTests/String-MD5-Works.cmake
 create mode 100644 Tests/CMakeTests/String-SHA1-Works.cmake
 create mode 100644 Tests/CMakeTests/String-SHA224-Works.cmake
 create mode 100644 Tests/CMakeTests/String-SHA256-Works.cmake
 create mode 100644 Tests/CMakeTests/String-SHA384-Works.cmake
 create mode 100644 Tests/CMakeTests/String-SHA512-Works.cmake


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list