2019-06-13 06:30:51 +00:00
|
|
|
# -*- coding:utf-8 -*-
|
2009-04-13 18:51:15 +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-04-13 18:51:15 +00:00
|
|
|
from optparse import SUPPRESS_HELP
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from command import Command, MirrorSafeCommand
|
|
|
|
from subcmds.sync import _PostRepoUpgrade
|
|
|
|
from subcmds.sync import _PostRepoFetch
|
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2009-04-13 18:51:15 +00:00
|
|
|
class Selfupdate(Command, MirrorSafeCommand):
|
|
|
|
common = False
|
|
|
|
helpSummary = "Update repo to the latest version"
|
|
|
|
helpUsage = """
|
|
|
|
%prog
|
|
|
|
"""
|
|
|
|
helpDescription = """
|
|
|
|
The '%prog' command upgrades repo to the latest version, if a
|
|
|
|
newer version is available.
|
|
|
|
|
|
|
|
Normally this is done automatically by 'repo sync' and does not
|
|
|
|
need to be performed by an end-user.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _Options(self, p):
|
2009-04-18 18:28:57 +00:00
|
|
|
g = p.add_option_group('repo Version options')
|
|
|
|
g.add_option('--no-repo-verify',
|
2009-04-13 18:51:15 +00:00
|
|
|
dest='no_repo_verify', action='store_true',
|
|
|
|
help='do not verify repo source code')
|
2009-04-18 18:28:57 +00:00
|
|
|
g.add_option('--repo-upgraded',
|
2009-04-13 18:51:15 +00:00
|
|
|
dest='repo_upgraded', action='store_true',
|
|
|
|
help=SUPPRESS_HELP)
|
|
|
|
|
|
|
|
def Execute(self, opt, args):
|
|
|
|
rp = self.manifest.repoProject
|
|
|
|
rp.PreSync()
|
|
|
|
|
|
|
|
if opt.repo_upgraded:
|
|
|
|
_PostRepoUpgrade(self.manifest)
|
|
|
|
|
|
|
|
else:
|
|
|
|
if not rp.Sync_NetworkHalf():
|
2012-11-02 05:59:27 +00:00
|
|
|
print("error: can't update repo", file=sys.stderr)
|
2009-04-13 18:51:15 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
2009-07-03 22:22:49 +00:00
|
|
|
rp.bare_git.gc('--auto')
|
2009-04-13 18:51:15 +00:00
|
|
|
_PostRepoFetch(rp,
|
2020-02-12 04:56:59 +00:00
|
|
|
no_repo_verify=opt.no_repo_verify,
|
|
|
|
verbose=True)
|