[Cmake-commits] CMake branch, master, updated. v3.16.0-rc4-415-gbb3d82232d

2019-11-25 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  bb3d82232d06e553dedd430e6d7a1d0d917108dd (commit)
  from  e17934c1834ef249107ba5fd46d5e6c2c9017534 (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=bb3d82232d06e553dedd430e6d7a1d0d917108dd
commit bb3d82232d06e553dedd430e6d7a1d0d917108dd
Author: Kitware Robot 
AuthorDate: Tue Nov 26 00:01:10 2019 -0500
Commit: Kitware Robot 
CommitDate: Tue Nov 26 00:01:10 2019 -0500

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index d8e44f686d..249727851b 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 20191125)
+set(CMake_VERSION_PATCH 20191126)
 #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-rc4-414-ge17934c183

2019-11-25 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  e17934c1834ef249107ba5fd46d5e6c2c9017534 (commit)
   via  5129e97285339ad0a481ffdd148bb9e09848a2f4 (commit)
  from  58da842063cc80e34ce3ae16aa8c5fb16cdc29dd (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=e17934c1834ef249107ba5fd46d5e6c2c9017534
commit e17934c1834ef249107ba5fd46d5e6c2c9017534
Merge: 58da842063 5129e97285
Author: Brad King 
AuthorDate: Mon Nov 25 15:52:55 2019 +
Commit: Kitware Robot 
CommitDate: Mon Nov 25 10:53:13 2019 -0500

Merge topic 'git-var'

5129e97285 setup-user: switch to git-var to check if username and e-mail 
are set

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


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5129e97285339ad0a481ffdd148bb9e09848a2f4
commit 5129e97285339ad0a481ffdd148bb9e09848a2f4
Author: Arkadiusz Drabczyk 
AuthorDate: Sun Nov 24 19:10:56 2019 +0100
Commit: Arkadiusz Drabczyk 
CommitDate: Sun Nov 24 19:10:56 2019 +0100

setup-user: switch to git-var to check if username and e-mail are set

In git, apart from setting username and e-mail in .gitconfig it's also
possible to set username in /etc/passwd and set e-mail using EMAIL
environment variable.  The advantage of this method is that other
programs such as mutt or doxygen will pick up these settings up so
there is no need to set them separately in each program.  Current way
of checking if username and e-mail are set using git config results in
failure if they are set using this method.

diff --git a/Utilities/GitSetup/setup-user b/Utilities/GitSetup/setup-user
index 1af439c45e..0b98879491 100755
--- a/Utilities/GitSetup/setup-user
+++ b/Utilities/GitSetup/setup-user
@@ -20,12 +20,12 @@
 # Project configuration instructions: NONE
 
 for (( ; ; )); do
-   user_name=$(git config user.name || echo '') &&
-   user_email=$(git config user.email || echo '') &&
-   if test -n "$user_name" -a -n "$user_email"; then
+   ident="$(git var GIT_AUTHOR_IDENT 2>/dev/null | rev | cut -d' ' -f3- | 
rev)"
+
+   if test -n "$ident"; then
echo 'Your commits will record as Author:
 
-  '"$user_name <$user_email>"'
+  '"$ident"'
 ' &&
read -ep 'Is the author name and email address above correct? 
[Y/n] ' correct &&
if test "$correct" != "n" -a "$correct" != "N"; then

---

Summary of changes:
 Utilities/GitSetup/setup-user | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)


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-rc4-412-g58da842063

2019-11-25 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  58da842063cc80e34ce3ae16aa8c5fb16cdc29dd (commit)
   via  db3d3ab4fbc24d2e2140e861e101c5f6a5b7303b (commit)
   via  99f0881d8c6d0c435e595c5f9510da776827ee3e (commit)
   via  a5bb08a8c0eee06b7ec0b058266d8436f868f119 (commit)
  from  ae2c2f1f1b5c81ea90579b605a61e9ae96b3178b (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=58da842063cc80e34ce3ae16aa8c5fb16cdc29dd
commit 58da842063cc80e34ce3ae16aa8c5fb16cdc29dd
Merge: db3d3ab4fb 99f0881d8c
Author: Brad King 
AuthorDate: Mon Nov 25 14:37:57 2019 +
Commit: Kitware Robot 
CommitDate: Mon Nov 25 09:38:08 2019 -0500

Merge branch 'release-3.16'


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=db3d3ab4fbc24d2e2140e861e101c5f6a5b7303b
commit db3d3ab4fbc24d2e2140e861e101c5f6a5b7303b
Merge: ae2c2f1f1b a5bb08a8c0
Author: Brad King 
AuthorDate: Mon Nov 25 14:37:57 2019 +
Commit: Kitware Robot 
CommitDate: Mon Nov 25 09:38:07 2019 -0500

Merge topic 'FindwxWidgets-rel-and-dbg'

a5bb08a8c0 FindwxWidgets: Fix finding both release and debug libs

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


---

Summary of changes:
 Modules/FindwxWidgets.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, release, updated. v3.16.0-rc4-6-g99f0881d8c

2019-11-25 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  99f0881d8c6d0c435e595c5f9510da776827ee3e (commit)
   via  a5bb08a8c0eee06b7ec0b058266d8436f868f119 (commit)
  from  602f2118b083f998cd7523efcdd5f39689eb15ac (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/FindwxWidgets.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