mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Simplified vcs handling
This commit is contained in:
parent
17cd20fabf
commit
d00595e872
245
common.py
245
common.py
@ -55,39 +55,26 @@ class vcs:
|
|||||||
|
|
||||||
self.remote = remote
|
self.remote = remote
|
||||||
self.local = local
|
self.local = local
|
||||||
|
self.refreshed = False
|
||||||
|
|
||||||
# Refresh the local repository - i.e. get the latest code. This
|
# Take the local repository to a clean version of the given revision, which
|
||||||
# works either by updating if a local copy already exists, or by
|
# is specificed in the VCS's native format. Beforehand, the repository can
|
||||||
# cloning from scratch if it doesn't.
|
# be dirty, or even non-existent. If the repository does already exist
|
||||||
def refreshlocal(self):
|
# locally, it will be updated from the origin, but only once in the
|
||||||
if not os.path.exists(self.local):
|
# lifetime of the vcs object.
|
||||||
self.clone()
|
def gotorevision(self, rev):
|
||||||
else:
|
raise VCSException("This VCS type doesn't define gotorevision")
|
||||||
self.reset()
|
|
||||||
self.pull()
|
|
||||||
|
|
||||||
# Clone the remote repository. It must not already exist locally.
|
|
||||||
def clone(self):
|
|
||||||
assert False # Must be defined in child
|
|
||||||
|
|
||||||
# Reset the local repository. Remove changes, untracked files, etc.
|
|
||||||
# Put the working tree to either the given revision, or to the HEAD
|
|
||||||
# if not specified.
|
|
||||||
def reset(self, rev=None):
|
|
||||||
assert False # Must be defined in child
|
|
||||||
|
|
||||||
# Get new commits from the remote repository. Local must be clean.
|
|
||||||
# Fetch would really be a better name, as this doesn't necessarily
|
|
||||||
# (depending on the vcs) affect the local source tree or HEAD!
|
|
||||||
def pull(self):
|
|
||||||
assert False # Must be defined in child
|
|
||||||
|
|
||||||
# Initialise and update submodules
|
# Initialise and update submodules
|
||||||
def initsubmodules(self):
|
def initsubmodules(self):
|
||||||
assert False # Not supported unless overridden
|
raise VCSException('Submodules not supported for this vcs type')
|
||||||
|
|
||||||
class vcs_git(vcs):
|
class vcs_git(vcs):
|
||||||
|
|
||||||
|
# If the local directory exists, but is somehow not a git repository, git
|
||||||
|
# will traverse up the directory tree until it finds one that is (i.e.
|
||||||
|
# fdroidserver) and then we'll proceed to destory it! This is called as
|
||||||
|
# a safety check.
|
||||||
def checkrepo(self):
|
def checkrepo(self):
|
||||||
p = subprocess.Popen(['git', 'rev-parse', '--show-toplevel'],
|
p = subprocess.Popen(['git', 'rev-parse', '--show-toplevel'],
|
||||||
stdout=subprocess.PIPE, cwd=self.local)
|
stdout=subprocess.PIPE, cwd=self.local)
|
||||||
@ -95,28 +82,34 @@ class vcs_git(vcs):
|
|||||||
if not result.endswith(self.local):
|
if not result.endswith(self.local):
|
||||||
raise VCSException('Repository mismatch')
|
raise VCSException('Repository mismatch')
|
||||||
|
|
||||||
def clone(self):
|
def gotorevision(self, rev):
|
||||||
if subprocess.call(['git', 'clone', self.remote, self.local]) != 0:
|
if not os.path.exists(self.local):
|
||||||
raise VCSException("Git clone failed")
|
# Brand new checkout...
|
||||||
|
if subprocess.call(['git', 'clone', self.remote, self.local]) != 0:
|
||||||
def reset(self, rev=None):
|
raise VCSException("Git clone failed")
|
||||||
self.checkrepo()
|
self.checkrepo()
|
||||||
if rev is None:
|
else:
|
||||||
rev = 'origin'
|
self.checkrepo()
|
||||||
if subprocess.call(['git', 'reset', '--hard', rev],
|
# Discard any working tree changes...
|
||||||
cwd=self.local) != 0:
|
if subprocess.call(['git', 'reset', '--hard'], cwd=self.local) != 0:
|
||||||
raise VCSException("Git reset failed")
|
raise VCSException("Git reset failed")
|
||||||
if subprocess.call(['git', 'clean', '-dfx'],
|
# Remove untracked files now, in case they're tracked in the target
|
||||||
cwd=self.local) != 0:
|
# revision (it happens!)...
|
||||||
|
if subprocess.call(['git', 'clean', '-dfx'], cwd=self.local) != 0:
|
||||||
|
raise VCSException("Git clean failed")
|
||||||
|
if not self.refreshed:
|
||||||
|
# Get latest commits and tags from remote...
|
||||||
|
if subprocess.call(['git', 'fetch', '--tags', 'origin'],
|
||||||
|
cwd=self.local) != 0:
|
||||||
|
raise VCSException("Git fetch failed")
|
||||||
|
self.refreshed = True
|
||||||
|
# Check out the appropriate revision...
|
||||||
|
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0:
|
||||||
|
raise VCSException("Git checkout failed")
|
||||||
|
# Get rid of any uncontrolled files left behind...
|
||||||
|
if subprocess.call(['git', 'clean', '-dfx'], cwd=self.local) != 0:
|
||||||
raise VCSException("Git clean failed")
|
raise VCSException("Git clean failed")
|
||||||
|
|
||||||
def pull(self):
|
|
||||||
self.checkrepo()
|
|
||||||
# Might need tags that aren't on a branch.
|
|
||||||
if subprocess.call(['git', 'fetch', '--tags', 'origin'],
|
|
||||||
cwd=self.local) != 0:
|
|
||||||
raise VCSException("Git fetch failed")
|
|
||||||
|
|
||||||
def initsubmodules(self):
|
def initsubmodules(self):
|
||||||
self.checkrepo()
|
self.checkrepo()
|
||||||
if subprocess.call(['git', 'submodule', 'init'],
|
if subprocess.call(['git', 'submodule', 'init'],
|
||||||
@ -129,6 +122,10 @@ class vcs_git(vcs):
|
|||||||
|
|
||||||
class vcs_gitsvn(vcs):
|
class vcs_gitsvn(vcs):
|
||||||
|
|
||||||
|
# If the local directory exists, but is somehow not a git repository, git
|
||||||
|
# will traverse up the directory tree until it finds one that is (i.e.
|
||||||
|
# fdroidserver) and then we'll proceed to destory it! This is called as
|
||||||
|
# a safety check.
|
||||||
def checkrepo(self):
|
def checkrepo(self):
|
||||||
p = subprocess.Popen(['git', 'rev-parse', '--show-toplevel'],
|
p = subprocess.Popen(['git', 'rev-parse', '--show-toplevel'],
|
||||||
stdout=subprocess.PIPE, cwd=self.local)
|
stdout=subprocess.PIPE, cwd=self.local)
|
||||||
@ -136,34 +133,40 @@ class vcs_gitsvn(vcs):
|
|||||||
if not result.endswith(self.local):
|
if not result.endswith(self.local):
|
||||||
raise VCSException('Repository mismatch')
|
raise VCSException('Repository mismatch')
|
||||||
|
|
||||||
def clone(self):
|
def gotorevision(self, rev):
|
||||||
if subprocess.call(['git', 'svn', 'clone', self.remote, self.local]) != 0:
|
if not os.path.exists(self.local):
|
||||||
raise VCSException("Git clone failed")
|
# Brand new checkout...
|
||||||
|
if subprocess.call(['git', 'svn', 'clone', self.remote, self.local]) != 0:
|
||||||
def reset(self, rev=None):
|
raise VCSException("Git clone failed")
|
||||||
self.checkrepo()
|
self.checkrepo()
|
||||||
if rev is None:
|
|
||||||
rev = 'HEAD'
|
|
||||||
else:
|
else:
|
||||||
p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev],
|
self.checkrepo()
|
||||||
cwd=self.local, stdout=subprocess.PIPE)
|
# Discard any working tree changes...
|
||||||
rev = p.communicate()[0].rstrip()
|
if subprocess.call(['git', 'reset', '--hard'], cwd=self.local) != 0:
|
||||||
if p.returncode != 0:
|
raise VCSException("Git reset failed")
|
||||||
raise VCSException("Failed to get git treeish from svn rev")
|
# Remove untracked files now, in case they're tracked in the target
|
||||||
if subprocess.call(['git', 'reset', '--hard', rev],
|
# revision (it happens!)...
|
||||||
cwd=self.local) != 0:
|
if subprocess.call(['git', 'clean', '-dfx'], cwd=self.local) != 0:
|
||||||
raise VCSException("Git reset failed")
|
raise VCSException("Git clean failed")
|
||||||
if subprocess.call(['git', 'clean', '-dfx'],
|
if not self.refreshed:
|
||||||
cwd=self.local) != 0:
|
# Get new commits and tags from repo...
|
||||||
|
if subprocess.call(['git', 'svn', 'rebase'],
|
||||||
|
cwd=self.local) != 0:
|
||||||
|
raise VCSException("Git svn rebase failed")
|
||||||
|
self.refreshed = True
|
||||||
|
# Figure out the git commit id corresponding to the svn revision...
|
||||||
|
p = subprocess.Popen(['git', 'svn', 'find-rev', 'r' + rev],
|
||||||
|
cwd=self.local, stdout=subprocess.PIPE)
|
||||||
|
rev = p.communicate()[0].rstrip()
|
||||||
|
if p.returncode != 0:
|
||||||
|
raise VCSException("Failed to get git treeish from svn rev")
|
||||||
|
# Check out the appropriate revision...
|
||||||
|
if subprocess.call(['git', 'checkout', rev], cwd=self.local) != 0:
|
||||||
|
raise VCSException("Git checkout failed")
|
||||||
|
# Get rid of any uncontrolled files left behind...
|
||||||
|
if subprocess.call(['git', 'clean', '-dfx'], cwd=self.local) != 0:
|
||||||
raise VCSException("Git clean failed")
|
raise VCSException("Git clean failed")
|
||||||
|
|
||||||
def pull(self):
|
|
||||||
self.checkrepo()
|
|
||||||
if subprocess.call(['git', 'svn', 'rebase'],
|
|
||||||
cwd=self.local) != 0:
|
|
||||||
raise VCSException("Git svn rebase failed")
|
|
||||||
|
|
||||||
|
|
||||||
class vcs_svn(vcs):
|
class vcs_svn(vcs):
|
||||||
|
|
||||||
def userargs(self):
|
def userargs(self):
|
||||||
@ -173,77 +176,70 @@ class vcs_svn(vcs):
|
|||||||
'--password', self.password,
|
'--password', self.password,
|
||||||
'--non-interactive']
|
'--non-interactive']
|
||||||
|
|
||||||
def clone(self):
|
def gotorevision(self, rev):
|
||||||
if subprocess.call(['svn', 'checkout', self.remote, self.local] +
|
if not os.path.exists(self.local):
|
||||||
self.userargs()) != 0:
|
if subprocess.call(['svn', 'checkout', self.remote, self.local] +
|
||||||
raise VCSException("Svn checkout failed")
|
self.userargs()) != 0:
|
||||||
|
raise VCSException("Svn checkout failed")
|
||||||
def reset(self, rev=None):
|
|
||||||
if rev is None:
|
|
||||||
revargs = []
|
|
||||||
else:
|
else:
|
||||||
revargs = ['-r', rev]
|
for svncommand in (
|
||||||
for svncommand in (
|
'svn revert -R .',
|
||||||
'svn revert -R .',
|
r"svn status | awk '/\?/ {print $2}' | xargs rm -rf"):
|
||||||
r"svn status | awk '/\?/ {print $2}' | xargs rm -rf"):
|
if subprocess.call(svncommand, cwd=self.local,
|
||||||
if subprocess.call(svncommand, cwd=self.local,
|
shell=True) != 0:
|
||||||
shell=True) != 0:
|
raise VCSException("Svn reset failed")
|
||||||
raise VCSException("Svn reset failed")
|
if not self.refreshed:
|
||||||
|
if subprocess.call(['svn', 'update'] +
|
||||||
|
self.userargs(), cwd=self.local) != 0:
|
||||||
|
raise VCSException("Svn update failed")
|
||||||
|
self.refreshed = True
|
||||||
|
revargs = ['-r', rev]
|
||||||
if subprocess.call(['svn', 'update', '--force'] + revargs +
|
if subprocess.call(['svn', 'update', '--force'] + revargs +
|
||||||
self.userargs(), cwd=self.local) != 0:
|
self.userargs(), cwd=self.local) != 0:
|
||||||
raise VCSException("Svn update failed")
|
raise VCSException("Svn update failed")
|
||||||
|
|
||||||
def pull(self):
|
|
||||||
if subprocess.call(['svn', 'update'] +
|
|
||||||
self.userargs(), cwd=self.local) != 0:
|
|
||||||
raise VCSException("Svn update failed")
|
|
||||||
|
|
||||||
class vcs_hg(vcs):
|
class vcs_hg(vcs):
|
||||||
|
|
||||||
def clone(self):
|
def gotorevision(self, rev):
|
||||||
if subprocess.call(['hg', 'clone', self.remote, self.local]) !=0:
|
if not os.path.exists(self.local):
|
||||||
raise VCSException("Hg clone failed")
|
if subprocess.call(['hg', 'clone', self.remote, self.local]) !=0:
|
||||||
|
raise VCSException("Hg clone failed")
|
||||||
def reset(self, rev=None):
|
|
||||||
if rev is None:
|
|
||||||
revargs = []
|
|
||||||
else:
|
else:
|
||||||
revargs = [rev]
|
if subprocess.call('hg status -u | xargs rm -rf',
|
||||||
if subprocess.call('hg status -u | xargs rm -rf',
|
cwd=self.local, shell=True) != 0:
|
||||||
cwd=self.local, shell=True) != 0:
|
raise VCSException("Hg clean failed")
|
||||||
raise VCSException("Hg clean failed")
|
if not self.refreshed:
|
||||||
|
if subprocess.call(['hg', 'pull'],
|
||||||
|
cwd=self.local) != 0:
|
||||||
|
raise VCSException("Hg pull failed")
|
||||||
|
self.refreshed = True
|
||||||
|
revargs = [rev]
|
||||||
if subprocess.call(['hg', 'checkout', '-C'] + revargs,
|
if subprocess.call(['hg', 'checkout', '-C'] + revargs,
|
||||||
cwd=self.local) != 0:
|
cwd=self.local) != 0:
|
||||||
raise VCSException("Hg checkout failed")
|
raise VCSException("Hg checkout failed")
|
||||||
|
|
||||||
def pull(self):
|
|
||||||
if subprocess.call(['hg', 'pull'],
|
|
||||||
cwd=self.local) != 0:
|
|
||||||
raise VCSException("Hg pull failed")
|
|
||||||
|
|
||||||
class vcs_bzr(vcs):
|
class vcs_bzr(vcs):
|
||||||
|
|
||||||
def clone(self):
|
def gotorevision(self, rev):
|
||||||
if subprocess.call(['bzr', 'branch', self.remote, self.local]) != 0:
|
if not os.path.exists(self.local):
|
||||||
raise VCSException("Bzr branch failed")
|
if subprocess.call(['bzr', 'branch', self.remote, self.local]) != 0:
|
||||||
|
raise VCSException("Bzr branch failed")
|
||||||
def reset(self, rev=None):
|
|
||||||
if rev is None:
|
|
||||||
revargs = []
|
|
||||||
else:
|
else:
|
||||||
revargs = ['-r', rev]
|
if subprocess.call(['bzr', 'clean-tree', '--force',
|
||||||
if subprocess.call(['bzr', 'clean-tree', '--force',
|
'--unknown', '--ignored'], cwd=self.local) != 0:
|
||||||
'--unknown', '--ignored'], cwd=self.local) != 0:
|
raise VCSException("Bzr revert failed")
|
||||||
raise VCSException("Bzr revert failed")
|
if not self.refreshed:
|
||||||
|
if subprocess.call(['bzr', 'pull'],
|
||||||
|
cwd=self.local) != 0:
|
||||||
|
raise VCSException("Bzr update failed")
|
||||||
|
self.refreshed = True
|
||||||
|
revargs = ['-r', rev]
|
||||||
if subprocess.call(['bzr', 'revert'] + revargs,
|
if subprocess.call(['bzr', 'revert'] + revargs,
|
||||||
cwd=self.local) != 0:
|
cwd=self.local) != 0:
|
||||||
raise VCSException("Bzr revert failed")
|
raise VCSException("Bzr revert failed")
|
||||||
|
|
||||||
def pull(self):
|
|
||||||
if subprocess.call(['bzr', 'pull'],
|
|
||||||
cwd=self.local) != 0:
|
|
||||||
raise VCSException("Bzr update failed")
|
|
||||||
|
|
||||||
|
|
||||||
# Get the type expected for a given metadata field.
|
# Get the type expected for a given metadata field.
|
||||||
def metafieldtype(name):
|
def metafieldtype(name):
|
||||||
@ -549,9 +545,6 @@ class MetaDataException(Exception):
|
|||||||
# be a subdirectory of it.
|
# be a subdirectory of it.
|
||||||
def prepare_source(vcs, app, build, build_dir, sdk_path, ndk_path, javacc_path, refresh):
|
def prepare_source(vcs, app, build, build_dir, sdk_path, ndk_path, javacc_path, refresh):
|
||||||
|
|
||||||
if refresh:
|
|
||||||
vcs.refreshlocal()
|
|
||||||
|
|
||||||
# Optionally, the actual app source can be in a subdirectory...
|
# Optionally, the actual app source can be in a subdirectory...
|
||||||
if build.has_key('subdir'):
|
if build.has_key('subdir'):
|
||||||
root_dir = os.path.join(build_dir, build['subdir'])
|
root_dir = os.path.join(build_dir, build['subdir'])
|
||||||
@ -559,8 +552,8 @@ def prepare_source(vcs, app, build, build_dir, sdk_path, ndk_path, javacc_path,
|
|||||||
root_dir = build_dir
|
root_dir = build_dir
|
||||||
|
|
||||||
# Get a working copy of the right revision...
|
# Get a working copy of the right revision...
|
||||||
print "Resetting repository to " + build['commit']
|
print "Getting source for revision " + build['commit']
|
||||||
vcs.reset(build['commit'])
|
vcs.gotorevision(build['commit'])
|
||||||
|
|
||||||
# Check that a subdir (if we're using one) exists. This has to happen
|
# Check that a subdir (if we're using one) exists. This has to happen
|
||||||
# after the checkout, since it might not exist elsewhere...
|
# after the checkout, since it might not exist elsewhere...
|
||||||
|
Loading…
Reference in New Issue
Block a user