priority=priority)
return 1
- self.spinner.update()
+ if "--nodeps" not in self.myopts:
+ self.spinner.update()
if mytype == "blocks":
if myparent and \
"--buildpkgonly" not in self.myopts and \
myresumeopts[myopt] = myarg
myopts=myresumeopts
myparams = create_depgraph_params(myopts, myaction)
- if not "--quiet" in myopts:
+ if "--quiet" not in myopts and "--nodeps" not in myopts:
print "Calculating dependencies ",
mydepgraph = depgraph(settings, trees,
myopts, myparams, spinner)
- if not "--quiet" in myopts:
+ if "--quiet" not in myopts and "--nodeps" not in myopts:
print "\b\b... done!"
else:
if ("--resume" in myopts):
myparams = create_depgraph_params(myopts, myaction)
if myaction in ["system","world"]:
- if not ("--quiet" in myopts):
+ if "--quiet" not in myopts and "--nodeps" not in myopts:
print "Calculating",myaction,"dependencies ",
sys.stdout.flush()
mydepgraph = depgraph(settings, trees, myopts, myparams, spinner)
if not mydepgraph.xcreate(myaction):
print "!!! Depgraph creation failed."
sys.exit(1)
- if not ("--quiet" in myopts):
+ if "--quiet" not in myopts and "--nodeps" not in myopts:
print "\b\b... done!"
else:
- if not ("--quiet" in myopts):
+ if "--quiet" not in myopts and "--nodeps" not in myopts:
print "Calculating dependencies ",
sys.stdout.flush()
mydepgraph = depgraph(settings, trees, myopts, myparams, spinner)
sys.exit(1)
if not retval:
sys.exit(1)
- if not ("--quiet" in myopts):
+ if "--quiet" not in myopts and "--nodeps" not in myopts:
print "\b\b... done!"
if ("--usepkgonly" in myopts) and mydepgraph.missingbins: