2019-06-13 06:30:51 +00:00
|
|
|
# -*- coding:utf-8 -*-
|
2009-03-03 02:24:23 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2012-11-02 05:59:27 +00:00
|
|
|
from __future__ import print_function
|
2009-03-03 02:24:23 +00:00
|
|
|
import sys
|
2009-03-04 01:47:06 +00:00
|
|
|
from command import Command, MirrorSafeCommand
|
2019-10-01 02:46:45 +00:00
|
|
|
from git_command import git, RepoSourceVersion, user_agent
|
2012-09-11 05:33:51 +00:00
|
|
|
from git_refs import HEAD
|
2009-03-03 02:24:23 +00:00
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2009-03-04 01:47:06 +00:00
|
|
|
class Version(Command, MirrorSafeCommand):
|
2011-11-29 23:01:33 +00:00
|
|
|
wrapper_version = None
|
|
|
|
wrapper_path = None
|
|
|
|
|
2009-03-03 02:24:23 +00:00
|
|
|
common = False
|
|
|
|
helpSummary = "Display the version of repo"
|
|
|
|
helpUsage = """
|
|
|
|
%prog
|
|
|
|
"""
|
|
|
|
|
|
|
|
def Execute(self, opt, args):
|
|
|
|
rp = self.manifest.repoProject
|
|
|
|
rem = rp.GetRemote(rp.remote.name)
|
|
|
|
|
2019-10-01 02:46:45 +00:00
|
|
|
# These might not be the same. Report them both.
|
|
|
|
src_ver = RepoSourceVersion()
|
|
|
|
rp_ver = rp.bare_git.describe(HEAD)
|
|
|
|
print('repo version %s' % rp_ver)
|
2012-11-02 05:59:27 +00:00
|
|
|
print(' (from %s)' % rem.url)
|
2011-11-29 23:01:33 +00:00
|
|
|
|
|
|
|
if Version.wrapper_path is not None:
|
2012-11-02 05:59:27 +00:00
|
|
|
print('repo launcher version %s' % Version.wrapper_version)
|
|
|
|
print(' (from %s)' % Version.wrapper_path)
|
2011-11-29 23:01:33 +00:00
|
|
|
|
2019-10-01 02:46:45 +00:00
|
|
|
if src_ver != rp_ver:
|
|
|
|
print(' (currently at %s)' % src_ver)
|
|
|
|
|
|
|
|
print('repo User-Agent %s' % user_agent.repo)
|
2019-07-10 19:42:30 +00:00
|
|
|
print('git %s' % git.version_tuple().full)
|
2019-10-01 02:46:45 +00:00
|
|
|
print('git User-Agent %s' % user_agent.git)
|
2012-11-02 05:59:27 +00:00
|
|
|
print('Python %s' % sys.version)
|