1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# * Copyright(c) 2022 ZettaScale Technology and others
# *
# * This program and the accompanying materials are made available under the
# * terms of the Eclipse Public License v. 2.0 which is available at
# * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
# * v. 1.0 which is available at
# * http://www.eclipse.org/org/documents/edl-v10.php.
# *
# * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
"""
pre-commit-hook version-check
ensures package.xml and CMake listed version are in sync
"""
import re
import sys
from xml.etree import ElementTree
import hashlib
cmake_version_regex = re.compile(r"project\s*\(\s*CycloneDDS.*VERSION\s+([0-9]+\.[0-9]+\.[0-9]).*\)", re.IGNORECASE)
def main():
with open('CMakeLists.txt') as f:
m = cmake_version_regex.search(f.read())
if not m:
print("Could not locate version information in CMakeLists.txt.", file=sys.stderr)
sys.exit(1)
cmake_version = m.group(1)
tree = ElementTree.parse('package.xml')
package_version = tree.getroot().find('version').text
if not cmake_version == package_version:
print(f"package.xml version: {package_version}", file=sys.stderr)
print(f"CMakeLists.txt version: {cmake_version}", file=sys.stderr)
sys.exit(1)
if __name__ == "__main__":
main()
|