mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:39:02 +02:00
editlayer: Be more specific on the searches
Just because git.yoctoproject.org is in the URL, doesn't mean we can or should force the vcs_web_url to be a specific value. If it starts with git://git.yoctoproject.org then we can do this. git.openembedded.org already did this. This also changes github, gitlab and bitbucket references. Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
c91372587b
commit
1ce4a85d25
|
@ -36,27 +36,27 @@ def set_vcs_fields(layer, repoval):
|
|||
layer.vcs_web_tree_base_url = 'http://cgit.openembedded.org/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_file_base_url = 'http://cgit.openembedded.org/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_commit_url = 'http://cgit.openembedded.org/' + reponame + '/commit/?id=%hash%'
|
||||
elif 'git.yoctoproject.org/' in repoval:
|
||||
elif repoval.startswith('git://git.yoctoproject.org/'):
|
||||
reponame = re.sub('^.*/', '', repoval)
|
||||
layer.vcs_web_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame
|
||||
layer.vcs_web_tree_base_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_file_base_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_commit_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/commit/?id=%hash%'
|
||||
elif 'github.com/' in repoval:
|
||||
elif repoval.startswith('git://github.com/') or repoval.startswith('http://github.com/') or repoval.startswith('https://github.com/'):
|
||||
reponame = re.sub('^.*github.com/', '', repoval)
|
||||
reponame = re.sub('.git$', '', reponame)
|
||||
layer.vcs_web_url = 'http://github.com/' + reponame
|
||||
layer.vcs_web_tree_base_url = 'http://github.com/' + reponame + '/tree/%branch%/'
|
||||
layer.vcs_web_file_base_url = 'http://github.com/' + reponame + '/blob/%branch%/'
|
||||
layer.vcs_web_commit_url = 'http://github.com/' + reponame + '/commit/%hash%'
|
||||
elif 'gitlab.com/' in repoval:
|
||||
elif repoval.startswith('git://gitlab.com/') or repoval.startswith('http://gitlab.com/') or repoval.startswith('https://gitlab.com/'):
|
||||
reponame = re.sub('^.*gitlab.com/', '', repoval)
|
||||
reponame = re.sub('.git$', '', reponame)
|
||||
layer.vcs_web_url = 'http://gitlab.com/' + reponame
|
||||
layer.vcs_web_tree_base_url = 'http://gitlab.com/' + reponame + '/tree/%branch%/'
|
||||
layer.vcs_web_file_base_url = 'http://gitlab.com/' + reponame + '/blob/%branch%/'
|
||||
layer.vcs_web_commit_url = 'http://gitlab.com/' + reponame + '/commit/%hash%'
|
||||
elif 'bitbucket.org/' in repoval:
|
||||
elif repoval.startswith('git://bitbucket.org/') or repoval.startswith('http://bitbucket.org/') or repoval.startswith('https://bitbucket.org/'):
|
||||
reponame = re.sub('^.*bitbucket.org/', '', repoval)
|
||||
reponame = re.sub('.git$', '', reponame)
|
||||
layer.vcs_web_url = 'http://bitbucket.org/' + reponame
|
||||
|
|
|
@ -100,20 +100,27 @@ def main():
|
|||
layer.vcs_web_tree_base_url = 'http://cgit.openembedded.org/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_file_base_url = 'http://cgit.openembedded.org/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_commit_url = 'http://cgit.openembedded.org/' + reponame + '/commit/?id=%hash%'
|
||||
elif 'git.yoctoproject.org/' in repoval:
|
||||
elif repoval.startswith('git://git.yoctoproject.org/'):
|
||||
reponame = re.sub('^.*/', '', repoval)
|
||||
layer.vcs_web_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame
|
||||
layer.vcs_web_tree_base_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_file_base_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/tree/%path%?h=%branch%'
|
||||
layer.vcs_web_commit_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/commit/?id=%hash%'
|
||||
elif 'github.com/' in repoval:
|
||||
elif repoval.startswith('git://github.com/') or repoval.startswith('http://github.com/') or repoval.startswith('https://github.com/'):
|
||||
reponame = re.sub('^.*github.com/', '', repoval)
|
||||
reponame = re.sub('.git$', '', reponame)
|
||||
layer.vcs_web_url = 'http://github.com/' + reponame
|
||||
layer.vcs_web_tree_base_url = 'http://github.com/' + reponame + '/tree/%branch%/'
|
||||
layer.vcs_web_file_base_url = 'http://github.com/' + reponame + '/blob/%branch%/'
|
||||
layer.vcs_web_commit_url = 'http://github.com/' + reponame + '/commit/%hash%'
|
||||
elif 'bitbucket.org/' in repoval:
|
||||
elif repoval.startswith('git://gitlab.com/') or repoval.startswith('http://gitlab.com/') or repoval.startswith('https://gitlab.com/'):
|
||||
reponame = re.sub('^.*gitlab.com/', '', repoval)
|
||||
reponame = re.sub('.git$', '', reponame)
|
||||
layer.vcs_web_url = 'http://gitlab.com/' + reponame
|
||||
layer.vcs_web_tree_base_url = 'http://gitlab.com/' + reponame + '/tree/%branch%/'
|
||||
layer.vcs_web_file_base_url = 'http://gitlab.com/' + reponame + '/blob/%branch%/'
|
||||
layer.vcs_web_commit_url = 'http://gitlab.com/' + reponame + '/commit/%hash%'
|
||||
elif repoval.startswith('git://bitbucket.org/') or repoval.startswith('http://bitbucket.org/') or repoval.startswith('https://bitbucket.org/'):
|
||||
reponame = re.sub('^.*bitbucket.org/', '', repoval)
|
||||
reponame = re.sub('.git$', '', reponame)
|
||||
layer.vcs_web_url = 'http://bitbucket.org/' + reponame
|
||||
|
|
|
@ -204,7 +204,7 @@
|
|||
this.vcs_web_commit_url = 'http://cgit.openembedded.org/' + reponame + '/commit/?id=%hash%'
|
||||
this.vcs_web_type = 'cgit'
|
||||
}
|
||||
else if( repoval.indexOf('git.yoctoproject.org/') > -1 ) {
|
||||
else if( repoval.startsWith('git://git.yoctoproject.org/') ) {
|
||||
reponame = repoval.replace(/^.*\//, '')
|
||||
this.vcs_web_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame
|
||||
this.vcs_web_tree_base_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/tree/%path%?h=%branch%'
|
||||
|
@ -212,7 +212,7 @@
|
|||
this.vcs_web_commit_url = 'http://git.yoctoproject.org/cgit/cgit.cgi/' + reponame + '/commit/?id=%hash%'
|
||||
this.vcs_web_type = 'cgit'
|
||||
}
|
||||
else if( repoval.indexOf('github.com/') > -1 ) {
|
||||
else if( repoval.startsWith('git://github.com/') ) {
|
||||
reponame = repoval.replace(/^.*github.com\//, '')
|
||||
reponame = reponame.replace(/.git$/, '')
|
||||
this.vcs_web_url = 'http://github.com/' + reponame
|
||||
|
@ -221,7 +221,7 @@
|
|||
this.vcs_web_commit_url = 'http://github.com/' + reponame + '/commit/%hash%/'
|
||||
this.vcs_web_type = '(custom)'
|
||||
}
|
||||
else if( repoval.indexOf('gitlab.com/') > -1 ) {
|
||||
else if( repoval.startsWith('git://gitlab.com/') ) {
|
||||
reponame = repoval.replace(/^.*gitlab.com\//, '')
|
||||
reponame = reponame.replace(/.git$/, '')
|
||||
this.vcs_web_url = 'http://gitlab.com/' + reponame
|
||||
|
@ -230,7 +230,7 @@
|
|||
this.vcs_web_commit_url = 'http://gitlab.com/' + reponame + '/commit/%hash%/'
|
||||
this.vcs_web_type = '(custom)'
|
||||
}
|
||||
else if( repoval.indexOf('bitbucket.org/') > -1 ) {
|
||||
else if( repoval.startsWith('git://bitbucket.org/') ) {
|
||||
reponame = repoval.replace(/^.*bitbucket.org\//, '')
|
||||
reponame = reponame.replace(/.git$/, '')
|
||||
this.vcs_web_url = 'http://bitbucket.org/' + reponame
|
||||
|
|
Loading…
Reference in New Issue
Block a user