[Cmake-commits] CMake branch, master, updated. v3.16.0-rc3-275-g8f3cbe3c65

2019-11-06 Thread Kitware Robot via Cmake-commits
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  8f3cbe3c65e1c723319d8c63ef7f3e3c8ef5b59d (commit)
  from  954bb6549b8ff4f3429372b0ed780029b50616c4 (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=8f3cbe3c65e1c723319d8c63ef7f3e3c8ef5b59d
commit 8f3cbe3c65e1c723319d8c63ef7f3e3c8ef5b59d
Author: Kitware Robot 
AuthorDate: Thu Nov 7 00:01:07 2019 -0500
Commit: Kitware Robot 
CommitDate: Thu Nov 7 00:01:07 2019 -0500

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index c8e91089da..bb56009e81 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -1,7 +1,7 @@
 # CMake version number components.
 set(CMake_VERSION_MAJOR 3)
 set(CMake_VERSION_MINOR 16)
-set(CMake_VERSION_PATCH 20191106)
+set(CMake_VERSION_PATCH 20191107)
 #set(CMake_VERSION_RC 0)
 set(CMake_VERSION_IS_DIRTY 0)
 

---

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
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.16.0-rc3-274-g954bb6549b

2019-11-06 Thread Kitware Robot via Cmake-commits
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  954bb6549b8ff4f3429372b0ed780029b50616c4 (commit)
   via  2a67ebf71b1b6086fcfdde04d77925038f81850c (commit)
  from  ce7408514c98d39612c7f1e1d85929c223f71068 (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=954bb6549b8ff4f3429372b0ed780029b50616c4
commit 954bb6549b8ff4f3429372b0ed780029b50616c4
Merge: ce7408514c 2a67ebf71b
Author: Kyle Edwards 
AuthorDate: Wed Nov 6 21:38:25 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 16:38:34 2019 -0500

Merge topic 'modernize-memory-management'

2a67ebf71b cmGeneratorTarget: modernize memory management

Acked-by: Kitware Robot 
Merge-request: !3997


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2a67ebf71b1b6086fcfdde04d77925038f81850c
commit 2a67ebf71b1b6086fcfdde04d77925038f81850c
Author: Marc Chevrier 
AuthorDate: Tue Nov 5 18:57:46 2019 +0100
Commit: Marc Chevrier 
CommitDate: Tue Nov 5 20:10:01 2019 +0100

cmGeneratorTarget: modernize memory management

diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 41f1df9a1c..5090d87ada 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -10,11 +10,11 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
 
+#include 
 #include 
 
 #include 
@@ -162,7 +162,8 @@ private:
   cmListFileBacktrace Backtrace;
 };
 
-cmGeneratorTarget::TargetPropertyEntry* CreateTargetPropertyEntry(
+std::unique_ptr
+CreateTargetPropertyEntry(
   const std::string& propertyValue,
   cmListFileBacktrace backtrace = cmListFileBacktrace(),
   bool evaluateForBuildsystem = false)
@@ -172,15 +173,18 @@ cmGeneratorTarget::TargetPropertyEntry* 
CreateTargetPropertyEntry(
 std::unique_ptr cge =
   ge.Parse(propertyValue);
 cge->SetEvaluateForBuildsystem(evaluateForBuildsystem);
-return new TargetPropertyEntryGenex(std::move(cge));
+return std::unique_ptr(
+  cm::make_unique(std::move(cge)));
   }
 
-  return new TargetPropertyEntryString(propertyValue, std::move(backtrace));
+  return std::unique_ptr(
+cm::make_unique(propertyValue,
+   std::move(backtrace)));
 }
 
 void CreatePropertyGeneratorExpressions(
   cmStringRange entries, cmBacktraceRange backtraces,
-  std::vector& items,
+  std::vector>& items,
   bool evaluateForBuildsystem = false)
 {
   auto btIt = backtraces.begin();
@@ -219,13 +223,13 @@ struct EvaluatedTargetPropertyEntry
 EvaluatedTargetPropertyEntry EvaluateTargetPropertyEntry(
   cmGeneratorTarget const* thisTarget, std::string const& config,
   std::string const& lang, cmGeneratorExpressionDAGChecker* dagChecker,
-  cmGeneratorTarget::TargetPropertyEntry* entry)
+  cmGeneratorTarget::TargetPropertyEntry& entry)
 {
-  EvaluatedTargetPropertyEntry ee(entry->LinkImplItem, entry->GetBacktrace());
-  cmExpandList(entry->Evaluate(thisTarget->GetLocalGenerator(), config,
-   thisTarget, dagChecker, lang),
+  EvaluatedTargetPropertyEntry ee(entry.LinkImplItem, entry.GetBacktrace());
+  cmExpandList(entry.Evaluate(thisTarget->GetLocalGenerator(), config,
+  thisTarget, dagChecker, lang),
ee.Values);
-  if (entry->GetHadContextSensitiveCondition()) {
+  if (entry.GetHadContextSensitiveCondition()) {
 ee.ContextDependent = true;
   }
   return ee;
@@ -234,13 +238,14 @@ EvaluatedTargetPropertyEntry EvaluateTargetPropertyEntry(
 std::vector EvaluateTargetPropertyEntries(
   cmGeneratorTarget const* thisTarget, std::string const& config,
   std::string const& lang, cmGeneratorExpressionDAGChecker* dagChecker,
-  std::vector const& in)
+  std::vector> const&
+in)
 {
   std::vector out;
   out.reserve(in.size());
-  for (cmGeneratorTarget::TargetPropertyEntry* entry : in) {
+  for (auto& entry : in) {
 out.emplace_back(EvaluateTargetPropertyEntry(thisTarget, config, lang,
- dagChecker, entry));
+ dagChecker, *entry));
   }
   return out;
 }
@@ -304,23 +309,12 @@ cmGeneratorTarget::cmGeneratorTarget(cmTarget* t, 
cmLocalGenerator* lg)
   this->PolicyMap = t->GetPolicyMap();
 }
 
-cmGeneratorTarget::~cmGeneratorTarget()
-{
-  cmDeleteAll(this->IncludeDirectoriesEntries);
-  cmDeleteAll(this->CompileOptionsEntries);
-  cmDeleteAll(this->CompileFeaturesEntries);
-  cmDeleteAll(this->CompileDefinitionsEntries);
-  cmDeleteAll(this->LinkOptionsEntries);
-  cmDeleteAll(this->LinkDirectoriesEntries);
-  

[Cmake-commits] CMake branch, master, updated. v3.16.0-rc3-272-gce7408514c

2019-11-06 Thread Kitware Robot via Cmake-commits
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  ce7408514c98d39612c7f1e1d85929c223f71068 (commit)
   via  a0e2e0ca9725996c5ff4662f84d9bca8ea4edd35 (commit)
   via  deeab72aae14de3bfce4189ea5e9ee42e7ad94dc (commit)
   via  3c85f11fedf55c5072cd00deb129a0782130d78c (commit)
   via  2ec1156b80485fedba5b6d9b0802c21e1cbc2d8f (commit)
  from  0ff5bdd4c99824bb6e4b1c19f6f9f9e47ee96088 (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=ce7408514c98d39612c7f1e1d85929c223f71068
commit ce7408514c98d39612c7f1e1d85929c223f71068
Merge: 0ff5bdd4c9 a0e2e0ca97
Author: Brad King 
AuthorDate: Wed Nov 6 14:32:13 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:32:22 2019 -0500

Merge topic 'install-name-dir-genex'

a0e2e0ca97 Help: Add documentation and release notes for INSTALL_NAME_DIR 
genex
deeab72aae Tests: Add tests for INSTALL_NAME_DIR
3c85f11fed INSTALL_NAME_DIR: Add support for generator expressions
2ec1156b80 Refactor: Generalize 
cmExportInstallFileGenerator::ReplaceInstallPrefix()

Acked-by: Kitware Robot 
Merge-request: !3989


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a0e2e0ca9725996c5ff4662f84d9bca8ea4edd35
commit a0e2e0ca9725996c5ff4662f84d9bca8ea4edd35
Author: Kyle Edwards 
AuthorDate: Mon Nov 4 12:08:53 2019 -0500
Commit: Kyle Edwards 
CommitDate: Mon Nov 4 19:02:16 2019 -0500

Help: Add documentation and release notes for INSTALL_NAME_DIR genex

diff --git a/Help/manual/cmake-generator-expressions.7.rst 
b/Help/manual/cmake-generator-expressions.7.rst
index 75f4bd48a2..691481b992 100644
--- a/Help/manual/cmake-generator-expressions.7.rst
+++ b/Help/manual/cmake-generator-expressions.7.rst
@@ -596,7 +596,8 @@ Target-Dependent Queries
   requirement.
 ``$``
   Content of the install prefix when the target is exported via
-  :command:`install(EXPORT)` and empty otherwise.
+  :command:`install(EXPORT)`, or when evaluated in
+  :prop_tgt:`INSTALL_NAME_DIR`, and empty otherwise.
 
 Output-Related Expressions
 --
diff --git a/Help/prop_tgt/INSTALL_NAME_DIR.rst 
b/Help/prop_tgt/INSTALL_NAME_DIR.rst
index 2216072acb..747615ac8e 100644
--- a/Help/prop_tgt/INSTALL_NAME_DIR.rst
+++ b/Help/prop_tgt/INSTALL_NAME_DIR.rst
@@ -10,3 +10,7 @@ installed targets.
 This property is initialized by the value of the variable
 :variable:`CMAKE_INSTALL_NAME_DIR` if it is set when a target is
 created.
+
+This property supports :manual:`generator expressions 
`.
+In particular, the ``$`` generator expression can be used to 
set the
+directory relative to the install-time prefix.
diff --git a/Help/release/dev/install-name-dir-genex.rst 
b/Help/release/dev/install-name-dir-genex.rst
new file mode 100644
index 00..0cb41f08d9
--- /dev/null
+++ b/Help/release/dev/install-name-dir-genex.rst
@@ -0,0 +1,7 @@
+install-name-dir-genex
+--
+
+* The :prop_tgt:`INSTALL_NAME_DIR` target property now supports
+  :manual:`generator expressions `.
+  In particular, the ``$`` generator expression can
+  be used to set the directory relative to the install-time prefix.

https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=deeab72aae14de3bfce4189ea5e9ee42e7ad94dc
commit deeab72aae14de3bfce4189ea5e9ee42e7ad94dc
Author: Kyle Edwards 
AuthorDate: Mon Nov 4 12:01:44 2019 -0500
Commit: Kyle Edwards 
CommitDate: Mon Nov 4 19:02:16 2019 -0500

Tests: Add tests for INSTALL_NAME_DIR

diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt
index 31b280b779..449075122a 100644
--- a/Tests/RunCMake/CMakeLists.txt
+++ b/Tests/RunCMake/CMakeLists.txt
@@ -290,6 +290,9 @@ add_RunCMake_test(set_property)
 add_RunCMake_test(string)
 add_RunCMake_test(test_include_dirs)
 add_RunCMake_test(BundleUtilities)
+if(APPLE)
+  add_RunCMake_test(INSTALL_NAME_DIR)
+endif()
 
 function(add_RunCMake_test_try_compile)
   if(CMAKE_VERSION VERSION_LESS 3.9.20170907 AND "x${CMAKE_CXX_COMPILER_ID}" 
STREQUAL "xMSVC")
diff --git a/Tests/RunCMake/INSTALL_NAME_DIR/CMakeLists.txt 
b/Tests/RunCMake/INSTALL_NAME_DIR/CMakeLists.txt
new file mode 100644
index 00..5253d3479e
--- /dev/null
+++ b/Tests/RunCMake/INSTALL_NAME_DIR/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 3.16)
+project(${RunCMake_TEST} NONE)
+include(${CMAKE_CURRENT_LIST_DIR}/INSTALL_NAME_DIR.cmake)
+include(${RunCMake_TEST}.cmake)
diff --git a/Tests/RunCMake/INSTALL_NAME_DIR/INSTALL_NAME_DIR.cmake 
b/Tests/RunCMake/INSTALL_NAME_DIR/INSTALL_NAME_DIR.cmake
new file mode 100644
index 00..eaa0b456a6
--- /dev/null
+++ 

[Cmake-commits] CMake branch, release, updated. v3.16.0-rc3-41-gef86e8991b

2019-11-06 Thread Kitware Robot via Cmake-commits
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, release has been updated
   via  ef86e8991b6b9b2d4b25f98a95ba950f9ba19485 (commit)
   via  bae7a82ffab7350ae55a104d85d91b5d36347cae (commit)
   via  0ce8a5c08de0852f22f9be595c6f08a4a6c865e9 (commit)
   via  9457c95aa033aa192b0fbe2796e3a660a660d0ad (commit)
   via  77a01c398f20bf41921d73082f469acf6c9e0acf (commit)
  from  e0ec13059a04491c601e158c137cddc0802a410c (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 -
---

Summary of changes:
 Modules/FindBoost.cmake|  3 +++
 Source/cmGlobalXCodeGenerator.cxx  | 24 +-
 ...-check.cmake => ImplicitCMakeLists-check.cmake} |  4 ++--
 .../RunCMake/XcodeProject/ImplicitCMakeLists.cmake |  0
 Tests/RunCMake/XcodeProject/RunCMakeTest.cmake |  1 +
 5 files changed, 20 insertions(+), 12 deletions(-)
 copy Tests/RunCMake/XcodeProject/{ExplicitCMakeLists-check.cmake => 
ImplicitCMakeLists-check.cmake} (80%)
 copy Modules/IntelVSImplicitPath/hello.f => 
Tests/RunCMake/XcodeProject/ImplicitCMakeLists.cmake (100%)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v3.16.0-rc3-267-g0ff5bdd4c9

2019-11-06 Thread Kitware Robot via Cmake-commits
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  0ff5bdd4c99824bb6e4b1c19f6f9f9e47ee96088 (commit)
   via  0618f8b3ed690275c87e5494084f33a6d3a07be7 (commit)
   via  7b2e9b5537af2977e6096d0c2cad1a2b94e11002 (commit)
   via  9d8bb7bc4e09131055a1ff542f655a4168cda9ca (commit)
   via  ef86e8991b6b9b2d4b25f98a95ba950f9ba19485 (commit)
   via  a43c25a2e3aa2ad32af99850b55240ce088f0483 (commit)
   via  bae7a82ffab7350ae55a104d85d91b5d36347cae (commit)
   via  30908fa0ee965a67c6dbdc554c67038d14bca7d6 (commit)
   via  0ce8a5c08de0852f22f9be595c6f08a4a6c865e9 (commit)
   via  9457c95aa033aa192b0fbe2796e3a660a660d0ad (commit)
   via  68b5af65fa09c90278826898f199d289c049a01d (commit)
   via  77a01c398f20bf41921d73082f469acf6c9e0acf (commit)
   via  d5d5ba3f7fe7dd5a52e6671387128cb9a901ec1e (commit)
   via  005aba29a1b5774b778bb65f4751a572d628589f (commit)
   via  93b66735ac2092675eec7a636625df84ff306fdc (commit)
  from  48d3b83b9dd3a97874f560660a21b7af8e10 (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=0ff5bdd4c99824bb6e4b1c19f6f9f9e47ee96088
commit 0ff5bdd4c99824bb6e4b1c19f6f9f9e47ee96088
Merge: 0618f8b3ed d5d5ba3f7f
Author: Brad King 
AuthorDate: Wed Nov 6 14:29:12 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:29:22 2019 -0500

Merge topic 'ccmake_colored_values'

d5d5ba3f7f ccmake: Identify the current cache entry
005aba29a1 ccmake: Improve display of the key controls
93b66735ac ccmake: Use type-based colors to display cache values

Acked-by: Kitware Robot 
Merge-request: !3955


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0618f8b3ed690275c87e5494084f33a6d3a07be7
commit 0618f8b3ed690275c87e5494084f33a6d3a07be7
Merge: 7b2e9b5537 68b5af65fa
Author: Brad King 
AuthorDate: Wed Nov 6 14:27:56 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:28:05 2019 -0500

Merge topic 'cpack-nsis-welcome-finish-title'

68b5af65fa CPack/NSIS: Add options for custom welcome/finish titles + 
display on 3 lines

Acked-by: Kitware Robot 
Merge-request: !3980


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7b2e9b5537af2977e6096d0c2cad1a2b94e11002
commit 7b2e9b5537af2977e6096d0c2cad1a2b94e11002
Merge: 9d8bb7bc4e ef86e8991b
Author: Brad King 
AuthorDate: Wed Nov 6 14:25:34 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:25:43 2019 -0500

Merge branch 'release-3.16'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9d8bb7bc4e09131055a1ff542f655a4168cda9ca
commit 9d8bb7bc4e09131055a1ff542f655a4168cda9ca
Merge: a43c25a2e3 77a01c398f
Author: Brad King 
AuthorDate: Wed Nov 6 14:25:34 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:25:43 2019 -0500

Merge topic 'FindBoost-meta-component-ALL'

77a01c398f FindBoost: Prevent warning due to new meta-component "ALL" of 
Boost 1.73

Acked-by: Kitware Robot 
Merge-request: !3996


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a43c25a2e3aa2ad32af99850b55240ce088f0483
commit a43c25a2e3aa2ad32af99850b55240ce088f0483
Merge: 30908fa0ee bae7a82ffa
Author: Brad King 
AuthorDate: Wed Nov 6 14:23:47 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:23:56 2019 -0500

Merge branch 'release-3.16'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=30908fa0ee965a67c6dbdc554c67038d14bca7d6
commit 30908fa0ee965a67c6dbdc554c67038d14bca7d6
Merge: 48d3b83b9d 0ce8a5c08d
Author: Brad King 
AuthorDate: Wed Nov 6 14:23:47 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 09:23:56 2019 -0500

Merge topic 'xcode-restore-CMakeLists'

0ce8a5c08d Xcode: Fix generated references to CMakeLists.txt files
9457c95aa0 cmGlobalXCodeGenerator: Mark known source locations

Acked-by: Kitware Robot 
Merge-request: !3999


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=68b5af65fa09c90278826898f199d289c049a01d
commit 68b5af65fa09c90278826898f199d289c049a01d
Author: Johnny Jazeix 
AuthorDate: Tue Nov 5 20:09:53 2019 +0100
Commit: Johnny Jazeix 
CommitDate: Tue Nov 5 20:09:53 2019 +0100

CPack/NSIS: Add options for custom welcome/finish titles + display on 3 
lines

Fixes: #11275

diff --git a/Help/cpack_gen/nsis.rst b/Help/cpack_gen/nsis.rst
index 38676c4659..dc6524938c 100644
--- a/Help/cpack_gen/nsis.rst
+++ b/Help/cpack_gen/nsis.rst
@@ -133,3 +133,19 @@ on Windows Nullsoft Scriptable Install System.
 
  Specify the name of the program to uninstall the version.
  Default is ``Uninstall``.
+
+.. variable:: 

[Cmake-commits] CMake branch, master, updated. v3.16.0-rc3-252-g48d3b83b9d

2019-11-06 Thread Kitware Robot via Cmake-commits
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  48d3b83b9dd3a97874f560660a21b7af8e10 (commit)
   via  7046d4cbe5841f4635c91d07ee667d1cd3a1c40e (commit)
   via  e0ec13059a04491c601e158c137cddc0802a410c (commit)
   via  4af39fe25b5f8de9cebec2f1b549f2212d3f033f (commit)
   via  d0be4d53655f1651fe7ff3c61a668ffc3fd4bbf9 (commit)
   via  4dd6ad20b696d717833130e0d4e7b60f0f287752 (commit)
   via  821bfca89b862ed207c2aeafe2d5e38e2c9afb93 (commit)
   via  32d8de1463a03243fca614a2ea45278f705517c3 (commit)
   via  2fae9101e537018fbe2916a39aa361eb122ba97a (commit)
  from  099f6c300aabb050902fe248dbbf1487cf494d61 (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=48d3b83b9dd3a97874f560660a21b7af8e10
commit 48d3b83b9dd3a97874f560660a21b7af8e10
Merge: 7046d4cbe5 e0ec13059a
Author: Craig Scott 
AuthorDate: Wed Nov 6 10:51:09 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 05:51:26 2019 -0500

Merge branch 'release-3.16'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7046d4cbe5841f4635c91d07ee667d1cd3a1c40e
commit 7046d4cbe5841f4635c91d07ee667d1cd3a1c40e
Merge: 099f6c300a 4af39fe25b
Author: Craig Scott 
AuthorDate: Wed Nov 6 10:51:09 2019 +
Commit: Kitware Robot 
CommitDate: Wed Nov 6 05:51:26 2019 -0500

Merge topic 'doc-discourse'

4af39fe25b CMakeSystemSpecificInformation: Replace mailing list with 
Discourse Forum
d0be4d5365 README: Replace link to mailing list the CMake Discourse Forum
4dd6ad20b6 README: Update links to cmake.org pages
821bfca89b Help: Replace links to mailing lists with links to our Discourse 
Forum
32d8de1463 CMakeCPack: Update Debian package contact email
2fae9101e5 Help/dev: Update maintainer guide for Discourse transition

Acked-by: Kitware Robot 
Merge-request: !3998


---

Summary of changes:
 CMakeCPack.cmake |  2 +-
 Help/dev/maint.rst   | 11 ++-
 Help/manual/LINKS.txt| 10 +++---
 Modules/CMakeSystemSpecificInformation.cmake |  6 +++---
 README.rst   | 12 ++--
 5 files changed, 19 insertions(+), 22 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, release, updated. v3.16.0-rc3-36-ge0ec13059a

2019-11-06 Thread Kitware Robot via Cmake-commits
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, release has been updated
   via  e0ec13059a04491c601e158c137cddc0802a410c (commit)
   via  4af39fe25b5f8de9cebec2f1b549f2212d3f033f (commit)
   via  d0be4d53655f1651fe7ff3c61a668ffc3fd4bbf9 (commit)
   via  4dd6ad20b696d717833130e0d4e7b60f0f287752 (commit)
   via  821bfca89b862ed207c2aeafe2d5e38e2c9afb93 (commit)
   via  32d8de1463a03243fca614a2ea45278f705517c3 (commit)
   via  2fae9101e537018fbe2916a39aa361eb122ba97a (commit)
  from  3c0a317a1d111fb1012de45c39b81048f5a700d9 (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 -
---

Summary of changes:
 CMakeCPack.cmake |  2 +-
 Help/dev/maint.rst   | 11 ++-
 Help/manual/LINKS.txt| 10 +++---
 Modules/CMakeSystemSpecificInformation.cmake |  6 +++---
 README.rst   | 12 ++--
 5 files changed, 19 insertions(+), 22 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
https://cmake.org/mailman/listinfo/cmake-commits