# HG changeset patch # User Oleksandr Gavenko # Date 1444748723 -10800 # Node ID 951827960e913599d28befac8494c1863d2677d0 # Parent 47ae3d88a59d0cb8fe81681042a4f9496e4ef21b Reduce version info text length in docs. diff -r 47ae3d88a59d -r 951827960e91 Makefile --- a/Makefile Tue Oct 13 17:50:46 2015 +0300 +++ b/Makefile Tue Oct 13 18:05:23 2015 +0300 @@ -302,19 +302,17 @@ VERSION.rst: VERSION $(BUILD_SCRIPTS) { \ - echo 'For ``$(pkgname)`` version: ``$(vmajor).$(vminor)``.'; \ + echo '``$(pkgname)`` ``v$(vmajor).$(vminor)`` built on ``'$$(date +%F)'`` from revision ``$(vrev)``.'; \ echo; \ case ${visclean} in \ - yes) echo 'Source files are at revision: ``$(vrev)``.';; \ - no) echo 'Some source files was modified from revision: ``$(vrev)``.';; \ + yes) : ;; \ + no) echo 'WARNING!! Source tree has local changes!';; \ esac; \ echo; \ case ${vatrelease} in \ - yes) echo 'Package is at release state.';; \ + yes) : ;; \ no) echo 'Package is far from release state by $(vtagdist) changes.';; \ esac; \ - echo; \ - echo 'Build date: ``'$$(date +%F)'``.'; \ } >$@ index.rst: README.rst