X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=module-tools.py;h=e332b30562c2d5a0da52032cae5637cdf17bb134;hb=3ce821baba409fc4b1b856d91ad348377573d71c;hp=09c124abe551029412b73caf12f093a3acb55e80;hpb=7218d980cce4a39c2c1d12e6a6927f873244a851;p=build.git diff --git a/module-tools.py b/module-tools.py index 09c124ab..e332b305 100755 --- a/module-tools.py +++ b/module-tools.py @@ -21,7 +21,8 @@ RENAMED_SVN_MODULES = { "MyPLC": "myplc", "CoDemux": "codemux", "NodeManager": "nodemanager", - "NodeUpdate": "nodeupdate" + "NodeUpdate": "nodeupdate", + "Monitor": "monitor" } def svn_to_git_name(module): @@ -172,7 +173,7 @@ class SvnRepository: for line in out.split('\n'): if line.startswith("Repository Root:"): root = line.split()[2].strip() - return "%s/%s" % (root, self.name()) + return "%s/%s" % (root, self.pathname()) @classmethod def checkout(cls, remote, local, options, recursive=False): @@ -265,7 +266,7 @@ class GitRepository: def gitweb(self): c = Command("git show | grep commit | awk '{print $2;}'", self.options) out = self.__run_in_repo(c.output_of).strip() - return "http://git.onelab.eu/?p=%s.git;a=commit;h=%s" % (self.name(), out) + return "http://git.onelab.eu/?p=%s.git;a=commit;h=%s" % (self.pathname(), out) def repo_root(self): c = Command("git remote show origin", self.options) @@ -446,7 +447,7 @@ class Module: # for parsing module spec name:branch matcher_branch_spec=re.compile("\A(?P[\w\.-]+):(?P[\w\.-]+)\Z") # special form for tagged module - for Build - matcher_tag_spec=re.compile("\A(?P[\w-]+)@(?P[\w\.-]+)\Z") + matcher_tag_spec=re.compile("\A(?P[\w\.-]+)@(?P[\w\.-]+)\Z") # parsing specfiles matcher_rpm_define=re.compile("%(define|global)\s+(\S+)\s+(\S*)\s*") @@ -472,7 +473,8 @@ class Module: def __init__ (self,module_spec,options): # parse module spec - self.name, branch_or_tagname, module_type = self.parse_module_spec(module_spec) + self.pathname, branch_or_tagname, module_type = self.parse_module_spec(module_spec) + self.name = os.path.basename(self.pathname) if module_type == "branch": self.branch=branch_or_tagname @@ -483,7 +485,7 @@ class Module: self.name = svn_to_git_name(self.name) self.options=options - self.module_dir="%s/%s"%(options.workdir,self.name) + self.module_dir="%s/%s"%(options.workdir,self.pathname) self.repository = None self.build = None @@ -508,11 +510,11 @@ class Module: def friendly_name (self): if hasattr(self,'branch'): - return "%s:%s"%(self.name,self.branch) + return "%s:%s"%(self.pathname,self.branch) elif hasattr(self,'tagname'): - return "%s@%s"%(self.name,self.tagname) + return "%s@%s"%(self.pathname,self.tagname) else: - return self.name + return self.pathname @classmethod def git_remote_dir (cls, name): @@ -577,6 +579,10 @@ that for other purposes than tagging""" % options.workdir Module.config[key]=value f.close() + # owerride config variables using options. + if options.build_module: + Module.config['build'] = options.build_module + if not os.path.isdir (options.workdir): print "Cannot find",options.workdir,"let's create it" Command("mkdir -p %s" % options.workdir, options).run_silent() @@ -620,8 +626,8 @@ that for other purposes than tagging""" % options.workdir print 'Checking for',self.module_dir if not os.path.isdir (self.module_dir): - if Repository.has_moved_to_git(self.name, Module.config): - self.repository = GitRepository.checkout(self.git_remote_dir(self.name), + if Repository.has_moved_to_git(self.pathname, Module.config): + self.repository = GitRepository.checkout(self.git_remote_dir(self.pathname), self.module_dir, self.options) else: @@ -633,7 +639,7 @@ that for other purposes than tagging""" % options.workdir self.repository = Repository(self.module_dir, self.options) if self.repository.type == "svn": # check if module has moved to git - if Repository.has_moved_to_git(self.name, Module.config): + if Repository.has_moved_to_git(self.pathname, Module.config): Command("rm -rf %s" % self.module_dir, self.options).run_silent() self.init_module_dir() # check if we have the required branch/tag @@ -643,7 +649,6 @@ that for other purposes than tagging""" % options.workdir elif self.repository.type == "git": if hasattr(self,'branch'): - print "to branch", self.branch self.repository.to_branch(self.branch) elif hasattr(self,'tagname'): self.repository.to_tag(self.tagname) @@ -689,7 +694,7 @@ that for other purposes than tagging""" % options.workdir if level2: return level2[0] - raise Exception, 'Cannot guess specfile for module %s -- patterns were %s or %s'%(self.name,pattern1,pattern2) + raise Exception, 'Cannot guess specfile for module %s -- patterns were %s or %s'%(self.pathname,pattern1,pattern2) def all_specnames (self): level1=glob("%s/*.spec" % self.module_dir) @@ -858,7 +863,7 @@ that for other purposes than tagging""" % options.workdir # brute-force : change uncommented lines that define -SVNPATH else: if self.options.verbose: - print 'Searching for -SVNPATH or -GITPATH lines referring to /%s/\n\tin %s .. '%(self.name,tagsfile), + print 'Searching for -SVNPATH or -GITPATH lines referring to /%s/\n\tin %s .. '%(self.pathname,tagsfile), pattern="\A\s*%s-(SVNPATH|GITPATH)\s*(=|:=)\s*(?P[^\s]+)/%s[^\s]+"\ %(self.name,self.name) matcher_module=re.compile(pattern) @@ -867,7 +872,7 @@ that for other purposes than tagging""" % options.workdir if attempt: if line.find("-GITPATH") >= 0: modulepath = "%s-GITPATH"%self.name - replacement = "%-32s:= %s/%s.git@%s\n"%(modulepath,attempt.group('url_main'),self.name,newname) + replacement = "%-32s:= %s/%s.git@%s\n"%(modulepath,attempt.group('url_main'),self.pathname,newname) else: modulepath = "%s-SVNPATH"%self.name replacement = "%-32s:= %s/%s/tags/%s\n"%(modulepath,attempt.group('url_main'),self.name,newname) @@ -944,7 +949,7 @@ that for other purposes than tagging""" % options.workdir # checking for diffs diff_output = self.repository.diff_with_tag(old_tag_name) if len(diff_output) == 0: - if not prompt ("No pending difference in module %s, want to tag anyway"%self.name,False): + if not prompt ("No pending difference in module %s, want to tag anyway"%self.pathname,False): return # side effect in trunk's specfile @@ -1094,7 +1099,7 @@ n: move to next file"""%locals() if self.options.list: if diff_output: - print self.name + print self.pathname else: thename=self.friendly_name() do_print=False @@ -1238,6 +1243,9 @@ def modules_diff(first, second): diff = {} for module in first: + if module not in second: + print "=== module %s missing in right-hand side ==="%module + continue if first[module]['tag_or_branch'] != second[module]['tag_or_branch']: diff[module] = (first[module]['tag_or_branch'], second[module]['tag_or_branch']) @@ -1249,8 +1257,17 @@ def modules_diff(first, second): return diff, new_modules, removed_modules -def release_changelog(options, buildtag_old, buildtag_new, tagfile): +def release_changelog(options, buildtag_old, buildtag_new): + + tagfile = options.distrotags[0] + if not tagfile: + print "ERROR: provide a tagfile name (eg. onelab, onelab-k27, planetlab)" + return + tagfile = "%s-tags.mk" % tagfile + print '----' + print '----' + print '----' print '= build tag %s to %s =' % (buildtag_old, buildtag_new) print '== distro %s (%s to %s) ==' % (tagfile, buildtag_old, buildtag_new) @@ -1258,42 +1275,49 @@ def release_changelog(options, buildtag_old, buildtag_new, tagfile): build.init_module_dir() first = build.get_modules(tagfile) - print '* from', buildtag_old, build.repository.gitweb() + print ' * from', buildtag_old, build.repository.gitweb() build = Build("build@%s" % buildtag_new, options) build.init_module_dir() second = build.get_modules(tagfile) - print '* to', buildtag_new, build.repository.gitweb() + print ' * to', buildtag_new, build.repository.gitweb() diff, new_modules, removed_modules = modules_diff(first, second) - for module in diff: + def get_module(name, tag): + if not tag or tag == "trunk": + return Module("%s" % (module), options) + else: + return Module("%s@%s" % (module, tag), options) + + + for module in diff: print '=== %s - %s to %s : package %s ===' % (tagfile, buildtag_old, buildtag_new, module) first, second = diff[module] - m = Module("%s@%s" % (module, first), options) - os.system('rm -rf %s' % m.module_dir) + m = get_module(module, first) + os.system('rm -rf %s' % m.module_dir) # cleanup module dir m.init_module_dir() if m.repository.type == "svn": - print '* from', first, m.repository.url() + print ' * from', first, m.repository.url() else: - print '* from', first, m.repository.gitweb() + print ' * from', first, m.repository.gitweb() specfile = m.main_specname() (tmpfd, tmpfile) = tempfile.mkstemp() os.system("cp -f /%s %s" % (specfile, tmpfile)) - m = Module("%s@%s" % (module, second), options) + m = get_module(module, second) m.init_module_dir() specfile = m.main_specname() if m.repository.type == "svn": - print '* to', second, m.repository.url() + print ' * to', second, m.repository.url() else: - print '* to', second, m.repository.gitweb() + print ' * to', second, m.repository.gitweb() print '{{{' os.system("diff -u %s %s" % (tmpfile, specfile)) @@ -1308,6 +1332,19 @@ def release_changelog(options, buildtag_old, buildtag_new, tagfile): print '=== %s : removed package from build %s ===' % (tagfile, module) +def adopt_master (options, args): + modules=[] + for module in options.modules: + modules += module.split() + for module in modules: + modobj=Module(module,options) + for tags_file in args: + if options.verbose: + print 'adopting master for',module,'in',tags_file + modobj.patch_tags_file(tags_file,'_unused_','master',fine_grain=False) + if options.verbose: + Command("git diff %s"%" ".join(args),options).run() + ############################## class Main: @@ -1333,6 +1370,12 @@ Branches: release-changelog :4.2 4.2-rc25 You can refer to the build trunk by just mentioning 'trunk', e.g. release-changelog -t coblitz-tags.mk coblitz-2.01-rc6 trunk +""" + master_usage="""Usage: %prog [options] tag-file[s] + With this command you can adopt one or several masters in your tag files + This should be run in your daily build workdir; no call of git nor svn is done + Examples: + module-master -m "plewww plcapi" -m Monitor onelab*tags.mk """ common_usage="""More help: see http://svn.planet-lab.org/wiki/ModuleTools""" @@ -1350,10 +1393,13 @@ Branches: this is a last resort option, mostly for repairs""", 'changelog' : """extract changelog between build tags expected arguments are a list of tags""", + 'master' : """locally adopt master or trunk for some modules""", } silent_modes = ['list'] - release_modes = ['changelog'] + # 'changelog' is for release-changelog + # 'master' is for 'adopt-master' + regular_modes = set(modes.keys()).difference(set(['changelog','master'])) @staticmethod def optparse_list (option, opt, value, parser): @@ -1374,16 +1420,37 @@ Branches: print "Supported commands:" + " ".join(Main.modes.keys()) sys.exit(1) - if mode not in Main.release_modes: + usage='undefined usage, mode=%s'%mode + if mode in Main.regular_modes: usage = Main.module_usage usage += Main.common_usage usage += "\nmodule-%s : %s"%(mode,Main.modes[mode]) - else: + elif mode=='changelog': usage = Main.release_usage usage += Main.common_usage + elif mode=='master': + usage = Main.master_usage + usage += Main.common_usage parser=OptionParser(usage=usage) + # the 'master' mode is really special and doesn't share any option + if mode=='master': + parser.add_option("-m","--module",action="append",dest="modules",default=[], + help="modules, can be used several times or with quotes") + parser.add_option("-v","--verbose", action="store_true", dest="verbose", default=False, + help="run in verbose mode") + (options, args) = parser.parse_args() + options.workdir='unused' + options.dry_run=False + options.mode='master' + if len(args)==0 or len(options.modules)==0: + parser.print_help() + sys.exit(1) + adopt_master (options,args) + return + + # the other commands (module-* and release-changelog) share the same skeleton if mode == "tag" or mode == 'branch': parser.add_option("-s","--set-version",action="store",dest="new_version",default=None, help="set new version and reset taglevel to 0") @@ -1422,6 +1489,8 @@ Branches: ** THIS MUST NOT ** be your usual working directory""") parser.add_option("-F","--fast-checks",action="store_true",dest="fast_checks",default=False, help="skip safety checks, such as svn updates -- use with care") + parser.add_option("-B","--build-module",action="store",dest="build_module",default=None, + help="specify a build module to owerride the one in the CONFIG") # default verbosity depending on function - temp verbose_modes= ['tag', 'sync', 'branch'] @@ -1440,6 +1509,8 @@ Branches: options.www=False options.debug=False + + ########## module-* if len(args) == 0: if options.all_modules: @@ -1452,7 +1523,7 @@ Branches: Module.init_homedir(options) - if mode not in Main.release_modes: + if mode in Main.regular_modes: modules=[ Module(modname,options) for modname in args ] # hack: create a dummy Module to store errors/warnings error_module = Module('__errors__',options)