mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00

The RSB documentation is now in ReST format and part of the RTEMS Documentation project. See https://docs.rtems.org/. Remove support for the GPL based asciidoc tool and remove the asciidoc package from the RSB. Add the Python Markdown package and update the reporter to use Markdown for HTML generation. The resuling HTML report is a single self contained file. Closes #3047.
31 lines
880 B
Python
31 lines
880 B
Python
#
|
|
# markdown/__version__.py
|
|
#
|
|
# version_info should conform to PEP 386
|
|
# (major, minor, micro, alpha/beta/rc/final, #)
|
|
# (1, 1, 2, 'alpha', 0) => "1.1.2.dev"
|
|
# (1, 2, 0, 'beta', 2) => "1.2b2"
|
|
version_info = (2, 6, 8, 'final', 0)
|
|
|
|
|
|
def _get_version():
|
|
" Returns a PEP 386-compliant version number from version_info. "
|
|
assert len(version_info) == 5
|
|
assert version_info[3] in ('alpha', 'beta', 'rc', 'final')
|
|
|
|
parts = 2 if version_info[2] == 0 else 3
|
|
main = '.'.join(map(str, version_info[:parts]))
|
|
|
|
sub = ''
|
|
if version_info[3] == 'alpha' and version_info[4] == 0:
|
|
# TODO: maybe append some sort of git info here??
|
|
sub = '.dev'
|
|
elif version_info[3] != 'final':
|
|
mapping = {'alpha': 'a', 'beta': 'b', 'rc': 'c'}
|
|
sub = mapping[version_info[3]] + str(version_info[4])
|
|
|
|
return str(main + sub)
|
|
|
|
|
|
version = _get_version()
|