mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-06-30 20:17:08 +00:00
Compare commits
63 Commits
Author | SHA1 | Date | |
---|---|---|---|
bc0308478b | |||
610d3c4e46 | |||
033a7e91de | |||
854f2b6ef4 | |||
a892b1006b | |||
db2ad9dfce | |||
ef668c92c2 | |||
65b162b32f | |||
cd51f17c64 | |||
53a6c5d93a | |||
c2791e85f3 | |||
5bca9fcdd9 | |||
74c1f3d5e6 | |||
91f3ba5a3f | |||
691a75936d | |||
710d4b0391 | |||
a1f77d92c6 | |||
ecf8f2b7c8 | |||
f609f91b72 | |||
59bbb580e3 | |||
da45e5d884 | |||
0826c0749f | |||
de50d81c91 | |||
2b30e3aaba | |||
793f90cdc0 | |||
d503352b14 | |||
2f992cba32 | |||
b5267f9ad2 | |||
45401230cf | |||
56f4eea26c | |||
f385d0ca09 | |||
84c4d3c345 | |||
a8864fba9f | |||
275e4b727a | |||
c4c01f914c | |||
9d5bf60d3c | |||
217ea7d274 | |||
51813dfed1 | |||
fef4ae74e2 | |||
db83b1b5ab | |||
ede7f12d4a | |||
04d84a23fd | |||
0a1c6a1c16 | |||
33e0456737 | |||
07669002cb | |||
a0444584cb | |||
3cba0b8613 | |||
a27852d0e7 | |||
61ac9ae090 | |||
3ee6ffd078 | |||
28db6ffef4 | |||
2f9e7e40c4 | |||
45d21685b9 | |||
597868b4c4 | |||
75b4c2deac | |||
b75415075c | |||
4eb285cf90 | |||
5f434ed723 | |||
606eab8043 | |||
cd07cfae1c | |||
55693aabe5 | |||
23bd3a1dd3 | |||
bbf71fe363 |
4
.gitattributes
vendored
Normal file
4
.gitattributes
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Prevent /bin/sh scripts from being clobbered by autocrlf=true
|
||||||
|
git_ssh text eol=lf
|
||||||
|
main.py text eol=lf
|
||||||
|
repo text eol=lf
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
*.pyc
|
*.pyc
|
||||||
.repopickle_*
|
.repopickle_*
|
||||||
|
/repoc
|
||||||
|
2
.project
2
.project
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>repo</name>
|
<name>git-repo</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<pydev_project>
|
<pydev_project>
|
||||||
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
|
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
|
||||||
<path>/repo</path>
|
<path>/git-repo</path>
|
||||||
</pydev_pathproperty>
|
</pydev_pathproperty>
|
||||||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.6</pydev_property>
|
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.6</pydev_property>
|
||||||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
|
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
|
||||||
|
@ -53,7 +53,7 @@ load-plugins=
|
|||||||
enable=RP0004
|
enable=RP0004
|
||||||
|
|
||||||
# Disable the message(s) with the given id(s).
|
# Disable the message(s) with the given id(s).
|
||||||
disable=R0903,R0912,R0913,R0914,R0915,W0141,C0111,C0103,W0603,W0703,R0911,C0301,C0302,R0902,R0904,W0142,W0212,E1101,E1103,R0201,W0201,W0122,W0232,RP0001,RP0003,RP0101,RP0002,RP0401,RP0701,RP0801
|
disable=R0903,R0912,R0913,R0914,R0915,W0141,C0111,C0103,W0603,W0703,R0911,C0301,C0302,R0902,R0904,W0142,W0212,E1101,E1103,R0201,W0201,W0122,W0232,RP0001,RP0003,RP0101,RP0002,RP0401,RP0701,RP0801,F0401,E0611,R0801,I0011
|
||||||
|
|
||||||
[REPORTS]
|
[REPORTS]
|
||||||
|
|
||||||
|
18
color.py
18
color.py
@ -126,6 +126,13 @@ class Coloring(object):
|
|||||||
s._out.write(c(fmt, *args))
|
s._out.write(c(fmt, *args))
|
||||||
return f
|
return f
|
||||||
|
|
||||||
|
def nofmt_printer(self, opt=None, fg=None, bg=None, attr=None):
|
||||||
|
s = self
|
||||||
|
c = self.nofmt_colorer(opt, fg, bg, attr)
|
||||||
|
def f(fmt):
|
||||||
|
s._out.write(c(fmt))
|
||||||
|
return f
|
||||||
|
|
||||||
def colorer(self, opt=None, fg=None, bg=None, attr=None):
|
def colorer(self, opt=None, fg=None, bg=None, attr=None):
|
||||||
if self._on:
|
if self._on:
|
||||||
c = self._parse(opt, fg, bg, attr)
|
c = self._parse(opt, fg, bg, attr)
|
||||||
@ -138,6 +145,17 @@ class Coloring(object):
|
|||||||
return fmt % args
|
return fmt % args
|
||||||
return f
|
return f
|
||||||
|
|
||||||
|
def nofmt_colorer(self, opt=None, fg=None, bg=None, attr=None):
|
||||||
|
if self._on:
|
||||||
|
c = self._parse(opt, fg, bg, attr)
|
||||||
|
def f(fmt):
|
||||||
|
return ''.join([c, fmt, RESET])
|
||||||
|
return f
|
||||||
|
else:
|
||||||
|
def f(fmt):
|
||||||
|
return fmt
|
||||||
|
return f
|
||||||
|
|
||||||
def _parse(self, opt, fg, bg, attr):
|
def _parse(self, opt, fg, bg, attr):
|
||||||
if not opt:
|
if not opt:
|
||||||
return _Color(fg, bg, attr)
|
return _Color(fg, bg, attr)
|
||||||
|
15
command.py
15
command.py
@ -136,11 +136,11 @@ class Command(object):
|
|||||||
|
|
||||||
groups = mp.config.GetString('manifest.groups')
|
groups = mp.config.GetString('manifest.groups')
|
||||||
if not groups:
|
if not groups:
|
||||||
groups = 'all,-notdefault,platform-' + platform.system().lower()
|
groups = 'default,platform-' + platform.system().lower()
|
||||||
groups = [x for x in re.split(r'[,\s]+', groups) if x]
|
groups = [x for x in re.split(r'[,\s]+', groups) if x]
|
||||||
|
|
||||||
if not args:
|
if not args:
|
||||||
all_projects_list = all_projects.values()
|
all_projects_list = list(all_projects.values())
|
||||||
derived_projects = {}
|
derived_projects = {}
|
||||||
for project in all_projects_list:
|
for project in all_projects_list:
|
||||||
if submodules_ok or project.sync_s:
|
if submodules_ok or project.sync_s:
|
||||||
@ -186,6 +186,17 @@ class Command(object):
|
|||||||
result.sort(key=_getpath)
|
result.sort(key=_getpath)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
def FindProjects(self, args):
|
||||||
|
result = []
|
||||||
|
patterns = [re.compile(r'%s' % a, re.IGNORECASE) for a in args]
|
||||||
|
for project in self.GetProjects(''):
|
||||||
|
for pattern in patterns:
|
||||||
|
if pattern.search(project.name) or pattern.search(project.relpath):
|
||||||
|
result.append(project)
|
||||||
|
break
|
||||||
|
result.sort(key=lambda project: project.relpath)
|
||||||
|
return result
|
||||||
|
|
||||||
# pylint: disable=W0223
|
# pylint: disable=W0223
|
||||||
# Pylint warns that the `InteractiveCommand` and `PagedCommand` classes do not
|
# Pylint warns that the `InteractiveCommand` and `PagedCommand` classes do not
|
||||||
# override method `Execute` which is abstract in `Command`. Since that method
|
# override method `Execute` which is abstract in `Command`. Since that method
|
||||||
|
@ -39,6 +39,7 @@ following DTD:
|
|||||||
<!ELEMENT default (EMPTY)>
|
<!ELEMENT default (EMPTY)>
|
||||||
<!ATTLIST default remote IDREF #IMPLIED>
|
<!ATTLIST default remote IDREF #IMPLIED>
|
||||||
<!ATTLIST default revision CDATA #IMPLIED>
|
<!ATTLIST default revision CDATA #IMPLIED>
|
||||||
|
<!ATTLIST default dest-branch CDATA #IMPLIED>
|
||||||
<!ATTLIST default sync-j CDATA #IMPLIED>
|
<!ATTLIST default sync-j CDATA #IMPLIED>
|
||||||
<!ATTLIST default sync-c CDATA #IMPLIED>
|
<!ATTLIST default sync-c CDATA #IMPLIED>
|
||||||
<!ATTLIST default sync-s CDATA #IMPLIED>
|
<!ATTLIST default sync-s CDATA #IMPLIED>
|
||||||
@ -52,10 +53,13 @@ following DTD:
|
|||||||
<!ATTLIST project path CDATA #IMPLIED>
|
<!ATTLIST project path CDATA #IMPLIED>
|
||||||
<!ATTLIST project remote IDREF #IMPLIED>
|
<!ATTLIST project remote IDREF #IMPLIED>
|
||||||
<!ATTLIST project revision CDATA #IMPLIED>
|
<!ATTLIST project revision CDATA #IMPLIED>
|
||||||
|
<!ATTLIST project dest-branch CDATA #IMPLIED>
|
||||||
<!ATTLIST project groups CDATA #IMPLIED>
|
<!ATTLIST project groups CDATA #IMPLIED>
|
||||||
<!ATTLIST project sync-c CDATA #IMPLIED>
|
<!ATTLIST project sync-c CDATA #IMPLIED>
|
||||||
<!ATTLIST project sync-s CDATA #IMPLIED>
|
<!ATTLIST project sync-s CDATA #IMPLIED>
|
||||||
<!ATTLIST project upstream CDATA #IMPLIED>
|
<!ATTLIST project upstream CDATA #IMPLIED>
|
||||||
|
<!ATTLIST project clone-depth CDATA #IMPLIED>
|
||||||
|
<!ATTLIST project force-path CDATA #IMPLIED>
|
||||||
|
|
||||||
<!ELEMENT annotation (EMPTY)>
|
<!ELEMENT annotation (EMPTY)>
|
||||||
<!ATTLIST annotation name CDATA #REQUIRED>
|
<!ATTLIST annotation name CDATA #REQUIRED>
|
||||||
@ -123,6 +127,11 @@ Attribute `revision`: Name of a Git branch (e.g. `master` or
|
|||||||
`refs/heads/master`). Project elements lacking their own
|
`refs/heads/master`). Project elements lacking their own
|
||||||
revision attribute will use this revision.
|
revision attribute will use this revision.
|
||||||
|
|
||||||
|
Attribute `dest-branch`: Name of a Git branch (e.g. `master`).
|
||||||
|
Project elements not setting their own `dest-branch` will inherit
|
||||||
|
this value. If this value is not set, projects will use `revision`
|
||||||
|
by default instead.
|
||||||
|
|
||||||
Attribute `sync_j`: Number of parallel jobs to use when synching.
|
Attribute `sync_j`: Number of parallel jobs to use when synching.
|
||||||
|
|
||||||
Attribute `sync_c`: Set to true to only sync the given Git
|
Attribute `sync_c`: Set to true to only sync the given Git
|
||||||
@ -201,6 +210,11 @@ Tags and/or explicit SHA-1s should work in theory, but have not
|
|||||||
been extensively tested. If not supplied the revision given by
|
been extensively tested. If not supplied the revision given by
|
||||||
the default element is used.
|
the default element is used.
|
||||||
|
|
||||||
|
Attribute `dest-branch`: Name of a Git branch (e.g. `master`).
|
||||||
|
When using `repo upload`, changes will be submitted for code
|
||||||
|
review on this branch. If unspecified both here and in the
|
||||||
|
default element, `revision` is used instead.
|
||||||
|
|
||||||
Attribute `groups`: List of groups to which this project belongs,
|
Attribute `groups`: List of groups to which this project belongs,
|
||||||
whitespace or comma separated. All projects belong to the group
|
whitespace or comma separated. All projects belong to the group
|
||||||
"all", and each project automatically belongs to a group of
|
"all", and each project automatically belongs to a group of
|
||||||
@ -222,6 +236,16 @@ Attribute `upstream`: Name of the Git branch in which a sha1
|
|||||||
can be found. Used when syncing a revision locked manifest in
|
can be found. Used when syncing a revision locked manifest in
|
||||||
-c mode to avoid having to sync the entire ref space.
|
-c mode to avoid having to sync the entire ref space.
|
||||||
|
|
||||||
|
Attribute `clone-depth`: Set the depth to use when fetching this
|
||||||
|
project. If specified, this value will override any value given
|
||||||
|
to repo init with the --depth option on the command line.
|
||||||
|
|
||||||
|
Attribute `force-path`: Set to true to force this project to create the
|
||||||
|
local mirror repository according to its `path` attribute (if supplied)
|
||||||
|
rather than the `name` attribute. This attribute only applies to the
|
||||||
|
local mirrors syncing, it will be ignored when syncing the projects in a
|
||||||
|
client working directory.
|
||||||
|
|
||||||
Element annotation
|
Element annotation
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
@ -14,8 +14,9 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import cPickle
|
|
||||||
import os
|
import os
|
||||||
|
import pickle
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
@ -24,14 +25,13 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
import dummy_threading as _threading
|
import dummy_threading as _threading
|
||||||
import time
|
import time
|
||||||
try:
|
|
||||||
import urllib2
|
from pyversion import is_python3
|
||||||
except ImportError:
|
if is_python3():
|
||||||
# For python3
|
|
||||||
import urllib.request
|
import urllib.request
|
||||||
import urllib.error
|
import urllib.error
|
||||||
else:
|
else:
|
||||||
# For python2
|
import urllib2
|
||||||
import imp
|
import imp
|
||||||
urllib = imp.new_module('urllib')
|
urllib = imp.new_module('urllib')
|
||||||
urllib.request = urllib2
|
urllib.request = urllib2
|
||||||
@ -40,6 +40,10 @@ else:
|
|||||||
from signal import SIGTERM
|
from signal import SIGTERM
|
||||||
from error import GitError, UploadError
|
from error import GitError, UploadError
|
||||||
from trace import Trace
|
from trace import Trace
|
||||||
|
if is_python3():
|
||||||
|
from http.client import HTTPException
|
||||||
|
else:
|
||||||
|
from httplib import HTTPException
|
||||||
|
|
||||||
from git_command import GitCommand
|
from git_command import GitCommand
|
||||||
from git_command import ssh_sock
|
from git_command import ssh_sock
|
||||||
@ -262,7 +266,7 @@ class GitConfig(object):
|
|||||||
Trace(': unpickle %s', self.file)
|
Trace(': unpickle %s', self.file)
|
||||||
fd = open(self._pickle, 'rb')
|
fd = open(self._pickle, 'rb')
|
||||||
try:
|
try:
|
||||||
return cPickle.load(fd)
|
return pickle.load(fd)
|
||||||
finally:
|
finally:
|
||||||
fd.close()
|
fd.close()
|
||||||
except EOFError:
|
except EOFError:
|
||||||
@ -271,7 +275,7 @@ class GitConfig(object):
|
|||||||
except IOError:
|
except IOError:
|
||||||
os.remove(self._pickle)
|
os.remove(self._pickle)
|
||||||
return None
|
return None
|
||||||
except cPickle.PickleError:
|
except pickle.PickleError:
|
||||||
os.remove(self._pickle)
|
os.remove(self._pickle)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@ -279,13 +283,13 @@ class GitConfig(object):
|
|||||||
try:
|
try:
|
||||||
fd = open(self._pickle, 'wb')
|
fd = open(self._pickle, 'wb')
|
||||||
try:
|
try:
|
||||||
cPickle.dump(cache, fd, cPickle.HIGHEST_PROTOCOL)
|
pickle.dump(cache, fd, pickle.HIGHEST_PROTOCOL)
|
||||||
finally:
|
finally:
|
||||||
fd.close()
|
fd.close()
|
||||||
except IOError:
|
except IOError:
|
||||||
if os.path.exists(self._pickle):
|
if os.path.exists(self._pickle):
|
||||||
os.remove(self._pickle)
|
os.remove(self._pickle)
|
||||||
except cPickle.PickleError:
|
except pickle.PickleError:
|
||||||
if os.path.exists(self._pickle):
|
if os.path.exists(self._pickle):
|
||||||
os.remove(self._pickle)
|
os.remove(self._pickle)
|
||||||
|
|
||||||
@ -537,8 +541,8 @@ class Remote(object):
|
|||||||
self.url = self._Get('url')
|
self.url = self._Get('url')
|
||||||
self.review = self._Get('review')
|
self.review = self._Get('review')
|
||||||
self.projectname = self._Get('projectname')
|
self.projectname = self._Get('projectname')
|
||||||
self.fetch = map(RefSpec.FromString,
|
self.fetch = list(map(RefSpec.FromString,
|
||||||
self._Get('fetch', all_keys=True))
|
self._Get('fetch', all_keys=True)))
|
||||||
self._review_url = None
|
self._review_url = None
|
||||||
|
|
||||||
def _InsteadOf(self):
|
def _InsteadOf(self):
|
||||||
@ -608,6 +612,8 @@ class Remote(object):
|
|||||||
raise UploadError('%s: %s' % (self.review, str(e)))
|
raise UploadError('%s: %s' % (self.review, str(e)))
|
||||||
except urllib.error.URLError as e:
|
except urllib.error.URLError as e:
|
||||||
raise UploadError('%s: %s' % (self.review, str(e)))
|
raise UploadError('%s: %s' % (self.review, str(e)))
|
||||||
|
except HTTPException as e:
|
||||||
|
raise UploadError('%s: %s' % (self.review, e.__class__.__name__))
|
||||||
|
|
||||||
REVIEW_CACHE[u] = self._review_url
|
REVIEW_CACHE[u] = self._review_url
|
||||||
return self._review_url + self.projectname
|
return self._review_url + self.projectname
|
||||||
@ -657,7 +663,7 @@ class Remote(object):
|
|||||||
self._Set('url', self.url)
|
self._Set('url', self.url)
|
||||||
self._Set('review', self.review)
|
self._Set('review', self.review)
|
||||||
self._Set('projectname', self.projectname)
|
self._Set('projectname', self.projectname)
|
||||||
self._Set('fetch', map(str, self.fetch))
|
self._Set('fetch', list(map(str, self.fetch)))
|
||||||
|
|
||||||
def _Set(self, key, value):
|
def _Set(self, key, value):
|
||||||
key = 'remote.%s.%s' % (self.name, key)
|
key = 'remote.%s.%s' % (self.name, key)
|
||||||
|
@ -66,7 +66,7 @@ class GitRefs(object):
|
|||||||
def _NeedUpdate(self):
|
def _NeedUpdate(self):
|
||||||
Trace(': scan refs %s', self._gitdir)
|
Trace(': scan refs %s', self._gitdir)
|
||||||
|
|
||||||
for name, mtime in self._mtime.iteritems():
|
for name, mtime in self._mtime.items():
|
||||||
try:
|
try:
|
||||||
if mtime != os.path.getmtime(os.path.join(self._gitdir, name)):
|
if mtime != os.path.getmtime(os.path.join(self._gitdir, name)):
|
||||||
return True
|
return True
|
||||||
@ -89,7 +89,7 @@ class GitRefs(object):
|
|||||||
attempts = 0
|
attempts = 0
|
||||||
while scan and attempts < 5:
|
while scan and attempts < 5:
|
||||||
scan_next = {}
|
scan_next = {}
|
||||||
for name, dest in scan.iteritems():
|
for name, dest in scan.items():
|
||||||
if dest in self._phyref:
|
if dest in self._phyref:
|
||||||
self._phyref[name] = self._phyref[dest]
|
self._phyref[name] = self._phyref[dest]
|
||||||
else:
|
else:
|
||||||
@ -108,6 +108,7 @@ class GitRefs(object):
|
|||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
for line in fd:
|
for line in fd:
|
||||||
|
line = str(line)
|
||||||
if line[0] == '#':
|
if line[0] == '#':
|
||||||
continue
|
continue
|
||||||
if line[0] == '^':
|
if line[0] == '^':
|
||||||
@ -150,6 +151,10 @@ class GitRefs(object):
|
|||||||
finally:
|
finally:
|
||||||
fd.close()
|
fd.close()
|
||||||
|
|
||||||
|
try:
|
||||||
|
ref_id = ref_id.decode()
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
if not ref_id:
|
if not ref_id:
|
||||||
return
|
return
|
||||||
ref_id = ref_id[:-1]
|
ref_id = ref_id[:-1]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# From Gerrit Code Review 2.5-rc0
|
# From Gerrit Code Review 2.5.2
|
||||||
#
|
#
|
||||||
# Part of Gerrit Code Review (http://code.google.com/p/gerrit/)
|
# Part of Gerrit Code Review (http://code.google.com/p/gerrit/)
|
||||||
#
|
#
|
||||||
@ -18,6 +18,8 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
unset GREP_OPTIONS
|
||||||
|
|
||||||
CHANGE_ID_AFTER="Bug|Issue"
|
CHANGE_ID_AFTER="Bug|Issue"
|
||||||
MSG="$1"
|
MSG="$1"
|
||||||
|
|
||||||
|
16
main.py
16
main.py
@ -22,13 +22,12 @@ import optparse
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
try:
|
|
||||||
import urllib2
|
from pyversion import is_python3
|
||||||
except ImportError:
|
if is_python3():
|
||||||
# For python3
|
|
||||||
import urllib.request
|
import urllib.request
|
||||||
else:
|
else:
|
||||||
# For python2
|
import urllib2
|
||||||
urllib = imp.new_module('urllib')
|
urllib = imp.new_module('urllib')
|
||||||
urllib.request = urllib2
|
urllib.request = urllib2
|
||||||
|
|
||||||
@ -50,6 +49,11 @@ from pager import RunPager
|
|||||||
|
|
||||||
from subcmds import all_commands
|
from subcmds import all_commands
|
||||||
|
|
||||||
|
if not is_python3():
|
||||||
|
# pylint:disable=W0622
|
||||||
|
input = raw_input
|
||||||
|
# pylint:enable=W0622
|
||||||
|
|
||||||
global_options = optparse.OptionParser(
|
global_options = optparse.OptionParser(
|
||||||
usage="repo [-p|--paginate|--no-pager] COMMAND [ARGS]"
|
usage="repo [-p|--paginate|--no-pager] COMMAND [ARGS]"
|
||||||
)
|
)
|
||||||
@ -286,7 +290,7 @@ def _AddPasswordFromUserInput(handler, msg, req):
|
|||||||
if user is None:
|
if user is None:
|
||||||
print(msg)
|
print(msg)
|
||||||
try:
|
try:
|
||||||
user = raw_input('User: ')
|
user = input('User: ')
|
||||||
password = getpass.getpass()
|
password = getpass.getpass()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
return
|
return
|
||||||
|
@ -18,9 +18,17 @@ import itertools
|
|||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
import urlparse
|
|
||||||
import xml.dom.minidom
|
import xml.dom.minidom
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
|
if is_python3():
|
||||||
|
import urllib.parse
|
||||||
|
else:
|
||||||
|
import imp
|
||||||
|
import urlparse
|
||||||
|
urllib = imp.new_module('urllib')
|
||||||
|
urllib.parse = urlparse
|
||||||
|
|
||||||
from git_config import GitConfig
|
from git_config import GitConfig
|
||||||
from git_refs import R_HEADS, HEAD
|
from git_refs import R_HEADS, HEAD
|
||||||
from project import RemoteSpec, Project, MetaProject
|
from project import RemoteSpec, Project, MetaProject
|
||||||
@ -30,8 +38,8 @@ MANIFEST_FILE_NAME = 'manifest.xml'
|
|||||||
LOCAL_MANIFEST_NAME = 'local_manifest.xml'
|
LOCAL_MANIFEST_NAME = 'local_manifest.xml'
|
||||||
LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
|
LOCAL_MANIFESTS_DIR_NAME = 'local_manifests'
|
||||||
|
|
||||||
urlparse.uses_relative.extend(['ssh', 'git'])
|
urllib.parse.uses_relative.extend(['ssh', 'git'])
|
||||||
urlparse.uses_netloc.extend(['ssh', 'git'])
|
urllib.parse.uses_netloc.extend(['ssh', 'git'])
|
||||||
|
|
||||||
class _Default(object):
|
class _Default(object):
|
||||||
"""Project defaults within the manifest."""
|
"""Project defaults within the manifest."""
|
||||||
@ -73,7 +81,7 @@ class _XmlRemote(object):
|
|||||||
# ie, if manifestUrl is of the form <hostname:port>
|
# ie, if manifestUrl is of the form <hostname:port>
|
||||||
if manifestUrl.find(':') != manifestUrl.find('/') - 1:
|
if manifestUrl.find(':') != manifestUrl.find('/') - 1:
|
||||||
manifestUrl = 'gopher://' + manifestUrl
|
manifestUrl = 'gopher://' + manifestUrl
|
||||||
url = urlparse.urljoin(manifestUrl, url)
|
url = urllib.parse.urljoin(manifestUrl, url)
|
||||||
url = re.sub(r'^gopher://', '', url)
|
url = re.sub(r'^gopher://', '', url)
|
||||||
if p:
|
if p:
|
||||||
url = 'persistent-' + url
|
url = 'persistent-' + url
|
||||||
@ -82,8 +90,6 @@ class _XmlRemote(object):
|
|||||||
def ToRemoteSpec(self, projectName):
|
def ToRemoteSpec(self, projectName):
|
||||||
url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
|
url = self.resolvedFetchUrl.rstrip('/') + '/' + projectName
|
||||||
remoteName = self.name
|
remoteName = self.name
|
||||||
if self.remoteAlias:
|
|
||||||
remoteName = self.remoteAlias
|
|
||||||
return RemoteSpec(remoteName, url, self.reviewUrl)
|
return RemoteSpec(remoteName, url, self.reviewUrl)
|
||||||
|
|
||||||
class XmlManifest(object):
|
class XmlManifest(object):
|
||||||
@ -94,6 +100,7 @@ class XmlManifest(object):
|
|||||||
self.topdir = os.path.dirname(self.repodir)
|
self.topdir = os.path.dirname(self.repodir)
|
||||||
self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
|
self.manifestFile = os.path.join(self.repodir, MANIFEST_FILE_NAME)
|
||||||
self.globalConfig = GitConfig.ForUser()
|
self.globalConfig = GitConfig.ForUser()
|
||||||
|
self.localManifestWarning = False
|
||||||
|
|
||||||
self.repoProject = MetaProject(self, 'repo',
|
self.repoProject = MetaProject(self, 'repo',
|
||||||
gitdir = os.path.join(repodir, 'repo/.git'),
|
gitdir = os.path.join(repodir, 'repo/.git'),
|
||||||
@ -163,10 +170,8 @@ class XmlManifest(object):
|
|||||||
notice_element.appendChild(doc.createTextNode(indented_notice))
|
notice_element.appendChild(doc.createTextNode(indented_notice))
|
||||||
|
|
||||||
d = self.default
|
d = self.default
|
||||||
sort_remotes = list(self.remotes.keys())
|
|
||||||
sort_remotes.sort()
|
|
||||||
|
|
||||||
for r in sort_remotes:
|
for r in sorted(self.remotes):
|
||||||
self._RemoteToXml(self.remotes[r], doc, root)
|
self._RemoteToXml(self.remotes[r], doc, root)
|
||||||
if self.remotes:
|
if self.remotes:
|
||||||
root.appendChild(doc.createTextNode(''))
|
root.appendChild(doc.createTextNode(''))
|
||||||
@ -258,12 +263,11 @@ class XmlManifest(object):
|
|||||||
e.setAttribute('sync-s', 'true')
|
e.setAttribute('sync-s', 'true')
|
||||||
|
|
||||||
if p.subprojects:
|
if p.subprojects:
|
||||||
sort_projects = [subp.name for subp in p.subprojects]
|
sort_projects = list(sorted([subp.name for subp in p.subprojects]))
|
||||||
sort_projects.sort()
|
|
||||||
output_projects(p, e, sort_projects)
|
output_projects(p, e, sort_projects)
|
||||||
|
|
||||||
sort_projects = [key for key in self.projects.keys()
|
sort_projects = list(sorted([key for key, value in self.projects.items()
|
||||||
if not self.projects[key].parent]
|
if not value.parent]))
|
||||||
sort_projects.sort()
|
sort_projects.sort()
|
||||||
output_projects(None, root, sort_projects)
|
output_projects(None, root, sort_projects)
|
||||||
|
|
||||||
@ -335,8 +339,10 @@ class XmlManifest(object):
|
|||||||
|
|
||||||
local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
|
local = os.path.join(self.repodir, LOCAL_MANIFEST_NAME)
|
||||||
if os.path.exists(local):
|
if os.path.exists(local):
|
||||||
print('warning: %s is deprecated; put local manifests in %s instead'
|
if not self.localManifestWarning:
|
||||||
% (LOCAL_MANIFEST_NAME, LOCAL_MANIFESTS_DIR_NAME),
|
self.localManifestWarning = True
|
||||||
|
print('warning: %s is deprecated; put local manifests in `%s` instead'
|
||||||
|
% (LOCAL_MANIFEST_NAME, os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
nodes.append(self._ParseManifestXml(local, self.repodir))
|
nodes.append(self._ParseManifestXml(local, self.repodir))
|
||||||
|
|
||||||
@ -344,11 +350,8 @@ class XmlManifest(object):
|
|||||||
try:
|
try:
|
||||||
for local_file in sorted(os.listdir(local_dir)):
|
for local_file in sorted(os.listdir(local_dir)):
|
||||||
if local_file.endswith('.xml'):
|
if local_file.endswith('.xml'):
|
||||||
try:
|
|
||||||
local = os.path.join(local_dir, local_file)
|
local = os.path.join(local_dir, local_file)
|
||||||
nodes.append(self._ParseManifestXml(local, self.repodir))
|
nodes.append(self._ParseManifestXml(local, self.repodir))
|
||||||
except ManifestParseError as e:
|
|
||||||
print('%s' % str(e), file=sys.stderr)
|
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@ -388,9 +391,8 @@ class XmlManifest(object):
|
|||||||
name = self._reqatt(node, 'name')
|
name = self._reqatt(node, 'name')
|
||||||
fp = os.path.join(include_root, name)
|
fp = os.path.join(include_root, name)
|
||||||
if not os.path.isfile(fp):
|
if not os.path.isfile(fp):
|
||||||
raise ManifestParseError, \
|
raise ManifestParseError("include %s doesn't exist or isn't a file"
|
||||||
"include %s doesn't exist or isn't a file" % \
|
% (name,))
|
||||||
(name,)
|
|
||||||
try:
|
try:
|
||||||
nodes.extend(self._ParseManifestXml(fp, include_root))
|
nodes.extend(self._ParseManifestXml(fp, include_root))
|
||||||
# should isolate this to the exact exception, but that's
|
# should isolate this to the exact exception, but that's
|
||||||
@ -496,7 +498,7 @@ class XmlManifest(object):
|
|||||||
name = None
|
name = None
|
||||||
m_url = m.GetRemote(m.remote.name).url
|
m_url = m.GetRemote(m.remote.name).url
|
||||||
if m_url.endswith('/.git'):
|
if m_url.endswith('/.git'):
|
||||||
raise ManifestParseError, 'refusing to mirror %s' % m_url
|
raise ManifestParseError('refusing to mirror %s' % m_url)
|
||||||
|
|
||||||
if self._default and self._default.remote:
|
if self._default and self._default.remote:
|
||||||
url = self._default.remote.resolvedFetchUrl
|
url = self._default.remote.resolvedFetchUrl
|
||||||
@ -553,6 +555,8 @@ class XmlManifest(object):
|
|||||||
if d.revisionExpr == '':
|
if d.revisionExpr == '':
|
||||||
d.revisionExpr = None
|
d.revisionExpr = None
|
||||||
|
|
||||||
|
d.destBranchExpr = node.getAttribute('dest-branch') or None
|
||||||
|
|
||||||
sync_j = node.getAttribute('sync-j')
|
sync_j = node.getAttribute('sync-j')
|
||||||
if sync_j == '' or sync_j is None:
|
if sync_j == '' or sync_j is None:
|
||||||
d.sync_j = 1
|
d.sync_j = 1
|
||||||
@ -590,7 +594,7 @@ class XmlManifest(object):
|
|||||||
|
|
||||||
# Figure out minimum indentation, skipping the first line (the same line
|
# Figure out minimum indentation, skipping the first line (the same line
|
||||||
# as the <notice> tag)...
|
# as the <notice> tag)...
|
||||||
minIndent = sys.maxint
|
minIndent = sys.maxsize
|
||||||
lines = notice.splitlines()
|
lines = notice.splitlines()
|
||||||
for line in lines[1:]:
|
for line in lines[1:]:
|
||||||
lstrippedLine = line.lstrip()
|
lstrippedLine = line.lstrip()
|
||||||
@ -629,25 +633,22 @@ class XmlManifest(object):
|
|||||||
if remote is None:
|
if remote is None:
|
||||||
remote = self._default.remote
|
remote = self._default.remote
|
||||||
if remote is None:
|
if remote is None:
|
||||||
raise ManifestParseError, \
|
raise ManifestParseError("no remote for project %s within %s" %
|
||||||
"no remote for project %s within %s" % \
|
(name, self.manifestFile))
|
||||||
(name, self.manifestFile)
|
|
||||||
|
|
||||||
revisionExpr = node.getAttribute('revision')
|
revisionExpr = node.getAttribute('revision')
|
||||||
if not revisionExpr:
|
if not revisionExpr:
|
||||||
revisionExpr = self._default.revisionExpr
|
revisionExpr = self._default.revisionExpr
|
||||||
if not revisionExpr:
|
if not revisionExpr:
|
||||||
raise ManifestParseError, \
|
raise ManifestParseError("no revision for project %s within %s" %
|
||||||
"no revision for project %s within %s" % \
|
(name, self.manifestFile))
|
||||||
(name, self.manifestFile)
|
|
||||||
|
|
||||||
path = node.getAttribute('path')
|
path = node.getAttribute('path')
|
||||||
if not path:
|
if not path:
|
||||||
path = name
|
path = name
|
||||||
if path.startswith('/'):
|
if path.startswith('/'):
|
||||||
raise ManifestParseError, \
|
raise ManifestParseError("project %s path cannot be absolute in %s" %
|
||||||
"project %s path cannot be absolute in %s" % \
|
(name, self.manifestFile))
|
||||||
(name, self.manifestFile)
|
|
||||||
|
|
||||||
rebase = node.getAttribute('rebase')
|
rebase = node.getAttribute('rebase')
|
||||||
if not rebase:
|
if not rebase:
|
||||||
@ -667,6 +668,18 @@ class XmlManifest(object):
|
|||||||
else:
|
else:
|
||||||
sync_s = sync_s.lower() in ("yes", "true", "1")
|
sync_s = sync_s.lower() in ("yes", "true", "1")
|
||||||
|
|
||||||
|
clone_depth = node.getAttribute('clone-depth')
|
||||||
|
if clone_depth:
|
||||||
|
try:
|
||||||
|
clone_depth = int(clone_depth)
|
||||||
|
if clone_depth <= 0:
|
||||||
|
raise ValueError()
|
||||||
|
except ValueError:
|
||||||
|
raise ManifestParseError('invalid clone-depth %s in %s' %
|
||||||
|
(clone_depth, self.manifestFile))
|
||||||
|
|
||||||
|
dest_branch = node.getAttribute('dest-branch') or self._default.destBranchExpr
|
||||||
|
|
||||||
upstream = node.getAttribute('upstream')
|
upstream = node.getAttribute('upstream')
|
||||||
|
|
||||||
groups = ''
|
groups = ''
|
||||||
@ -682,6 +695,10 @@ class XmlManifest(object):
|
|||||||
default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
|
default_groups = ['all', 'name:%s' % name, 'path:%s' % relpath]
|
||||||
groups.extend(set(default_groups).difference(groups))
|
groups.extend(set(default_groups).difference(groups))
|
||||||
|
|
||||||
|
if self.IsMirror and node.hasAttribute('force-path'):
|
||||||
|
if node.getAttribute('force-path').lower() in ("yes", "true", "1"):
|
||||||
|
gitdir = os.path.join(self.topdir, '%s.git' % path)
|
||||||
|
|
||||||
project = Project(manifest = self,
|
project = Project(manifest = self,
|
||||||
name = name,
|
name = name,
|
||||||
remote = remote.ToRemoteSpec(name),
|
remote = remote.ToRemoteSpec(name),
|
||||||
@ -694,8 +711,10 @@ class XmlManifest(object):
|
|||||||
groups = groups,
|
groups = groups,
|
||||||
sync_c = sync_c,
|
sync_c = sync_c,
|
||||||
sync_s = sync_s,
|
sync_s = sync_s,
|
||||||
|
clone_depth = clone_depth,
|
||||||
upstream = upstream,
|
upstream = upstream,
|
||||||
parent = parent)
|
parent = parent,
|
||||||
|
dest_branch = dest_branch)
|
||||||
|
|
||||||
for n in node.childNodes:
|
for n in node.childNodes:
|
||||||
if n.nodeName == 'copyfile':
|
if n.nodeName == 'copyfile':
|
||||||
@ -751,7 +770,8 @@ class XmlManifest(object):
|
|||||||
except ManifestParseError:
|
except ManifestParseError:
|
||||||
keep = "true"
|
keep = "true"
|
||||||
if keep != "true" and keep != "false":
|
if keep != "true" and keep != "false":
|
||||||
raise ManifestParseError, "optional \"keep\" attribute must be \"true\" or \"false\""
|
raise ManifestParseError('optional "keep" attribute must be '
|
||||||
|
'"true" or "false"')
|
||||||
project.AddAnnotation(name, value, keep)
|
project.AddAnnotation(name, value, keep)
|
||||||
|
|
||||||
def _get_remote(self, node):
|
def _get_remote(self, node):
|
||||||
@ -761,9 +781,8 @@ class XmlManifest(object):
|
|||||||
|
|
||||||
v = self._remotes.get(name)
|
v = self._remotes.get(name)
|
||||||
if not v:
|
if not v:
|
||||||
raise ManifestParseError, \
|
raise ManifestParseError("remote %s not defined in %s" %
|
||||||
"remote %s not defined in %s" % \
|
(name, self.manifestFile))
|
||||||
(name, self.manifestFile)
|
|
||||||
return v
|
return v
|
||||||
|
|
||||||
def _reqatt(self, node, attname):
|
def _reqatt(self, node, attname):
|
||||||
@ -772,7 +791,6 @@ class XmlManifest(object):
|
|||||||
"""
|
"""
|
||||||
v = node.getAttribute(attname)
|
v = node.getAttribute(attname)
|
||||||
if not v:
|
if not v:
|
||||||
raise ManifestParseError, \
|
raise ManifestParseError("no %s in <%s> within %s" %
|
||||||
"no %s in <%s> within %s" % \
|
(attname, node.nodeName, self.manifestFile))
|
||||||
(attname, node.nodeName, self.manifestFile)
|
|
||||||
return v
|
return v
|
||||||
|
168
project.py
168
project.py
@ -36,6 +36,12 @@ from trace import IsTrace, Trace
|
|||||||
|
|
||||||
from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB, R_M
|
from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB, R_M
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
|
if not is_python3():
|
||||||
|
# pylint:disable=W0622
|
||||||
|
input = raw_input
|
||||||
|
# pylint:enable=W0622
|
||||||
|
|
||||||
def _lwrite(path, content):
|
def _lwrite(path, content):
|
||||||
lock = '%s.lock' % path
|
lock = '%s.lock' % path
|
||||||
|
|
||||||
@ -78,7 +84,7 @@ def _ProjectHooks():
|
|||||||
if _project_hook_list is None:
|
if _project_hook_list is None:
|
||||||
d = os.path.abspath(os.path.dirname(__file__))
|
d = os.path.abspath(os.path.dirname(__file__))
|
||||||
d = os.path.join(d , 'hooks')
|
d = os.path.join(d , 'hooks')
|
||||||
_project_hook_list = map(lambda x: os.path.join(d, x), os.listdir(d))
|
_project_hook_list = [os.path.join(d, x) for x in os.listdir(d)]
|
||||||
return _project_hook_list
|
return _project_hook_list
|
||||||
|
|
||||||
|
|
||||||
@ -151,11 +157,12 @@ class ReviewableBranch(object):
|
|||||||
R_HEADS + self.name,
|
R_HEADS + self.name,
|
||||||
'--')
|
'--')
|
||||||
|
|
||||||
def UploadForReview(self, people, auto_topic=False, draft=False):
|
def UploadForReview(self, people, auto_topic=False, draft=False, dest_branch=None):
|
||||||
self.project.UploadForReview(self.name,
|
self.project.UploadForReview(self.name,
|
||||||
people,
|
people,
|
||||||
auto_topic=auto_topic,
|
auto_topic=auto_topic,
|
||||||
draft=draft)
|
draft=draft,
|
||||||
|
dest_branch=dest_branch)
|
||||||
|
|
||||||
def GetPublishedRefs(self):
|
def GetPublishedRefs(self):
|
||||||
refs = {}
|
refs = {}
|
||||||
@ -361,7 +368,7 @@ class RepoHook(object):
|
|||||||
'Do you want to allow this script to run '
|
'Do you want to allow this script to run '
|
||||||
'(yes/yes-never-ask-again/NO)? ') % (
|
'(yes/yes-never-ask-again/NO)? ') % (
|
||||||
self._GetMustVerb(), self._script_fullpath)
|
self._GetMustVerb(), self._script_fullpath)
|
||||||
response = raw_input(prompt).lower()
|
response = input(prompt).lower()
|
||||||
print()
|
print()
|
||||||
|
|
||||||
# User is doing a one-time approval.
|
# User is doing a one-time approval.
|
||||||
@ -488,9 +495,11 @@ class Project(object):
|
|||||||
groups = None,
|
groups = None,
|
||||||
sync_c = False,
|
sync_c = False,
|
||||||
sync_s = False,
|
sync_s = False,
|
||||||
|
clone_depth = None,
|
||||||
upstream = None,
|
upstream = None,
|
||||||
parent = None,
|
parent = None,
|
||||||
is_derived = False):
|
is_derived = False,
|
||||||
|
dest_branch = None):
|
||||||
"""Init a Project object.
|
"""Init a Project object.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
@ -510,6 +519,7 @@ class Project(object):
|
|||||||
parent: The parent Project object.
|
parent: The parent Project object.
|
||||||
is_derived: False if the project was explicitly defined in the manifest;
|
is_derived: False if the project was explicitly defined in the manifest;
|
||||||
True if the project is a discovered submodule.
|
True if the project is a discovered submodule.
|
||||||
|
dest_branch: The branch to which to push changes for review by default.
|
||||||
"""
|
"""
|
||||||
self.manifest = manifest
|
self.manifest = manifest
|
||||||
self.name = name
|
self.name = name
|
||||||
@ -533,6 +543,7 @@ class Project(object):
|
|||||||
self.groups = groups
|
self.groups = groups
|
||||||
self.sync_c = sync_c
|
self.sync_c = sync_c
|
||||||
self.sync_s = sync_s
|
self.sync_s = sync_s
|
||||||
|
self.clone_depth = clone_depth
|
||||||
self.upstream = upstream
|
self.upstream = upstream
|
||||||
self.parent = parent
|
self.parent = parent
|
||||||
self.is_derived = is_derived
|
self.is_derived = is_derived
|
||||||
@ -551,6 +562,7 @@ class Project(object):
|
|||||||
self.work_git = None
|
self.work_git = None
|
||||||
self.bare_git = self._GitGetByExec(self, bare=True)
|
self.bare_git = self._GitGetByExec(self, bare=True)
|
||||||
self.bare_ref = GitRefs(gitdir)
|
self.bare_ref = GitRefs(gitdir)
|
||||||
|
self.dest_branch = dest_branch
|
||||||
|
|
||||||
# This will be filled in if a project is later identified to be the
|
# This will be filled in if a project is later identified to be the
|
||||||
# project containing repo hooks.
|
# project containing repo hooks.
|
||||||
@ -644,7 +656,7 @@ class Project(object):
|
|||||||
all_refs = self._allrefs
|
all_refs = self._allrefs
|
||||||
heads = {}
|
heads = {}
|
||||||
|
|
||||||
for name, ref_id in all_refs.iteritems():
|
for name, ref_id in all_refs.items():
|
||||||
if name.startswith(R_HEADS):
|
if name.startswith(R_HEADS):
|
||||||
name = name[len(R_HEADS):]
|
name = name[len(R_HEADS):]
|
||||||
b = self.GetBranch(name)
|
b = self.GetBranch(name)
|
||||||
@ -653,7 +665,7 @@ class Project(object):
|
|||||||
b.revision = ref_id
|
b.revision = ref_id
|
||||||
heads[name] = b
|
heads[name] = b
|
||||||
|
|
||||||
for name, ref_id in all_refs.iteritems():
|
for name, ref_id in all_refs.items():
|
||||||
if name.startswith(R_PUB):
|
if name.startswith(R_PUB):
|
||||||
name = name[len(R_PUB):]
|
name = name[len(R_PUB):]
|
||||||
b = heads.get(name)
|
b = heads.get(name)
|
||||||
@ -672,9 +684,14 @@ class Project(object):
|
|||||||
project_groups: "all,group1,group2"
|
project_groups: "all,group1,group2"
|
||||||
manifest_groups: "-group1,group2"
|
manifest_groups: "-group1,group2"
|
||||||
the project will be matched.
|
the project will be matched.
|
||||||
|
|
||||||
|
The special manifest group "default" will match any project that
|
||||||
|
does not have the special project group "notdefault"
|
||||||
"""
|
"""
|
||||||
expanded_manifest_groups = manifest_groups or ['all', '-notdefault']
|
expanded_manifest_groups = manifest_groups or ['default']
|
||||||
expanded_project_groups = ['all'] + (self.groups or [])
|
expanded_project_groups = ['all'] + (self.groups or [])
|
||||||
|
if not 'notdefault' in expanded_project_groups:
|
||||||
|
expanded_project_groups += ['default']
|
||||||
|
|
||||||
matched = False
|
matched = False
|
||||||
for group in expanded_manifest_groups:
|
for group in expanded_manifest_groups:
|
||||||
@ -754,10 +771,7 @@ class Project(object):
|
|||||||
paths.extend(df.keys())
|
paths.extend(df.keys())
|
||||||
paths.extend(do)
|
paths.extend(do)
|
||||||
|
|
||||||
paths = list(set(paths))
|
for p in sorted(set(paths)):
|
||||||
paths.sort()
|
|
||||||
|
|
||||||
for p in paths:
|
|
||||||
try:
|
try:
|
||||||
i = di[p]
|
i = di[p]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
@ -849,13 +863,13 @@ class Project(object):
|
|||||||
all_refs = self._allrefs
|
all_refs = self._allrefs
|
||||||
heads = set()
|
heads = set()
|
||||||
canrm = {}
|
canrm = {}
|
||||||
for name, ref_id in all_refs.iteritems():
|
for name, ref_id in all_refs.items():
|
||||||
if name.startswith(R_HEADS):
|
if name.startswith(R_HEADS):
|
||||||
heads.add(name)
|
heads.add(name)
|
||||||
elif name.startswith(R_PUB):
|
elif name.startswith(R_PUB):
|
||||||
canrm[name] = ref_id
|
canrm[name] = ref_id
|
||||||
|
|
||||||
for name, ref_id in canrm.iteritems():
|
for name, ref_id in canrm.items():
|
||||||
n = name[len(R_PUB):]
|
n = name[len(R_PUB):]
|
||||||
if R_HEADS + n not in heads:
|
if R_HEADS + n not in heads:
|
||||||
self.bare_git.DeleteRef(name, ref_id)
|
self.bare_git.DeleteRef(name, ref_id)
|
||||||
@ -866,14 +880,14 @@ class Project(object):
|
|||||||
heads = {}
|
heads = {}
|
||||||
pubed = {}
|
pubed = {}
|
||||||
|
|
||||||
for name, ref_id in self._allrefs.iteritems():
|
for name, ref_id in self._allrefs.items():
|
||||||
if name.startswith(R_HEADS):
|
if name.startswith(R_HEADS):
|
||||||
heads[name[len(R_HEADS):]] = ref_id
|
heads[name[len(R_HEADS):]] = ref_id
|
||||||
elif name.startswith(R_PUB):
|
elif name.startswith(R_PUB):
|
||||||
pubed[name[len(R_PUB):]] = ref_id
|
pubed[name[len(R_PUB):]] = ref_id
|
||||||
|
|
||||||
ready = []
|
ready = []
|
||||||
for branch, ref_id in heads.iteritems():
|
for branch, ref_id in heads.items():
|
||||||
if branch in pubed and pubed[branch] == ref_id:
|
if branch in pubed and pubed[branch] == ref_id:
|
||||||
continue
|
continue
|
||||||
if selected_branch and branch != selected_branch:
|
if selected_branch and branch != selected_branch:
|
||||||
@ -898,7 +912,8 @@ class Project(object):
|
|||||||
def UploadForReview(self, branch=None,
|
def UploadForReview(self, branch=None,
|
||||||
people=([],[]),
|
people=([],[]),
|
||||||
auto_topic=False,
|
auto_topic=False,
|
||||||
draft=False):
|
draft=False,
|
||||||
|
dest_branch=None):
|
||||||
"""Uploads the named branch for code review.
|
"""Uploads the named branch for code review.
|
||||||
"""
|
"""
|
||||||
if branch is None:
|
if branch is None:
|
||||||
@ -912,6 +927,9 @@ class Project(object):
|
|||||||
if not branch.remote.review:
|
if not branch.remote.review:
|
||||||
raise GitError('remote %s has no review url' % branch.remote.name)
|
raise GitError('remote %s has no review url' % branch.remote.name)
|
||||||
|
|
||||||
|
if dest_branch is None:
|
||||||
|
dest_branch = self.dest_branch
|
||||||
|
if dest_branch is None:
|
||||||
dest_branch = branch.merge
|
dest_branch = branch.merge
|
||||||
if not dest_branch.startswith(R_HEADS):
|
if not dest_branch.startswith(R_HEADS):
|
||||||
dest_branch = R_HEADS + dest_branch
|
dest_branch = R_HEADS + dest_branch
|
||||||
@ -946,6 +964,11 @@ class Project(object):
|
|||||||
dest_branch)
|
dest_branch)
|
||||||
if auto_topic:
|
if auto_topic:
|
||||||
ref_spec = ref_spec + '/' + branch.name
|
ref_spec = ref_spec + '/' + branch.name
|
||||||
|
if not url.startswith('ssh://'):
|
||||||
|
rp = ['r=%s' % p for p in people[0]] + \
|
||||||
|
['cc=%s' % p for p in people[1]]
|
||||||
|
if rp:
|
||||||
|
ref_spec = ref_spec + '%' + ','.join(rp)
|
||||||
cmd.append(ref_spec)
|
cmd.append(ref_spec)
|
||||||
|
|
||||||
if GitCommand(self, cmd, bare = True).Wait() != 0:
|
if GitCommand(self, cmd, bare = True).Wait() != 0:
|
||||||
@ -963,7 +986,8 @@ class Project(object):
|
|||||||
quiet=False,
|
quiet=False,
|
||||||
is_new=None,
|
is_new=None,
|
||||||
current_branch_only=False,
|
current_branch_only=False,
|
||||||
clone_bundle=True):
|
clone_bundle=True,
|
||||||
|
no_tags=False):
|
||||||
"""Perform only the network IO portion of the sync process.
|
"""Perform only the network IO portion of the sync process.
|
||||||
Local working directory/branch state is not affected.
|
Local working directory/branch state is not affected.
|
||||||
"""
|
"""
|
||||||
@ -971,6 +995,8 @@ class Project(object):
|
|||||||
is_new = not self.Exists
|
is_new = not self.Exists
|
||||||
if is_new:
|
if is_new:
|
||||||
self._InitGitDir()
|
self._InitGitDir()
|
||||||
|
else:
|
||||||
|
self._UpdateHooks()
|
||||||
self._InitRemote()
|
self._InitRemote()
|
||||||
|
|
||||||
if is_new:
|
if is_new:
|
||||||
@ -1001,7 +1027,8 @@ class Project(object):
|
|||||||
current_branch_only = True
|
current_branch_only = True
|
||||||
|
|
||||||
if not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
|
if not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
|
||||||
current_branch_only=current_branch_only):
|
current_branch_only=current_branch_only,
|
||||||
|
no_tags=no_tags):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if self.worktree:
|
if self.worktree:
|
||||||
@ -1209,7 +1236,6 @@ class Project(object):
|
|||||||
cmd = ['fetch', remote.name]
|
cmd = ['fetch', remote.name]
|
||||||
cmd.append('refs/changes/%2.2d/%d/%d' \
|
cmd.append('refs/changes/%2.2d/%d/%d' \
|
||||||
% (change_id % 100, change_id, patch_id))
|
% (change_id % 100, change_id, patch_id))
|
||||||
cmd.extend(map(str, remote.fetch))
|
|
||||||
if GitCommand(self, cmd, bare=True).Wait() != 0:
|
if GitCommand(self, cmd, bare=True).Wait() != 0:
|
||||||
return None
|
return None
|
||||||
return DownloadedChange(self,
|
return DownloadedChange(self,
|
||||||
@ -1551,7 +1577,8 @@ class Project(object):
|
|||||||
current_branch_only=False,
|
current_branch_only=False,
|
||||||
initial=False,
|
initial=False,
|
||||||
quiet=False,
|
quiet=False,
|
||||||
alt_dir=None):
|
alt_dir=None,
|
||||||
|
no_tags=False):
|
||||||
|
|
||||||
is_sha1 = False
|
is_sha1 = False
|
||||||
tag_name = None
|
tag_name = None
|
||||||
@ -1597,7 +1624,7 @@ class Project(object):
|
|||||||
ids = set(all_refs.values())
|
ids = set(all_refs.values())
|
||||||
tmp = set()
|
tmp = set()
|
||||||
|
|
||||||
for r, ref_id in GitRefs(ref_dir).all.iteritems():
|
for r, ref_id in GitRefs(ref_dir).all.items():
|
||||||
if r not in all_refs:
|
if r not in all_refs:
|
||||||
if r.startswith(R_TAGS) or remote.WritesTo(r):
|
if r.startswith(R_TAGS) or remote.WritesTo(r):
|
||||||
all_refs[r] = ref_id
|
all_refs[r] = ref_id
|
||||||
@ -1612,13 +1639,10 @@ class Project(object):
|
|||||||
ids.add(ref_id)
|
ids.add(ref_id)
|
||||||
tmp.add(r)
|
tmp.add(r)
|
||||||
|
|
||||||
ref_names = list(all_refs.keys())
|
|
||||||
ref_names.sort()
|
|
||||||
|
|
||||||
tmp_packed = ''
|
tmp_packed = ''
|
||||||
old_packed = ''
|
old_packed = ''
|
||||||
|
|
||||||
for r in ref_names:
|
for r in sorted(all_refs):
|
||||||
line = '%s %s\n' % (all_refs[r], r)
|
line = '%s %s\n' % (all_refs[r], r)
|
||||||
tmp_packed += line
|
tmp_packed += line
|
||||||
if r not in tmp:
|
if r not in tmp:
|
||||||
@ -1632,6 +1656,9 @@ class Project(object):
|
|||||||
|
|
||||||
# The --depth option only affects the initial fetch; after that we'll do
|
# The --depth option only affects the initial fetch; after that we'll do
|
||||||
# full fetches of changes.
|
# full fetches of changes.
|
||||||
|
if self.clone_depth:
|
||||||
|
depth = self.clone_depth
|
||||||
|
else:
|
||||||
depth = self.manifest.manifestProject.config.GetString('repo.depth')
|
depth = self.manifest.manifestProject.config.GetString('repo.depth')
|
||||||
if depth and initial:
|
if depth and initial:
|
||||||
cmd.append('--depth=%s' % depth)
|
cmd.append('--depth=%s' % depth)
|
||||||
@ -1644,8 +1671,13 @@ class Project(object):
|
|||||||
|
|
||||||
if not current_branch_only:
|
if not current_branch_only:
|
||||||
# Fetch whole repo
|
# Fetch whole repo
|
||||||
|
# If using depth then we should not get all the tags since they may
|
||||||
|
# be outside of the depth.
|
||||||
|
if no_tags or depth:
|
||||||
|
cmd.append('--no-tags')
|
||||||
|
else:
|
||||||
cmd.append('--tags')
|
cmd.append('--tags')
|
||||||
cmd.append((u'+refs/heads/*:') + remote.ToLocal('refs/heads/*'))
|
cmd.append(str((u'+refs/heads/*:') + remote.ToLocal('refs/heads/*')))
|
||||||
elif tag_name is not None:
|
elif tag_name is not None:
|
||||||
cmd.append('tag')
|
cmd.append('tag')
|
||||||
cmd.append(tag_name)
|
cmd.append(tag_name)
|
||||||
@ -1655,7 +1687,7 @@ class Project(object):
|
|||||||
branch = self.upstream
|
branch = self.upstream
|
||||||
if branch.startswith(R_HEADS):
|
if branch.startswith(R_HEADS):
|
||||||
branch = branch[len(R_HEADS):]
|
branch = branch[len(R_HEADS):]
|
||||||
cmd.append((u'+refs/heads/%s:' % branch) + remote.ToLocal('refs/heads/%s' % branch))
|
cmd.append(str((u'+refs/heads/%s:' % branch) + remote.ToLocal('refs/heads/%s' % branch)))
|
||||||
|
|
||||||
ok = False
|
ok = False
|
||||||
for _i in range(2):
|
for _i in range(2):
|
||||||
@ -1689,15 +1721,14 @@ class Project(object):
|
|||||||
return ok
|
return ok
|
||||||
|
|
||||||
def _ApplyCloneBundle(self, initial=False, quiet=False):
|
def _ApplyCloneBundle(self, initial=False, quiet=False):
|
||||||
if initial and self.manifest.manifestProject.config.GetString('repo.depth'):
|
if initial and (self.manifest.manifestProject.config.GetString('repo.depth') or self.clone_depth):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
remote = self.GetRemote(self.remote.name)
|
remote = self.GetRemote(self.remote.name)
|
||||||
bundle_url = remote.url + '/clone.bundle'
|
bundle_url = remote.url + '/clone.bundle'
|
||||||
bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url)
|
bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url)
|
||||||
if GetSchemeFromUrl(bundle_url) in ('persistent-http', 'persistent-https'):
|
if GetSchemeFromUrl(bundle_url) not in (
|
||||||
bundle_url = bundle_url[len('persistent-'):]
|
'http', 'https', 'persistent-http', 'persistent-https'):
|
||||||
if GetSchemeFromUrl(bundle_url) not in ('http', 'https'):
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
bundle_dst = os.path.join(self.gitdir, 'clone.bundle')
|
bundle_dst = os.path.join(self.gitdir, 'clone.bundle')
|
||||||
@ -1746,9 +1777,11 @@ class Project(object):
|
|||||||
os.remove(tmpPath)
|
os.remove(tmpPath)
|
||||||
if 'http_proxy' in os.environ and 'darwin' == sys.platform:
|
if 'http_proxy' in os.environ and 'darwin' == sys.platform:
|
||||||
cmd += ['--proxy', os.environ['http_proxy']]
|
cmd += ['--proxy', os.environ['http_proxy']]
|
||||||
cookiefile = GitConfig.ForUser().GetString('http.cookiefile')
|
cookiefile = self._GetBundleCookieFile(srcUrl)
|
||||||
if cookiefile:
|
if cookiefile:
|
||||||
cmd += ['--cookie', cookiefile]
|
cmd += ['--cookie', cookiefile]
|
||||||
|
if srcUrl.startswith('persistent-'):
|
||||||
|
srcUrl = srcUrl[len('persistent-'):]
|
||||||
cmd += [srcUrl]
|
cmd += [srcUrl]
|
||||||
|
|
||||||
if IsTrace():
|
if IsTrace():
|
||||||
@ -1771,7 +1804,7 @@ class Project(object):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if os.path.exists(tmpPath):
|
if os.path.exists(tmpPath):
|
||||||
if curlret == 0 and os.stat(tmpPath).st_size > 16:
|
if curlret == 0 and self._IsValidBundle(tmpPath):
|
||||||
os.rename(tmpPath, dstPath)
|
os.rename(tmpPath, dstPath)
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
@ -1780,6 +1813,41 @@ class Project(object):
|
|||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def _IsValidBundle(self, path):
|
||||||
|
try:
|
||||||
|
with open(path) as f:
|
||||||
|
if f.read(16) == '# v2 git bundle\n':
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
print("Invalid clone.bundle file; ignoring.", file=sys.stderr)
|
||||||
|
return False
|
||||||
|
except OSError:
|
||||||
|
return False
|
||||||
|
|
||||||
|
def _GetBundleCookieFile(self, url):
|
||||||
|
if url.startswith('persistent-'):
|
||||||
|
try:
|
||||||
|
p = subprocess.Popen(
|
||||||
|
['git-remote-persistent-https', '-print_config', url],
|
||||||
|
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
||||||
|
stderr=subprocess.PIPE)
|
||||||
|
prefix = 'http.cookiefile='
|
||||||
|
for line in p.stdout:
|
||||||
|
line = line.strip()
|
||||||
|
if line.startswith(prefix):
|
||||||
|
return line[len(prefix):]
|
||||||
|
if p.wait():
|
||||||
|
line = iter(p.stderr).next()
|
||||||
|
if ' -print_config' in line:
|
||||||
|
pass # Persistent proxy doesn't support -print_config.
|
||||||
|
else:
|
||||||
|
print(line + p.stderr.read(), file=sys.stderr)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno == errno.ENOENT:
|
||||||
|
pass # No persistent proxy.
|
||||||
|
raise
|
||||||
|
return GitConfig.ForUser().GetString('http.cookiefile')
|
||||||
|
|
||||||
def _Checkout(self, rev, quiet=False):
|
def _Checkout(self, rev, quiet=False):
|
||||||
cmd = ['checkout']
|
cmd = ['checkout']
|
||||||
if quiet:
|
if quiet:
|
||||||
@ -1830,15 +1898,16 @@ class Project(object):
|
|||||||
if GitCommand(self, cmd).Wait() != 0:
|
if GitCommand(self, cmd).Wait() != 0:
|
||||||
raise GitError('%s merge %s ' % (self.name, head))
|
raise GitError('%s merge %s ' % (self.name, head))
|
||||||
|
|
||||||
def _InitGitDir(self):
|
def _InitGitDir(self, mirror_git=None):
|
||||||
if not os.path.exists(self.gitdir):
|
if not os.path.exists(self.gitdir):
|
||||||
os.makedirs(self.gitdir)
|
os.makedirs(self.gitdir)
|
||||||
self.bare_git.init()
|
self.bare_git.init()
|
||||||
|
|
||||||
mp = self.manifest.manifestProject
|
mp = self.manifest.manifestProject
|
||||||
ref_dir = mp.config.GetString('repo.reference')
|
ref_dir = mp.config.GetString('repo.reference') or ''
|
||||||
|
|
||||||
if ref_dir:
|
if ref_dir or mirror_git:
|
||||||
|
if not mirror_git:
|
||||||
mirror_git = os.path.join(ref_dir, self.name + '.git')
|
mirror_git = os.path.join(ref_dir, self.name + '.git')
|
||||||
repo_git = os.path.join(ref_dir, '.repo', 'projects',
|
repo_git = os.path.join(ref_dir, '.repo', 'projects',
|
||||||
self.relpath + '.git')
|
self.relpath + '.git')
|
||||||
@ -1856,11 +1925,21 @@ class Project(object):
|
|||||||
_lwrite(os.path.join(self.gitdir, 'objects/info/alternates'),
|
_lwrite(os.path.join(self.gitdir, 'objects/info/alternates'),
|
||||||
os.path.join(ref_dir, 'objects') + '\n')
|
os.path.join(ref_dir, 'objects') + '\n')
|
||||||
|
|
||||||
|
self._UpdateHooks()
|
||||||
|
|
||||||
|
m = self.manifest.manifestProject.config
|
||||||
|
for key in ['user.name', 'user.email']:
|
||||||
|
if m.Has(key, include_defaults = False):
|
||||||
|
self.config.SetString(key, m.GetString(key))
|
||||||
if self.manifest.IsMirror:
|
if self.manifest.IsMirror:
|
||||||
self.config.SetString('core.bare', 'true')
|
self.config.SetString('core.bare', 'true')
|
||||||
else:
|
else:
|
||||||
self.config.SetString('core.bare', None)
|
self.config.SetString('core.bare', None)
|
||||||
|
|
||||||
|
def _UpdateHooks(self):
|
||||||
|
if os.path.exists(self.gitdir):
|
||||||
|
# Always recreate hooks since they can have been changed
|
||||||
|
# since the latest update.
|
||||||
hooks = self._gitdir_path('hooks')
|
hooks = self._gitdir_path('hooks')
|
||||||
try:
|
try:
|
||||||
to_rm = os.listdir(hooks)
|
to_rm = os.listdir(hooks)
|
||||||
@ -1870,11 +1949,6 @@ class Project(object):
|
|||||||
os.remove(os.path.join(hooks, old_hook))
|
os.remove(os.path.join(hooks, old_hook))
|
||||||
self._InitHooks()
|
self._InitHooks()
|
||||||
|
|
||||||
m = self.manifest.manifestProject.config
|
|
||||||
for key in ['user.name', 'user.email']:
|
|
||||||
if m.Has(key, include_defaults = False):
|
|
||||||
self.config.SetString(key, m.GetString(key))
|
|
||||||
|
|
||||||
def _InitHooks(self):
|
def _InitHooks(self):
|
||||||
hooks = self._gitdir_path('hooks')
|
hooks = self._gitdir_path('hooks')
|
||||||
if not os.path.exists(hooks):
|
if not os.path.exists(hooks):
|
||||||
@ -2081,6 +2155,10 @@ class Project(object):
|
|||||||
line = fd.read()
|
line = fd.read()
|
||||||
finally:
|
finally:
|
||||||
fd.close()
|
fd.close()
|
||||||
|
try:
|
||||||
|
line = line.decode()
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
if line.startswith('ref: '):
|
if line.startswith('ref: '):
|
||||||
return line[5:-1]
|
return line[5:-1]
|
||||||
return line[:-1]
|
return line[:-1]
|
||||||
@ -2174,7 +2252,7 @@ class Project(object):
|
|||||||
if not git_require((1, 7, 2)):
|
if not git_require((1, 7, 2)):
|
||||||
raise ValueError('cannot set config on command line for %s()'
|
raise ValueError('cannot set config on command line for %s()'
|
||||||
% name)
|
% name)
|
||||||
for k, v in config.iteritems():
|
for k, v in config.items():
|
||||||
cmdv.append('-c')
|
cmdv.append('-c')
|
||||||
cmdv.append('%s=%s' % (k, v))
|
cmdv.append('%s=%s' % (k, v))
|
||||||
cmdv.append(name)
|
cmdv.append(name)
|
||||||
@ -2190,6 +2268,10 @@ class Project(object):
|
|||||||
name,
|
name,
|
||||||
p.stderr))
|
p.stderr))
|
||||||
r = p.stdout
|
r = p.stdout
|
||||||
|
try:
|
||||||
|
r = r.decode()
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
if r.endswith('\n') and r.index('\n') == len(r) - 1:
|
if r.endswith('\n') and r.index('\n') == len(r) - 1:
|
||||||
return r[:-1]
|
return r[:-1]
|
||||||
return r
|
return r
|
||||||
|
19
pyversion.py
Normal file
19
pyversion.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2013 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.
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
def is_python3():
|
||||||
|
return sys.version_info[0] == 3
|
81
repo
81
repo
@ -21,10 +21,10 @@ REPO_REV = 'stable'
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# increment this whenever we make important changes to this script
|
# increment this whenever we make important changes to this script
|
||||||
VERSION = (1, 19)
|
VERSION = (1, 20)
|
||||||
|
|
||||||
# increment this if the MAINTAINER_KEYS block is modified
|
# increment this if the MAINTAINER_KEYS block is modified
|
||||||
KEYRING_VERSION = (1, 1)
|
KEYRING_VERSION = (1, 2)
|
||||||
MAINTAINER_KEYS = """
|
MAINTAINER_KEYS = """
|
||||||
|
|
||||||
Repo Maintainer <repo@android.kernel.org>
|
Repo Maintainer <repo@android.kernel.org>
|
||||||
@ -73,32 +73,32 @@ TACbBS+Up3RpfYVfd63c1cDdlru13pQAn3NQy/SN858MkxN+zym86UBgOad2
|
|||||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
Version: GnuPG v1.4.11 (GNU/Linux)
|
Version: GnuPG v1.4.11 (GNU/Linux)
|
||||||
|
|
||||||
mQENBFBiLPwBCACvISTASOgFXwADw2GYRH2I2z9RvYkYoZ6ThTTNlMXbbYYKO2Wo
|
mQENBFHRvc8BCADFg45Xx/y6QDC+T7Y/gGc7vx0ww7qfOwIKlAZ9xG3qKunMxo+S
|
||||||
a9LQDNW0TbCEekg5UKk0FD13XOdWaqUt4Gtuvq9c43GRSjMO6NXH+0BjcQ8vUtY2
|
hPCnzEl3cq+6I1Ww/ndop/HB3N3toPXRCoN8Vs4/Hc7by+SnaLFnacrm+tV5/OgT
|
||||||
/W4CYUevwdo4nQ1+1zsOCu1XYe/CReXq0fdugv3hgmRmh3sz1soo37Q44W2frxxg
|
V37Lzt8lhay1Kl+YfpFwHYYpIEBLFV9knyfRXS/428W2qhdzYfvB15/AasRmwmor
|
||||||
U7Rz3Da4FjgAL0RQ8qndD+LwRHXTY7H7wYM8V/3cYFZV7pSodd75q3MAXYQLf0ZV
|
py4NIzSs8UD/SPr1ihqNCdZM76+MQyN5HMYXW/ALZXUFG0pwluHFA7hrfPG74i8C
|
||||||
QR1XATu5l1QnXrxgHvz7MmDwb1D+jX3YPKnZveaukigQ6hDHdiVcePBiGXmk8LZC
|
zMiP7qvMWIl/r/jtzHioH1dRKgbod+LZsrDJ8mBaqsZaDmNJMhss9g76XvfMyLra
|
||||||
2jQkdXeF7Su1ZYpr2nnEHLJ6vOLcCpPGb8gDABEBAAG0H0NvbmxleSBPd2VucyA8
|
9DI9/iFuBpGzeqBv0hwOGQspLRrEoyTeR6n1ABEBAAG0H0NvbmxleSBPd2VucyA8
|
||||||
Y2NvM0BhbmRyb2lkLmNvbT6JATgEEwECACIFAlBiLPwCGwMGCwkIBwMCBhUIAgkK
|
Y2NvM0BhbmRyb2lkLmNvbT6JATgEEwECACIFAlHRvc8CGwMGCwkIBwMCBhUIAgkK
|
||||||
CwQWAgMBAh4BAheAAAoJEBkmlFUziHGkHVkH/2Hks2Cif5i2xPtv2IFZcjL42joU
|
CwQWAgMBAh4BAheAAAoJEGe35EhpKzgsP6AIAJKJmNtn4l7hkYHKHFSo3egb6RjQ
|
||||||
T7lO5XFqUYS9ZNHpGa/V0eiPt7rHoO16glR83NZtwlrq2cSN89i9HfOhMYV/qLu8
|
zEIP3MFTcu8HFX1kF1ZFbrp7xqurLaE53kEkKuAAvjJDAgI8mcZHP1JyplubqjQA
|
||||||
fLCHcV2muw+yCB5s5bxnI5UkToiNZyBNqFkcOt/Kbj9Hpy68A1kmc6myVEaUYebq
|
xvv84gK+OGP3Xk+QK1ZjUQSbjOpjEiSZpRhWcHci3dgOUH4blJfByHw25hlgHowd
|
||||||
2Chx/f3xuEthan099t746v1K+/6SvQGDNctHuaMr9cWdxZtHjdRf31SQRc99Phe5
|
a/2PrNKZVcJ92YienaxxGjcXEUcd0uYEG2+rwllQigFcnMFDhr9B71MfalRHjFKE
|
||||||
w+ZGR/ebxNDKRK9mKgZT8wVFHlXerJsRqWIqtx1fsW1UgLgbpcpe2MChm6B5wTu0
|
fmdoypqLrri61YBc59P88Rw2/WUpTQjgNubSqa3A2+CKdaRyaRw+2fdF4TdR0h8W
|
||||||
s1ltzox3l4q71FyRRPUJxXyvGkDLZWpK7EpiHSCOYq/KP3HkKeXU3xqHpcG5AQ0E
|
zbg+lbaPtJHsV+3mJC7fq26MiJDRJa5ZztpMn8su20gbLgi2ShBOaHAYDDi5AQ0E
|
||||||
UGIs/AEIAKzO/7lO9cB6dshmZYo8Vy/b7aGicThE+ChcDSfhvyOXVdEM2GKAjsR+
|
UdG9zwEIAMoOBq+QLNozAhxOOl5GL3StTStGRgPRXINfmViTsihrqGCWBBUfXlUE
|
||||||
rlBWbTFX3It301p2HwZPFEi9nEvJxVlqqBiW0bPmNMkDRR55l2vbWg35wwkg6RyE
|
OytC0mYcrDUQev/8ToVoyqw+iGSwDkcSXkrEUCKFtHV/GECWtk1keyHgR10YKI1R
|
||||||
Bc5/TQjhXI2w8IvlimoGoUff4t3JmMOnWrnKSvL+5iuRj12p9WmanCHzw3Ee7ztf
|
mquSXoubWGqPeG1PAI74XWaRx8UrL8uCXUtmD8Q5J7mDjKR5NpxaXrwlA0bKsf2E
|
||||||
/aU/q+FTpr3DLerb6S8xbv86ySgnJT6o5CyL2DCWRtnYQyGVi0ZmLzEouAYiO0hs
|
Gp9tu1kKauuToZhWHMRMqYSOGikQJwWSFYKT1KdNcOXLQF6+bfoJ6sjVYdwfmNQL
|
||||||
z0AAu28Mj+12g2WwePRz6gfM9rHtI37ylYW3oT/9M9mO9ei/Bc/1D7Dz6qNV+0vg
|
Ixn8QVhoTDedcqClSWB17VDEFDFa7MmqXZz2qtM3X1R/MUMHqPtegQzBGNhRdnI2
|
||||||
uSVJxM2Bl6GalHPZLhHntFEdIA6EdoUAEQEAAYkBHwQYAQIACQUCUGIs/AIbDAAK
|
V45+1Nnx/uuCxDbeI4RbHzujnxDiq70AEQEAAYkBHwQYAQIACQUCUdG9zwIbDAAK
|
||||||
CRAZJpRVM4hxpNfkB/0W/hP5WK/NETXBlWXXW7JPaWO2c5kGwD0lnj5RRmridyo1
|
CRBnt+RIaSs4LNVeB/0Y2pZ8I7gAAcEM0Xw8drr4omg2fUoK1J33ozlA/RxeA/lJ
|
||||||
vbm5PdM91jOsDQYqRu6YOoYBnDnEhB2wL2bPh34HWwwrA+LwB8hlcAV2z1bdwyfl
|
I3KnyCDTpXuIeBKPGkdL8uMATC9Z8DnBBajRlftNDVZS3Hz4G09G9QpMojvJkFJV
|
||||||
3R823fReKN3QcvLHzmvZPrF4Rk97M9UIyKS0RtnfTWykRgDWHIsrtQPoNwsXrWoT
|
By+01Flw/X+eeN8NpqSuLV4W+AjEO8at/VvgKr1AFvBRdZ7GkpI1o6DgPe7ZqX+1
|
||||||
9LrM2v+1+9mp3vuXnE473/NHxmiWEQH9Ez+O/mOxQ7rSOlqGRiKq/IBZCfioJOtV
|
dzQZt3e13W0rVBb/bUgx9iSLoeWP3aq/k+/GRGOR+S6F6BBSl0SQ2EF2+dIywb1x
|
||||||
fTQeIu/yASZnsLBqr6SJEGwYBoWcyjG++k4fyw8ocOAo4uGDYbxgN7yYfNQ0OH7o
|
JuinEP+AwLAUZ1Bsx9ISC0Agpk2VeHXPL3FGhroEmoMvBzO0kTFGyoeT7PR/BfKv
|
||||||
V6pfUgqKLWa/aK7/N1ZHnPdFLD8Xt0Dmy4BPwrKC
|
+H/g3HsL2LOB9uoIm8/5p2TTU5ttYCXMHhQZ81AY
|
||||||
=O7am
|
=AUp4
|
||||||
-----END PGP PUBLIC KEY BLOCK-----
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -108,6 +108,7 @@ repodir = '.repo' # name of repo's private directory
|
|||||||
S_repo = 'repo' # special repo repository
|
S_repo = 'repo' # special repo repository
|
||||||
S_manifests = 'manifests' # special manifest repository
|
S_manifests = 'manifests' # special manifest repository
|
||||||
REPO_MAIN = S_repo + '/main.py' # main script
|
REPO_MAIN = S_repo + '/main.py' # main script
|
||||||
|
MIN_PYTHON_VERSION = (2, 6) # minimum supported python version
|
||||||
|
|
||||||
|
|
||||||
import optparse
|
import optparse
|
||||||
@ -116,19 +117,30 @@ import re
|
|||||||
import stat
|
import stat
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
try:
|
|
||||||
import urllib2
|
if sys.version_info[0] == 3:
|
||||||
except ImportError:
|
|
||||||
# For python3
|
|
||||||
import urllib.request
|
import urllib.request
|
||||||
import urllib.error
|
import urllib.error
|
||||||
else:
|
else:
|
||||||
# For python2
|
|
||||||
import imp
|
import imp
|
||||||
|
import urllib2
|
||||||
urllib = imp.new_module('urllib')
|
urllib = imp.new_module('urllib')
|
||||||
urllib.request = urllib2
|
urllib.request = urllib2
|
||||||
urllib.error = urllib2
|
urllib.error = urllib2
|
||||||
|
|
||||||
|
# Python version check
|
||||||
|
ver = sys.version_info
|
||||||
|
if ver[0] == 3:
|
||||||
|
print('error: Python 3 support is not fully implemented in repo yet.\n'
|
||||||
|
'Please use Python 2.6 - 2.7 instead.',
|
||||||
|
file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
if (ver[0], ver[1]) < MIN_PYTHON_VERSION:
|
||||||
|
print('error: Python version %s unsupported.\n'
|
||||||
|
'Please use Python 2.6 - 2.7 instead.'
|
||||||
|
% sys.version.split(' ')[0], file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
home_dot_repo = os.path.expanduser('~/.repoconfig')
|
home_dot_repo = os.path.expanduser('~/.repoconfig')
|
||||||
gpg_dir = os.path.join(home_dot_repo, 'gnupg')
|
gpg_dir = os.path.join(home_dot_repo, 'gnupg')
|
||||||
|
|
||||||
@ -164,7 +176,8 @@ group.add_option('--depth', type='int', default=None,
|
|||||||
help='create a shallow clone with given depth; see git clone')
|
help='create a shallow clone with given depth; see git clone')
|
||||||
group.add_option('-g', '--groups',
|
group.add_option('-g', '--groups',
|
||||||
dest='groups', default='default',
|
dest='groups', default='default',
|
||||||
help='restrict manifest projects to ones with a specified group',
|
help='restrict manifest projects to ones with specified '
|
||||||
|
'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
|
||||||
metavar='GROUP')
|
metavar='GROUP')
|
||||||
group.add_option('-p', '--platform',
|
group.add_option('-p', '--platform',
|
||||||
dest='platform', default="auto",
|
dest='platform', default="auto",
|
||||||
|
@ -38,8 +38,8 @@ for py in os.listdir(my_dir):
|
|||||||
try:
|
try:
|
||||||
cmd = getattr(mod, clsn)()
|
cmd = getattr(mod, clsn)()
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
raise SyntaxError, '%s/%s does not define class %s' % (
|
raise SyntaxError('%s/%s does not define class %s' % (
|
||||||
__name__, py, clsn)
|
__name__, py, clsn))
|
||||||
|
|
||||||
name = name.replace('_', '-')
|
name = name.replace('_', '-')
|
||||||
cmd.NAME = name
|
cmd.NAME = name
|
||||||
|
@ -98,14 +98,13 @@ is shown, then the branch appears in all projects.
|
|||||||
project_cnt = len(projects)
|
project_cnt = len(projects)
|
||||||
|
|
||||||
for project in projects:
|
for project in projects:
|
||||||
for name, b in project.GetBranches().iteritems():
|
for name, b in project.GetBranches().items():
|
||||||
b.project = project
|
b.project = project
|
||||||
if name not in all_branches:
|
if name not in all_branches:
|
||||||
all_branches[name] = BranchInfo(name)
|
all_branches[name] = BranchInfo(name)
|
||||||
all_branches[name].add(b)
|
all_branches[name].add(b)
|
||||||
|
|
||||||
names = all_branches.keys()
|
names = list(sorted(all_branches))
|
||||||
names.sort()
|
|
||||||
|
|
||||||
if not names:
|
if not names:
|
||||||
print(' (no branches)', file=sys.stderr)
|
print(' (no branches)', file=sys.stderr)
|
||||||
|
@ -83,8 +83,8 @@ change id will be added.
|
|||||||
else:
|
else:
|
||||||
print('NOTE: When committing (please see above) and editing the commit '
|
print('NOTE: When committing (please see above) and editing the commit '
|
||||||
'message, please remove the old Change-Id-line and add:')
|
'message, please remove the old Change-Id-line and add:')
|
||||||
print(self._GetReference(sha1), file=stderr)
|
print(self._GetReference(sha1), file=sys.stderr)
|
||||||
print(file=stderr)
|
print(file=sys.stderr)
|
||||||
|
|
||||||
def _IsChangeId(self, line):
|
def _IsChangeId(self, line):
|
||||||
return CHANGE_ID_RE.match(line)
|
return CHANGE_ID_RE.match(line)
|
||||||
|
@ -42,10 +42,14 @@ class Forall(Command, MirrorSafeCommand):
|
|||||||
helpSummary = "Run a shell command in each project"
|
helpSummary = "Run a shell command in each project"
|
||||||
helpUsage = """
|
helpUsage = """
|
||||||
%prog [<project>...] -c <command> [<arg>...]
|
%prog [<project>...] -c <command> [<arg>...]
|
||||||
|
%prog -r str1 [str2] ... -c <command> [<arg>...]"
|
||||||
"""
|
"""
|
||||||
helpDescription = """
|
helpDescription = """
|
||||||
Executes the same shell command in each project.
|
Executes the same shell command in each project.
|
||||||
|
|
||||||
|
The -r option allows running the command only on projects matching
|
||||||
|
regex or wildcard expression.
|
||||||
|
|
||||||
Output Formatting
|
Output Formatting
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
@ -103,6 +107,9 @@ without iterating through the remaining projects.
|
|||||||
setattr(parser.values, option.dest, list(parser.rargs))
|
setattr(parser.values, option.dest, list(parser.rargs))
|
||||||
while parser.rargs:
|
while parser.rargs:
|
||||||
del parser.rargs[0]
|
del parser.rargs[0]
|
||||||
|
p.add_option('-r', '--regex',
|
||||||
|
dest='regex', action='store_true',
|
||||||
|
help="Execute the command only on projects matching regex or wildcard expression")
|
||||||
p.add_option('-c', '--command',
|
p.add_option('-c', '--command',
|
||||||
help='Command (and arguments) to execute',
|
help='Command (and arguments) to execute',
|
||||||
dest='command',
|
dest='command',
|
||||||
@ -166,7 +173,12 @@ without iterating through the remaining projects.
|
|||||||
rc = 0
|
rc = 0
|
||||||
first = True
|
first = True
|
||||||
|
|
||||||
for project in self.GetProjects(args):
|
if not opt.regex:
|
||||||
|
projects = self.GetProjects(args)
|
||||||
|
else:
|
||||||
|
projects = self.FindProjects(args)
|
||||||
|
|
||||||
|
for project in projects:
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
def setenv(name, val):
|
def setenv(name, val):
|
||||||
if val is None:
|
if val is None:
|
||||||
@ -248,7 +260,12 @@ without iterating through the remaining projects.
|
|||||||
first = False
|
first = False
|
||||||
else:
|
else:
|
||||||
out.nl()
|
out.nl()
|
||||||
out.project('project %s/', project.relpath)
|
|
||||||
|
if mirror:
|
||||||
|
project_header_path = project.name
|
||||||
|
else:
|
||||||
|
project_header_path = project.relpath
|
||||||
|
out.project('project %s/', project_header_path)
|
||||||
out.nl()
|
out.nl()
|
||||||
out.flush()
|
out.flush()
|
||||||
if errbuf:
|
if errbuf:
|
||||||
|
@ -34,8 +34,7 @@ Displays detailed usage information about a command.
|
|||||||
def _PrintAllCommands(self):
|
def _PrintAllCommands(self):
|
||||||
print('usage: repo COMMAND [ARGS]')
|
print('usage: repo COMMAND [ARGS]')
|
||||||
print('The complete list of recognized repo commands are:')
|
print('The complete list of recognized repo commands are:')
|
||||||
commandNames = self.commands.keys()
|
commandNames = list(sorted(self.commands))
|
||||||
commandNames.sort()
|
|
||||||
|
|
||||||
maxlen = 0
|
maxlen = 0
|
||||||
for name in commandNames:
|
for name in commandNames:
|
||||||
@ -55,10 +54,9 @@ Displays detailed usage information about a command.
|
|||||||
def _PrintCommonCommands(self):
|
def _PrintCommonCommands(self):
|
||||||
print('usage: repo COMMAND [ARGS]')
|
print('usage: repo COMMAND [ARGS]')
|
||||||
print('The most commonly used repo commands are:')
|
print('The most commonly used repo commands are:')
|
||||||
commandNames = [name
|
commandNames = list(sorted([name
|
||||||
for name in self.commands.keys()
|
for name, command in self.commands.items()
|
||||||
if self.commands[name].common]
|
if command.common]))
|
||||||
commandNames.sort()
|
|
||||||
|
|
||||||
maxlen = 0
|
maxlen = 0
|
||||||
for name in commandNames:
|
for name in commandNames:
|
||||||
|
@ -27,7 +27,7 @@ class Info(PagedCommand):
|
|||||||
helpSummary = "Get info on the manifest branch, current branch or unmerged branches"
|
helpSummary = "Get info on the manifest branch, current branch or unmerged branches"
|
||||||
helpUsage = "%prog [-dl] [-o [-b]] [<project>...]"
|
helpUsage = "%prog [-dl] [-o [-b]] [<project>...]"
|
||||||
|
|
||||||
def _Options(self, p, show_smart=True):
|
def _Options(self, p):
|
||||||
p.add_option('-d', '--diff',
|
p.add_option('-d', '--diff',
|
||||||
dest='all', action='store_true',
|
dest='all', action='store_true',
|
||||||
help="show full info and commit diff including remote branches")
|
help="show full info and commit diff including remote branches")
|
||||||
@ -48,12 +48,15 @@ class Info(PagedCommand):
|
|||||||
self.headtext = self.out.printer('headtext', fg = 'yellow')
|
self.headtext = self.out.printer('headtext', fg = 'yellow')
|
||||||
self.redtext = self.out.printer('redtext', fg = 'red')
|
self.redtext = self.out.printer('redtext', fg = 'red')
|
||||||
self.sha = self.out.printer("sha", fg = 'yellow')
|
self.sha = self.out.printer("sha", fg = 'yellow')
|
||||||
self.text = self.out.printer('text')
|
self.text = self.out.nofmt_printer('text')
|
||||||
self.dimtext = self.out.printer('dimtext', attr = 'dim')
|
self.dimtext = self.out.printer('dimtext', attr = 'dim')
|
||||||
|
|
||||||
self.opt = opt
|
self.opt = opt
|
||||||
|
|
||||||
mergeBranch = self.manifest.manifestProject.config.GetBranch("default").merge
|
manifestConfig = self.manifest.manifestProject.config
|
||||||
|
mergeBranch = manifestConfig.GetBranch("default").merge
|
||||||
|
manifestGroups = (manifestConfig.GetString('manifest.groups')
|
||||||
|
or 'all,-notdefault')
|
||||||
|
|
||||||
self.heading("Manifest branch: ")
|
self.heading("Manifest branch: ")
|
||||||
self.headtext(self.manifest.default.revisionExpr)
|
self.headtext(self.manifest.default.revisionExpr)
|
||||||
@ -61,6 +64,9 @@ class Info(PagedCommand):
|
|||||||
self.heading("Manifest merge branch: ")
|
self.heading("Manifest merge branch: ")
|
||||||
self.headtext(mergeBranch)
|
self.headtext(mergeBranch)
|
||||||
self.out.nl()
|
self.out.nl()
|
||||||
|
self.heading("Manifest groups: ")
|
||||||
|
self.headtext(manifestGroups)
|
||||||
|
self.out.nl()
|
||||||
|
|
||||||
self.printSeparator()
|
self.printSeparator()
|
||||||
|
|
||||||
@ -157,7 +163,7 @@ class Info(PagedCommand):
|
|||||||
all_branches = []
|
all_branches = []
|
||||||
for project in self.GetProjects(args):
|
for project in self.GetProjects(args):
|
||||||
br = [project.GetUploadableBranch(x)
|
br = [project.GetUploadableBranch(x)
|
||||||
for x in project.GetBranches().keys()]
|
for x in project.GetBranches()]
|
||||||
br = [x for x in br if x]
|
br = [x for x in br if x]
|
||||||
if self.opt.current_branch:
|
if self.opt.current_branch:
|
||||||
br = [x for x in br if x.name == project.CurrentBranch]
|
br = [x for x in br if x.name == project.CurrentBranch]
|
||||||
|
@ -20,6 +20,15 @@ import re
|
|||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
|
if is_python3():
|
||||||
|
import urllib.parse
|
||||||
|
else:
|
||||||
|
import imp
|
||||||
|
import urlparse
|
||||||
|
urllib = imp.new_module('urllib')
|
||||||
|
urllib.parse = urlparse.urlparse
|
||||||
|
|
||||||
from color import Coloring
|
from color import Coloring
|
||||||
from command import InteractiveCommand, MirrorSafeCommand
|
from command import InteractiveCommand, MirrorSafeCommand
|
||||||
from error import ManifestParseError
|
from error import ManifestParseError
|
||||||
@ -91,8 +100,9 @@ to update the working directory files.
|
|||||||
dest='depth',
|
dest='depth',
|
||||||
help='create a shallow clone with given depth; see git clone')
|
help='create a shallow clone with given depth; see git clone')
|
||||||
g.add_option('-g', '--groups',
|
g.add_option('-g', '--groups',
|
||||||
dest='groups', default='all,-notdefault',
|
dest='groups', default='default',
|
||||||
help='restrict manifest projects to ones with a specified group',
|
help='restrict manifest projects to ones with specified '
|
||||||
|
'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
|
||||||
metavar='GROUP')
|
metavar='GROUP')
|
||||||
g.add_option('-p', '--platform',
|
g.add_option('-p', '--platform',
|
||||||
dest='platform', default='auto',
|
dest='platform', default='auto',
|
||||||
@ -134,7 +144,19 @@ to update the working directory files.
|
|||||||
if not opt.quiet:
|
if not opt.quiet:
|
||||||
print('Get %s' % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),
|
print('Get %s' % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
m._InitGitDir()
|
|
||||||
|
# The manifest project object doesn't keep track of the path on the
|
||||||
|
# server where this git is located, so let's save that here.
|
||||||
|
mirrored_manifest_git = None
|
||||||
|
if opt.reference:
|
||||||
|
manifest_git_path = urllib.parse(opt.manifest_url).path[1:]
|
||||||
|
mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
|
||||||
|
if not mirrored_manifest_git.endswith(".git"):
|
||||||
|
mirrored_manifest_git += ".git"
|
||||||
|
if not os.path.exists(mirrored_manifest_git):
|
||||||
|
mirrored_manifest_git = os.path.join(opt.reference + '/.repo/manifests.git')
|
||||||
|
|
||||||
|
m._InitGitDir(mirror_git=mirrored_manifest_git)
|
||||||
|
|
||||||
if opt.manifest_branch:
|
if opt.manifest_branch:
|
||||||
m.revisionExpr = opt.manifest_branch
|
m.revisionExpr = opt.manifest_branch
|
||||||
@ -169,7 +191,7 @@ to update the working directory files.
|
|||||||
|
|
||||||
groups = [x for x in groups if x]
|
groups = [x for x in groups if x]
|
||||||
groupstr = ','.join(groups)
|
groupstr = ','.join(groups)
|
||||||
if opt.platform == 'auto' and groupstr == 'all,-notdefault,platform-' + platform.system().lower():
|
if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower():
|
||||||
groupstr = None
|
groupstr = None
|
||||||
m.config.SetString('manifest.groups', groupstr)
|
m.config.SetString('manifest.groups', groupstr)
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import re
|
import sys
|
||||||
|
|
||||||
from command import Command, MirrorSafeCommand
|
from command import Command, MirrorSafeCommand
|
||||||
|
|
||||||
@ -31,13 +31,19 @@ List all projects; pass '.' to list the project for the cwd.
|
|||||||
This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def _Options(self, p, show_smart=True):
|
def _Options(self, p):
|
||||||
p.add_option('-r', '--regex',
|
p.add_option('-r', '--regex',
|
||||||
dest='regex', action='store_true',
|
dest='regex', action='store_true',
|
||||||
help="Filter the project list based on regex or wildcard matching of strings")
|
help="Filter the project list based on regex or wildcard matching of strings")
|
||||||
p.add_option('-f', '--fullpath',
|
p.add_option('-f', '--fullpath',
|
||||||
dest='fullpath', action='store_true',
|
dest='fullpath', action='store_true',
|
||||||
help="Display the full work tree path instead of the relative path")
|
help="Display the full work tree path instead of the relative path")
|
||||||
|
p.add_option('-n', '--name-only',
|
||||||
|
dest='name_only', action='store_true',
|
||||||
|
help="Display only the name of the repository")
|
||||||
|
p.add_option('-p', '--path-only',
|
||||||
|
dest='path_only', action='store_true',
|
||||||
|
help="Display only the path of the repository")
|
||||||
|
|
||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
"""List all projects and the associated directories.
|
"""List all projects and the associated directories.
|
||||||
@ -50,6 +56,11 @@ This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
|||||||
opt: The options.
|
opt: The options.
|
||||||
args: Positional args. Can be a list of projects to list, or empty.
|
args: Positional args. Can be a list of projects to list, or empty.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if opt.fullpath and opt.name_only:
|
||||||
|
print('error: cannot combine -f and -n', file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
if not opt.regex:
|
if not opt.regex:
|
||||||
projects = self.GetProjects(args)
|
projects = self.GetProjects(args)
|
||||||
else:
|
else:
|
||||||
@ -62,18 +73,12 @@ This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
|||||||
|
|
||||||
lines = []
|
lines = []
|
||||||
for project in projects:
|
for project in projects:
|
||||||
|
if opt.name_only and not opt.path_only:
|
||||||
|
lines.append("%s" % ( project.name))
|
||||||
|
elif opt.path_only and not opt.name_only:
|
||||||
|
lines.append("%s" % (_getpath(project)))
|
||||||
|
else:
|
||||||
lines.append("%s : %s" % (_getpath(project), project.name))
|
lines.append("%s : %s" % (_getpath(project), project.name))
|
||||||
|
|
||||||
lines.sort()
|
lines.sort()
|
||||||
print('\n'.join(lines))
|
print('\n'.join(lines))
|
||||||
|
|
||||||
def FindProjects(self, args):
|
|
||||||
result = []
|
|
||||||
for project in self.GetProjects(''):
|
|
||||||
for arg in args:
|
|
||||||
pattern = re.compile(r'%s' % arg, re.IGNORECASE)
|
|
||||||
if pattern.search(project.name) or pattern.search(project.relpath):
|
|
||||||
result.append(project)
|
|
||||||
break
|
|
||||||
result.sort(key=lambda project: project.relpath)
|
|
||||||
return result
|
|
||||||
|
@ -42,7 +42,7 @@ are displayed.
|
|||||||
all_branches = []
|
all_branches = []
|
||||||
for project in self.GetProjects(args):
|
for project in self.GetProjects(args):
|
||||||
br = [project.GetUploadableBranch(x)
|
br = [project.GetUploadableBranch(x)
|
||||||
for x in project.GetBranches().keys()]
|
for x in project.GetBranches()]
|
||||||
br = [x for x in br if x]
|
br = [x for x in br if x]
|
||||||
if opt.current_branch:
|
if opt.current_branch:
|
||||||
br = [x for x in br if x.name == project.CurrentBranch]
|
br = [x for x in br if x.name == project.CurrentBranch]
|
||||||
|
@ -68,7 +68,7 @@ branch but need to incorporate new upstream changes "underneath" them.
|
|||||||
cb = project.CurrentBranch
|
cb = project.CurrentBranch
|
||||||
if not cb:
|
if not cb:
|
||||||
if one_project:
|
if one_project:
|
||||||
print("error: project %s has a detatched HEAD" % project.relpath,
|
print("error: project %s has a detached HEAD" % project.relpath,
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
return -1
|
return -1
|
||||||
# ignore branches with detatched HEADs
|
# ignore branches with detatched HEADs
|
||||||
|
@ -49,7 +49,7 @@ The '%prog' command stages files to prepare the next commit.
|
|||||||
self.Usage()
|
self.Usage()
|
||||||
|
|
||||||
def _Interactive(self, opt, args):
|
def _Interactive(self, opt, args):
|
||||||
all_projects = filter(lambda x: x.IsDirty(), self.GetProjects(args))
|
all_projects = [p for p in self.GetProjects(args) if p.IsDirty()]
|
||||||
if not all_projects:
|
if not all_projects:
|
||||||
print('no projects have uncommitted modifications', file=sys.stderr)
|
print('no projects have uncommitted modifications', file=sys.stderr)
|
||||||
return
|
return
|
||||||
@ -98,9 +98,9 @@ The '%prog' command stages files to prepare the next commit.
|
|||||||
_AddI(all_projects[a_index - 1])
|
_AddI(all_projects[a_index - 1])
|
||||||
continue
|
continue
|
||||||
|
|
||||||
p = filter(lambda x: x.name == a or x.relpath == a, all_projects)
|
projects = [p for p in all_projects if a in [p.name, p.relpath]]
|
||||||
if len(p) == 1:
|
if len(projects) == 1:
|
||||||
_AddI(p[0])
|
_AddI(projects[0])
|
||||||
continue
|
continue
|
||||||
print('Bye.')
|
print('Bye.')
|
||||||
|
|
||||||
|
@ -21,10 +21,16 @@ except ImportError:
|
|||||||
import dummy_threading as _threading
|
import dummy_threading as _threading
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
|
if is_python3():
|
||||||
|
import io
|
||||||
|
else:
|
||||||
|
import StringIO as io
|
||||||
|
|
||||||
import itertools
|
import itertools
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import StringIO
|
|
||||||
|
|
||||||
from color import Coloring
|
from color import Coloring
|
||||||
|
|
||||||
@ -142,7 +148,7 @@ the following meanings:
|
|||||||
for project in all_projects:
|
for project in all_projects:
|
||||||
sem.acquire()
|
sem.acquire()
|
||||||
|
|
||||||
class BufList(StringIO.StringIO):
|
class BufList(io.StringIO):
|
||||||
def dump(self, ostream):
|
def dump(self, ostream):
|
||||||
for entry in self.buflist:
|
for entry in self.buflist:
|
||||||
ostream.write(entry)
|
ostream.write(entry)
|
||||||
@ -182,7 +188,7 @@ the following meanings:
|
|||||||
try:
|
try:
|
||||||
os.chdir(self.manifest.topdir)
|
os.chdir(self.manifest.topdir)
|
||||||
|
|
||||||
outstring = StringIO.StringIO()
|
outstring = io.StringIO()
|
||||||
self._FindOrphans(glob.glob('.*') + \
|
self._FindOrphans(glob.glob('.*') + \
|
||||||
glob.glob('*'), \
|
glob.glob('*'), \
|
||||||
proj_dirs, proj_dirs_parents, outstring)
|
proj_dirs, proj_dirs_parents, outstring)
|
||||||
|
@ -24,8 +24,19 @@ import socket
|
|||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
|
if is_python3():
|
||||||
|
import urllib.parse
|
||||||
|
import xmlrpc.client
|
||||||
|
else:
|
||||||
|
import imp
|
||||||
import urlparse
|
import urlparse
|
||||||
import xmlrpclib
|
import xmlrpclib
|
||||||
|
urllib = imp.new_module('urllib')
|
||||||
|
urllib.parse = urlparse
|
||||||
|
xmlrpc = imp.new_module('xmlrpc')
|
||||||
|
xmlrpc.client = xmlrpclib
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import threading as _threading
|
import threading as _threading
|
||||||
@ -189,6 +200,9 @@ later is required to fix a server side protocol bug.
|
|||||||
p.add_option('--fetch-submodules',
|
p.add_option('--fetch-submodules',
|
||||||
dest='fetch_submodules', action='store_true',
|
dest='fetch_submodules', action='store_true',
|
||||||
help='fetch submodules from server')
|
help='fetch submodules from server')
|
||||||
|
p.add_option('--no-tags',
|
||||||
|
dest='no_tags', action='store_true',
|
||||||
|
help="don't fetch tags")
|
||||||
if show_smart:
|
if show_smart:
|
||||||
p.add_option('-s', '--smart-sync',
|
p.add_option('-s', '--smart-sync',
|
||||||
dest='smart_sync', action='store_true',
|
dest='smart_sync', action='store_true',
|
||||||
@ -225,6 +239,9 @@ later is required to fix a server side protocol bug.
|
|||||||
# We'll set to true once we've locked the lock.
|
# We'll set to true once we've locked the lock.
|
||||||
did_lock = False
|
did_lock = False
|
||||||
|
|
||||||
|
if not opt.quiet:
|
||||||
|
print('Fetching project %s' % project.name)
|
||||||
|
|
||||||
# Encapsulate everything in a try/except/finally so that:
|
# Encapsulate everything in a try/except/finally so that:
|
||||||
# - We always set err_event in the case of an exception.
|
# - We always set err_event in the case of an exception.
|
||||||
# - We always make sure we call sem.release().
|
# - We always make sure we call sem.release().
|
||||||
@ -235,7 +252,8 @@ later is required to fix a server side protocol bug.
|
|||||||
success = project.Sync_NetworkHalf(
|
success = project.Sync_NetworkHalf(
|
||||||
quiet=opt.quiet,
|
quiet=opt.quiet,
|
||||||
current_branch_only=opt.current_branch_only,
|
current_branch_only=opt.current_branch_only,
|
||||||
clone_bundle=not opt.no_clone_bundle)
|
clone_bundle=not opt.no_clone_bundle,
|
||||||
|
no_tags=opt.no_tags)
|
||||||
self._fetch_times.Set(project, time.time() - start)
|
self._fetch_times.Set(project, time.time() - start)
|
||||||
|
|
||||||
# Lock around all the rest of the code, since printing, updating a set
|
# Lock around all the rest of the code, since printing, updating a set
|
||||||
@ -270,10 +288,13 @@ later is required to fix a server side protocol bug.
|
|||||||
if self.jobs == 1:
|
if self.jobs == 1:
|
||||||
for project in projects:
|
for project in projects:
|
||||||
pm.update()
|
pm.update()
|
||||||
|
if not opt.quiet:
|
||||||
|
print('Fetching project %s' % project.name)
|
||||||
if project.Sync_NetworkHalf(
|
if project.Sync_NetworkHalf(
|
||||||
quiet=opt.quiet,
|
quiet=opt.quiet,
|
||||||
current_branch_only=opt.current_branch_only,
|
current_branch_only=opt.current_branch_only,
|
||||||
clone_bundle=not opt.no_clone_bundle):
|
clone_bundle=not opt.no_clone_bundle,
|
||||||
|
no_tags=opt.no_tags):
|
||||||
fetched.add(project.gitdir)
|
fetched.add(project.gitdir)
|
||||||
else:
|
else:
|
||||||
print('error: Cannot fetch %s' % project.name, file=sys.stderr)
|
print('error: Cannot fetch %s' % project.name, file=sys.stderr)
|
||||||
@ -367,6 +388,13 @@ later is required to fix a server side protocol bug.
|
|||||||
print('\nerror: Exited sync due to gc errors', file=sys.stderr)
|
print('\nerror: Exited sync due to gc errors', file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
def _ReloadManifest(self, manifest_name=None):
|
||||||
|
if manifest_name:
|
||||||
|
# Override calls _Unload already
|
||||||
|
self.manifest.Override(manifest_name)
|
||||||
|
else:
|
||||||
|
self.manifest._Unload()
|
||||||
|
|
||||||
def UpdateProjectList(self):
|
def UpdateProjectList(self):
|
||||||
new_project_paths = []
|
new_project_paths = []
|
||||||
for project in self.GetProjects(None, missing_ok=True):
|
for project in self.GetProjects(None, missing_ok=True):
|
||||||
@ -459,6 +487,8 @@ later is required to fix a server side protocol bug.
|
|||||||
if opt.manifest_name:
|
if opt.manifest_name:
|
||||||
self.manifest.Override(opt.manifest_name)
|
self.manifest.Override(opt.manifest_name)
|
||||||
|
|
||||||
|
manifest_name = opt.manifest_name
|
||||||
|
|
||||||
if opt.smart_sync or opt.smart_tag:
|
if opt.smart_sync or opt.smart_tag:
|
||||||
if not self.manifest.manifest_server:
|
if not self.manifest.manifest_server:
|
||||||
print('error: cannot smart sync: no manifest server defined in '
|
print('error: cannot smart sync: no manifest server defined in '
|
||||||
@ -481,7 +511,7 @@ later is required to fix a server side protocol bug.
|
|||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
parse_result = urlparse.urlparse(manifest_server)
|
parse_result = urllib.parse.urlparse(manifest_server)
|
||||||
if parse_result.hostname:
|
if parse_result.hostname:
|
||||||
username, _account, password = \
|
username, _account, password = \
|
||||||
info.authenticators(parse_result.hostname)
|
info.authenticators(parse_result.hostname)
|
||||||
@ -499,7 +529,7 @@ later is required to fix a server side protocol bug.
|
|||||||
1)
|
1)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
server = xmlrpclib.Server(manifest_server)
|
server = xmlrpc.client.Server(manifest_server)
|
||||||
if opt.smart_sync:
|
if opt.smart_sync:
|
||||||
p = self.manifest.manifestProject
|
p = self.manifest.manifestProject
|
||||||
b = p.GetBranch(p.CurrentBranch)
|
b = p.GetBranch(p.CurrentBranch)
|
||||||
@ -508,8 +538,7 @@ later is required to fix a server side protocol bug.
|
|||||||
branch = branch[len(R_HEADS):]
|
branch = branch[len(R_HEADS):]
|
||||||
|
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
if (env.has_key('TARGET_PRODUCT') and
|
if 'TARGET_PRODUCT' in env and 'TARGET_BUILD_VARIANT' in env:
|
||||||
env.has_key('TARGET_BUILD_VARIANT')):
|
|
||||||
target = '%s-%s' % (env['TARGET_PRODUCT'],
|
target = '%s-%s' % (env['TARGET_PRODUCT'],
|
||||||
env['TARGET_BUILD_VARIANT'])
|
env['TARGET_BUILD_VARIANT'])
|
||||||
[success, manifest_str] = server.GetApprovedManifest(branch, target)
|
[success, manifest_str] = server.GetApprovedManifest(branch, target)
|
||||||
@ -533,15 +562,15 @@ later is required to fix a server side protocol bug.
|
|||||||
print('error: cannot write manifest to %s' % manifest_path,
|
print('error: cannot write manifest to %s' % manifest_path,
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
self.manifest.Override(manifest_name)
|
self._ReloadManifest(manifest_name)
|
||||||
else:
|
else:
|
||||||
print('error: %s' % manifest_str, file=sys.stderr)
|
print('error: %s' % manifest_str, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
except (socket.error, IOError, xmlrpclib.Fault) as e:
|
except (socket.error, IOError, xmlrpc.client.Fault) as e:
|
||||||
print('error: cannot connect to manifest server %s:\n%s'
|
print('error: cannot connect to manifest server %s:\n%s'
|
||||||
% (self.manifest.manifest_server, e), file=sys.stderr)
|
% (self.manifest.manifest_server, e), file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
except xmlrpclib.ProtocolError as e:
|
except xmlrpc.client.ProtocolError as e:
|
||||||
print('error: cannot connect to manifest server %s:\n%d %s'
|
print('error: cannot connect to manifest server %s:\n%d %s'
|
||||||
% (self.manifest.manifest_server, e.errcode, e.errmsg),
|
% (self.manifest.manifest_server, e.errcode, e.errmsg),
|
||||||
file=sys.stderr)
|
file=sys.stderr)
|
||||||
@ -558,14 +587,15 @@ later is required to fix a server side protocol bug.
|
|||||||
|
|
||||||
if not opt.local_only:
|
if not opt.local_only:
|
||||||
mp.Sync_NetworkHalf(quiet=opt.quiet,
|
mp.Sync_NetworkHalf(quiet=opt.quiet,
|
||||||
current_branch_only=opt.current_branch_only)
|
current_branch_only=opt.current_branch_only,
|
||||||
|
no_tags=opt.no_tags)
|
||||||
|
|
||||||
if mp.HasChanges:
|
if mp.HasChanges:
|
||||||
syncbuf = SyncBuffer(mp.config)
|
syncbuf = SyncBuffer(mp.config)
|
||||||
mp.Sync_LocalHalf(syncbuf)
|
mp.Sync_LocalHalf(syncbuf)
|
||||||
if not syncbuf.Finish():
|
if not syncbuf.Finish():
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
self.manifest._Unload()
|
self._ReloadManifest(manifest_name)
|
||||||
if opt.jobs is None:
|
if opt.jobs is None:
|
||||||
self.jobs = self.manifest.default.sync_j
|
self.jobs = self.manifest.default.sync_j
|
||||||
all_projects = self.GetProjects(args,
|
all_projects = self.GetProjects(args,
|
||||||
@ -590,7 +620,7 @@ later is required to fix a server side protocol bug.
|
|||||||
# Iteratively fetch missing and/or nested unregistered submodules
|
# Iteratively fetch missing and/or nested unregistered submodules
|
||||||
previously_missing_set = set()
|
previously_missing_set = set()
|
||||||
while True:
|
while True:
|
||||||
self.manifest._Unload()
|
self._ReloadManifest(manifest_name)
|
||||||
all_projects = self.GetProjects(args,
|
all_projects = self.GetProjects(args,
|
||||||
missing_ok=True,
|
missing_ok=True,
|
||||||
submodules_ok=opt.fetch_submodules)
|
submodules_ok=opt.fetch_submodules)
|
||||||
|
@ -23,6 +23,12 @@ from editor import Editor
|
|||||||
from error import HookError, UploadError
|
from error import HookError, UploadError
|
||||||
from project import RepoHook
|
from project import RepoHook
|
||||||
|
|
||||||
|
from pyversion import is_python3
|
||||||
|
if not is_python3():
|
||||||
|
# pylint:disable=W0622
|
||||||
|
input = raw_input
|
||||||
|
# pylint:enable=W0622
|
||||||
|
|
||||||
UNUSUAL_COMMIT_THRESHOLD = 5
|
UNUSUAL_COMMIT_THRESHOLD = 5
|
||||||
|
|
||||||
def _ConfirmManyUploads(multiple_branches=False):
|
def _ConfirmManyUploads(multiple_branches=False):
|
||||||
@ -33,7 +39,7 @@ def _ConfirmManyUploads(multiple_branches=False):
|
|||||||
print('ATTENTION: You are uploading an unusually high number of commits.')
|
print('ATTENTION: You are uploading an unusually high number of commits.')
|
||||||
print('YOU PROBABLY DO NOT MEAN TO DO THIS. (Did you rebase across '
|
print('YOU PROBABLY DO NOT MEAN TO DO THIS. (Did you rebase across '
|
||||||
'branches?)')
|
'branches?)')
|
||||||
answer = raw_input("If you are sure you intend to do this, type 'yes': ").strip()
|
answer = input("If you are sure you intend to do this, type 'yes': ").strip()
|
||||||
return answer == "yes"
|
return answer == "yes"
|
||||||
|
|
||||||
def _die(fmt, *args):
|
def _die(fmt, *args):
|
||||||
@ -140,6 +146,10 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
|
|||||||
p.add_option('-d', '--draft',
|
p.add_option('-d', '--draft',
|
||||||
action='store_true', dest='draft', default=False,
|
action='store_true', dest='draft', default=False,
|
||||||
help='If specified, upload as a draft.')
|
help='If specified, upload as a draft.')
|
||||||
|
p.add_option('-D', '--destination', '--dest',
|
||||||
|
type='string', action='store', dest='dest_branch',
|
||||||
|
metavar='BRANCH',
|
||||||
|
help='Submit for review on this target branch.')
|
||||||
|
|
||||||
# Options relating to upload hook. Note that verify and no-verify are NOT
|
# Options relating to upload hook. Note that verify and no-verify are NOT
|
||||||
# opposites of each other, which is why they store to different locations.
|
# opposites of each other, which is why they store to different locations.
|
||||||
@ -179,7 +189,8 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
|
|||||||
date = branch.date
|
date = branch.date
|
||||||
commit_list = branch.commits
|
commit_list = branch.commits
|
||||||
|
|
||||||
print('Upload project %s/ to remote branch %s:' % (project.relpath, project.revisionExpr))
|
destination = opt.dest_branch or project.dest_branch or project.revisionExpr
|
||||||
|
print('Upload project %s/ to remote branch %s:' % (project.relpath, destination))
|
||||||
print(' branch %s (%2d commit%s, %s):' % (
|
print(' branch %s (%2d commit%s, %s):' % (
|
||||||
name,
|
name,
|
||||||
len(commit_list),
|
len(commit_list),
|
||||||
@ -213,18 +224,21 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
|
|||||||
|
|
||||||
b = {}
|
b = {}
|
||||||
for branch in avail:
|
for branch in avail:
|
||||||
|
if branch is None:
|
||||||
|
continue
|
||||||
name = branch.name
|
name = branch.name
|
||||||
date = branch.date
|
date = branch.date
|
||||||
commit_list = branch.commits
|
commit_list = branch.commits
|
||||||
|
|
||||||
if b:
|
if b:
|
||||||
script.append('#')
|
script.append('#')
|
||||||
|
destination = opt.dest_branch or project.dest_branch or project.revisionExpr
|
||||||
script.append('# branch %s (%2d commit%s, %s) to remote branch %s:' % (
|
script.append('# branch %s (%2d commit%s, %s) to remote branch %s:' % (
|
||||||
name,
|
name,
|
||||||
len(commit_list),
|
len(commit_list),
|
||||||
len(commit_list) != 1 and 's' or '',
|
len(commit_list) != 1 and 's' or '',
|
||||||
date,
|
date,
|
||||||
project.revisionExpr))
|
destination))
|
||||||
for commit in commit_list:
|
for commit in commit_list:
|
||||||
script.append('# %s' % commit)
|
script.append('# %s' % commit)
|
||||||
b[name] = branch
|
b[name] = branch
|
||||||
@ -330,7 +344,8 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
|
|||||||
key = 'review.%s.uploadtopic' % branch.project.remote.review
|
key = 'review.%s.uploadtopic' % branch.project.remote.review
|
||||||
opt.auto_topic = branch.project.config.GetBoolean(key)
|
opt.auto_topic = branch.project.config.GetBoolean(key)
|
||||||
|
|
||||||
branch.UploadForReview(people, auto_topic=opt.auto_topic, draft=opt.draft)
|
destination = opt.dest_branch or branch.project.dest_branch or branch.project.revisionExpr
|
||||||
|
branch.UploadForReview(people, auto_topic=opt.auto_topic, draft=opt.draft, dest_branch=destination)
|
||||||
branch.uploaded = True
|
branch.uploaded = True
|
||||||
except UploadError as e:
|
except UploadError as e:
|
||||||
branch.error = e
|
branch.error = e
|
||||||
|
Reference in New Issue
Block a user