Skip to content
Snippets Groups Projects
Commit 9d6409e7 authored by Robin Jarry's avatar Robin Jarry
Browse files

fix version when installing from git archive


When installing from a git archive downloaded from github, the file
scapy/VERSION is not present since it is generated when building a
source archive with:

    ./setup.py sdist

To work around the problem, use the export-subst git attribute to make
git archive write the current revison information in scapy/__init__.py.

Signed-off-by: default avatarRobin Jarry <robin.jarry@6wind.com>
parent cbcb87b2
No related branches found
No related tags found
No related merge requests found
scapy/__init__.py export-subst
......@@ -71,7 +71,17 @@ def _version():
tag = f.read()
return tag
except:
return 'unknown.version'
# Rely on git archive "export-subst" git attribute.
# See 'man gitattributes' for more details.
git_archive_id = '$Format:%h %d$'
sha1 = git_archive_id.strip().split()[0]
match = re.search(r'tag:(\S+)', git_archive_id)
if match:
return match.group(1)
elif sha1:
return sha1
else:
return 'unknown.version'
VERSION = _version()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment