[Cmake-commits] CMake branch, master, updated. v3.4.1-656-g27ed820

2015-12-09 Thread Brad King
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  27ed820c816a80bf140613cb2f47ccb2f21b021f (commit)
   via  27e6f74f29084fbdee35eb5a8d309d99d39e66d8 (commit)
   via  c926efa1398aa2c4ff273dee173d84d0031bcdf6 (commit)
  from  3a824a963ac54930b072e2d31c54e182af3d027c (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=27ed820c816a80bf140613cb2f47ccb2f21b021f
commit 27ed820c816a80bf140613cb2f47ccb2f21b021f
Merge: 3a824a9 27e6f74
Author: Brad King 
AuthorDate: Wed Dec 9 08:36:50 2015 -0500
Commit: CMake Topic Stage 
CommitDate: Wed Dec 9 08:36:50 2015 -0500

Merge topic 'cpack-rpm-percomponent-group-and-name'

27e6f74f CPack: Added tests for package name and group controll fields
c926efa1 CPackRPM: Configure RPM package group and name per component


---

Summary of changes:
 .../dev/cpack-rpm-percomponent-group-and-name.rst  |7 
 Modules/CPackRPM.cmake |   39 ++--
 .../DEB/PER_COMPONENT_FIELDS-ExpectedFiles.cmake   |9 +
 .../DEB/PER_COMPONENT_FIELDS-VerifyResult.cmake|   18 +
 .../CPack/DEB/PER_COMPONENT_FIELDS-specifics.cmake |6 +++
 Tests/RunCMake/CPack/PER_COMPONENT_FIELDS.cmake|5 +++
 Tests/RunCMake/CPack/RPM/Helpers.cmake |9 +
 .../RPM/PER_COMPONENT_FIELDS-ExpectedFiles.cmake   |9 +
 .../RPM/PER_COMPONENT_FIELDS-VerifyResult.cmake|   18 +
 .../CPack/RPM/PER_COMPONENT_FIELDS-specifics.cmake |5 +++
 Tests/RunCMake/CPack/RunCMakeTest.cmake|1 +
 11 files changed, 115 insertions(+), 11 deletions(-)
 create mode 100644 Help/release/dev/cpack-rpm-percomponent-group-and-name.rst
 create mode 100644 
Tests/RunCMake/CPack/DEB/PER_COMPONENT_FIELDS-ExpectedFiles.cmake
 create mode 100644 
Tests/RunCMake/CPack/DEB/PER_COMPONENT_FIELDS-VerifyResult.cmake
 create mode 100644 
Tests/RunCMake/CPack/DEB/PER_COMPONENT_FIELDS-specifics.cmake
 create mode 100644 Tests/RunCMake/CPack/PER_COMPONENT_FIELDS.cmake
 create mode 100644 
Tests/RunCMake/CPack/RPM/PER_COMPONENT_FIELDS-ExpectedFiles.cmake
 create mode 100644 
Tests/RunCMake/CPack/RPM/PER_COMPONENT_FIELDS-VerifyResult.cmake
 create mode 100644 
Tests/RunCMake/CPack/RPM/PER_COMPONENT_FIELDS-specifics.cmake


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v3.4.1-1649-gdf5dbe2

2015-12-09 Thread Brad King
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, next has been updated
   via  df5dbe2d51b9b88583792bdfe818c97e8a6474c8 (commit)
   via  a7ef02253bf8ef33d4ffdd761802ea30ef289b8a (commit)
  from  8b8a03fc4a03845c797523d918fc06d408dde2c7 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=df5dbe2d51b9b88583792bdfe818c97e8a6474c8
commit df5dbe2d51b9b88583792bdfe818c97e8a6474c8
Merge: 8b8a03f a7ef022
Author: Brad King 
AuthorDate: Wed Dec 9 08:36:08 2015 -0500
Commit: CMake Topic Stage 
CommitDate: Wed Dec 9 08:36:08 2015 -0500

Merge topic 'detect-cray-wrappers' into next

a7ef0225 Cray: Refactor the Cray platform files to use compiler wrapper 
checks


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a7ef02253bf8ef33d4ffdd761802ea30ef289b8a
commit a7ef02253bf8ef33d4ffdd761802ea30ef289b8a
Author: Chuck Atkins 
AuthorDate: Wed Dec 2 10:00:44 2015 -0600
Commit: Brad King 
CommitDate: Wed Dec 9 08:35:19 2015 -0500

Cray: Refactor the Cray platform files to use compiler wrapper checks

This is an extensive refactoring of the Cray compiler wrapper usage.
Using the new compiler wrapper checks, the CrayPrgEnv info files have
been moved from Platform/ to Compiler/.  The adjusted naming convention
allows the compiler-wrapper information files to be loaded for both the
CrayLinuxEnvironment platform when cross-compiling and the Linux
platform if building natively on the Cray compute nodes.  It also
creates a separation of common arguments for compiler id and language
information used to perform the appropriate introspection of implicit
arguments and libraries used by the compiler wrappers based on the
loaded module environment.

diff --git a/Modules/Compiler/CrayPrgEnv-C.cmake 
b/Modules/Compiler/CrayPrgEnv-C.cmake
new file mode 100644
index 000..6b461ce
--- /dev/null
+++ b/Modules/Compiler/CrayPrgEnv-C.cmake
@@ -0,0 +1,11 @@
+if(__craylinux_crayprgenv_c)
+  return()
+endif()
+set(__craylinux_crayprgenv_c 1)
+
+include(Compiler/CrayPrgEnv)
+macro(__CrayPrgEnv_setup_C compiler_cmd link_cmd)
+  __CrayPrgEnv_setup(C
+${CMAKE_ROOT}/Modules/CMakeCCompilerABI.c
+${compiler_cmd} ${link_cmd})
+endmacro()
diff --git a/Modules/Compiler/CrayPrgEnv-CXX.cmake 
b/Modules/Compiler/CrayPrgEnv-CXX.cmake
new file mode 100644
index 000..aad85b6
--- /dev/null
+++ b/Modules/Compiler/CrayPrgEnv-CXX.cmake
@@ -0,0 +1,11 @@
+if(__craylinux_crayprgenv_cxx)
+  return()
+endif()
+set(__craylinux_crayprgenv_cxx 1)
+
+include(Compiler/CrayPrgEnv)
+macro(__CrayPrgEnv_setup_CXX compiler_cmd link_cmd)
+  __CrayPrgEnv_setup(CXX
+${CMAKE_ROOT}/Modules/CMakeCXXCompilerABI.cpp
+${compiler_cmd} ${link_cmd})
+endmacro()
diff --git a/Modules/Compiler/CrayPrgEnv-Cray-C.cmake 
b/Modules/Compiler/CrayPrgEnv-Cray-C.cmake
new file mode 100644
index 000..547a4b4
--- /dev/null
+++ b/Modules/Compiler/CrayPrgEnv-Cray-C.cmake
@@ -0,0 +1,7 @@
+if(__craylinux_crayprgenv_cray_c)
+  return()
+endif()
+set(__craylinux_crayprgenv_cray_c 1)
+
+include(Compiler/CrayPrgEnv-C)
+__CrayPrgEnv_setup_C("/opt/cray/cce/.*/ccfe" "/opt/cray/cce/.*/ld")
diff --git a/Modules/Compiler/CrayPrgEnv-Cray-CXX.cmake 
b/Modules/Compiler/CrayPrgEnv-Cray-CXX.cmake
new file mode 100644
index 000..df8452c
--- /dev/null
+++ b/Modules/Compiler/CrayPrgEnv-Cray-CXX.cmake
@@ -0,0 +1,7 @@
+if(__craylinux_crayprgenv_cray_cxx)
+  return()
+endif()
+set(__craylinux_crayprgenv_cray_cxx 1)
+
+include(Compiler/CrayPrgEnv-CXX)
+__CrayPrgEnv_setup_CXX("/opt/cray/cce/.*/ccfe" "/opt/cray/cce/.*/ld")
diff --git a/Modules/Compiler/CrayPrgEnv-Cray-Fortran.cmake 
b/Modules/Compiler/CrayPrgEnv-Cray-Fortran.cmake
new file mode 100644
index 000..9f46a04
--- /dev/null
+++ b/Modules/Compiler/CrayPrgEnv-Cray-Fortran.cmake
@@ -0,0 +1,7 @@
+if(__craylinux_crayprgenv_cray_fortran)
+  return()
+endif()
+set(__craylinux_crayprgenv_cray_fortran 1)
+
+include(Compiler/CrayPrgEnv-Fortran)
+__CrayPrgEnv_setup_Fortran("/opt/cray/cce/.*/ftnfe" "/opt/cray/cce/.*/ld")
diff --git a/Modules/Compiler/CrayPrgEnv-Fortran.cmake 
b/Modules/Compiler/CrayPrgEnv-Fortran.cmake
new file mode 100644
index 000..9c4d269
--- /dev/null
+++ b/Modules/Compiler/CrayPrgEnv-Fortran.cmake
@@ -0,0 +1,11 @@
+if(__craylinux_crayprgenv_fortran)
+  return()
+endif()
+set(__craylinux_crayprgenv_fortran 1)
+
+include(Compiler/CrayPrgEnv)
+macro(__CrayPrgEnv_setup_Fortran compiler_cmd link_cmd)
+  __CrayPrgEnv_setup(Fortran
+${CMAKE_ROOT}/Modules/CMakeFortranCompilerABI.F
+

[Cmake-commits] CMake branch, next, updated. v3.4.1-1655-g93c69b8

2015-12-09 Thread Brad King
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, next has been updated
   via  93c69b8edc6c0b1a69cc995c0321cc275acdd3ee (commit)
   via  dc873f6eef1e6f952cf3d09be7568b03fbf8c6d3 (commit)
   via  ad1be6ee769ecaba4d6dadae84c0fc372049a333 (commit)
   via  27ed820c816a80bf140613cb2f47ccb2f21b021f (commit)
   via  3a824a963ac54930b072e2d31c54e182af3d027c (commit)
   via  c6eacfd56a9c5a8da2304c446230127b6ce42470 (commit)
  from  df5dbe2d51b9b88583792bdfe818c97e8a6474c8 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=93c69b8edc6c0b1a69cc995c0321cc275acdd3ee
commit 93c69b8edc6c0b1a69cc995c0321cc275acdd3ee
Merge: df5dbe2 dc873f6
Author: Brad King 
AuthorDate: Wed Dec 9 08:37:14 2015 -0500
Commit: Brad King 
CommitDate: Wed Dec 9 08:37:14 2015 -0500

Merge branch 'master' into next


---

Summary of changes:
 Source/CMakeVersion.cmake |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.4.1-660-gad1be6e

2015-12-09 Thread Brad King
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  ad1be6ee769ecaba4d6dadae84c0fc372049a333 (commit)
   via  a7ef02253bf8ef33d4ffdd761802ea30ef289b8a (commit)
   via  0763a8365528166747746e3b94e74ca98d0d705f (commit)
   via  5eaac0c96ac51e1300664ef37239f3215bb58489 (commit)
  from  27ed820c816a80bf140613cb2f47ccb2f21b021f (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ad1be6ee769ecaba4d6dadae84c0fc372049a333
commit ad1be6ee769ecaba4d6dadae84c0fc372049a333
Merge: 27ed820 a7ef022
Author: Brad King 
AuthorDate: Wed Dec 9 08:36:53 2015 -0500
Commit: CMake Topic Stage 
CommitDate: Wed Dec 9 08:36:53 2015 -0500

Merge topic 'detect-cray-wrappers'

a7ef0225 Cray: Refactor the Cray platform files to use compiler wrapper 
checks
0763a836 Cray: Add macro tests to detect the Cray compiler wrappers
5eaac0c9 Compiler: Add infrastructure for detecting compiler wrappers


---

Summary of changes:
 Modules/CMakeCCompiler.cmake.in |1 +
 Modules/CMakeCCompilerId.c.in   |7 ++
 Modules/CMakeCInformation.cmake |8 ++
 Modules/CMakeCXXCompiler.cmake.in   |1 +
 Modules/CMakeCXXCompilerId.cpp.in   |7 ++
 Modules/CMakeCXXInformation.cmake   |8 ++
 Modules/CMakeDetermineCompilerId.cmake  |6 +
 Modules/CMakeFortranCompiler.cmake.in   |1 +
 Modules/CMakeFortranCompilerId.F.in |3 +
 Modules/CMakeFortranInformation.cmake   |8 ++
 Modules/CMakeLanguageInformation.cmake  |   37 ++
 Modules/Compiler/CrayPrgEnv-C.cmake |   11 ++
 Modules/Compiler/CrayPrgEnv-CXX.cmake   |   11 ++
 Modules/Compiler/CrayPrgEnv-Cray-C.cmake|7 ++
 Modules/Compiler/CrayPrgEnv-Cray-CXX.cmake  |7 ++
 Modules/Compiler/CrayPrgEnv-Cray-Fortran.cmake  |7 ++
 Modules/Compiler/CrayPrgEnv-Fortran.cmake   |   11 ++
 Modules/Compiler/CrayPrgEnv-GNU-C.cmake |7 ++
 Modules/Compiler/CrayPrgEnv-GNU-CXX.cmake   |7 ++
 Modules/Compiler/CrayPrgEnv-GNU-Fortran.cmake   |7 ++
 Modules/Compiler/CrayPrgEnv-Intel-C.cmake   |7 ++
 Modules/Compiler/CrayPrgEnv-Intel-CXX.cmake |7 ++
 Modules/Compiler/CrayPrgEnv-Intel-Fortran.cmake |7 ++
 Modules/Compiler/CrayPrgEnv-PGI-C.cmake |7 ++
 Modules/Compiler/CrayPrgEnv-PGI-CXX.cmake   |7 ++
 Modules/Compiler/CrayPrgEnv-PGI-Fortran.cmake   |7 ++
 Modules/Compiler/CrayPrgEnv.cmake   |   83 +
 Modules/Platform/CrayLinuxEnvironment.cmake |   97 ++-
 Modules/Platform/CrayPrgEnv.cmake   |  149 ---
 29 files changed, 351 insertions(+), 182 deletions(-)
 create mode 100644 Modules/CMakeLanguageInformation.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-C.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-CXX.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Cray-C.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Cray-CXX.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Cray-Fortran.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Fortran.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-GNU-C.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-GNU-CXX.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-GNU-Fortran.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Intel-C.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Intel-CXX.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-Intel-Fortran.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-PGI-C.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-PGI-CXX.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv-PGI-Fortran.cmake
 create mode 100644 Modules/Compiler/CrayPrgEnv.cmake
 delete mode 100644 Modules/Platform/CrayPrgEnv.cmake


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v3.4.1-1658-g3b6d20b

2015-12-09 Thread Brad King
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, next has been updated
   via  3b6d20b90ba55652b3bd3f75ceed4bc6a45286c4 (commit)
   via  7f4a91effc558b164bba6de78388543411541cf4 (commit)
   via  c185045515eaa9482bc29a0b325fde4f6490f5e1 (commit)
  from  93c69b8edc6c0b1a69cc995c0321cc275acdd3ee (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3b6d20b90ba55652b3bd3f75ceed4bc6a45286c4
commit 3b6d20b90ba55652b3bd3f75ceed4bc6a45286c4
Merge: 93c69b8 7f4a91e
Author: Brad King 
AuthorDate: Wed Dec 9 08:57:57 2015 -0500
Commit: CMake Topic Stage 
CommitDate: Wed Dec 9 08:57:57 2015 -0500

Merge topic 'cmake-W-options' into next

7f4a91ef cmake: Deduplicate warning message control code
c1850455 cmake-gui: Add options to control warning messages


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7f4a91effc558b164bba6de78388543411541cf4
commit 7f4a91effc558b164bba6de78388543411541cf4
Author: Michael Scott 
AuthorDate: Sun Dec 6 12:58:24 2015 +
Commit: Brad King 
CommitDate: Wed Dec 9 08:56:17 2015 -0500

cmake: Deduplicate warning message control code

Remove the duplicate code in cmake::Configure to set the cache variables
for the warning message suppression.  Replace it with calls to the
dedicated methods to carry this out.

diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index e57e512..7992495 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1269,17 +1269,11 @@ int cmake::Configure()
 diagLevel = this->DiagLevels["deprecated"];
 if (diagLevel == DIAG_IGNORE)
   {
-  this->AddCacheEntry("CMAKE_WARN_DEPRECATED", "FALSE",
-  "Whether to issue warnings for deprecated "
-  "functionality.",
-  cmState::INTERNAL);
+  this->SetSuppressDeprecatedWarnings(true);
   }
 else if (diagLevel == DIAG_WARN)
   {
-  this->AddCacheEntry("CMAKE_WARN_DEPRECATED", "TRUE",
-  "Whether to issue warnings for deprecated "
-  "functionality.",
-  cmState::INTERNAL);
+  this->SetSuppressDeprecatedWarnings(false);
   }
 }
 
@@ -1299,32 +1293,20 @@ int cmake::Configure()
 diagLevel = this->DiagLevels["dev"];
 if (diagLevel == DIAG_IGNORE)
   {
-  this->AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_WARNINGS", "TRUE",
-  "Suppress Warnings that are meant for"
-  " the author of the CMakeLists.txt files.",
-  cmState::INTERNAL);
+  this->SetSuppressDevWarnings(true);
 
   if (setDeprecatedVariables)
 {
-this->AddCacheEntry("CMAKE_WARN_DEPRECATED", "FALSE",
-"Whether to issue warnings for deprecated "
-"functionality.",
-cmState::INTERNAL);
+this->SetSuppressDeprecatedWarnings(true);
 }
   }
 else if (diagLevel == DIAG_WARN)
   {
-  this->AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_WARNINGS", "FALSE",
-  "Suppress Warnings that are meant for"
-  " the author of the CMakeLists.txt files.",
-  cmState::INTERNAL);
+  this->SetSuppressDevWarnings(false);
 
   if (setDeprecatedVariables)
 {
-this->AddCacheEntry("CMAKE_WARN_DEPRECATED", "TRUE",
-"Whether to issue warnings for deprecated "
-"functionality.",
-cmState::INTERNAL);
+this->SetSuppressDeprecatedWarnings(false);
 }
   }
 }
