Hi Folks, <div><br></div><div>I also think contributing this module back to CMake would be great.</div><div><br></div><div>This has been discuss on the list [1], few things need to be fixed and as discussed documentation updated.</div>

<div><br></div><div>The module could also probably be split into: FindGit.cmake and GitInfo.cmake (or similar name)</div>
<div><br></div><div>First, we could improve the module within Slicer :) [2], then, when we are all happy with it, I believe the module could probably be contributed back to CMake [3].</div><div><br></div><div>
Hth</div><div>Jc</div><div><br></div><div>[1] <a href="http://cmake.3232098.n2.nabble.com/Addition-to-FindGit-tp6441747p6446399.html" target="_blank">http://cmake.3232098.n2.nabble.com/Addition-to-FindGit-tp6441747p6446399.html</a><br>

[2] <a href="http://www.slicer.org/slicerWiki/index.php/Documentation/4.1/Developers/Tutorials/ContributePatch" target="_blank">http://www.slicer.org/slicerWiki/index.php/Documentation/4.1/Developers/Tutorials/ContributePatch</a></div>


<div>[3] <a href="http://www.cmake.org/Wiki/CMake:Module_Maintainers" target="_blank">http://www.cmake.org/Wiki/CMake:Module_Maintainers</a></div><div><br><div class="gmail_quote">On Thu, Jul 12, 2012 at 6:52 AM, Mateusz Loskot <span dir="ltr">&lt;<a href="mailto:mateusz@loskot.net" target="_blank">mateusz@loskot.net</a>&gt;</span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>On 12 July 2012 07:52, Rolf Eike Beer &lt;<a href="mailto:eike@sf-mail.de" target="_blank">eike@sf-mail.de</a>&gt; wrote:<br>



&gt; Mateusz Loskot wrote:<br>
&gt;&gt; On 12 July 2012 00:24, Aashish Chaudhary &lt;<a href="mailto:aashish.chaudhary@kitware.com" target="_blank">aashish.chaudhary@kitware.com</a>&gt; wrote:<br>
&gt;&gt; &gt;<br>
</div><div><div>&gt;&gt; &gt; I don&#39;t have both files in front of me. Whats the difference between<br>
&gt;&gt; &gt; the one in the slicer and once in the CMake?<br>
&gt;&gt;<br>
&gt;&gt; CMake&#39;s current version [1] defines:<br>
&gt;&gt;<br>
&gt;&gt;  #   GIT_EXECUTABLE - path to git command line client<br>
&gt;&gt; #   GIT_FOUND - true if the command line client was found<br>
&gt;&gt; #   GIT_VERSION_STRING - the version of git found (since CMake 2.8.8)<br>
&gt;&gt;<br>
&gt;&gt; Slicer&#39;s version [2] defines:<br>
&gt;&gt;<br>
&gt;&gt; # The module defines the following variables:<br>
&gt;&gt; #   GIT_EXECUTABLE - path to git command line client<br>
&gt;&gt; #   GIT_FOUND - true if the command line client was found<br>
&gt;&gt; #<br>
&gt;&gt; # If the command line client executable is found the macro<br>
&gt;&gt; #  GIT_WC_INFO(&lt;dir&gt; &lt;var-prefix&gt;)<br>
&gt;&gt; # is defined to extract information of a git working copy at<br>
&gt;&gt; # a given location.<br>
&gt;&gt; #<br>
&gt;&gt; # The macro defines the following variables:<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_REVISION_HASH - Current SHA1 hash<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_REVISION - Current SHA1 hash<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_REVISION_NAME - Name associated with<br>
&gt;&gt; &lt;var-prefix&gt;_WC_REVISION_HASH<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_URL - output of command `git config --get<br>
&gt;&gt; remote.origin.url&#39; #  &lt;var-prefix&gt;_WC_ROOT - Same value as working copy URL<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_GITSVN - Set to false<br>
&gt;&gt; #<br>
&gt;&gt; # ... and also the following ones if it&#39;s a git-svn repository:<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_GITSVN - Set to True if it is a<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_INFO - output of command `git svn info&#39;<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_URL - url of the associated SVN repository<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_ROOT - root url of the associated SVN repository<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_REVISION - current SVN revision number<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_LAST_CHANGED_AUTHOR - author of last commit<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_LAST_CHANGED_DATE - date of last commit<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_LAST_CHANGED_REV - revision of last commit<br>
&gt;&gt; #  &lt;var-prefix&gt;_WC_LAST_CHANGED_LOG - last log of base revision<br>
&gt;<br>
&gt; I&#39;m not against that change, but I find the documentation a bit misleading.<br>
&gt; When reading it my first thought was that _WC_REVISION and _WC_GITSVN are junk,<br>
&gt; just to learn later that they have different meaning when it&#39;s a git-svn repo.<br>
<br>
</div></div>That&#39;s what documentation is for, to clarify unobvious.<br>
<div><br>
&gt; Looking at the code I think that line 115 (which is: if(NOT<br>
&gt; &quot;${git_config_output}&quot; STREQUAL &quot;&quot;)) could be simplified to<br>
&gt; &quot;if(git_config_output)&quot;. The warning in line 144 looks suspicious to me, that<br>
&gt; would e.g. trigger on a local only git repo, no? Maybe make this an<br>
&gt; AUTHOR_WARNING?<br>
<br>
</div>Let&#39;s assume it is a requirement specific to the Slicer project.<br>
I think, the warning could be simply removed.<br>
<div><br>
&gt; And obviously the version extraction code is missing, but this should be<br>
&gt; trivially fixable.<br>
<br>
</div>What version you mean? Git program version?<br>
Or, the TODO comment in line 71 of the Slicer&#39;s FindGit.cmake?<br>
<br>
My main point is to get someone from CMake team to simply grab the<br>
Slicer&#39;s version<br>
and commit to CMake upstream. Can&#39;t see reasons why it couldn&#39;t be<br>
submitted really.<br>
<div><div><br>
Best regards,<br>
--<br>
Mateusz Loskot, <a href="http://mateusz.loskot.net" target="_blank">http://mateusz.loskot.net</a><br>
--<br>
<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><a href="tel:%2B1%20919%20869%208849" value="+19198698849" target="_blank">+1 919 869 8849</a><br><br>
</div>