Fix the list of packaged projects in --rpm & --deb mode.
So I will not forgot one...
This commit is contained in:
parent
cb59c2070d
commit
f69714e8f1
|
@ -666,12 +666,14 @@ if __name__ == "__main__":
|
|||
if options.svnMethod: builder.svnMethod = options.svnMethod
|
||||
if options.svnTag: builder.svnTag = options.svnTag
|
||||
|
||||
packagedProjects = [ "bootstrap", "vlsisapd", "coriolis" ]
|
||||
|
||||
if options.svnStatus: builder.svnStatus ( tools=options.tools, projects=options.projects )
|
||||
elif options.svnUpdate: builder.svnUpdate ( tools=options.tools, projects=options.projects )
|
||||
elif options.svnCheckout: builder.svnCheckout ( tools=options.tools, projects=options.projects )
|
||||
elif options.tarball: builder.tarball ( tools=options.tools, projects=options.projects )
|
||||
elif options.doRpm: builder.doRpm ( tools=options.tools, projects=options.projects )
|
||||
elif options.doDeb: builder.doDeb ( tools=options.tools, projects=options.projects )
|
||||
elif options.doRpm: builder.doRpm ( tools=[] , projects=packagedProjects )
|
||||
elif options.doDeb: builder.doDeb ( tools=[] , projects=packagedProjects )
|
||||
else: builder.build ( tools=options.tools, projects=options.projects )
|
||||
|
||||
sys.exit ( 0 )
|
||||
|
|
|
@ -186,5 +186,9 @@ Development files for the Coriolis 2 package.
|
|||
|
||||
|
||||
%changelog
|
||||
* Wed Feb 2 2011 Jean-Paul.Chaput <Jean-Paul.Chaput@lip6.fr>
|
||||
- Second release, all tools from Coriolis 1 have been ported.
|
||||
(nimbus, mauka, metis, cumulus, stratus1)
|
||||
|
||||
* Sun May 16 2010 Jean-Paul.Chaput <Jean-Paul.Chaput@lip6.fr>
|
||||
- Initial packaging for svn release 1322 (alpha stage).
|
||||
|
|
Loading…
Reference in New Issue