def FormatVersionString(version, no_git_hash, custom_for_pub, version_file=None, git_revision_file=None): use_git_hash = not no_git_hash semantic_sdk_version = utils.GetSemanticSDKVersion(no_git_hash, version_file, git_revision_file) semantic_version_format = GetSemanticVersionFormat(no_git_hash, custom_for_pub) version_str = (semantic_sdk_version if version_file else semantic_version_format) version = version.replace('{{VERSION_STR}}', version_str) version = version.replace('{{SEMANTIC_SDK_VERSION}}', semantic_sdk_version) if custom_for_pub: # LATEST is only used for custom_for_pub. latest = None if use_git_hash: # If grabbing the dev tag fails, then fall back on the default VERSION file. latest = utils.GetLatestDevTag() if not latest: latest = utils.GetSemanticSDKVersion(no_git_hash=True) version = version.replace('{{LATEST}}', latest) version = version.replace('{{PUB_CUSTOM}}', custom_for_pub) git_hash = None if use_git_hash: git_hash = utils.GetShortGitHash() if git_hash is None or len(git_hash) != 10: git_hash = '0000000000' version = version.replace('{{GIT_HASH}}', git_hash) channel = utils.GetChannel() version = version.replace('{{CHANNEL}}', channel) version_time = None if use_git_hash: version_time = utils.GetGitTimestamp() if version_time == None: version_time = 'Unknown timestamp' version = version.replace('{{COMMIT_TIME}}', version_time.decode('utf-8')) abi_version = utils.GetAbiVersion(version_file) version = version.replace('{{ABI_VERSION}}', abi_version) oldest_supported_abi_version = utils.GetOldestSupportedAbiVersion( version_file) version = version.replace('{{OLDEST_SUPPORTED_ABI_VERSION}}', oldest_supported_abi_version) snapshot_hash = MakeSnapshotHashString() version = version.replace('{{SNAPSHOT_HASH}}', snapshot_hash) return version
def MakeVersionString(quiet, no_git_hash, custom_for_pub=None): channel = utils.GetChannel() if custom_for_pub and channel == 'be': latest = utils.GetLatestDevTag() if not latest: # If grabbing the dev tag fails, then fall back on the VERSION file. latest = utils.GetSemanticSDKVersion(no_git_hash=True) if no_git_hash: version_string = ("%s.%s" % (latest, custom_for_pub)) else: git_hash = utils.GetShortGitHash() version_string = ("%s.%s-%s" % (latest, custom_for_pub, git_hash)) # TODO(athom): remove the custom 2.7.0 logic post release. # For 2.7.0, we want flutter to claim Dart is 2.7.0 even before it is # decided what exactly 2.7.0 will be. Dart & Flutter stable releases # will be synced, so that what will be released as Dart 2.7.0 will also # be what will be packaged with Flutter. version = utils.ReadVersionFile() custom_version_string = "%s.%s.%s" % (version.major, version.minor, version.patch) if custom_version_string == "2.7.0" and custom_for_pub == "flutter": version_string = "2.7.0" else: version_string = utils.GetSemanticSDKVersion(no_git_hash=no_git_hash) if not quiet: debugLog("Returning version string: %s " % version_string) return version_string
def MakeVersionString(quiet, no_git_hash, custom_for_pub=None): if custom_for_pub: latest = utils.GetLatestDevTag() if not latest: # If grabbing the dev tag fails, then fall back on the VERSION file. latest = utils.GetSemanticSDKVersion(no_git_hash=True) if no_git_hash: version_string = ("%s.%s" % (latest, custom_for_pub)) else: git_hash = utils.GetShortGitHash() version_string = ("%s.%s-%s" % (latest, custom_for_pub, git_hash)) else: version_string = utils.GetSemanticSDKVersion(no_git_hash=no_git_hash) if not quiet: debugLog("Returning version string: %s " % version_string) return version_string
def FormatVersionString(version, no_git_hash, no_sdk_hash, version_file=None, git_revision_file=None): semantic_sdk_version = utils.GetSemanticSDKVersion(no_git_hash, version_file, git_revision_file) semantic_version_format = GetSemanticVersionFormat(no_git_hash) version_str = (semantic_sdk_version if version_file else semantic_version_format) version = version.replace('{{VERSION_STR}}', version_str) version = version.replace('{{SEMANTIC_SDK_VERSION}}', semantic_sdk_version) git_hash = None # If we need SDK hash and git usage is not suppressed then try to get it. if not no_sdk_hash and not no_git_hash: git_hash = utils.GetShortGitHash() if git_hash is None or len(git_hash) != 10: git_hash = '0000000000' version = version.replace('{{GIT_HASH}}', git_hash) channel = utils.GetChannel() version = version.replace('{{CHANNEL}}', channel) version_time = None if not no_git_hash: version_time = utils.GetGitTimestamp() if version_time == None: version_time = 'Unknown timestamp' version = version.replace('{{COMMIT_TIME}}', version_time) snapshot_hash = MakeSnapshotHashString() version = version.replace('{{SNAPSHOT_HASH}}', snapshot_hash) return version
def FormatVersionString(version, no_git_hash, version_file=None, git_revision_file=None): use_git_hash = not no_git_hash semantic_sdk_version = utils.GetSemanticSDKVersion(no_git_hash, version_file, git_revision_file) semantic_version_format = GetSemanticVersionFormat(no_git_hash) version_str = (semantic_sdk_version if version_file else semantic_version_format) version = version.replace('{{VERSION_STR}}', version_str) version = version.replace('{{SEMANTIC_SDK_VERSION}}', semantic_sdk_version) git_hash = None if use_git_hash: git_hash = utils.GetShortGitHash() if git_hash is None or len(git_hash) != 10: git_hash = '0000000000' version = version.replace('{{GIT_HASH}}', git_hash) channel = utils.GetChannel() version = version.replace('{{CHANNEL}}', channel) version_time = None if use_git_hash: version_time = utils.GetGitTimestamp() if version_time == None: version_time = 'Unknown timestamp' version = version.replace('{{COMMIT_TIME}}', version_time.decode('utf-8')) snapshot_hash = MakeSnapshotHashString() version = version.replace('{{SNAPSHOT_HASH}}', snapshot_hash) return version