@@ -2881,6 +2863,24 @@ void cmake::RunCheckForUnusedVariables()
 #endif
 }
 
+bool cmake::GetSuppressDevWarnings(cmMakefile const* mf)
+{
+  /*
+   * The suppression CMake variable may be set in the CMake configuration file
+   * itself, so we have to check what its set to in the makefile if we can.
+   */
+  if (mf)
+{
+return mf->IsOn("CMAKE_SUPPRESS_DEVELOPER_WARNINGS");
+}
+  else
+{
+const char* cacheEntryValue = this->State->GetCacheEntryValue(
+  "CMAKE_SUPPRESS_DEVELOPER_WARNINGS");
+return cmSystemTools::IsOn(cacheEntryValue);
+}
+}
+
 void cmake::SetSuppressDevWarnings(bool b)
 {
   std::string value;
@@ -2902,24 +2902,6 @@ void cmake::SetSuppressDevWarnings(bool b)
   cmState::INTERNAL);
 }
 
-bool cmake::GetSuppressDevWarnings(cmMakefile const* mf)
-{
-  /*
-   * The 

[Cmake-commits] CMake branch, master, updated. v3.4.1-665-gdc873f6

2015-12-09 Thread Brad King
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  dc873f6eef1e6f952cf3d09be7568b03fbf8c6d3 (commit)
   via  bc35087da3eb9039dad8fb5d27c1fab60b43f776 (commit)
   via  98be140fc0dc0bab8955c4fea9274ea52ac8cd9c (commit)
   via  93cc80aee59cfb328d541ba527d40239ab8348b1 (commit)
   via  0903812b0b8c325913d766b793bbf9438ad6b423 (commit)
  from  ad1be6ee769ecaba4d6dadae84c0fc372049a333 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=dc873f6eef1e6f952cf3d09be7568b03fbf8c6d3
commit dc873f6eef1e6f952cf3d09be7568b03fbf8c6d3
Merge: ad1be6e bc35087
Author: Brad King 
AuthorDate: Wed Dec 9 08:36:56 2015 -0500
Commit: CMake Topic Stage 
CommitDate: Wed Dec 9 08:36:56 2015 -0500

Merge topic 'cmake-E-copy-multiple-inputs'

bc35087d cmake: Teach -E copy_directory to support multiple input 
directories
98be140f cmake: Refine -E copy[_if_different] documentation
93cc80ae cmake: Refine -E copy_if_different implementation indentation
0903812b cmake: Refine -E chdir documentation


---

Summary of changes:
 Help/manual/cmake.1.rst|   14 ++---
 Help/release/dev/cmake-E-copy-multiple-inputs.rst  |3 ++
 Source/cmcmd.cxx   |   30 
 ...ee-source-files-target-is-directory-result.txt} |0
 ...ree-source-files-target-is-directory-stderr.txt |0
 ...y-three-source-files-target-is-file-result.txt} |0
 ...ry-three-source-files-target-is-file-stderr.txt |3 ++
 ...ee-source-files-target-is-not-exist-result.txt} |0
 ...ree-source-files-target-is-not-exist-stderr.txt |0
 Tests/RunCMake/CommandLine/RunCMakeTest.cmake  |   17 +++
 .../RunCMake/CommandLine/copy_input/d1/d1.txt  |0
 .../RunCMake/CommandLine/copy_input/d2/d2.txt  |0
 .../RunCMake/CommandLine/copy_input/d3/d3.txt  |0
 13 files changed, 51 insertions(+), 16 deletions(-)
 copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => 
CommandLine/E_copy_directory-three-source-files-target-is-directory-result.txt} 
(100%)
 copy Modules/IntelVSImplicitPath/hello.f => 
Tests/RunCMake/CommandLine/E_copy_directory-three-source-files-target-is-directory-stderr.txt
 (100%)
 copy Tests/RunCMake/{CMP0004/CMP0004-NEW-result.txt => 
CommandLine/E_copy_directory-three-source-files-target-is-file-result.txt} 
(100%)
 create mode 100644 
Tests/RunCMake/CommandLine/E_copy_directory-three-source-files-target-is-file-stderr.txt
 copy Tests/RunCMake/{CMP0022/CMP0022-WARN-empty-old-result.txt => 
CommandLine/E_copy_directory-three-source-files-target-is-not-exist-result.txt} 
(100%)
 copy Modules/IntelVSImplicitPath/hello.f => 
Tests/RunCMake/CommandLine/E_copy_directory-three-source-files-target-is-not-exist-stderr.txt
 (100%)
 copy Modules/IntelVSImplicitPath/hello.f => 
Tests/RunCMake/CommandLine/copy_input/d1/d1.txt (100%)
 copy Modules/IntelVSImplicitPath/hello.f => 
Tests/RunCMake/CommandLine/copy_input/d2/d2.txt (100%)
 copy Modules/IntelVSImplicitPath/hello.f => 
Tests/RunCMake/CommandLine/copy_input/d3/d3.txt (100%)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v3.4.1-1660-g11039e0

2015-12-09 Thread Brad King
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, next has been updated
   via  11039e0002bd03eccaee930d308b1afd5dcf3a9b (commit)
   via  d462ac27d814e966c54bb638444e4b125d1d665f (commit)
  from  3b6d20b90ba55652b3bd3f75ceed4bc6a45286c4 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=11039e0002bd03eccaee930d308b1afd5dcf3a9b
commit 11039e0002bd03eccaee930d308b1afd5dcf3a9b
Merge: 3b6d20b d462ac2
Author: Brad King 
AuthorDate: Wed Dec 9 11:40:35 2015 -0500
Commit: CMake Topic Stage 
CommitDate: Wed Dec 9 11:40:35 2015 -0500

Merge topic 'cmELF-use-KWIML' into next

d462ac27 cmELF: Use KWIML ABI.h header to get endian-ness


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d462ac27d814e966c54bb638444e4b125d1d665f
commit d462ac27d814e966c54bb638444e4b125d1d665f
Author: Brad King 
AuthorDate: Wed Dec 9 11:38:10 2015 -0500
Commit: Brad King 
CommitDate: Wed Dec 9 11:38:10 2015 -0500

cmELF: Use KWIML ABI.h header to get endian-ness

Port away from KWSys CPU header.

diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx
index 37dd328..fda6e02 100644
--- a/Source/cmELF.cxx
+++ b/Source/cmELF.cxx
@@ -16,8 +16,7 @@
 #include 
 
 // Need the native byte order of the running CPU.
-#define cmsys_CPU_UNKNOWN_OKAY // We can decide at runtime if not known.
-#include 
+#include 
 
 // Include the ELF format information system header.
 #if defined(__OpenBSD__)
@@ -102,9 +101,9 @@ public:
 // In most cases the processor-specific byte order will match that
 // of the target execution environment.  If we choose wrong here
 // it is fixed when the header is read.
-#if cmsys_CPU_ENDIAN_ID == cmsys_CPU_ENDIAN_ID_LITTLE
+#if cmIML_ABI_ENDIAN_ID == cmIML_ABI_ENDIAN_ID_LITTLE
 this->NeedSwap = (this->ByteOrder == ByteOrderMSB);
-#elif cmsys_CPU_ENDIAN_ID == cmsys_CPU_ENDIAN_ID_BIG
+#elif cmIML_ABI_ENDIAN_ID == cmIML_ABI_ENDIAN_ID_BIG
 this->NeedSwap = (this->ByteOrder == ByteOrderLSB);
 #else
 this->NeedSwap = false; // Final decision is at runtime anyway.

---

Summary of changes:
 Source/cmELF.cxx |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.4.1-666-ga657b32

2015-12-09 Thread Kitware Robot
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  a657b324822b5bd549706b337a74fa3bfd7bc1c6 (commit)
  from  dc873f6eef1e6f952cf3d09be7568b03fbf8c6d3 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a657b324822b5bd549706b337a74fa3bfd7bc1c6
commit a657b324822b5bd549706b337a74fa3bfd7bc1c6
Author: Kitware Robot <kwro...@kitware.com>
AuthorDate: Thu Dec 10 00:01:06 2015 -0500
Commit: Kitware Robot <kwro...@kitware.com>
CommitDate: Thu Dec 10 00:01:06 2015 -0500

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index c24341f..fab29ab 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -1,5 +1,5 @@
 # CMake version number components.
 set(CMake_VERSION_MAJOR 3)
 set(CMake_VERSION_MINOR 4)
-set(CMake_VERSION_PATCH 20151209)
+set(CMake_VERSION_PATCH 20151210)
 #set(CMake_VERSION_RC 1)

---

Summary of changes:
 Source/CMakeVersion.cmake |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits