Files
source/S/version.sh.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

123 lines
7.8 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>version.sh</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<!-- beginning of fixed guide -->
<div id='guide'><ul>
<li><a href='#TOP'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
<li><a href='#BOTTOM'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
<li class='standout'><span>version.sh</span></li>
</ul></div>
<!-- end of fixed guide -->
<div align='right'>Manual pages:
<a href=man/mc.html>mc</a> &bullet; <a href=man/mcdiff.html>mcdiff</a> &bullet; <a href=man/mcedit.html>mcedit</a> &bullet; <a href=man/mcview.html>mcview</a>
</div>
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/version.sh</h2>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><img class='icon' src='../icons/n_first.png' alt='[first]' /><img class='icon' src='../icons/n_last.png' alt='[last]' /><img class='icon' src='../icons/n_top.png' alt='[top]' /><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+1 version.sh' /> */</em>
<hr />
<pre>
<a id='L1' name='L1'></a>#!/bin/sh
<a id='L2' name='L2'></a>
<a id='L3' name='L3'></a># Midnight Commander - calculate current version
<a id='L4' name='L4'></a>#
<a id='L5' name='L5'></a># Copyright (C) 2009, 2010, 2013
<a id='L6' name='L6'></a># The Free Software Foundation, Inc.
<a id='L7' name='L7'></a>#
<a id='L8' name='L8'></a># Written by:
<a id='L9' name='L9'></a># Slava Zanko &lt;slavazanko@gmail.com&gt;, 2009, 2010, 2013
<a id='L10' name='L10'></a># Stan. S. Krupoderov &lt;pashelper@gmail.com&gt;, 2009
<a id='L11' name='L11'></a># Sergei Trofimovich &lt;slyfox@inbox.ru&gt;, 2009
<a id='L12' name='L12'></a># Oswald Buddenhagen &lt;ossi@kde.org&gt;, 2009
<a id='L13' name='L13'></a>#
<a id='L14' name='L14'></a># This file is part of the Midnight Commander.
<a id='L15' name='L15'></a>#
<a id='L16' name='L16'></a># The Midnight Commander is free software: you can redistribute it
<a id='L17' name='L17'></a># and/or modify it under the terms of the GNU General Public License as
<a id='L18' name='L18'></a># published by the Free Software Foundation, either version 3 of the License,
<a id='L19' name='L19'></a># or (at your option) any later version.
<a id='L20' name='L20'></a>#
<a id='L21' name='L21'></a># The Midnight Commander is distributed in the hope that it will be useful,
<a id='L22' name='L22'></a># but WITHOUT ANY WARRANTY; without even the implied warranty of
<a id='L23' name='L23'></a># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
<a id='L24' name='L24'></a># GNU General Public License for more details.
<a id='L25' name='L25'></a>#
<a id='L26' name='L26'></a># You should have received a copy of the GNU General Public License
<a id='L27' name='L27'></a># along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.
<a id='L28' name='L28'></a>
<a id='L29' name='L29'></a>#*** include section (source functions, for example) *******************
<a id='L30' name='L30'></a>
<a id='L31' name='L31'></a>#*** file scope functions **********************************************
<a id='L32' name='L32'></a>
<a id='L33' name='L33'></a>mc_print_version(){
<a id='L34' name='L34'></a>
<a id='L35' name='L35'></a> if [ ! -f "${VERSION_FILE}" \
<a id='L36' name='L36'></a> -o "${PREV_MC_VERSION}" != "${CURR_MC_VERSION}" ]
<a id='L37' name='L37'></a> then
<a id='L38' name='L38'></a> cat &gt;"${VERSION_FILE}" &lt;&lt;EOF
<a id='L39' name='L39'></a>#ifndef MC_CURRENT_VERSION
<a id='L40' name='L40'></a>/* This is an autogenerated file. Don't edit! */
<a id='L41' name='L41'></a>#define MC_CURRENT_VERSION "${CURR_MC_VERSION}"
<a id='L42' name='L42'></a>#endif
<a id='L43' name='L43'></a>EOF
<a id='L44' name='L44'></a> fi
<a id='L45' name='L45'></a> echo "${SHOR_MC_VERSION}"
<a id='L46' name='L46'></a> exit
<a id='L47' name='L47'></a>}
<a id='L48' name='L48'></a>
<a id='L49' name='L49'></a>#*** main code *********************************************************
<a id='L50' name='L50'></a>
<a id='L51' name='L51'></a>if [ -z "$1" ]
<a id='L52' name='L52'></a> then
<a id='L53' name='L53'></a> echo "usage: $0 &lt;toplevel-source-dir&gt;"
<a id='L54' name='L54'></a> exit 1
<a id='L55' name='L55'></a>fi
<a id='L56' name='L56'></a>
<a id='L57' name='L57'></a>src_top_dir="$1"
<a id='L58' name='L58'></a>
<a id='L59' name='L59'></a>VERSION_FILE="${src_top_dir}/mc-version.h"
<a id='L60' name='L60'></a>PREV_MC_VERSION="unknown"
<a id='L61' name='L61'></a>CURR_MC_VERSION="${PREV_MC_VERSION}"
<a id='L62' name='L62'></a>SHOR_MC_VERSION="${PREV_MC_VERSION}"
<a id='L63' name='L63'></a>
<a id='L64' name='L64'></a>if [ -r "${VERSION_FILE}" ]
<a id='L65' name='L65'></a> then
<a id='L66' name='L66'></a> PREV_MC_VERSION=`${SED-sed} -n 's/^#define MC_CURRENT_VERSION "\(.*\)"$/\1/p' "${VERSION_FILE}"`
<a id='L67' name='L67'></a> CURR_MC_VERSION="${PREV_MC_VERSION}"
<a id='L68' name='L68'></a> SHOR_MC_VERSION="${PREV_MC_VERSION}"
<a id='L69' name='L69'></a>fi
<a id='L70' name='L70'></a>
<a id='L71' name='L71'></a>git_head=`git --git-dir "${src_top_dir}/.git" rev-parse --verify HEAD 2&gt;/dev/null`
<a id='L72' name='L72'></a>[ -z "${git_head}" ] &amp;&amp; mc_print_version
<a id='L73' name='L73'></a>
<a id='L74' name='L74'></a># try to store sha1
<a id='L75' name='L75'></a>CURR_MC_VERSION="${git_head}"
<a id='L76' name='L76'></a>SHOR_MC_VERSION="${CURR_MC_VERSION}"
<a id='L77' name='L77'></a>
<a id='L78' name='L78'></a>new_version=`git --git-dir "${src_top_dir}/.git" describe --always 2&gt;/dev/null`
<a id='L79' name='L79'></a>[ -z "${new_version}" ] &amp;&amp; mc_print_version
<a id='L80' name='L80'></a>
<a id='L81' name='L81'></a># store pretty tagged version
<a id='L82' name='L82'></a>CURR_MC_VERSION="${new_version}"
<a id='L83' name='L83'></a>SHOR_MC_VERSION="${CURR_MC_VERSION}"
<a id='L84' name='L84'></a>
<a id='L85' name='L85'></a># stop full rebuild by using not-exact git version string in config.h, see #2252, #4266
<a id='L86' name='L86'></a>SHOR_MC_VERSION=`git --git-dir "${src_top_dir}/.git" describe --always --abbrev=0 2&gt;/dev/null`-git
<a id='L87' name='L87'></a>
<a id='L88' name='L88'></a>mc_print_version
</pre>
<hr />
<a id='BOTTOM' name='BOTTOM'></a>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><img class='icon' src='../icons/n_first.png' alt='[first]' /><img class='icon' src='../icons/n_last.png' alt='[last]' /><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><img class='icon' src='../icons/n_bottom.png' alt='[bottom]' /><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+88 version.sh' /> */</em>
</body>
</html>