-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from wpoely86/vub
Add support for VUB
- Loading branch information
Showing
8 changed files
with
83 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,7 +137,8 @@ def _log(self, level, msg, args): | |
lm = ('Luis Fernando Munoz Meji?as', '[email protected]') | ||
sdw = ('Stijn De Weirdt', '[email protected]') | ||
wdp = ('Wouter Depypere', '[email protected]') | ||
wp = ('Ward Poelmans', '[email protected]') | ||
wp = ('Ward Poelmans', '[email protected]') | ||
sm = ('Samuel Moors', '[email protected]') | ||
|
||
# Regexp used to remove suffixes from scripts when installing(/packaging) | ||
REGEXP_REMOVE_SUFFIX = re.compile(r'(\.(?:py|sh|pl))$') | ||
|
@@ -155,7 +156,7 @@ def _log(self, level, msg, args): | |
|
||
RELOAD_VSC_MODS = False | ||
|
||
VERSION = '0.12.2' | ||
VERSION = '0.12.3' | ||
|
||
log.info('This is (based on) vsc.install.shared_setup %s' % VERSION) | ||
|
||
|
@@ -324,8 +325,8 @@ def get_name_url(self, filename=None, version=None, license_name=None): | |
], | ||
'url': [ | ||
r'^Home-page:\s*(.*?)\s*$', | ||
r'^\s*url\s*=\s*((?:https?|ssh).*?github.*?[:/]hpcugent/.*?)\.git\s*$', | ||
r'^\s*url\s*=\s*(git[:@].*?github.*?[:/]hpcugent/.*?)(?:\.git)?\s*$', | ||
r'^\s*url\s*=\s*((?:https?|ssh).*?github.*?[:/](?:hpcugent|sisc-hpc)/.*?)\.git\s*$', | ||
r'^\s*url\s*=\s*(git[:@].*?github.*?[:/](?:hpcugent|sisc-hpc)/.*?)(?:\.git)?\s*$', | ||
], | ||
'download_url': [ | ||
r'^Download-URL:\s*(.*?)\s*$', | ||
|
@@ -349,7 +350,7 @@ def get_name_url(self, filename=None, version=None, license_name=None): | |
self.private_repo = True | ||
|
||
if 'url' not in res: | ||
raise KeyError("Missing url in git config %s. (Missing mandatory hpcugent (upstream) remote?)" % (res)) | ||
raise KeyError("Missing url in git config %s. (Missing mandatory hpcugent or sisc-hpc remote?)" % (res)) | ||
|
||
# handle git://server/user/project | ||
reg = re.search(r'^(git|ssh)://', res.get('url', '')) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[core] | ||
repositoryformatversion = 0 | ||
filemode = true | ||
bare = false | ||
logallrefupdates = true | ||
[remote "origin"] | ||
url = [email protected]:sisc-hpc/vsc-jobs-brussel.git | ||
fetch = +refs/heads/*:refs/remotes/origin/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters