* All Tools:

- Change: Switch from "goodies" to "bootstrap".
This commit is contained in:
Jean-Paul Chaput 2010-07-14 19:50:21 +00:00
parent 19e608152e
commit 0258a0fd90
4 changed files with 42 additions and 42 deletions

View File

@ -1,5 +1,5 @@
project ( Goodies ) project ( Bootstrap )
cmake_minimum_required ( VERSION 2.4.0 ) cmake_minimum_required ( VERSION 2.4.0 )

View File

@ -114,11 +114,11 @@ class ProjectBuilder:
if self._enableShared == "ON": self._libMode = "Shared" if self._enableShared == "ON": self._libMode = "Shared"
else: self._libMode = "Static" else: self._libMode = "Static"
self._specFileIn = os.path.join ( self._sourceDir, "goodies", "coriolis2.spec.in" ) self._specFileIn = os.path.join ( self._sourceDir, "bootstrap", "coriolis2.spec.in" )
self._specFile = os.path.join ( self._sourceDir, "goodies", "coriolis2.spec" ) self._specFile = os.path.join ( self._sourceDir, "bootstrap", "coriolis2.spec" )
self._sourceTarBz2 = "coriolis2-1.0.%s.tar.bz2" % self._svnTag self._sourceTarBz2 = "coriolis2-1.0.%s.tar.bz2" % self._svnTag
self._binaryTarBz2 = "coriolis2-binary-1.0.%s-1.el5_soc.tar.bz2" % self._svnTag self._binaryTarBz2 = "coriolis2-binary-1.0.%s-1.el5_soc.tar.bz2" % self._svnTag
self._distribPatch = os.path.join ( self._sourceDir, "goodies", "coriolis2-for-distribution.patch" ) self._distribPatch = os.path.join ( self._sourceDir, "bootstrap", "coriolis2-for-distribution.patch" )
return return
@ -516,44 +516,44 @@ class ProjectBuilder:
if __name__ == "__main__": if __name__ == "__main__":
goodies = Project ( name = "goodies" bootstrap = Project ( name = "bootstrap"
, tools =[ "goodies" ] , tools =[ "bootstrap" ]
, repository="/users/outil/coriolis/svn" , repository="/users/outil/coriolis/svn"
) )
vlsisapd = Project ( name = "vlsisapd" vlsisapd = Project ( name = "vlsisapd"
, tools =[ "vlsisapd" ] , tools =[ "vlsisapd" ]
, repository="/users/outil/coriolis/svn" , repository="/users/outil/coriolis/svn"
) )
coriolis = Project ( name = "coriolis" coriolis = Project ( name = "coriolis"
, tools =[ "hurricane" , tools =[ "hurricane"
, "crlcore" , "crlcore"
, "nimbus" , "nimbus"
, "metis" , "metis"
, "mauka" , "mauka"
, "knik" , "knik"
, "katabatic" , "katabatic"
, "kite" , "kite"
, "equinox" , "equinox"
, "solstice" , "solstice"
, "unicorn" , "unicorn"
, "ispd" , "ispd"
, "cumulus" , "cumulus"
, "stratus1" , "stratus1"
] ]
, repository="/users/outil/coriolis/svn" , repository="/users/outil/coriolis/svn"
) )
chams = Project ( name = "chams" chams = Project ( name = "chams"
, tools =[ "hurricaneAMS" , tools =[ "hurricaneAMS"
, "amsCore" , "amsCore"
, "opSim" , "opSim"
, "scribe" , "scribe"
, "pharos" , "pharos"
, "schematic" , "schematic"
] ]
, repository="/users/outil/chams/svn" , repository="/users/outil/chams/svn"
) )
parser = optparse.OptionParser () parser = optparse.OptionParser ()
# Build relateds. # Build relateds.
@ -584,7 +584,7 @@ if __name__ == "__main__":
( options, args ) = parser.parse_args () ( options, args ) = parser.parse_args ()
builder = ProjectBuilder () builder = ProjectBuilder ()
builder.register ( goodies ) builder.register ( bootstrap )
builder.register ( vlsisapd ) builder.register ( vlsisapd )
builder.register ( coriolis ) builder.register ( coriolis )
builder.register ( chams ) builder.register ( chams )

View File

@ -2,7 +2,7 @@
set ( finders FindFLEX.cmake set ( finders FindFLEX.cmake
FindBISON.cmake FindBISON.cmake
FindPythonSitePackages.cmake FindPythonSitePackages.cmake
FindGoodies.cmake FindBootstrap.cmake
) )
install ( FILES ${finders} DESTINATION share/cmake/Modules ) install ( FILES ${finders} DESTINATION share/cmake/Modules )