]> SALOME platform Git repositories - modules/yacs.git/commitdiff
Salome HOME
do not generate .sh environment files in virtual application anymore
authorCédric Aguerre <cedric.aguerre@edf.fr>
Fri, 28 Oct 2016 13:33:46 +0000 (15:33 +0200)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Fri, 28 Oct 2016 13:58:33 +0000 (15:58 +0200)
bin/appli_gen.py
bin/appliskel/salome_starter.py

index 4e04d1d3256f84712f93c8ac0c82fc4dbd295b5f..e56d8d5f42fd2159538fa614ccc607dd51b7c0fb 100644 (file)
@@ -41,10 +41,8 @@ import optparse
 
 # --- names of tags in XML configuration file
 appli_tag   = "application"
-prereq_tag  = "prerequisites"
 context_tag = "context"
 sha1_collect_tag = "sha1_collections"
-system_conf_tag  = "system_conf"
 modules_tag = "modules"
 module_tag  = "module"
 samples_tag = "samples"
@@ -86,10 +84,6 @@ class xml_parser:
     def startElement(self, name, attrs):
         self.space.append(name)
         self.current = None
-        # --- if we are analyzing "prerequisites" element then store its "path" attribute
-        if self.space == [appli_tag, prereq_tag] and path_att in attrs.getNames():
-            self.config["prereq_path"] = attrs.getValue( path_att )
-            pass
         # --- if we are analyzing "context" element then store its "path" attribute
         if self.space == [appli_tag, context_tag] and path_att in attrs.getNames():
             self.config["context_path"] = attrs.getValue( path_att )
@@ -98,10 +92,6 @@ class xml_parser:
         if self.space == [appli_tag, sha1_collect_tag] and path_att in attrs.getNames():
             self.config["sha1_collect_path"] = attrs.getValue( path_att )
             pass
-        # --- if we are analyzing "system_conf" element then store its "path" attribute
-        if self.space == [appli_tag, system_conf_tag] and path_att in attrs.getNames():
-            self.config["system_conf_path"] = attrs.getValue( path_att )
-            pass
         # --- if we are analyzing "resources" element then store its "path" attribute
         if self.space == [appli_tag, resources_tag] and path_att in attrs.getNames():
             self.config["resources_path"] = attrs.getValue( path_att )
@@ -264,14 +254,6 @@ def install(prefix, config_file, verbose=0):
     # Creation of env.d directory
     virtual_salome.mkdir(os.path.join(home_dir,'env.d'))
 
-    if _config.has_key("prereq_path") and os.path.isfile(_config["prereq_path"]):
-        shutil.copyfile(_config["prereq_path"],
-                        os.path.join(home_dir, 'env.d', 'envProducts.sh'))
-        pass
-    else:
-        print "WARNING: prerequisite file does not exist"
-        pass
-
     if _config.has_key("context_path") and os.path.isfile(_config["context_path"]):
         shutil.copyfile(_config["context_path"],
                         os.path.join(home_dir, 'env.d', 'envProducts.cfg'))
@@ -288,25 +270,6 @@ def install(prefix, config_file, verbose=0):
         print "WARNING: context file does not exist"
         pass
 
-    if _config.has_key("system_conf_path") and os.path.isfile(_config["system_conf_path"]):
-        shutil.copyfile(_config["system_conf_path"],
-                        os.path.join(home_dir, 'env.d', 'envConfSystem.sh'))
-        pass
-
-    # Create environment file: configSalome.sh
-    with open(os.path.join(home_dir, 'env.d', 'configSalome.sh'),'w') as f:
-        for module in _config.get("modules", []):
-            command = 'export '+ module + '_ROOT_DIR=${HOME}/${APPLI}\n'
-            f.write(command)
-            pass
-        if _config.has_key("samples_path"):
-            command = 'export DATA_DIR=' + _config["samples_path"] +'\n'
-            f.write(command)
-            pass
-        if _config.has_key("resources_path") and os.path.isfile(_config["resources_path"]):
-            command = 'export USER_CATALOG_RESOURCES_FILE=' + os.path.abspath(_config["resources_path"]) +'\n'
-            f.write(command)
-
     # Create configuration file: configSalome.cfg
     with open(os.path.join(home_dir, 'env.d', 'configSalome.cfg'),'w') as f:
         command = "[SALOME ROOT_DIR (modules) Configuration]\n"
@@ -323,16 +286,6 @@ def install(prefix, config_file, verbose=0):
             command = 'USER_CATALOG_RESOURCES_FILE=' + os.path.abspath(_config["resources_path"]) +'\n'
             f.write(command)
 
-
-    # Create environment file: configGUI.sh
-    with open(os.path.join(home_dir, 'env.d', 'configGUI.sh'),'w') as f:
-        command = """export SalomeAppConfig=${HOME}/${APPLI}
-export SUITRoot=${HOME}/${APPLI}/share/salome
-export DISABLE_FPE=1
-export MMGT_REENTRANT=1
-"""
-        f.write(command)
-
     # Create configuration file: configGUI.cfg
     with open(os.path.join(home_dir, 'env.d', 'configGUI.cfg'),'w') as f:
         command = """[SALOME GUI Configuration]
index b381b89c9c990fa4fe017da129d6d431bfd81c3f..ff357fba30b452ee1f711e0603d833da7366baa4 100644 (file)
@@ -58,7 +58,7 @@ def initialize(launcherPath, launcherFile):
 
   appliPath = os.path.relpath(appliPath, homePath)
   absoluteAppliPath = os.path.join(homePath, appliPath)
-  os.environ['APPLI'] = appliPath # needed to convert .sh environment files
+  os.environ['APPLI'] = appliPath
   os.environ['ABSOLUTE_APPLI_PATH'] = absoluteAppliPath
 
   sys.path[:0] = [os.path.realpath(os.path.join(absoluteAppliPath, "bin", "salome", "test"))]