Salome HOME
CCAR: mise a jour proc distrib
[tools/eficas.git] / Aster / sdist.py
index 830ccb73a9584bed84aff842b78e323d2bbe5598..543640d708971c25d313ca9018aaedf467b53538 100644 (file)
@@ -23,7 +23,7 @@ import types
 
 version="$Name:  $"[7:-2] or 'Test1_2'
 # ==========Path du noyau fourni par Aster====================
-path_Noyau="../../../Tutorial/Superv"
+path_Noyau="../../AccasAster"
 # ============================================================
 nom_distrib="Eficas"+version+"AsterSTA6"
 path_distrib=os.path.join("dist",nom_distrib)
@@ -33,14 +33,17 @@ dir_download= "/home/eficas/WWW/telechargement/eficas"
 def main():
    if os.path.isdir('dist'):shutil.rmtree('dist')
 
-   copyfiles('.',path_distrib,['README','LICENSE.TERMS','INSTALL'])
+   copyfiles('.',path_distrib,['LICENSE.TERMS','INSTALL'])
 
    copyfiles('../Editeur',os.path.join(path_distrib,'Editeur'),['*.py','faqs.txt'])
    copyfiles('../Ihm',os.path.join(path_distrib,'Ihm'),['*.py'])
    copyfiles('../Extensions',os.path.join(path_distrib,'Extensions'),['*.py'])
    copyfiles('../Accas',os.path.join(path_distrib,'Accas'),['*.py'])
+   copyfiles('../AIDE',os.path.join(path_distrib,'AIDE'),['*.py'])
+   copyfiles('../AIDE/fichiers',os.path.join(path_distrib,'AIDE','fichiers'),['*'])
    copyfiles('../Aster',os.path.join(path_distrib,'Aster'),['prefs.py',
                                                             'editeur.ini',
+                                                            'properties.py',
                                                             'eficas_aster.py',
                                                            ])
    copyfiles('../convert',os.path.join(path_distrib,'convert'),['*.py'])
@@ -54,10 +57,11 @@ def main():
    copyfiles(os.path.join(path_Noyau,'Validation'),os.path.join(path_distrib,'Validation'),['*.py'])
    copyfiles(os.path.join(path_Noyau,'Cata'),os.path.join(path_distrib,'Aster','Cata'),['*.py',
                                                                                        ])
+   copyfiles(os.path.join(path_Noyau,'Macro'),os.path.join(path_distrib,'Aster','Cata','Macro'),['*.py'])
 
    copyfiles('../Tools',os.path.join(path_distrib,'Tools'),['*.py'])
    copyfiles('../Tools/foztools',os.path.join(path_distrib,'Tools','foztools'),['*.py'])
-
+   
    tarball= maketarball('dist',nom_distrib,nom_distrib)
    try:
       shutil.copy(tarball,dir_download)