[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-1991-g7d40eac

Daniele E. Domenichelli daniele.domenichelli at gmail.com
Sun Apr 6 19:19:06 EDT 2014


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  7d40eac6a04576da54ac1e33fddae83aaa06007d (commit)
       via  2dad1c143cfee60eadcf1bee5faa47efed89a31a (commit)
      from  caba6c67227283168f9a6eb3182278387841afda (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=7d40eac6a04576da54ac1e33fddae83aaa06007d
commit 7d40eac6a04576da54ac1e33fddae83aaa06007d
Merge: caba6c6 2dad1c1
Author:     Daniele E. Domenichelli <daniele.domenichelli at gmail.com>
AuthorDate: Sun Apr 6 19:19:03 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Apr 6 19:19:03 2014 -0400

    Merge topic 'ExternalProject_VCS-quiet' into next
    
    2dad1c14 ExternalProject: Find VCS packages quietly


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2dad1c143cfee60eadcf1bee5faa47efed89a31a
commit 2dad1c143cfee60eadcf1bee5faa47efed89a31a
Author:     Daniele E. Domenichelli <daniele.domenichelli at iit.it>
AuthorDate: Mon Nov 18 12:24:24 2013 +0100
Commit:     Daniele E. Domenichelli <daniele.domenichelli at iit.it>
CommitDate: Fri Apr 4 13:27:50 2014 +0200

    ExternalProject: Find VCS packages quietly
    
    This keeps the VCS packages out from FeatureSummary output, unless
    the INCLUDE_QUIET_PACKAGES is used.

diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake
index 0f651e9..3ba91de 100644
--- a/Modules/ExternalProject.cmake
+++ b/Modules/ExternalProject.cmake
@@ -1352,7 +1352,7 @@ function(_ep_add_download_command name)
   if(cmd_set)
     set(work_dir ${download_dir})
   elseif(cvs_repository)
-    find_package(CVS)
+    find_package(CVS QUIET)
     if(NOT CVS_EXECUTABLE)
       message(FATAL_ERROR "error: could not find cvs for checkout of ${name}")
     endif()
@@ -1379,7 +1379,7 @@ function(_ep_add_download_command name)
     set(cmd ${CVS_EXECUTABLE} -d ${cvs_repository} -q co ${cvs_tag} -d ${src_name} ${cvs_module})
     list(APPEND depends ${stamp_dir}/${name}-cvsinfo.txt)
   elseif(svn_repository)
-    find_package(Subversion)
+    find_package(Subversion QUIET)
     if(NOT Subversion_SVN_EXECUTABLE)
       message(FATAL_ERROR "error: could not find svn for checkout of ${name}")
     endif()
@@ -1415,7 +1415,7 @@ function(_ep_add_download_command name)
       --non-interactive ${svn_trust_cert_args} ${svn_user_pw_args} ${src_name})
     list(APPEND depends ${stamp_dir}/${name}-svninfo.txt)
   elseif(git_repository)
-    find_package(Git)
+    find_package(Git QUIET)
     if(NOT GIT_EXECUTABLE)
       message(FATAL_ERROR "error: could not find git for clone of ${name}")
     endif()
@@ -1463,7 +1463,7 @@ function(_ep_add_download_command name)
     set(cmd ${CMAKE_COMMAND} -P ${tmp_dir}/${name}-gitclone.cmake)
     list(APPEND depends ${stamp_dir}/${name}-gitinfo.txt)
   elseif(hg_repository)
-    find_package(Hg)
+    find_package(Hg QUIET)
     if(NOT HG_EXECUTABLE)
       message(FATAL_ERROR "error: could not find hg for clone of ${name}")
     endif()

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

Summary of changes:
 Modules/ExternalProject.cmake |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list