Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
1a97f672
Commit
1a97f672
authored
9 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Make makeversionhdr.py extract version from docs/conf.py if no git.
Addresses issue #1285.
parent
3c4b5d42
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
py/makeversionhdr.py
+29
-1
29 additions, 1 deletion
py/makeversionhdr.py
with
29 additions
and
1 deletion
py/makeversionhdr.py
+
29
−
1
View file @
1a97f672
...
...
@@ -7,16 +7,20 @@ import os
import
datetime
import
subprocess
def
make
_version_
header
(
filename
):
def
get
_version_
info_from_git
(
):
# Note: git describe doesn't work if no tag is available
try
:
git_tag
=
subprocess
.
check_output
([
"
git
"
,
"
describe
"
,
"
--dirty
"
,
"
--always
"
],
universal_newlines
=
True
).
strip
()
except
subprocess
.
CalledProcessError
:
git_tag
=
""
except
OSError
:
return
None
try
:
git_hash
=
subprocess
.
check_output
([
"
git
"
,
"
rev-parse
"
,
"
--short
"
,
"
HEAD
"
],
stderr
=
subprocess
.
STDOUT
,
universal_newlines
=
True
).
strip
()
except
subprocess
.
CalledProcessError
:
git_hash
=
"
unknown
"
except
OSError
:
return
None
try
:
# Check if there are any modified files.
...
...
@@ -25,6 +29,8 @@ def make_version_header(filename):
subprocess
.
check_call
([
"
git
"
,
"
diff-index
"
,
"
--cached
"
,
"
--quiet
"
,
"
HEAD
"
,
"
--
"
],
stderr
=
subprocess
.
STDOUT
)
except
subprocess
.
CalledProcessError
:
git_hash
+=
"
-dirty
"
except
OSError
:
return
None
# Try to extract MicroPython version from git tag
if
git_tag
.
startswith
(
"
v
"
):
...
...
@@ -34,6 +40,28 @@ def make_version_header(filename):
else
:
ver
=
[
"
0
"
,
"
0
"
,
"
1
"
]
return
git_tag
,
git_hash
,
ver
def
get_version_info_from_docs_conf
():
with
open
(
"
%s/docs/conf.py
"
%
sys
.
argv
[
0
].
rsplit
(
"
/
"
,
2
)[
0
])
as
f
:
for
line
in
f
:
if
line
.
startswith
(
"
release =
'"
):
ver
=
line
.
strip
()[
10
:].
strip
(
"'"
)
git_tag
=
"
v
"
+
ver
ver
=
ver
.
split
(
"
.
"
)
if
len
(
ver
)
==
2
:
ver
.
append
(
"
0
"
)
return
git_tag
,
"
<no hash>
"
,
ver
return
None
def
make_version_header
(
filename
):
# Get version info using git, with fallback to docs/conf.py
info
=
get_version_info_from_git
()
if
info
is
None
:
info
=
get_version_info_from_docs_conf
()
git_tag
,
git_hash
,
ver
=
info
# Generate the file with the git and version info
file_data
=
"""
\
// This file was generated by py/makeversionhdr.py
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment