diff options
author | thierry <thierry@FreeBSD.org> | 2012-07-07 23:15:57 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2012-07-07 23:15:57 +0800 |
commit | 726ffef471eca6d32679402fd3a5d14eb4f9104e (patch) | |
tree | ef4b4db281d1c7ee910e1f2045f2b3da1b1ac7e8 /french | |
parent | 8d118c7017be387768cac6f95dde7a629dc3b07f (diff) | |
download | freebsd-ports-gnome-726ffef471eca6d32679402fd3a5d14eb4f9104e.tar.gz freebsd-ports-gnome-726ffef471eca6d32679402fd3a5d14eb4f9104e.tar.zst freebsd-ports-gnome-726ffef471eca6d32679402fd3a5d14eb4f9104e.zip |
Upgrade Code_Aster to 10.6.0-3.
Diffstat (limited to 'french')
32 files changed, 2351 insertions, 1533 deletions
diff --git a/french/aster/Makefile b/french/aster/Makefile index 08a24c9c9b5b..576e34a89269 100644 --- a/french/aster/Makefile +++ b/french/aster/Makefile @@ -7,7 +7,6 @@ PORTNAME= aster DISTVERSION= ${ASTER_DISTVERSION} -PORTREVISION= 5 CATEGORIES= french cad MAINTAINER= thierry@FreeBSD.org @@ -40,9 +39,10 @@ BUILD_DEPENDS+= ${LOCALBASE}/aster/ASTK/ASTK_SERV:${PORTSDIR}/cad/astk-serveur \ LIB_DEPENDS+= tcl${SHORT_TCL_VER}:${PORTSDIR}/lang/tcl${SHORT_TCL_VER} \ tk${SHORT_TK_VER}:${PORTSDIR}/x11-toolkits/tk${SHORT_TK_VER} \ hdf5.7:${PORTSDIR}/science/hdf5-18 \ - med.2:${PORTSDIR}/french/med + med.4:${PORTSDIR}/french/med RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Gnuplot:${PORTSDIR}/math/py-gnuplot \ ${LOCALBASE}/bin/onmetis.exe:${PORTSDIR}/math/metis-edf \ + ${SHELL_INSTALL_ASTER}:${PORTSDIR}/shells/${SHIADEP} \ ${LOCALBASE}/aster/ASTK/ASTK_SERV:${PORTSDIR}/cad/astk-serveur MANUAL_PACKAGE_BUILD= runaway python on pointyhat @@ -50,7 +50,7 @@ MANUAL_PACKAGE_BUILD= runaway python on pointyhat LICENSE= GPLv2 USE_BISON= build -USE_PYTHON= yes +USE_PYTHON= 2.6-2.7 # >2.5 and <3.0 HAS_CONFIGURE= yes REINPLACE_ARGS= -i "" @@ -187,9 +187,6 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/xemacs:${PORTSDIR}/editors/xemacs . elif exists(${LOCALBASE}/bin/gedit) WITH_ED= gedit RUN_DEPENDS+= ${LOCALBASE}/bin/gedit:${PORTSDIR}/editors/gedit -. elif exists(${LOCALBASE}/bin/kwrite) -WITH_ED= kwrite -RUN_DEPENDS+= ${LOCALBASE}/bin/kwrite:${PORTSDIR}/x11/kdebase3 . elif exists(${LOCALBASE}/bin/xedit) WITH_ED= xedit RUN_DEPENDS+= ${LOCALBASE}/bin/xedit:${PORTSDIR}/x11/xedit @@ -217,9 +214,12 @@ lib_atlas= atlas lib_blas= blas lib_atlas= # empty .endif + LASTKDIR?= ${PORTNAME}/ASTK/ASTK_CLIENT ASTKDIR= ${LOCALBASE}/${LASTKDIR} +BASH2RC= products_data.py + ${WRKSRC}/instdir/${vaster}/elements: build pre-everything:: @@ -234,6 +234,9 @@ pre-configure: ${REINPLACE_CMD} -e 's|?ASTER_ROOT?|${WRKSRC}/instdir|' \ ${WRKSRC}/products.py ${REINPLACE_CMD} -e "s|'gfortran'|'${FC}'|g" ${WRKSRC}/check_compilers.py +.for sh in ${BASH2RC} + ${REINPLACE_CMD} -e 's|/bin/bash|${SHELL_INSTALL_ASTER}|' ${WRKSRC}/${sh} +.endfor .if defined(WITH_ATLAS) ${REINPLACE_CMD} -e "s|cfg\['BLASLIB'\]|cfg['BLASLIB'], cfg['ATLASLIB']|" \ ${WRKSRC}/products.py @@ -293,31 +296,33 @@ pre-configure: ${ECHO_CMD} "ATLASLIB='${lib_atlas}'" >> ${WRKSRC}/setup.cfg .endif ${ECHO_CMD} "BLASLIB='${lib_blas}'" >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "LAPACKLIB='${LOCALBASE}/lib/liblapack.a'" >> ${WRKSRC}/setup.cfg + ${ECHO_CMD} "LAPACKLIB='lapack'" >> ${WRKSRC}/setup.cfg ${ECHO_CMD} "GZIP='/usr/bin/gzip'" >> ${WRKSRC}/setup.cfg ${ECHO_CMD} "SHELL_EXECUTION='${SHELL_INSTALL_ASTER}'" >> ${WRKSRC}/setup.cfg ${ECHO_CMD} "TERMINAL='xterm'" >> ${WRKSRC}/setup.cfg ${ECHO_CMD} "EDITOR='${WITH_ED}'" >> ${WRKSRC}/setup.cfg ${ECHO_CMD} "LDFLAGS='-v ${LDFLAGS}'" >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "FFLAGS='-c ${FFLAGS} ${FLAGARCH} ${FFLAGARCH}'" >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "FFLAGS_DBG='-c -g -O ${FLAGARCH} ${FFLAGARCH}'" >> ${WRKSRC}/setup.cfg + # -O2 causes failure in compilation of the elements -see GCC Bug 51267 + ${ECHO_CMD} "FFLAGS='-c ${FFLAGS:C|O2|O0|} -fno-tree-dse ${FLAGARCH} ${FFLAGARCH}'" >> ${WRKSRC}/setup.cfg + ${ECHO_CMD} "FFLAGS_DBG='-c -g -O -fno-tree-dse ${FLAGARCH} ${FFLAGARCH}'" >> ${WRKSRC}/setup.cfg .if defined(WITH_MPI) - ${ECHO_CMD} "F90FLAGS='-c ${FFLAGS} ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ + ${ECHO_CMD} "F90FLAGS='-c ${FFLAGS:C|O2|O0|} -fno-tree-dse ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "F90FLAGS_DBG='-c -g -O ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ + ${ECHO_CMD} "F90FLAGS_DBG='-c -g -O -fno-tree-dse ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "CFLAGS='-c ${CFLAGS} -fno-stack-protector -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ + # -O2 causes failure in compilation of the elements -see GCC Bug 51267 + ${ECHO_CMD} "CFLAGS='-c ${CFLAGS:C|O2|O0|} -fno-tree-dse -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "CFLAGS_DBG='-c -g -O -pipe -fno-stack-protector -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ + ${ECHO_CMD} "CFLAGS_DBG='-c -g -O -pipe -fno-tree-dse -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include -I${HOME_MPI}/include'" \ >> ${WRKSRC}/setup.cfg .else - ${ECHO_CMD} "F90FLAGS='-c ${FFLAGS} ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include'" \ + ${ECHO_CMD} "F90FLAGS='-c ${FFLAGS:C|O2|O0|} -fno-tree-dse ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include'" \ >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "F90FLAGS_DBG='-c -g -O ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include'" \ + ${ECHO_CMD} "F90FLAGS_DBG='-c -g -O -fno-tree-dse ${FLAGARCH} ${FFLAGARCH} -I${LOCALBASE}/include'" \ >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "CFLAGS='-c ${CFLAGS} -fno-stack-protector -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include'" \ + ${ECHO_CMD} "CFLAGS='-c ${CFLAGS:C|O2|O0|} -fno-tree-dse -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include'" \ >> ${WRKSRC}/setup.cfg - ${ECHO_CMD} "CFLAGS_DBG='-c -g -O -pipe -fno-stack-protector -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include'" \ + ${ECHO_CMD} "CFLAGS_DBG='-c -g -O -pipe -fno-tree-dse -DH5_USE_16_API ${PTHREAD_CFLAGS} ${FLAGARCH} -I${LOCALBASE}/include'" \ >> ${WRKSRC}/setup.cfg .endif .for is in ${INTERACTIVE_SCRIPTS} @@ -334,10 +339,9 @@ do-configure: ${CAT} ${CONFIGURE_WRKSRC}/setup.log @${ECHO_MSG} "------------ Fin debug ------------------" -pre-build: - ${MKDIR} ${WRKSRC}/instdir/etc/codeaster - ${CP} ${LOCALBASE}/aster/etc/codeaster/* \ - ${WRKSRC}/instdir/etc/codeaster/ +post-configure: + ${MKDIR} ${WRKSRC}/instdir/etc/ + ${CP} -R ${LOCALBASE}/aster/etc/codeaster ${WRKSRC}/instdir/etc/ ${ECHO_CMD} "#?vers : VVV?" >> ${WRKSRC}/instdir/etc/codeaster/aster ${CP} -R ${LOCALBASE}/aster/ASTK/ASTK_SERV/bin \ ${LOCALBASE}/aster/ASTK/ASTK_SERV/asrun \ diff --git a/french/aster/bsd.aster.mk b/french/aster/bsd.aster.mk index 5874ff0f9535..c2dc3f0d06e5 100644 --- a/french/aster/bsd.aster.mk +++ b/french/aster/bsd.aster.mk @@ -7,11 +7,11 @@ DISTVERSIONPREFIX= full-src- DISTVERSIONSUFFIX= .noarch -MASTER_SITES= http://www.code-aster.org/V2/UPLOAD/DOC/Telechargement/ +MASTER_SITES= http://www.code-aster.org/FICHIERS/ DISTNAME= aster-${DISTVERSIONPREFIX}${ASTER_DISTVERSION}${DISTVERSIONSUFFIX} DISTINFO_FILE= ${.CURDIR}/../../french/aster/distinfo -ASTER_VER= 10.3.0 +ASTER_VER= 10.6.0 ASTER_DISTVERSION= ${ASTER_VER}-3 EXTRACT_WRKSRC= ${WRKDIR}/aster-${DISTVERSIONPREFIX}${ASTER_VER}/SRC @@ -19,10 +19,12 @@ EXTRACT_WRKSRC= ${WRKDIR}/aster-${DISTVERSIONPREFIX}${ASTER_VER}/SRC DVSFX= ${DISTVERSIONSUFFIX} .elif ${PORTNAME} == homard DVSFX= .all +.elif ${PORTNAME} == eficas +DVPFX= -vexpl .endif .if ${PORTNAME} != aster post-extract: (cd ${WRKDIR} && \ - ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${EXTRACT_WRKSRC}/${PORTNAME}-${DISTVERSION}${DVSFX}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS}) + ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${EXTRACT_WRKSRC}/${PORTNAME}${DVPFX}-${DISTVERSION}${DVSFX}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS}) .endif diff --git a/french/aster/distinfo b/french/aster/distinfo index be260b044392..8f2a7a0d597f 100644 --- a/french/aster/distinfo +++ b/french/aster/distinfo @@ -1,2 +1,2 @@ -SHA256 (aster-full-src-10.3.0-3.noarch.tar.gz) = dd488ace0b1bffb12aaf5ea6a0bcda79189748e2074cf28c37e10d5a73b68e3b -SIZE (aster-full-src-10.3.0-3.noarch.tar.gz) = 216141148 +SHA256 (aster-full-src-10.6.0-3.noarch.tar.gz) = a1554f4440ab0d1a82291245bb08762fe151ec1346430d5b06b51e4f74ee2e9c +SIZE (aster-full-src-10.6.0-3.noarch.tar.gz) = 281247798 diff --git a/french/aster/files/patch-check_compilers.py b/french/aster/files/patch-check_compilers.py deleted file mode 100644 index 8c2f55d5de7a..000000000000 --- a/french/aster/files/patch-check_compilers.py +++ /dev/null @@ -1,19 +0,0 @@ ---- check_compilers.py.orig 2010-12-22 17:42:47.000000000 +0100 -+++ check_compilers.py 2010-12-27 23:35:57.000000000 +0100 -@@ -602,6 +602,16 @@ - else: # x86_64 - intel_arch = 'intel64' - mkl_src_name = 'mklvarsem64t.sh' -+ elif self.platform == 'FREEBSD': # Not yet tested with icc! -+ if self.arch == 'ia64': # ia64 -+ intel_arch = 'ia64' -+ mkl_src_name = 'mklvars64.sh' -+ elif self.arch == 'x86_64': # x86_64 -+ intel_arch = 'ia64' -+ mkl_src_name = 'mklvars64.sh' -+ else: # 32 bits -+ intel_arch = 'ia32' -+ mkl_src_name = 'mklvars32.sh' - else: - raise CheckCompilerError(_('Unsupported platform : %s') % self.platform) - diff --git a/french/aster/files/patch-products.py b/french/aster/files/patch-products.py index 9b85ff2745c8..a6af22d05468 100644 --- a/french/aster/files/patch-products.py +++ b/french/aster/files/patch-products.py @@ -1,6 +1,6 @@ ---- products.py.orig 2010-12-22 17:42:46.000000000 +0100 -+++ products.py 2010-12-27 23:44:22.000000000 +0100 -@@ -922,15 +922,16 @@ +--- products.py.orig 2012-01-11 16:29:00.000000000 +0100 ++++ products.py 2012-04-30 18:10:46.000000000 +0200 +@@ -933,7 +933,8 @@ 'HOME_PYTHON', 'PYTHON_EXE', 'PYTHONLIB', 'HOME_MUMPS', 'HOME_ZMAT', 'HOME_MPI', 'INCLUDE_MUMPS', 'HOME_METIS', 'HOME_MED', 'HOME_HDF', 'HOME_CRPCRS', 'HOME_NUMPY', 'USE_NUMPY', @@ -10,20 +10,9 @@ reqobj=['file:?ASTER_ROOT?/bin/as_run', 'file:?ASTER_ROOT?/etc/codeaster/profile.sh'], set=['MEDLIB', 'HDFLIB', 'MATHLIB', - 'MUMPSLIB', 'ZMATLIB', 'SCOTCHLIB', - 'LDFLAGS', -- 'CFLAGS', 'CFLAGS_DBG', 'CINCLUDE', -- 'FFLAGS', 'FFLAGS_DBG', 'FINCLUDE', -- 'F90FLAGS', 'F90FLAGS_DBG', 'F90INCLUDE', -+ 'CINCLUDE', -+ 'FINCLUDE', -+ 'F90INCLUDE', - 'NOBUILD', ], - ) - cfg['ENV_SH'] = cfg.get('ENV_SH', '') -@@ -968,6 +969,19 @@ +@@ -976,6 +977,19 @@ if cfg['IFDEF'] in ('LINUX', 'P_LINUX'): - zmat_platform='Linux' + zmat_platform = 'Linux' mpilibs.extend(['mpich']) + elif cfg['IFDEF']=='FREEBSD': + # Don't check gfortran, already part of SYSLIB @@ -41,10 +30,10 @@ elif cfg['IFDEF'] == 'LINUX64': mpilibs.extend(['mpich']) # others have not been tested ! -@@ -1010,11 +1024,12 @@ - cfg['MEDLIB']='' +@@ -1031,11 +1045,12 @@ # ----- libs c++ (for MED and ZMAT) + #XXX probably to remove (done by check_compiler) - if cfg['HOME_MED'] != '' or cfg['HOME_ZMAT'] != '': - for lib in cxxlibs: - ftools.findlib_and_set(cfg, 'CXXLIB', lib, @@ -58,8 +47,8 @@ + # err=False, append=True, maxdepth=max(ftools.maxdepth,10)) # ----- MUMPS - if cfg['HOME_MUMPS'] != '': -@@ -1023,12 +1038,15 @@ + if cfg.get('MUMPSLIB'): +@@ -1046,12 +1061,15 @@ if not less_than_version(dict_prod['mumps'], '4.8.0'): mumps_lib.extend(['smumps', 'cmumps', 'mumps_common']) mumps_lib.extend(['pord', 'mpiseq']) @@ -80,4 +69,4 @@ + ftools.CheckFromLastFound(cfg, 'HOME_MUMPS', 'lib') if cfg['HOME_METIS'] != '': cfg['MUMPSLIB'] += " -L%s/lib -lmetis" % cfg['HOME_METIS'] - opt['F90INCLUDE'] += ' -I%s' % os.path.join(cfg['ASTER_ROOT'],cfg['ASTER_VERSION'],'bibf90',cfg['INCLUDE_MUMPS']) + opt['F90INCLUDE'] += ' -I%s' % osp.join(cfg['ASTER_ROOT'],cfg['ASTER_VERSION'],'bibf90',cfg['INCLUDE_MUMPS']) diff --git a/french/aster/files/patch-setup.cfg b/french/aster/files/patch-setup.cfg index c7d2b91e8eca..848c8e2c22d4 100644 --- a/french/aster/files/patch-setup.cfg +++ b/french/aster/files/patch-setup.cfg @@ -1,6 +1,6 @@ ---- setup.cfg.orig 2010-02-09 10:04:59.000000000 +0100 -+++ setup.cfg 2010-02-17 21:24:28.000000000 +0100 -@@ -56,7 +56,7 @@ +--- setup.cfg.orig 2012-01-11 16:29:00.000000000 +0100 ++++ setup.cfg 2012-04-30 18:11:37.000000000 +0200 +@@ -66,7 +66,7 @@ # If a file or library is not found in these directories, you may try # using 'locate' command. Default is not to use locate because it usually # causes failure with inconsistent versions. @@ -9,7 +9,7 @@ USE_LOCATE = False #------------------------------------------------------------------------------- -@@ -100,7 +100,7 @@ +@@ -111,7 +111,7 @@ #INCLUDEDIR=['/myprefix/include', ] # To search for shared libraries first @@ -18,16 +18,3 @@ #------------------------------------------------------------------------------- -@@ -140,9 +140,9 @@ - - #------------------------------------------------------------------------------- - # Interface between Code_Aster and Salome --_install_omniORB = True --_install_omniORBpy = True --_install_pylotage = True -+#_install_omniORB = True -+#_install_omniORBpy = True -+#_install_pylotage = True - # Salome version supported by pylotage - SALOME_VERSION = 'DEFAULT' # DEFAULT means the last one supported by pylotage - diff --git a/french/aster/files/patch-setup.py b/french/aster/files/patch-setup.py deleted file mode 100644 index 5c86f10a8eb2..000000000000 --- a/french/aster/files/patch-setup.py +++ /dev/null @@ -1,39 +0,0 @@ ---- ./setup.py.orig 2010-02-09 10:04:59.000000000 +0100 -+++ ./setup.py 2010-02-11 23:32:34.000000000 +0100 -@@ -318,6 +318,14 @@ - cfg['ARCH'] = 'x86_64' - else: - cfg['IFDEF'] = 'LINUX' -+ elif sys.platform[:7] == 'freebsd': -+ cfg['IFDEF']='FREEBSD' -+ cfg['ARCH'] = 'x86' -+ if machine.endswith('64'): -+ if machine in ('x86_64', 'ia64'): -+ cfg['ARCH'] = machine -+ else: # force to x86_64 -+ cfg['ARCH'] = 'x86_64' - elif sys.platform[:4] == 'osf1': - cfg['IFDEF']='TRU64' - elif sys.platform == 'sunos5': -@@ -442,13 +450,6 @@ - if not type(math_lib) in (list, tuple): - math_lib = [math_lib,] - sys_lib = [] -- for glob_lib in ('pthread', 'z',): -- cfg['__tmp__'] = '' -- del cfg['__tmp__'] -- ftools.findlib_and_set(cfg, '__tmp__', glob_lib, prefshared=True, err=False, silent=False) -- if cfg.get('__tmp__'): -- ftools.AddToCache('lib', glob_lib, cfg['__tmp__']) -- sys_lib.append(glob_lib) - - # 1.4.2. ----- check for compilers - cfg_ini = cfg.copy() -@@ -541,6 +542,7 @@ - # and modify command line of those which don't have a --display= option - ListEdit=[ - ['nedit' , 'nedit',], -+ ['gvim' , 'gvim --display=@D',], - ['gedit' , 'gedit --display=@D',], - ['kwrite', 'kwrite --display @D',], - ['xemacs', 'xemacs -display @D',], diff --git a/french/aster/pkg-plist b/french/aster/pkg-plist index bbbf73872890..2f15cfdd922b 100644 --- a/french/aster/pkg-plist +++ b/french/aster/pkg-plist @@ -1,10 +1,6 @@ %%ASTERDIR%%/LICENSE.TERMS %%ASTERDIR%%/asterd %%ASTERDIR%%/asteru -%%ASTERDIR%%/astest/Liste -%%ASTERDIR%%/astest/Liste.init -%%ASTERDIR%%/astest/Liste.old -%%ASTERDIR%%/astest/Liste_180205 %%ASTERDIR%%/astest/adls102a.comm %%ASTERDIR%%/astest/adls102a.datg %%ASTERDIR%%/astest/adls102a.mail @@ -66,6 +62,10 @@ %%ASTERDIR%%/astest/adlv101e.comm %%ASTERDIR%%/astest/adlv101e.mail %%ASTERDIR%%/astest/adlv101e.para +%%ASTERDIR%%/astest/adlv301a.comm +%%ASTERDIR%%/astest/adlv301a.mail +%%ASTERDIR%%/astest/adlv301a.msup +%%ASTERDIR%%/astest/adlv301a.para %%ASTERDIR%%/astest/adlv312a.comm %%ASTERDIR%%/astest/adlv312a.mail %%ASTERDIR%%/astest/adlv312a.para @@ -130,71 +130,42 @@ %%ASTERDIR%%/astest/ahlv302f.msup %%ASTERDIR%%/astest/ahlv302f.para %%ASTERDIR%%/astest/aster@clpaster.cla.edfgdf -%%ASTERDIR%%/astest/comp001a.91 %%ASTERDIR%%/astest/comp001a.92 -%%ASTERDIR%%/astest/comp001a.93 %%ASTERDIR%%/astest/comp001a.comm %%ASTERDIR%%/astest/comp001a.mail %%ASTERDIR%%/astest/comp001a.para -%%ASTERDIR%%/astest/comp001b.91 -%%ASTERDIR%%/astest/comp001b.92 -%%ASTERDIR%%/astest/comp001b.93 %%ASTERDIR%%/astest/comp001b.comm %%ASTERDIR%%/astest/comp001b.para -%%ASTERDIR%%/astest/comp001c.92 %%ASTERDIR%%/astest/comp001c.comm %%ASTERDIR%%/astest/comp001c.para -%%ASTERDIR%%/astest/comp001d.91 -%%ASTERDIR%%/astest/comp001d.92 -%%ASTERDIR%%/astest/comp001d.93 %%ASTERDIR%%/astest/comp001d.comm %%ASTERDIR%%/astest/comp001d.para -%%ASTERDIR%%/astest/comp001e.91 -%%ASTERDIR%%/astest/comp001e.92 -%%ASTERDIR%%/astest/comp001e.93 %%ASTERDIR%%/astest/comp001e.comm %%ASTERDIR%%/astest/comp001e.para -%%ASTERDIR%%/astest/comp001f.92 %%ASTERDIR%%/astest/comp001f.comm %%ASTERDIR%%/astest/comp001f.para -%%ASTERDIR%%/astest/comp001g.92 %%ASTERDIR%%/astest/comp001g.comm %%ASTERDIR%%/astest/comp001g.para -%%ASTERDIR%%/astest/comp001h.91 -%%ASTERDIR%%/astest/comp001h.92 -%%ASTERDIR%%/astest/comp001h.93 %%ASTERDIR%%/astest/comp001h.comm %%ASTERDIR%%/astest/comp001h.mail %%ASTERDIR%%/astest/comp001h.para -%%ASTERDIR%%/astest/comp001i.91 -%%ASTERDIR%%/astest/comp001i.93 %%ASTERDIR%%/astest/comp001i.comm %%ASTERDIR%%/astest/comp001i.para -%%ASTERDIR%%/astest/comp002a.92 %%ASTERDIR%%/astest/comp002a.comm %%ASTERDIR%%/astest/comp002a.mail %%ASTERDIR%%/astest/comp002a.para -%%ASTERDIR%%/astest/comp002b.92 %%ASTERDIR%%/astest/comp002b.comm %%ASTERDIR%%/astest/comp002b.para -%%ASTERDIR%%/astest/comp002c.92 %%ASTERDIR%%/astest/comp002c.comm %%ASTERDIR%%/astest/comp002c.para -%%ASTERDIR%%/astest/comp002d.92 %%ASTERDIR%%/astest/comp002d.comm %%ASTERDIR%%/astest/comp002d.para -%%ASTERDIR%%/astest/comp002e.92 %%ASTERDIR%%/astest/comp002e.comm %%ASTERDIR%%/astest/comp002e.para -%%ASTERDIR%%/astest/comp002f.92 %%ASTERDIR%%/astest/comp002f.comm %%ASTERDIR%%/astest/comp002f.para -%%ASTERDIR%%/astest/comp002g.92 %%ASTERDIR%%/astest/comp002g.comm %%ASTERDIR%%/astest/comp002g.para -%%ASTERDIR%%/astest/comp002h.91 -%%ASTERDIR%%/astest/comp002h.92 -%%ASTERDIR%%/astest/comp002h.93 %%ASTERDIR%%/astest/comp002h.comm %%ASTERDIR%%/astest/comp002h.para %%ASTERDIR%%/astest/comp002i.92 @@ -218,6 +189,63 @@ %%ASTERDIR%%/astest/comp005d.comm %%ASTERDIR%%/astest/comp005d.mmed %%ASTERDIR%%/astest/comp005d.para +%%ASTERDIR%%/astest/comp007a.comm +%%ASTERDIR%%/astest/comp007a.para +%%ASTERDIR%%/astest/comp007b.comm +%%ASTERDIR%%/astest/comp007b.para +%%ASTERDIR%%/astest/comp007c.comm +%%ASTERDIR%%/astest/comp007c.para +%%ASTERDIR%%/astest/comp007d.comm +%%ASTERDIR%%/astest/comp007d.para +%%ASTERDIR%%/astest/comp008a.comm +%%ASTERDIR%%/astest/comp008a.para +%%ASTERDIR%%/astest/comp008b.comm +%%ASTERDIR%%/astest/comp008b.para +%%ASTERDIR%%/astest/comp008c.comm +%%ASTERDIR%%/astest/comp008c.para +%%ASTERDIR%%/astest/comp008d.comm +%%ASTERDIR%%/astest/comp008d.para +%%ASTERDIR%%/astest/comp008e.comm +%%ASTERDIR%%/astest/comp008e.para +%%ASTERDIR%%/astest/comp008f.comm +%%ASTERDIR%%/astest/comp008f.para +%%ASTERDIR%%/astest/comp008g.comm +%%ASTERDIR%%/astest/comp008g.para +%%ASTERDIR%%/astest/comp008h.comm +%%ASTERDIR%%/astest/comp008h.para +%%ASTERDIR%%/astest/comp008i.comm +%%ASTERDIR%%/astest/comp008i.para +%%ASTERDIR%%/astest/comp008j.comm +%%ASTERDIR%%/astest/comp008j.para +%%ASTERDIR%%/astest/comp008k.comm +%%ASTERDIR%%/astest/comp008k.para +%%ASTERDIR%%/astest/comp008l.comm +%%ASTERDIR%%/astest/comp008l.para +%%ASTERDIR%%/astest/comp008m.comm +%%ASTERDIR%%/astest/comp008m.para +%%ASTERDIR%%/astest/comp009a.comm +%%ASTERDIR%%/astest/comp009a.mail +%%ASTERDIR%%/astest/comp009a.para +%%ASTERDIR%%/astest/comp009b.comm +%%ASTERDIR%%/astest/comp009b.mail +%%ASTERDIR%%/astest/comp009b.para +%%ASTERDIR%%/astest/comp009c.comm +%%ASTERDIR%%/astest/comp009c.mail +%%ASTERDIR%%/astest/comp009c.para +%%ASTERDIR%%/astest/comp009d.comm +%%ASTERDIR%%/astest/comp009d.mail +%%ASTERDIR%%/astest/comp009d.para +%%ASTERDIR%%/astest/comp009f.comm +%%ASTERDIR%%/astest/comp009f.mail +%%ASTERDIR%%/astest/comp009f.para +%%ASTERDIR%%/astest/comp010c.comm +%%ASTERDIR%%/astest/comp010c.para +%%ASTERDIR%%/astest/comp010d.comm +%%ASTERDIR%%/astest/comp010d.para +%%ASTERDIR%%/astest/comp011a.comm +%%ASTERDIR%%/astest/comp011a.para +%%ASTERDIR%%/astest/comp011e.comm +%%ASTERDIR%%/astest/comp011e.para %%ASTERDIR%%/astest/demo001a.17 %%ASTERDIR%%/astest/demo001a.18 %%ASTERDIR%%/astest/demo001a.52 @@ -254,6 +282,13 @@ %%ASTERDIR%%/astest/demo006a.comm %%ASTERDIR%%/astest/demo006a.msh %%ASTERDIR%%/astest/demo006a.para +%%ASTERDIR%%/astest/distr01a.11 +%%ASTERDIR%%/astest/distr01a.50 +%%ASTERDIR%%/astest/distr01a.51 +%%ASTERDIR%%/astest/distr01a.com1 +%%ASTERDIR%%/astest/distr01a.comm +%%ASTERDIR%%/astest/distr01a.mmed +%%ASTERDIR%%/astest/distr01a.para %%ASTERDIR%%/astest/efica02a.com1 %%ASTERDIR%%/astest/efica02a.comm %%ASTERDIR%%/astest/efica02a.mail @@ -283,10 +318,18 @@ %%ASTERDIR%%/astest/erreu05a.comm %%ASTERDIR%%/astest/erreu05a.mmed %%ASTERDIR%%/astest/erreu05a.para +%%ASTERDIR%%/astest/erreu06a.comm +%%ASTERDIR%%/astest/erreu06a.para %%ASTERDIR%%/astest/erreu07a.comm %%ASTERDIR%%/astest/erreu07a.datg %%ASTERDIR%%/astest/erreu07a.mgib %%ASTERDIR%%/astest/erreu07a.para +%%ASTERDIR%%/astest/erreu08a.comm +%%ASTERDIR%%/astest/erreu08a.mmed +%%ASTERDIR%%/astest/erreu08a.para +%%ASTERDIR%%/astest/fdll200a.comm +%%ASTERDIR%%/astest/fdll200a.mail +%%ASTERDIR%%/astest/fdll200a.para %%ASTERDIR%%/astest/fdlv100a.comm %%ASTERDIR%%/astest/fdlv100a.mail %%ASTERDIR%%/astest/fdlv100a.msup @@ -308,6 +351,9 @@ %%ASTERDIR%%/astest/fdlv102c.comm %%ASTERDIR%%/astest/fdlv102c.mail %%ASTERDIR%%/astest/fdlv102c.para +%%ASTERDIR%%/astest/fdlv103a.comm +%%ASTERDIR%%/astest/fdlv103a.msup +%%ASTERDIR%%/astest/fdlv103a.para %%ASTERDIR%%/astest/fdlv105a.comm %%ASTERDIR%%/astest/fdlv105a.mail %%ASTERDIR%%/astest/fdlv105a.msup @@ -339,47 +385,84 @@ %%ASTERDIR%%/astest/fdlv112a.comm %%ASTERDIR%%/astest/fdlv112a.mail %%ASTERDIR%%/astest/fdlv112a.para +%%ASTERDIR%%/astest/fdnv100a.comm +%%ASTERDIR%%/astest/fdnv100a.datg +%%ASTERDIR%%/astest/fdnv100a.mail +%%ASTERDIR%%/astest/fdnv100a.mgib +%%ASTERDIR%%/astest/fdnv100a.para +%%ASTERDIR%%/astest/feti001a.comm +%%ASTERDIR%%/astest/feti001a.mail +%%ASTERDIR%%/astest/feti001a.para +%%ASTERDIR%%/astest/feti001b.comm +%%ASTERDIR%%/astest/feti001b.mail +%%ASTERDIR%%/astest/feti001b.para +%%ASTERDIR%%/astest/feti002a.comm +%%ASTERDIR%%/astest/feti002a.mail +%%ASTERDIR%%/astest/feti002a.para +%%ASTERDIR%%/astest/feti002b.comm +%%ASTERDIR%%/astest/feti002b.mail +%%ASTERDIR%%/astest/feti002b.para +%%ASTERDIR%%/astest/feti003a.comm +%%ASTERDIR%%/astest/feti003a.mail +%%ASTERDIR%%/astest/feti003a.para +%%ASTERDIR%%/astest/feti003b.comm +%%ASTERDIR%%/astest/feti003b.mail +%%ASTERDIR%%/astest/feti003b.para +%%ASTERDIR%%/astest/feti003c.comm +%%ASTERDIR%%/astest/feti003c.mail +%%ASTERDIR%%/astest/feti003c.para +%%ASTERDIR%%/astest/feti003d.comm +%%ASTERDIR%%/astest/feti003d.mail +%%ASTERDIR%%/astest/feti003d.para +%%ASTERDIR%%/astest/feti004a.comm +%%ASTERDIR%%/astest/feti004a.mail +%%ASTERDIR%%/astest/feti004a.para +%%ASTERDIR%%/astest/feti004b.comm +%%ASTERDIR%%/astest/feti004b.mail +%%ASTERDIR%%/astest/feti004b.para +%%ASTERDIR%%/astest/feti005a.comm +%%ASTERDIR%%/astest/feti005a.mail +%%ASTERDIR%%/astest/feti005a.para +%%ASTERDIR%%/astest/feti005b.comm +%%ASTERDIR%%/astest/feti005b.mail +%%ASTERDIR%%/astest/feti005b.para %%ASTERDIR%%/astest/feti006a.comm %%ASTERDIR%%/astest/feti006a.mail %%ASTERDIR%%/astest/feti006a.para -%%ASTERDIR%%/astest/feti008a.comm -%%ASTERDIR%%/astest/feti008a.mail -%%ASTERDIR%%/astest/feti008a.para %%ASTERDIR%%/astest/feti008b.comm %%ASTERDIR%%/astest/feti008b.mail %%ASTERDIR%%/astest/feti008b.para -%%ASTERDIR%%/astest/feti009a.comm -%%ASTERDIR%%/astest/feti009a.geo -%%ASTERDIR%%/astest/feti009a.msh -%%ASTERDIR%%/astest/feti009a.para %%ASTERDIR%%/astest/forma01a.comm %%ASTERDIR%%/astest/forma01a.datg %%ASTERDIR%%/astest/forma01a.mmed %%ASTERDIR%%/astest/forma01a.para %%ASTERDIR%%/astest/forma01b.comm -%%ASTERDIR%%/astest/forma01b.datg %%ASTERDIR%%/astest/forma01b.mmed %%ASTERDIR%%/astest/forma01b.para -%%ASTERDIR%%/astest/forma01c.com1 +%%ASTERDIR%%/astest/forma01c.21 %%ASTERDIR%%/astest/forma01c.comm %%ASTERDIR%%/astest/forma01c.datg -%%ASTERDIR%%/astest/forma01c.geo %%ASTERDIR%%/astest/forma01c.mmed -%%ASTERDIR%%/astest/forma01c.msh %%ASTERDIR%%/astest/forma01c.para -%%ASTERDIR%%/astest/forma01d.comm -%%ASTERDIR%%/astest/forma01d.datg -%%ASTERDIR%%/astest/forma01d.mmed -%%ASTERDIR%%/astest/forma01d.para -%%ASTERDIR%%/astest/forma02a.21 -%%ASTERDIR%%/astest/forma02a.22 -%%ASTERDIR%%/astest/forma02a.com1 %%ASTERDIR%%/astest/forma02a.comm -%%ASTERDIR%%/astest/forma02a.mail +%%ASTERDIR%%/astest/forma02a.datg +%%ASTERDIR%%/astest/forma02a.mmed %%ASTERDIR%%/astest/forma02a.para +%%ASTERDIR%%/astest/forma02b.com1 %%ASTERDIR%%/astest/forma02b.comm -%%ASTERDIR%%/astest/forma02b.mail +%%ASTERDIR%%/astest/forma02b.datg +%%ASTERDIR%%/astest/forma02b.mmed %%ASTERDIR%%/astest/forma02b.para +%%ASTERDIR%%/astest/forma02c.comm +%%ASTERDIR%%/astest/forma02c.datg +%%ASTERDIR%%/astest/forma02c.geo +%%ASTERDIR%%/astest/forma02c.mmed +%%ASTERDIR%%/astest/forma02c.msh +%%ASTERDIR%%/astest/forma02c.para +%%ASTERDIR%%/astest/forma02d.comm +%%ASTERDIR%%/astest/forma02d.datg +%%ASTERDIR%%/astest/forma02d.mmed +%%ASTERDIR%%/astest/forma02d.para %%ASTERDIR%%/astest/forma03a.21 %%ASTERDIR%%/astest/forma03a.comm %%ASTERDIR%%/astest/forma03a.datg @@ -407,47 +490,42 @@ %%ASTERDIR%%/astest/forma03d.mmed %%ASTERDIR%%/astest/forma03d.para %%ASTERDIR%%/astest/forma04a.comm -%%ASTERDIR%%/astest/forma04a.mail +%%ASTERDIR%%/astest/forma04a.datg +%%ASTERDIR%%/astest/forma04a.mmed %%ASTERDIR%%/astest/forma04a.para %%ASTERDIR%%/astest/forma04b.comm -%%ASTERDIR%%/astest/forma04b.mail +%%ASTERDIR%%/astest/forma04b.datg +%%ASTERDIR%%/astest/forma04b.mmed %%ASTERDIR%%/astest/forma04b.para %%ASTERDIR%%/astest/forma04c.comm -%%ASTERDIR%%/astest/forma04c.mail +%%ASTERDIR%%/astest/forma04c.datg +%%ASTERDIR%%/astest/forma04c.mmed %%ASTERDIR%%/astest/forma04c.para %%ASTERDIR%%/astest/forma05a.comm -%%ASTERDIR%%/astest/forma05a.mail +%%ASTERDIR%%/astest/forma05a.mmed %%ASTERDIR%%/astest/forma05a.para -%%ASTERDIR%%/astest/forma05b.21 -%%ASTERDIR%%/astest/forma05b.comm -%%ASTERDIR%%/astest/forma05b.mail -%%ASTERDIR%%/astest/forma05b.para %%ASTERDIR%%/astest/forma06a.comm -%%ASTERDIR%%/astest/forma06a.datg -%%ASTERDIR%%/astest/forma06a.mgib +%%ASTERDIR%%/astest/forma06a.mmed %%ASTERDIR%%/astest/forma06a.para -%%ASTERDIR%%/astest/forma06b.comm -%%ASTERDIR%%/astest/forma06b.datg -%%ASTERDIR%%/astest/forma06b.mgib -%%ASTERDIR%%/astest/forma06b.para -%%ASTERDIR%%/astest/forma08a.comm -%%ASTERDIR%%/astest/forma08a.datg -%%ASTERDIR%%/astest/forma08a.mgib -%%ASTERDIR%%/astest/forma08a.para -%%ASTERDIR%%/astest/forma08b.23 -%%ASTERDIR%%/astest/forma08b.comm -%%ASTERDIR%%/astest/forma08b.datg -%%ASTERDIR%%/astest/forma08b.mgib -%%ASTERDIR%%/astest/forma08b.para -%%ASTERDIR%%/astest/forma09a.comm -%%ASTERDIR%%/astest/forma09a.datg -%%ASTERDIR%%/astest/forma09a.mail -%%ASTERDIR%%/astest/forma09a.mgib -%%ASTERDIR%%/astest/forma09a.para -%%ASTERDIR%%/astest/forma09b.comm -%%ASTERDIR%%/astest/forma09b.datg -%%ASTERDIR%%/astest/forma09b.mgib -%%ASTERDIR%%/astest/forma09b.para +%%ASTERDIR%%/astest/forma07a.31 +%%ASTERDIR%%/astest/forma07a.comm +%%ASTERDIR%%/astest/forma07a.mmed +%%ASTERDIR%%/astest/forma07a.para +%%ASTERDIR%%/astest/forma07b.41 +%%ASTERDIR%%/astest/forma07b.com1 +%%ASTERDIR%%/astest/forma07b.com2 +%%ASTERDIR%%/astest/forma07b.comm +%%ASTERDIR%%/astest/forma07b.mmed +%%ASTERDIR%%/astest/forma07b.para +%%ASTERDIR%%/astest/forma10a.21 +%%ASTERDIR%%/astest/forma10a.22 +%%ASTERDIR%%/astest/forma10a.com1 +%%ASTERDIR%%/astest/forma10a.comm +%%ASTERDIR%%/astest/forma10a.mail +%%ASTERDIR%%/astest/forma10a.para +%%ASTERDIR%%/astest/forma10b.comm +%%ASTERDIR%%/astest/forma10b.mail +%%ASTERDIR%%/astest/forma10b.para %%ASTERDIR%%/astest/forma11a.comm %%ASTERDIR%%/astest/forma11a.mail %%ASTERDIR%%/astest/forma11a.para @@ -475,6 +553,31 @@ %%ASTERDIR%%/astest/forma12e.comm %%ASTERDIR%%/astest/forma12e.mmed %%ASTERDIR%%/astest/forma12e.para +%%ASTERDIR%%/astest/forma20a.comm +%%ASTERDIR%%/astest/forma20a.mail +%%ASTERDIR%%/astest/forma20a.para +%%ASTERDIR%%/astest/forma20b.comm +%%ASTERDIR%%/astest/forma20b.mail +%%ASTERDIR%%/astest/forma20b.para +%%ASTERDIR%%/astest/forma20c.comm +%%ASTERDIR%%/astest/forma20c.mail +%%ASTERDIR%%/astest/forma20c.para +%%ASTERDIR%%/astest/forma21a.comm +%%ASTERDIR%%/astest/forma21a.mail +%%ASTERDIR%%/astest/forma21a.para +%%ASTERDIR%%/astest/forma21b.21 +%%ASTERDIR%%/astest/forma21b.comm +%%ASTERDIR%%/astest/forma21b.mail +%%ASTERDIR%%/astest/forma21b.para +%%ASTERDIR%%/astest/forma30a.comm +%%ASTERDIR%%/astest/forma30a.datg +%%ASTERDIR%%/astest/forma30a.mail +%%ASTERDIR%%/astest/forma30a.mgib +%%ASTERDIR%%/astest/forma30a.para +%%ASTERDIR%%/astest/forma30b.comm +%%ASTERDIR%%/astest/forma30b.datg +%%ASTERDIR%%/astest/forma30b.mgib +%%ASTERDIR%%/astest/forma30b.para %%ASTERDIR%%/astest/gcpc001a.comm %%ASTERDIR%%/astest/gcpc001a.mail %%ASTERDIR%%/astest/gcpc001a.para @@ -523,9 +626,6 @@ %%ASTERDIR%%/astest/hpla101b.comm %%ASTERDIR%%/astest/hpla101b.mail %%ASTERDIR%%/astest/hpla101b.para -%%ASTERDIR%%/astest/hpla101c.comm -%%ASTERDIR%%/astest/hpla101c.mail -%%ASTERDIR%%/astest/hpla101c.para %%ASTERDIR%%/astest/hpla310a.comm %%ASTERDIR%%/astest/hpla310a.datg %%ASTERDIR%%/astest/hpla310a.mgib @@ -604,9 +704,16 @@ %%ASTERDIR%%/astest/hplv102a.comm %%ASTERDIR%%/astest/hplv102a.mail %%ASTERDIR%%/astest/hplv102a.para +%%ASTERDIR%%/astest/hplv103a.comm +%%ASTERDIR%%/astest/hplv103a.mail +%%ASTERDIR%%/astest/hplv103a.para %%ASTERDIR%%/astest/hsla303a.comm %%ASTERDIR%%/astest/hsla303a.mail %%ASTERDIR%%/astest/hsla303a.para +%%ASTERDIR%%/astest/hsll100a.21 +%%ASTERDIR%%/astest/hsll100a.comm +%%ASTERDIR%%/astest/hsll100a.mail +%%ASTERDIR%%/astest/hsll100a.para %%ASTERDIR%%/astest/hsls01a.comm %%ASTERDIR%%/astest/hsls01a.mail %%ASTERDIR%%/astest/hsls01a.mgib @@ -663,6 +770,26 @@ %%ASTERDIR%%/astest/hsna104a.comm %%ASTERDIR%%/astest/hsna104a.mail %%ASTERDIR%%/astest/hsna104a.para +%%ASTERDIR%%/astest/hsns101a.comm +%%ASTERDIR%%/astest/hsns101a.mail +%%ASTERDIR%%/astest/hsns101a.para +%%ASTERDIR%%/astest/hsns101b.comm +%%ASTERDIR%%/astest/hsns101b.mail +%%ASTERDIR%%/astest/hsns101b.para +%%ASTERDIR%%/astest/hsns101c.comm +%%ASTERDIR%%/astest/hsns101c.mail +%%ASTERDIR%%/astest/hsns101c.para +%%ASTERDIR%%/astest/hsns101d.comm +%%ASTERDIR%%/astest/hsns101d.mail +%%ASTERDIR%%/astest/hsns101d.para +%%ASTERDIR%%/astest/hsns102a.comm +%%ASTERDIR%%/astest/hsns102a.mail +%%ASTERDIR%%/astest/hsns102a.para +%%ASTERDIR%%/astest/hsns102b.comm +%%ASTERDIR%%/astest/hsns102b.datg +%%ASTERDIR%%/astest/hsns102b.mail +%%ASTERDIR%%/astest/hsns102b.mgib +%%ASTERDIR%%/astest/hsns102b.para %%ASTERDIR%%/astest/hsnv100a.comm %%ASTERDIR%%/astest/hsnv100a.mail %%ASTERDIR%%/astest/hsnv100a.para @@ -692,6 +819,15 @@ %%ASTERDIR%%/astest/hsnv100i.para %%ASTERDIR%%/astest/hsnv100j.comm %%ASTERDIR%%/astest/hsnv100j.para +%%ASTERDIR%%/astest/hsnv100k.comm +%%ASTERDIR%%/astest/hsnv100k.mmed +%%ASTERDIR%%/astest/hsnv100k.para +%%ASTERDIR%%/astest/hsnv100l.comm +%%ASTERDIR%%/astest/hsnv100l.mmed +%%ASTERDIR%%/astest/hsnv100l.para +%%ASTERDIR%%/astest/hsnv100m.comm +%%ASTERDIR%%/astest/hsnv100m.mmed +%%ASTERDIR%%/astest/hsnv100m.para %%ASTERDIR%%/astest/hsnv101a.comm %%ASTERDIR%%/astest/hsnv101a.mail %%ASTERDIR%%/astest/hsnv101a.para @@ -756,15 +892,57 @@ %%ASTERDIR%%/astest/hsnv123a.mail %%ASTERDIR%%/astest/hsnv123a.mgib %%ASTERDIR%%/astest/hsnv123a.para +%%ASTERDIR%%/astest/hsnv124a.comm +%%ASTERDIR%%/astest/hsnv124a.mail +%%ASTERDIR%%/astest/hsnv124a.para +%%ASTERDIR%%/astest/hsnv124b.comm +%%ASTERDIR%%/astest/hsnv124b.mail +%%ASTERDIR%%/astest/hsnv124b.para +%%ASTERDIR%%/astest/hsnv124c.comm +%%ASTERDIR%%/astest/hsnv124c.mail +%%ASTERDIR%%/astest/hsnv124c.para +%%ASTERDIR%%/astest/hsnv124d.comm +%%ASTERDIR%%/astest/hsnv124d.mail +%%ASTERDIR%%/astest/hsnv124d.para %%ASTERDIR%%/astest/hsnv124e.comm %%ASTERDIR%%/astest/hsnv124e.mail %%ASTERDIR%%/astest/hsnv124e.para +%%ASTERDIR%%/astest/hsnv124f.comm +%%ASTERDIR%%/astest/hsnv124f.mail +%%ASTERDIR%%/astest/hsnv124f.para +%%ASTERDIR%%/astest/hsnv125a.comm +%%ASTERDIR%%/astest/hsnv125a.mail +%%ASTERDIR%%/astest/hsnv125a.para +%%ASTERDIR%%/astest/hsnv125b.comm +%%ASTERDIR%%/astest/hsnv125b.mail +%%ASTERDIR%%/astest/hsnv125b.para +%%ASTERDIR%%/astest/hsnv125c.comm +%%ASTERDIR%%/astest/hsnv125c.mail +%%ASTERDIR%%/astest/hsnv125c.para +%%ASTERDIR%%/astest/hsnv125d.comm +%%ASTERDIR%%/astest/hsnv125d.mail +%%ASTERDIR%%/astest/hsnv125d.para +%%ASTERDIR%%/astest/hsnv125e.comm +%%ASTERDIR%%/astest/hsnv125e.mail +%%ASTERDIR%%/astest/hsnv125e.para +%%ASTERDIR%%/astest/hsnv125f.comm +%%ASTERDIR%%/astest/hsnv125f.mail +%%ASTERDIR%%/astest/hsnv125f.para +%%ASTERDIR%%/astest/hsnv125g.comm +%%ASTERDIR%%/astest/hsnv125g.mail +%%ASTERDIR%%/astest/hsnv125g.para %%ASTERDIR%%/astest/hsnv126a.comm %%ASTERDIR%%/astest/hsnv126a.mail %%ASTERDIR%%/astest/hsnv126a.para %%ASTERDIR%%/astest/hsnv126b.comm %%ASTERDIR%%/astest/hsnv126b.mail %%ASTERDIR%%/astest/hsnv126b.para +%%ASTERDIR%%/astest/hsnv128a.comm +%%ASTERDIR%%/astest/hsnv128a.mail +%%ASTERDIR%%/astest/hsnv128a.para +%%ASTERDIR%%/astest/hsnv128b.comm +%%ASTERDIR%%/astest/hsnv128b.mail +%%ASTERDIR%%/astest/hsnv128b.para %%ASTERDIR%%/astest/hsnv129a.comm %%ASTERDIR%%/astest/hsnv129a.mail %%ASTERDIR%%/astest/hsnv129a.para @@ -806,28 +984,20 @@ %%ASTERDIR%%/astest/hsnv136b.comm %%ASTERDIR%%/astest/hsnv136b.mail %%ASTERDIR%%/astest/hsnv136b.para +%%ASTERDIR%%/astest/hsnv136c.comm +%%ASTERDIR%%/astest/hsnv136c.mail +%%ASTERDIR%%/astest/hsnv136c.para %%ASTERDIR%%/astest/liste_ct.debug -%%ASTERDIR%%/astest/liste_ct.debug_OLD %%ASTERDIR%%/astest/liste_ct.long -%%ASTERDIR%%/astest/liste_ct.long_OLD %%ASTERDIR%%/astest/liste_ct.miss -%%ASTERDIR%%/astest/liste_ct.miss_OLD %%ASTERDIR%%/astest/liste_ct.mpi -%%ASTERDIR%%/astest/liste_ct.mpi_OLD %%ASTERDIR%%/astest/liste_ct.mpro -%%ASTERDIR%%/astest/liste_ct.mpro_OLD %%ASTERDIR%%/astest/liste_ct.perf %%ASTERDIR%%/astest/liste_ct.perfW -%%ASTERDIR%%/astest/liste_ct.perfW_OLD -%%ASTERDIR%%/astest/liste_ct.perf_OLD %%ASTERDIR%%/astest/liste_ct.rest -%%ASTERDIR%%/astest/liste_ct.rest_OLD %%ASTERDIR%%/astest/liste_ct.tout -%%ASTERDIR%%/astest/liste_ct.tout_OLD %%ASTERDIR%%/astest/liste_ct.vali -%%ASTERDIR%%/astest/liste_ct.vali_OLD %%ASTERDIR%%/astest/liste_ct.zmat -%%ASTERDIR%%/astest/liste_ct.zmat_OLD %%ASTERDIR%%/astest/liste_internet %%ASTERDIR%%/astest/liste_short %%ASTERDIR%%/astest/mtlp100a.66 @@ -862,6 +1032,11 @@ %%ASTERDIR%%/astest/perf003a.datg %%ASTERDIR%%/astest/perf003a.mmed %%ASTERDIR%%/astest/perf003a.para +%%ASTERDIR%%/astest/perf003b.14 +%%ASTERDIR%%/astest/perf003b.comm +%%ASTERDIR%%/astest/perf003b.datg +%%ASTERDIR%%/astest/perf003b.mmed +%%ASTERDIR%%/astest/perf003b.para %%ASTERDIR%%/astest/perf003d.comm %%ASTERDIR%%/astest/perf003d.datg %%ASTERDIR%%/astest/perf003d.mmed @@ -871,20 +1046,39 @@ %%ASTERDIR%%/astest/perf004a.datg %%ASTERDIR%%/astest/perf004a.mmed %%ASTERDIR%%/astest/perf004a.para +%%ASTERDIR%%/astest/perf004b.14 +%%ASTERDIR%%/astest/perf004b.comm +%%ASTERDIR%%/astest/perf004b.datg +%%ASTERDIR%%/astest/perf004b.mmed +%%ASTERDIR%%/astest/perf004b.para %%ASTERDIR%%/astest/perf005a.14 %%ASTERDIR%%/astest/perf005a.comm %%ASTERDIR%%/astest/perf005a.datg %%ASTERDIR%%/astest/perf005a.mmed %%ASTERDIR%%/astest/perf005a.para +%%ASTERDIR%%/astest/perf005b.14 +%%ASTERDIR%%/astest/perf005b.comm +%%ASTERDIR%%/astest/perf005b.datg +%%ASTERDIR%%/astest/perf005b.mmed +%%ASTERDIR%%/astest/perf005b.para %%ASTERDIR%%/astest/perf005d.comm %%ASTERDIR%%/astest/perf005d.datg %%ASTERDIR%%/astest/perf005d.mmed %%ASTERDIR%%/astest/perf005d.para +%%ASTERDIR%%/astest/perf005e.comm +%%ASTERDIR%%/astest/perf005e.datg +%%ASTERDIR%%/astest/perf005e.mmed +%%ASTERDIR%%/astest/perf005e.para %%ASTERDIR%%/astest/perf006a.14 %%ASTERDIR%%/astest/perf006a.comm %%ASTERDIR%%/astest/perf006a.datg %%ASTERDIR%%/astest/perf006a.mmed %%ASTERDIR%%/astest/perf006a.para +%%ASTERDIR%%/astest/perf006b.14 +%%ASTERDIR%%/astest/perf006b.comm +%%ASTERDIR%%/astest/perf006b.datg +%%ASTERDIR%%/astest/perf006b.mmed +%%ASTERDIR%%/astest/perf006b.para %%ASTERDIR%%/astest/petsc01a.comm %%ASTERDIR%%/astest/petsc01a.mail %%ASTERDIR%%/astest/petsc01a.para @@ -906,6 +1100,9 @@ %%ASTERDIR%%/astest/petsc01g.comm %%ASTERDIR%%/astest/petsc01g.mail %%ASTERDIR%%/astest/petsc01g.para +%%ASTERDIR%%/astest/petsc01h.comm +%%ASTERDIR%%/astest/petsc01h.mail +%%ASTERDIR%%/astest/petsc01h.para %%ASTERDIR%%/astest/pynl01a.comm %%ASTERDIR%%/astest/pynl01a.datg %%ASTERDIR%%/astest/pynl01a.msh @@ -931,6 +1128,10 @@ %%ASTERDIR%%/astest/rccm09a.35 %%ASTERDIR%%/astest/rccm09a.comm %%ASTERDIR%%/astest/rccm09a.para +%%ASTERDIR%%/astest/rccm09b.comm +%%ASTERDIR%%/astest/rccm09b.datg +%%ASTERDIR%%/astest/rccm09b.mgib +%%ASTERDIR%%/astest/rccm09b.para %%ASTERDIR%%/astest/sdld02a.comm %%ASTERDIR%%/astest/sdld02a.mail %%ASTERDIR%%/astest/sdld02a.para @@ -960,13 +1161,16 @@ %%ASTERDIR%%/astest/sdld102a.mail %%ASTERDIR%%/astest/sdld102a.msup %%ASTERDIR%%/astest/sdld102a.para -%%ASTERDIR%%/astest/sdld102a_pb %%ASTERDIR%%/astest/sdld102b.comm %%ASTERDIR%%/astest/sdld102b.mail %%ASTERDIR%%/astest/sdld102b.para %%ASTERDIR%%/astest/sdld102c.comm %%ASTERDIR%%/astest/sdld102c.mail %%ASTERDIR%%/astest/sdld102c.para +%%ASTERDIR%%/astest/sdld102d.comm +%%ASTERDIR%%/astest/sdld102d.mail +%%ASTERDIR%%/astest/sdld102d.msup +%%ASTERDIR%%/astest/sdld102d.para %%ASTERDIR%%/astest/sdld103a.comm %%ASTERDIR%%/astest/sdld103a.mail %%ASTERDIR%%/astest/sdld103a.para @@ -1082,6 +1286,9 @@ %%ASTERDIR%%/astest/sdld34a.comm %%ASTERDIR%%/astest/sdld34a.mail %%ASTERDIR%%/astest/sdld34a.para +%%ASTERDIR%%/astest/sdld34b.comm +%%ASTERDIR%%/astest/sdld34b.mail +%%ASTERDIR%%/astest/sdld34b.para %%ASTERDIR%%/astest/sdld400a.comm %%ASTERDIR%%/astest/sdld400a.mail %%ASTERDIR%%/astest/sdld400a.para @@ -1226,6 +1433,20 @@ %%ASTERDIR%%/astest/sdll123c.comm %%ASTERDIR%%/astest/sdll123c.mail %%ASTERDIR%%/astest/sdll123c.para +%%ASTERDIR%%/astest/sdll123d.21 +%%ASTERDIR%%/astest/sdll123d.66 +%%ASTERDIR%%/astest/sdll123d.comm +%%ASTERDIR%%/astest/sdll123d.mail +%%ASTERDIR%%/astest/sdll123d.para +%%ASTERDIR%%/astest/sdll123e.66 +%%ASTERDIR%%/astest/sdll123e.comm +%%ASTERDIR%%/astest/sdll123e.mail +%%ASTERDIR%%/astest/sdll123e.para +%%ASTERDIR%%/astest/sdll123f.21 +%%ASTERDIR%%/astest/sdll123f.66 +%%ASTERDIR%%/astest/sdll123f.comm +%%ASTERDIR%%/astest/sdll123f.mail +%%ASTERDIR%%/astest/sdll123f.para %%ASTERDIR%%/astest/sdll124a.comm %%ASTERDIR%%/astest/sdll124a.mail %%ASTERDIR%%/astest/sdll124a.para @@ -1259,6 +1480,9 @@ %%ASTERDIR%%/astest/sdll128a.comm %%ASTERDIR%%/astest/sdll128a.mail %%ASTERDIR%%/astest/sdll128a.para +%%ASTERDIR%%/astest/sdll129a.comm +%%ASTERDIR%%/astest/sdll129a.mail +%%ASTERDIR%%/astest/sdll129a.para %%ASTERDIR%%/astest/sdll130a.19 %%ASTERDIR%%/astest/sdll130a.92 %%ASTERDIR%%/astest/sdll130a.comm @@ -1274,6 +1498,12 @@ %%ASTERDIR%%/astest/sdll132b.comm %%ASTERDIR%%/astest/sdll132b.mail %%ASTERDIR%%/astest/sdll132b.para +%%ASTERDIR%%/astest/sdll133a.comm +%%ASTERDIR%%/astest/sdll133a.mail +%%ASTERDIR%%/astest/sdll133a.para +%%ASTERDIR%%/astest/sdll133b.comm +%%ASTERDIR%%/astest/sdll133b.mail +%%ASTERDIR%%/astest/sdll133b.para %%ASTERDIR%%/astest/sdll135a.comm %%ASTERDIR%%/astest/sdll135a.mail %%ASTERDIR%%/astest/sdll135a.para @@ -1324,6 +1554,7 @@ %%ASTERDIR%%/astest/sdll141d.comm %%ASTERDIR%%/astest/sdll141d.mail %%ASTERDIR%%/astest/sdll141d.para +%%ASTERDIR%%/astest/sdll141e.com0 %%ASTERDIR%%/astest/sdll141e.comm %%ASTERDIR%%/astest/sdll141e.mail %%ASTERDIR%%/astest/sdll141e.para @@ -1458,12 +1689,10 @@ %%ASTERDIR%%/astest/sdls106a.comm %%ASTERDIR%%/astest/sdls106a.msup %%ASTERDIR%%/astest/sdls106a.para -%%ASTERDIR%%/astest/sdls106b.19 %%ASTERDIR%%/astest/sdls106b.29 %%ASTERDIR%%/astest/sdls106b.comm %%ASTERDIR%%/astest/sdls106b.msup %%ASTERDIR%%/astest/sdls106b.para -%%ASTERDIR%%/astest/sdls106c.19 %%ASTERDIR%%/astest/sdls106c.29 %%ASTERDIR%%/astest/sdls106c.comm %%ASTERDIR%%/astest/sdls106c.msup @@ -1471,6 +1700,16 @@ %%ASTERDIR%%/astest/sdls106d.comm %%ASTERDIR%%/astest/sdls106d.msup %%ASTERDIR%%/astest/sdls106d.para +%%ASTERDIR%%/astest/sdls106e.19 +%%ASTERDIR%%/astest/sdls106e.29 +%%ASTERDIR%%/astest/sdls106e.comm +%%ASTERDIR%%/astest/sdls106e.para +%%ASTERDIR%%/astest/sdls106f.comm +%%ASTERDIR%%/astest/sdls106f.msup +%%ASTERDIR%%/astest/sdls106f.para +%%ASTERDIR%%/astest/sdls106g.comm +%%ASTERDIR%%/astest/sdls106g.msup +%%ASTERDIR%%/astest/sdls106g.para %%ASTERDIR%%/astest/sdls107a.comm %%ASTERDIR%%/astest/sdls107a.mail %%ASTERDIR%%/astest/sdls107a.para @@ -1498,15 +1737,20 @@ %%ASTERDIR%%/astest/sdls109h.comm %%ASTERDIR%%/astest/sdls109h.mail %%ASTERDIR%%/astest/sdls109h.para -%%ASTERDIR%%/astest/sdls110a.31 -%%ASTERDIR%%/astest/sdls110a.comm -%%ASTERDIR%%/astest/sdls110a.datg -%%ASTERDIR%%/astest/sdls110a.mail -%%ASTERDIR%%/astest/sdls110a.mgib -%%ASTERDIR%%/astest/sdls110a.para %%ASTERDIR%%/astest/sdls111a.comm %%ASTERDIR%%/astest/sdls111a.mail %%ASTERDIR%%/astest/sdls111a.para +%%ASTERDIR%%/astest/sdls112a.20 +%%ASTERDIR%%/astest/sdls112a.21 +%%ASTERDIR%%/astest/sdls112a.22 +%%ASTERDIR%%/astest/sdls112a.23 +%%ASTERDIR%%/astest/sdls112a.comm +%%ASTERDIR%%/astest/sdls112a.para +%%ASTERDIR%%/astest/sdls112b.20 +%%ASTERDIR%%/astest/sdls112b.21 +%%ASTERDIR%%/astest/sdls112b.22 +%%ASTERDIR%%/astest/sdls112b.comm +%%ASTERDIR%%/astest/sdls112b.para %%ASTERDIR%%/astest/sdls113a.comm %%ASTERDIR%%/astest/sdls113a.mail %%ASTERDIR%%/astest/sdls113a.para @@ -1699,10 +1943,22 @@ %%ASTERDIR%%/astest/sdlv125a.33 %%ASTERDIR%%/astest/sdlv125a.comm %%ASTERDIR%%/astest/sdlv125a.para +%%ASTERDIR%%/astest/sdlv128a.20 +%%ASTERDIR%%/astest/sdlv128a.21 +%%ASTERDIR%%/astest/sdlv128a.comm +%%ASTERDIR%%/astest/sdlv128a.para +%%ASTERDIR%%/astest/sdlv128b.20 +%%ASTERDIR%%/astest/sdlv128b.21 +%%ASTERDIR%%/astest/sdlv128b.comm +%%ASTERDIR%%/astest/sdlv128b.para %%ASTERDIR%%/astest/sdlv129a.com1 %%ASTERDIR%%/astest/sdlv129a.comm %%ASTERDIR%%/astest/sdlv129a.mail %%ASTERDIR%%/astest/sdlv129a.para +%%ASTERDIR%%/astest/sdlv130a.comm +%%ASTERDIR%%/astest/sdlv130a.datg +%%ASTERDIR%%/astest/sdlv130a.mgib +%%ASTERDIR%%/astest/sdlv130a.para %%ASTERDIR%%/astest/sdlv130b.comm %%ASTERDIR%%/astest/sdlv130b.datg %%ASTERDIR%%/astest/sdlv130b.mgib @@ -1723,6 +1979,11 @@ %%ASTERDIR%%/astest/sdlv131d.comm %%ASTERDIR%%/astest/sdlv131d.mmed %%ASTERDIR%%/astest/sdlv131d.para +%%ASTERDIR%%/astest/sdlv132a.22 +%%ASTERDIR%%/astest/sdlv132a.23 +%%ASTERDIR%%/astest/sdlv132a.comm +%%ASTERDIR%%/astest/sdlv132a.mail +%%ASTERDIR%%/astest/sdlv132a.para %%ASTERDIR%%/astest/sdlv301a.comm %%ASTERDIR%%/astest/sdlv301a.mail %%ASTERDIR%%/astest/sdlv301a.para @@ -2071,7 +2332,6 @@ %%ASTERDIR%%/astest/sdnd121a.comm %%ASTERDIR%%/astest/sdnd121a.mail %%ASTERDIR%%/astest/sdnd121a.para -%%ASTERDIR%%/astest/sdnd121a.para_old %%ASTERDIR%%/astest/sdnl100a.comm %%ASTERDIR%%/astest/sdnl100a.mail %%ASTERDIR%%/astest/sdnl100a.para @@ -2134,12 +2394,21 @@ %%ASTERDIR%%/astest/sdnl130a.92 %%ASTERDIR%%/astest/sdnl130a.comm %%ASTERDIR%%/astest/sdnl130a.para +%%ASTERDIR%%/astest/sdnl132a.comm +%%ASTERDIR%%/astest/sdnl132a.mail +%%ASTERDIR%%/astest/sdnl132a.para %%ASTERDIR%%/astest/sdnl301a.comm %%ASTERDIR%%/astest/sdnl301a.mail %%ASTERDIR%%/astest/sdnl301a.para %%ASTERDIR%%/astest/sdnl32a.comm %%ASTERDIR%%/astest/sdnl32a.mail %%ASTERDIR%%/astest/sdnl32a.para +%%ASTERDIR%%/astest/sdns01a.comm +%%ASTERDIR%%/astest/sdns01a.mail +%%ASTERDIR%%/astest/sdns01a.para +%%ASTERDIR%%/astest/sdns01b.comm +%%ASTERDIR%%/astest/sdns01b.mail +%%ASTERDIR%%/astest/sdns01b.para %%ASTERDIR%%/astest/sdns105a.comm %%ASTERDIR%%/astest/sdns105a.datg %%ASTERDIR%%/astest/sdns105a.mail @@ -2198,13 +2467,6 @@ %%ASTERDIR%%/astest/sdnv100i.datg %%ASTERDIR%%/astest/sdnv100i.mail %%ASTERDIR%%/astest/sdnv100i.para -%%ASTERDIR%%/astest/sdnv102a.35 -%%ASTERDIR%%/astest/sdnv102a.75 -%%ASTERDIR%%/astest/sdnv102a.com0 -%%ASTERDIR%%/astest/sdnv102a.comm -%%ASTERDIR%%/astest/sdnv102a.mail -%%ASTERDIR%%/astest/sdnv102a.msup -%%ASTERDIR%%/astest/sdnv102a.para %%ASTERDIR%%/astest/sdnv103a.comm %%ASTERDIR%%/astest/sdnv103a.datg %%ASTERDIR%%/astest/sdnv103a.mgib @@ -2227,6 +2489,10 @@ %%ASTERDIR%%/astest/sdnv103f.comm %%ASTERDIR%%/astest/sdnv103f.mail %%ASTERDIR%%/astest/sdnv103f.para +%%ASTERDIR%%/astest/sdnv103j.comm +%%ASTERDIR%%/astest/sdnv103j.datg +%%ASTERDIR%%/astest/sdnv103j.mmed +%%ASTERDIR%%/astest/sdnv103j.para %%ASTERDIR%%/astest/sdnv104a.comm %%ASTERDIR%%/astest/sdnv104a.mail %%ASTERDIR%%/astest/sdnv104a.para @@ -2477,6 +2743,9 @@ %%ASTERDIR%%/astest/shll102a.comm %%ASTERDIR%%/astest/shll102a.mail %%ASTERDIR%%/astest/shll102a.para +%%ASTERDIR%%/astest/shll103a.comm +%%ASTERDIR%%/astest/shll103a.mail +%%ASTERDIR%%/astest/shll103a.para %%ASTERDIR%%/astest/shls200a.comm %%ASTERDIR%%/astest/shls200a.datg %%ASTERDIR%%/astest/shls200a.mail @@ -2852,15 +3121,6 @@ %%ASTERDIR%%/astest/sslp103a.comm %%ASTERDIR%%/astest/sslp103a.mail %%ASTERDIR%%/astest/sslp103a.para -%%ASTERDIR%%/astest/sslp104b.21 -%%ASTERDIR%%/astest/sslp104b.22 -%%ASTERDIR%%/astest/sslp104b.comm -%%ASTERDIR%%/astest/sslp104b.datg -%%ASTERDIR%%/astest/sslp104b.para -%%ASTERDIR%%/astest/sslp104d.19 -%%ASTERDIR%%/astest/sslp104d.22 -%%ASTERDIR%%/astest/sslp104d.comm -%%ASTERDIR%%/astest/sslp104d.para %%ASTERDIR%%/astest/sslp105a.comm %%ASTERDIR%%/astest/sslp105a.mail %%ASTERDIR%%/astest/sslp105a.para @@ -2875,17 +3135,6 @@ %%ASTERDIR%%/astest/sslp107a.comm %%ASTERDIR%%/astest/sslp107a.mail %%ASTERDIR%%/astest/sslp107a.para -%%ASTERDIR%%/astest/sslp108a.comm -%%ASTERDIR%%/astest/sslp108a.datg -%%ASTERDIR%%/astest/sslp108a.mgib -%%ASTERDIR%%/astest/sslp108a.para -%%ASTERDIR%%/astest/sslp108b.comm -%%ASTERDIR%%/astest/sslp108b.datg -%%ASTERDIR%%/astest/sslp108b.mgib -%%ASTERDIR%%/astest/sslp108b.para -%%ASTERDIR%%/astest/sslp108c.20 -%%ASTERDIR%%/astest/sslp108c.comm -%%ASTERDIR%%/astest/sslp108c.para %%ASTERDIR%%/astest/sslp200a.comm %%ASTERDIR%%/astest/sslp200a.mail %%ASTERDIR%%/astest/sslp200a.para @@ -2949,14 +3198,10 @@ %%ASTERDIR%%/astest/sslp313a.datg %%ASTERDIR%%/astest/sslp313a.mgib %%ASTERDIR%%/astest/sslp313a.para -%%ASTERDIR%%/astest/sslp313c.comm -%%ASTERDIR%%/astest/sslp313c.datg -%%ASTERDIR%%/astest/sslp313c.mail -%%ASTERDIR%%/astest/sslp313c.mgib -%%ASTERDIR%%/astest/sslp313c.para -%%ASTERDIR%%/astest/sslp313f.20 -%%ASTERDIR%%/astest/sslp313f.comm -%%ASTERDIR%%/astest/sslp313f.para +%%ASTERDIR%%/astest/sslp313b.comm +%%ASTERDIR%%/astest/sslp313b.datg +%%ASTERDIR%%/astest/sslp313b.mgib +%%ASTERDIR%%/astest/sslp313b.para %%ASTERDIR%%/astest/sslp314a.comm %%ASTERDIR%%/astest/sslp314a.datg %%ASTERDIR%%/astest/sslp314a.mgib @@ -3473,6 +3718,26 @@ %%ASTERDIR%%/astest/ssls121a.mail %%ASTERDIR%%/astest/ssls121a.mgib %%ASTERDIR%%/astest/ssls121a.para +%%ASTERDIR%%/astest/ssls122a.comm +%%ASTERDIR%%/astest/ssls122a.datg +%%ASTERDIR%%/astest/ssls122a.mail +%%ASTERDIR%%/astest/ssls122a.mgib +%%ASTERDIR%%/astest/ssls122a.para +%%ASTERDIR%%/astest/ssls122b.comm +%%ASTERDIR%%/astest/ssls122b.datg +%%ASTERDIR%%/astest/ssls122b.mail +%%ASTERDIR%%/astest/ssls122b.mgib +%%ASTERDIR%%/astest/ssls122b.para +%%ASTERDIR%%/astest/ssls122c.comm +%%ASTERDIR%%/astest/ssls122c.datg +%%ASTERDIR%%/astest/ssls122c.mail +%%ASTERDIR%%/astest/ssls122c.mgib +%%ASTERDIR%%/astest/ssls122c.para +%%ASTERDIR%%/astest/ssls122d.comm +%%ASTERDIR%%/astest/ssls122d.datg +%%ASTERDIR%%/astest/ssls122d.mail +%%ASTERDIR%%/astest/ssls122d.mgib +%%ASTERDIR%%/astest/ssls122d.para %%ASTERDIR%%/astest/ssls123a.comm %%ASTERDIR%%/astest/ssls123a.datg %%ASTERDIR%%/astest/ssls123a.mail @@ -3592,6 +3857,15 @@ %%ASTERDIR%%/astest/ssls129c.datg %%ASTERDIR%%/astest/ssls129c.mgib %%ASTERDIR%%/astest/ssls129c.para +%%ASTERDIR%%/astest/ssls130a.comm +%%ASTERDIR%%/astest/ssls130a.mail +%%ASTERDIR%%/astest/ssls130a.msup +%%ASTERDIR%%/astest/ssls130a.para +%%ASTERDIR%%/astest/ssls130b.21 +%%ASTERDIR%%/astest/ssls130b.comm +%%ASTERDIR%%/astest/ssls130b.mail +%%ASTERDIR%%/astest/ssls130b.msup +%%ASTERDIR%%/astest/ssls130b.para %%ASTERDIR%%/astest/ssls132a.comm %%ASTERDIR%%/astest/ssls132a.mmed %%ASTERDIR%%/astest/ssls132a.para @@ -3645,6 +3919,9 @@ %%ASTERDIR%%/astest/ssls27a.comm %%ASTERDIR%%/astest/ssls27a.mail %%ASTERDIR%%/astest/ssls27a.para +%%ASTERDIR%%/astest/ssls27b.comm +%%ASTERDIR%%/astest/ssls27b.mail +%%ASTERDIR%%/astest/ssls27b.para %%ASTERDIR%%/astest/ssls501a.comm %%ASTERDIR%%/astest/ssls501a.mail %%ASTERDIR%%/astest/ssls501a.msup @@ -3742,11 +4019,21 @@ %%ASTERDIR%%/astest/sslv04m.comm %%ASTERDIR%%/astest/sslv04m.mail %%ASTERDIR%%/astest/sslv04m.para +%%ASTERDIR%%/astest/sslv04n.comm +%%ASTERDIR%%/astest/sslv04n.datg +%%ASTERDIR%%/astest/sslv04n.mail +%%ASTERDIR%%/astest/sslv04n.mgib +%%ASTERDIR%%/astest/sslv04n.para %%ASTERDIR%%/astest/sslv04o.comm %%ASTERDIR%%/astest/sslv04o.datg %%ASTERDIR%%/astest/sslv04o.mail %%ASTERDIR%%/astest/sslv04o.mgib %%ASTERDIR%%/astest/sslv04o.para +%%ASTERDIR%%/astest/sslv04p.comm +%%ASTERDIR%%/astest/sslv04p.datg +%%ASTERDIR%%/astest/sslv04p.mail +%%ASTERDIR%%/astest/sslv04p.mgib +%%ASTERDIR%%/astest/sslv04p.para %%ASTERDIR%%/astest/sslv07a.19 %%ASTERDIR%%/astest/sslv07a.23 %%ASTERDIR%%/astest/sslv07a.38 @@ -3832,6 +4119,10 @@ %%ASTERDIR%%/astest/sslv110e.comm %%ASTERDIR%%/astest/sslv110e.mail %%ASTERDIR%%/astest/sslv110e.para +%%ASTERDIR%%/astest/sslv110f.comm +%%ASTERDIR%%/astest/sslv110f.datg +%%ASTERDIR%%/astest/sslv110f.mgib +%%ASTERDIR%%/astest/sslv110f.para %%ASTERDIR%%/astest/sslv111a.comm %%ASTERDIR%%/astest/sslv111a.mail %%ASTERDIR%%/astest/sslv111a.para @@ -3872,6 +4163,12 @@ %%ASTERDIR%%/astest/sslv115a.comm %%ASTERDIR%%/astest/sslv115a.mail %%ASTERDIR%%/astest/sslv115a.para +%%ASTERDIR%%/astest/sslv115b.comm +%%ASTERDIR%%/astest/sslv115b.mail +%%ASTERDIR%%/astest/sslv115b.para +%%ASTERDIR%%/astest/sslv115c.comm +%%ASTERDIR%%/astest/sslv115c.mail +%%ASTERDIR%%/astest/sslv115c.para %%ASTERDIR%%/astest/sslv120a.comm %%ASTERDIR%%/astest/sslv120a.mail %%ASTERDIR%%/astest/sslv120a.para @@ -3879,16 +4176,16 @@ %%ASTERDIR%%/astest/sslv121a.mail %%ASTERDIR%%/astest/sslv121a.para %%ASTERDIR%%/astest/sslv130a.comm -%%ASTERDIR%%/astest/sslv130a.datg -%%ASTERDIR%%/astest/sslv130a.mail -%%ASTERDIR%%/astest/sslv130a.mgib +%%ASTERDIR%%/astest/sslv130a.mmed %%ASTERDIR%%/astest/sslv130a.para %%ASTERDIR%%/astest/sslv130b.comm -%%ASTERDIR%%/astest/sslv130b.mail +%%ASTERDIR%%/astest/sslv130b.mmed %%ASTERDIR%%/astest/sslv130b.para +%%ASTERDIR%%/astest/sslv130c.21 %%ASTERDIR%%/astest/sslv130c.comm %%ASTERDIR%%/astest/sslv130c.mail %%ASTERDIR%%/astest/sslv130c.para +%%ASTERDIR%%/astest/sslv130d.21 %%ASTERDIR%%/astest/sslv130d.comm %%ASTERDIR%%/astest/sslv130d.mail %%ASTERDIR%%/astest/sslv130d.para @@ -3900,6 +4197,10 @@ %%ASTERDIR%%/astest/sslv131a.comm %%ASTERDIR%%/astest/sslv131a.mail %%ASTERDIR%%/astest/sslv131a.para +%%ASTERDIR%%/astest/sslv134a.comm +%%ASTERDIR%%/astest/sslv134a.datg +%%ASTERDIR%%/astest/sslv134a.mgib +%%ASTERDIR%%/astest/sslv134a.para %%ASTERDIR%%/astest/sslv134b.comm %%ASTERDIR%%/astest/sslv134b.datg %%ASTERDIR%%/astest/sslv134b.mgib @@ -3919,10 +4220,38 @@ %%ASTERDIR%%/astest/sslv134f.comm %%ASTERDIR%%/astest/sslv134f.mail %%ASTERDIR%%/astest/sslv134f.para +%%ASTERDIR%%/astest/sslv134g.comm +%%ASTERDIR%%/astest/sslv134g.mail +%%ASTERDIR%%/astest/sslv134g.msup +%%ASTERDIR%%/astest/sslv134g.para %%ASTERDIR%%/astest/sslv134h.comm %%ASTERDIR%%/astest/sslv134h.datg %%ASTERDIR%%/astest/sslv134h.mgib %%ASTERDIR%%/astest/sslv134h.para +%%ASTERDIR%%/astest/sslv134i.comm +%%ASTERDIR%%/astest/sslv134i.mmed +%%ASTERDIR%%/astest/sslv134i.para +%%ASTERDIR%%/astest/sslv135a.comm +%%ASTERDIR%%/astest/sslv135a.mail +%%ASTERDIR%%/astest/sslv135a.para +%%ASTERDIR%%/astest/sslv135b.comm +%%ASTERDIR%%/astest/sslv135b.mail +%%ASTERDIR%%/astest/sslv135b.para +%%ASTERDIR%%/astest/sslv135c.comm +%%ASTERDIR%%/astest/sslv135c.mail +%%ASTERDIR%%/astest/sslv135c.para +%%ASTERDIR%%/astest/sslv135d.comm +%%ASTERDIR%%/astest/sslv135d.mail +%%ASTERDIR%%/astest/sslv135d.para +%%ASTERDIR%%/astest/sslv135e.comm +%%ASTERDIR%%/astest/sslv135e.mail +%%ASTERDIR%%/astest/sslv135e.para +%%ASTERDIR%%/astest/sslv135f.comm +%%ASTERDIR%%/astest/sslv135f.mail +%%ASTERDIR%%/astest/sslv135f.para +%%ASTERDIR%%/astest/sslv135g.comm +%%ASTERDIR%%/astest/sslv135g.mail +%%ASTERDIR%%/astest/sslv135g.para %%ASTERDIR%%/astest/sslv139a.comm %%ASTERDIR%%/astest/sslv139a.datg %%ASTERDIR%%/astest/sslv139a.mgib @@ -3934,10 +4263,6 @@ %%ASTERDIR%%/astest/sslv140a.comm %%ASTERDIR%%/astest/sslv140a.mail %%ASTERDIR%%/astest/sslv140a.para -%%ASTERDIR%%/astest/sslv145a.20 -%%ASTERDIR%%/astest/sslv145a.37 -%%ASTERDIR%%/astest/sslv145a.comm -%%ASTERDIR%%/astest/sslv145a.para %%ASTERDIR%%/astest/sslv146a.comm %%ASTERDIR%%/astest/sslv146a.mail %%ASTERDIR%%/astest/sslv146a.para @@ -3950,21 +4275,12 @@ %%ASTERDIR%%/astest/sslv146d.comm %%ASTERDIR%%/astest/sslv146d.mail %%ASTERDIR%%/astest/sslv146d.para -%%ASTERDIR%%/astest/sslv152a.16 -%%ASTERDIR%%/astest/sslv152a.17 -%%ASTERDIR%%/astest/sslv152a.20 -%%ASTERDIR%%/astest/sslv152a.21 -%%ASTERDIR%%/astest/sslv152a.comm -%%ASTERDIR%%/astest/sslv152a.para -%%ASTERDIR%%/astest/sslv152b.16 -%%ASTERDIR%%/astest/sslv152b.17 -%%ASTERDIR%%/astest/sslv152b.20 -%%ASTERDIR%%/astest/sslv152b.21 -%%ASTERDIR%%/astest/sslv152b.comm -%%ASTERDIR%%/astest/sslv152b.para %%ASTERDIR%%/astest/sslv153a.comm %%ASTERDIR%%/astest/sslv153a.mmed %%ASTERDIR%%/astest/sslv153a.para +%%ASTERDIR%%/astest/sslv154b.comm +%%ASTERDIR%%/astest/sslv154b.mmed +%%ASTERDIR%%/astest/sslv154b.para %%ASTERDIR%%/astest/sslv200a.comm %%ASTERDIR%%/astest/sslv200a.mail %%ASTERDIR%%/astest/sslv200a.para @@ -4214,6 +4530,14 @@ %%ASTERDIR%%/astest/ssna108a.mail %%ASTERDIR%%/astest/ssna108a.msup %%ASTERDIR%%/astest/ssna108a.para +%%ASTERDIR%%/astest/ssna109a.comm +%%ASTERDIR%%/astest/ssna109a.mail +%%ASTERDIR%%/astest/ssna109a.para +%%ASTERDIR%%/astest/ssna110a.3 +%%ASTERDIR%%/astest/ssna110a.90 +%%ASTERDIR%%/astest/ssna110a.91 +%%ASTERDIR%%/astest/ssna110a.comm +%%ASTERDIR%%/astest/ssna110a.para %%ASTERDIR%%/astest/ssna111a.comm %%ASTERDIR%%/astest/ssna111a.datg %%ASTERDIR%%/astest/ssna111a.mail @@ -4230,6 +4554,9 @@ %%ASTERDIR%%/astest/ssna113a.datg %%ASTERDIR%%/astest/ssna113a.mgib %%ASTERDIR%%/astest/ssna113a.para +%%ASTERDIR%%/astest/ssna114a.comm +%%ASTERDIR%%/astest/ssna114a.mail +%%ASTERDIR%%/astest/ssna114a.para %%ASTERDIR%%/astest/ssna115a.comm %%ASTERDIR%%/astest/ssna115a.datg %%ASTERDIR%%/astest/ssna115a.msh @@ -4248,6 +4575,16 @@ %%ASTERDIR%%/astest/ssna116b.comm %%ASTERDIR%%/astest/ssna116b.mail %%ASTERDIR%%/astest/ssna116b.para +%%ASTERDIR%%/astest/ssna119a.comm +%%ASTERDIR%%/astest/ssna119a.mmed +%%ASTERDIR%%/astest/ssna119a.para +%%ASTERDIR%%/astest/ssna120a.comm +%%ASTERDIR%%/astest/ssna120a.mmed +%%ASTERDIR%%/astest/ssna120a.para +%%ASTERDIR%%/astest/ssna121a.comm +%%ASTERDIR%%/astest/ssna121a.datg +%%ASTERDIR%%/astest/ssna121a.mgib +%%ASTERDIR%%/astest/ssna121a.para %%ASTERDIR%%/astest/ssna301a.comm %%ASTERDIR%%/astest/ssna301a.mail %%ASTERDIR%%/astest/ssna301a.para @@ -4270,6 +4607,10 @@ %%ASTERDIR%%/astest/ssna303a.datg %%ASTERDIR%%/astest/ssna303a.mgib %%ASTERDIR%%/astest/ssna303a.para +%%ASTERDIR%%/astest/ssna303b.comm +%%ASTERDIR%%/astest/ssna303b.datg +%%ASTERDIR%%/astest/ssna303b.mgib +%%ASTERDIR%%/astest/ssna303b.para %%ASTERDIR%%/astest/ssnd101a.comm %%ASTERDIR%%/astest/ssnd101a.mail %%ASTERDIR%%/astest/ssnd101a.para @@ -4311,10 +4652,22 @@ %%ASTERDIR%%/astest/ssnd106b.comm %%ASTERDIR%%/astest/ssnd106b.mail %%ASTERDIR%%/astest/ssnd106b.para +%%ASTERDIR%%/astest/ssnd106c.30 +%%ASTERDIR%%/astest/ssnd106c.comm +%%ASTERDIR%%/astest/ssnd106c.mail +%%ASTERDIR%%/astest/ssnd106c.para +%%ASTERDIR%%/astest/ssnd106d.30 +%%ASTERDIR%%/astest/ssnd106d.comm +%%ASTERDIR%%/astest/ssnd106d.mail +%%ASTERDIR%%/astest/ssnd106d.para %%ASTERDIR%%/astest/ssnd107a.30 %%ASTERDIR%%/astest/ssnd107a.comm %%ASTERDIR%%/astest/ssnd107a.mail %%ASTERDIR%%/astest/ssnd107a.para +%%ASTERDIR%%/astest/ssnd107b.30 +%%ASTERDIR%%/astest/ssnd107b.comm +%%ASTERDIR%%/astest/ssnd107b.mail +%%ASTERDIR%%/astest/ssnd107b.para %%ASTERDIR%%/astest/ssnd108a.30 %%ASTERDIR%%/astest/ssnd108a.comm %%ASTERDIR%%/astest/ssnd108a.mail @@ -4329,6 +4682,13 @@ %%ASTERDIR%%/astest/ssnd110a.31 %%ASTERDIR%%/astest/ssnd110a.comm %%ASTERDIR%%/astest/ssnd110a.para +%%ASTERDIR%%/astest/ssnd110b.22 +%%ASTERDIR%%/astest/ssnd110b.28 +%%ASTERDIR%%/astest/ssnd110b.29 +%%ASTERDIR%%/astest/ssnd110b.30 +%%ASTERDIR%%/astest/ssnd110b.31 +%%ASTERDIR%%/astest/ssnd110b.comm +%%ASTERDIR%%/astest/ssnd110b.para %%ASTERDIR%%/astest/ssnd111a.33 %%ASTERDIR%%/astest/ssnd111a.34 %%ASTERDIR%%/astest/ssnd111a.40 @@ -4457,6 +4817,12 @@ %%ASTERDIR%%/astest/ssnl115a.comm %%ASTERDIR%%/astest/ssnl115a.mail %%ASTERDIR%%/astest/ssnl115a.para +%%ASTERDIR%%/astest/ssnl116a.38 +%%ASTERDIR%%/astest/ssnl116a.39 +%%ASTERDIR%%/astest/ssnl116a.91 +%%ASTERDIR%%/astest/ssnl116a.comm +%%ASTERDIR%%/astest/ssnl116a.mail +%%ASTERDIR%%/astest/ssnl116a.para %%ASTERDIR%%/astest/ssnl117a.comm %%ASTERDIR%%/astest/ssnl117a.datg %%ASTERDIR%%/astest/ssnl117a.mail @@ -4584,6 +4950,9 @@ %%ASTERDIR%%/astest/ssnl136b.comm %%ASTERDIR%%/astest/ssnl136b.datg %%ASTERDIR%%/astest/ssnl136b.para +%%ASTERDIR%%/astest/ssnl137a.comm +%%ASTERDIR%%/astest/ssnl137a.mail +%%ASTERDIR%%/astest/ssnl137a.para %%ASTERDIR%%/astest/ssnl501a.comm %%ASTERDIR%%/astest/ssnl501a.datg %%ASTERDIR%%/astest/ssnl501a.mail @@ -4639,6 +5008,15 @@ %%ASTERDIR%%/astest/ssnl503c.comm %%ASTERDIR%%/astest/ssnl503c.mail %%ASTERDIR%%/astest/ssnl503c.para +%%ASTERDIR%%/astest/ssnp02a.comm +%%ASTERDIR%%/astest/ssnp02a.mail +%%ASTERDIR%%/astest/ssnp02a.para +%%ASTERDIR%%/astest/ssnp02b.comm +%%ASTERDIR%%/astest/ssnp02b.mail +%%ASTERDIR%%/astest/ssnp02b.para +%%ASTERDIR%%/astest/ssnp02c.comm +%%ASTERDIR%%/astest/ssnp02c.mail +%%ASTERDIR%%/astest/ssnp02c.para %%ASTERDIR%%/astest/ssnp05a.35 %%ASTERDIR%%/astest/ssnp05a.comm %%ASTERDIR%%/astest/ssnp05a.mail @@ -4659,6 +5037,9 @@ %%ASTERDIR%%/astest/ssnp102b.datg %%ASTERDIR%%/astest/ssnp102b.mgib %%ASTERDIR%%/astest/ssnp102b.para +%%ASTERDIR%%/astest/ssnp107a.comm +%%ASTERDIR%%/astest/ssnp107a.mail +%%ASTERDIR%%/astest/ssnp107a.para %%ASTERDIR%%/astest/ssnp108a.comm %%ASTERDIR%%/astest/ssnp108a.mail %%ASTERDIR%%/astest/ssnp108a.para @@ -4700,6 +5081,10 @@ %%ASTERDIR%%/astest/ssnp113b.comm %%ASTERDIR%%/astest/ssnp113b.mail %%ASTERDIR%%/astest/ssnp113b.para +%%ASTERDIR%%/astest/ssnp115b.81 +%%ASTERDIR%%/astest/ssnp115b.comm +%%ASTERDIR%%/astest/ssnp115b.datg +%%ASTERDIR%%/astest/ssnp115b.para %%ASTERDIR%%/astest/ssnp116a.comm %%ASTERDIR%%/astest/ssnp116a.datg %%ASTERDIR%%/astest/ssnp116a.mgib @@ -4768,6 +5153,33 @@ %%ASTERDIR%%/astest/ssnp118o.mail %%ASTERDIR%%/astest/ssnp118o.msh %%ASTERDIR%%/astest/ssnp118o.para +%%ASTERDIR%%/astest/ssnp118p.comm +%%ASTERDIR%%/astest/ssnp118p.mail +%%ASTERDIR%%/astest/ssnp118p.para +%%ASTERDIR%%/astest/ssnp118q.comm +%%ASTERDIR%%/astest/ssnp118q.mail +%%ASTERDIR%%/astest/ssnp118q.para +%%ASTERDIR%%/astest/ssnp118r.comm +%%ASTERDIR%%/astest/ssnp118r.mail +%%ASTERDIR%%/astest/ssnp118r.para +%%ASTERDIR%%/astest/ssnp118s.comm +%%ASTERDIR%%/astest/ssnp118s.mail +%%ASTERDIR%%/astest/ssnp118s.para +%%ASTERDIR%%/astest/ssnp118t.comm +%%ASTERDIR%%/astest/ssnp118t.mail +%%ASTERDIR%%/astest/ssnp118t.para +%%ASTERDIR%%/astest/ssnp118u.comm +%%ASTERDIR%%/astest/ssnp118u.mail +%%ASTERDIR%%/astest/ssnp118u.para +%%ASTERDIR%%/astest/ssnp118v.comm +%%ASTERDIR%%/astest/ssnp118v.mail +%%ASTERDIR%%/astest/ssnp118v.para +%%ASTERDIR%%/astest/ssnp118w.comm +%%ASTERDIR%%/astest/ssnp118w.mail +%%ASTERDIR%%/astest/ssnp118w.para +%%ASTERDIR%%/astest/ssnp118x.comm +%%ASTERDIR%%/astest/ssnp118x.mail +%%ASTERDIR%%/astest/ssnp118x.para %%ASTERDIR%%/astest/ssnp121a.comm %%ASTERDIR%%/astest/ssnp121a.datg %%ASTERDIR%%/astest/ssnp121a.mail @@ -4858,6 +5270,14 @@ %%ASTERDIR%%/astest/ssnp123b.mail %%ASTERDIR%%/astest/ssnp123b.mgib %%ASTERDIR%%/astest/ssnp123b.para +%%ASTERDIR%%/astest/ssnp123c.comm +%%ASTERDIR%%/astest/ssnp123c.datg +%%ASTERDIR%%/astest/ssnp123c.mmed +%%ASTERDIR%%/astest/ssnp123c.para +%%ASTERDIR%%/astest/ssnp123d.comm +%%ASTERDIR%%/astest/ssnp123d.datg +%%ASTERDIR%%/astest/ssnp123d.mmed +%%ASTERDIR%%/astest/ssnp123d.para %%ASTERDIR%%/astest/ssnp124a.comm %%ASTERDIR%%/astest/ssnp124a.mail %%ASTERDIR%%/astest/ssnp124a.para @@ -4928,32 +5348,21 @@ %%ASTERDIR%%/astest/ssnp133c.mmed %%ASTERDIR%%/astest/ssnp133c.msh %%ASTERDIR%%/astest/ssnp133c.para -%%ASTERDIR%%/astest/ssnp135a.comm -%%ASTERDIR%%/astest/ssnp135a.geo -%%ASTERDIR%%/astest/ssnp135a.msh -%%ASTERDIR%%/astest/ssnp135a.para -%%ASTERDIR%%/astest/ssnp135b.16 -%%ASTERDIR%%/astest/ssnp135b.17 -%%ASTERDIR%%/astest/ssnp135b.20 -%%ASTERDIR%%/astest/ssnp135b.21 -%%ASTERDIR%%/astest/ssnp135b.comm -%%ASTERDIR%%/astest/ssnp135b.para -%%ASTERDIR%%/astest/ssnp135c.16 -%%ASTERDIR%%/astest/ssnp135c.17 -%%ASTERDIR%%/astest/ssnp135c.20 -%%ASTERDIR%%/astest/ssnp135c.21 -%%ASTERDIR%%/astest/ssnp135c.comm -%%ASTERDIR%%/astest/ssnp135c.para -%%ASTERDIR%%/astest/ssnp135d.comm -%%ASTERDIR%%/astest/ssnp135d.geo -%%ASTERDIR%%/astest/ssnp135d.msh -%%ASTERDIR%%/astest/ssnp135d.para -%%ASTERDIR%%/astest/ssnp135e.16 -%%ASTERDIR%%/astest/ssnp135e.17 -%%ASTERDIR%%/astest/ssnp135e.20 -%%ASTERDIR%%/astest/ssnp135e.21 -%%ASTERDIR%%/astest/ssnp135e.comm -%%ASTERDIR%%/astest/ssnp135e.para +%%ASTERDIR%%/astest/ssnp133d.comm +%%ASTERDIR%%/astest/ssnp133d.mmed +%%ASTERDIR%%/astest/ssnp133d.para +%%ASTERDIR%%/astest/ssnp133e.comm +%%ASTERDIR%%/astest/ssnp133e.mmed +%%ASTERDIR%%/astest/ssnp133e.para +%%ASTERDIR%%/astest/ssnp133f.comm +%%ASTERDIR%%/astest/ssnp133f.mmed +%%ASTERDIR%%/astest/ssnp133f.para +%%ASTERDIR%%/astest/ssnp133g.comm +%%ASTERDIR%%/astest/ssnp133g.mmed +%%ASTERDIR%%/astest/ssnp133g.para +%%ASTERDIR%%/astest/ssnp133h.comm +%%ASTERDIR%%/astest/ssnp133h.mmed +%%ASTERDIR%%/astest/ssnp133h.para %%ASTERDIR%%/astest/ssnp136a.comm %%ASTERDIR%%/astest/ssnp136a.mail %%ASTERDIR%%/astest/ssnp136a.para @@ -4985,18 +5394,9 @@ %%ASTERDIR%%/astest/ssnp140d.comm %%ASTERDIR%%/astest/ssnp140d.mmed %%ASTERDIR%%/astest/ssnp140d.para -%%ASTERDIR%%/astest/ssnp141a.16 -%%ASTERDIR%%/astest/ssnp141a.17 -%%ASTERDIR%%/astest/ssnp141a.20 -%%ASTERDIR%%/astest/ssnp141a.21 -%%ASTERDIR%%/astest/ssnp141a.comm -%%ASTERDIR%%/astest/ssnp141a.para -%%ASTERDIR%%/astest/ssnp141b.16 -%%ASTERDIR%%/astest/ssnp141b.17 -%%ASTERDIR%%/astest/ssnp141b.20 -%%ASTERDIR%%/astest/ssnp141b.21 -%%ASTERDIR%%/astest/ssnp141b.comm -%%ASTERDIR%%/astest/ssnp141b.para +%%ASTERDIR%%/astest/ssnp140e.comm +%%ASTERDIR%%/astest/ssnp140e.mmed +%%ASTERDIR%%/astest/ssnp140e.para %%ASTERDIR%%/astest/ssnp142a.comm %%ASTERDIR%%/astest/ssnp142a.geo %%ASTERDIR%%/astest/ssnp142a.mmed @@ -5005,6 +5405,19 @@ %%ASTERDIR%%/astest/ssnp142b.geo %%ASTERDIR%%/astest/ssnp142b.mmed %%ASTERDIR%%/astest/ssnp142b.para +%%ASTERDIR%%/astest/ssnp142c.comm +%%ASTERDIR%%/astest/ssnp142c.mmed +%%ASTERDIR%%/astest/ssnp142c.para +%%ASTERDIR%%/astest/ssnp142d.comm +%%ASTERDIR%%/astest/ssnp142d.mmed +%%ASTERDIR%%/astest/ssnp142d.para +%%ASTERDIR%%/astest/ssnp142e.comm +%%ASTERDIR%%/astest/ssnp142e.mmed +%%ASTERDIR%%/astest/ssnp142e.para +%%ASTERDIR%%/astest/ssnp142f.comm +%%ASTERDIR%%/astest/ssnp142f.geo +%%ASTERDIR%%/astest/ssnp142f.mmed +%%ASTERDIR%%/astest/ssnp142f.para %%ASTERDIR%%/astest/ssnp143a.comm %%ASTERDIR%%/astest/ssnp143a.geo %%ASTERDIR%%/astest/ssnp143a.mmed @@ -5105,6 +5518,12 @@ %%ASTERDIR%%/astest/ssnp14g.comm %%ASTERDIR%%/astest/ssnp14g.mail %%ASTERDIR%%/astest/ssnp14g.para +%%ASTERDIR%%/astest/ssnp151a.comm +%%ASTERDIR%%/astest/ssnp151a.mmed +%%ASTERDIR%%/astest/ssnp151a.para +%%ASTERDIR%%/astest/ssnp151b.comm +%%ASTERDIR%%/astest/ssnp151b.mmed +%%ASTERDIR%%/astest/ssnp151b.para %%ASTERDIR%%/astest/ssnp15a.com1 %%ASTERDIR%%/astest/ssnp15a.comm %%ASTERDIR%%/astest/ssnp15a.mail @@ -5142,6 +5561,9 @@ %%ASTERDIR%%/astest/ssnp306a.comm %%ASTERDIR%%/astest/ssnp306a.mail %%ASTERDIR%%/astest/ssnp306a.para +%%ASTERDIR%%/astest/ssnp307a.comm +%%ASTERDIR%%/astest/ssnp307a.mmed +%%ASTERDIR%%/astest/ssnp307a.para %%ASTERDIR%%/astest/ssnp311a.comm %%ASTERDIR%%/astest/ssnp311a.datg %%ASTERDIR%%/astest/ssnp311a.mgib @@ -5179,7 +5601,8 @@ %%ASTERDIR%%/astest/ssnp502b.mgib %%ASTERDIR%%/astest/ssnp502b.para %%ASTERDIR%%/astest/ssnp502c.comm -%%ASTERDIR%%/astest/ssnp502c.mail +%%ASTERDIR%%/astest/ssnp502c.datg +%%ASTERDIR%%/astest/ssnp502c.mgib %%ASTERDIR%%/astest/ssnp502c.para %%ASTERDIR%%/astest/ssnp503a.comm %%ASTERDIR%%/astest/ssnp503a.datg @@ -5341,30 +5764,21 @@ %%ASTERDIR%%/astest/ssns105c.comm %%ASTERDIR%%/astest/ssns105c.mail %%ASTERDIR%%/astest/ssns105c.para +%%ASTERDIR%%/astest/ssns106a.com1 %%ASTERDIR%%/astest/ssns106a.comm -%%ASTERDIR%%/astest/ssns106a.datg %%ASTERDIR%%/astest/ssns106a.mail -%%ASTERDIR%%/astest/ssns106a.mgib %%ASTERDIR%%/astest/ssns106a.para %%ASTERDIR%%/astest/ssns106b.comm -%%ASTERDIR%%/astest/ssns106b.datg %%ASTERDIR%%/astest/ssns106b.mail -%%ASTERDIR%%/astest/ssns106b.mgib %%ASTERDIR%%/astest/ssns106b.para %%ASTERDIR%%/astest/ssns106c.comm -%%ASTERDIR%%/astest/ssns106c.datg %%ASTERDIR%%/astest/ssns106c.mail -%%ASTERDIR%%/astest/ssns106c.mgib %%ASTERDIR%%/astest/ssns106c.para %%ASTERDIR%%/astest/ssns106d.comm -%%ASTERDIR%%/astest/ssns106d.datg %%ASTERDIR%%/astest/ssns106d.mail -%%ASTERDIR%%/astest/ssns106d.mgib %%ASTERDIR%%/astest/ssns106d.para %%ASTERDIR%%/astest/ssns106e.comm -%%ASTERDIR%%/astest/ssns106e.datg %%ASTERDIR%%/astest/ssns106e.mail -%%ASTERDIR%%/astest/ssns106e.mgib %%ASTERDIR%%/astest/ssns106e.para %%ASTERDIR%%/astest/ssns106f.comm %%ASTERDIR%%/astest/ssns106f.datg @@ -5376,6 +5790,21 @@ %%ASTERDIR%%/astest/ssns106g.mail %%ASTERDIR%%/astest/ssns106g.mgib %%ASTERDIR%%/astest/ssns106g.para +%%ASTERDIR%%/astest/ssns106h.17 +%%ASTERDIR%%/astest/ssns106h.21 +%%ASTERDIR%%/astest/ssns106h.comm +%%ASTERDIR%%/astest/ssns106h.mail +%%ASTERDIR%%/astest/ssns106h.para +%%ASTERDIR%%/astest/ssns106i.17 +%%ASTERDIR%%/astest/ssns106i.21 +%%ASTERDIR%%/astest/ssns106i.comm +%%ASTERDIR%%/astest/ssns106i.mail +%%ASTERDIR%%/astest/ssns106i.para +%%ASTERDIR%%/astest/ssns106j.17 +%%ASTERDIR%%/astest/ssns106j.21 +%%ASTERDIR%%/astest/ssns106j.comm +%%ASTERDIR%%/astest/ssns106j.mail +%%ASTERDIR%%/astest/ssns106j.para %%ASTERDIR%%/astest/ssns107a.comm %%ASTERDIR%%/astest/ssns107a.msh %%ASTERDIR%%/astest/ssns107a.para @@ -5463,6 +5892,20 @@ %%ASTERDIR%%/astest/ssnv104j.mail %%ASTERDIR%%/astest/ssnv104j.mgib %%ASTERDIR%%/astest/ssnv104j.para +%%ASTERDIR%%/astest/ssnv108a.comm +%%ASTERDIR%%/astest/ssnv108a.mail +%%ASTERDIR%%/astest/ssnv108a.para +%%ASTERDIR%%/astest/ssnv108b.comm +%%ASTERDIR%%/astest/ssnv108b.geo +%%ASTERDIR%%/astest/ssnv108b.msh +%%ASTERDIR%%/astest/ssnv108b.para +%%ASTERDIR%%/astest/ssnv108c.comm +%%ASTERDIR%%/astest/ssnv108c.geo +%%ASTERDIR%%/astest/ssnv108c.msh +%%ASTERDIR%%/astest/ssnv108c.para +%%ASTERDIR%%/astest/ssnv108d.comm +%%ASTERDIR%%/astest/ssnv108d.msh +%%ASTERDIR%%/astest/ssnv108d.para %%ASTERDIR%%/astest/ssnv112a.comm %%ASTERDIR%%/astest/ssnv112a.datg %%ASTERDIR%%/astest/ssnv112a.mail @@ -5912,6 +6355,9 @@ %%ASTERDIR%%/astest/ssnv157j.comm %%ASTERDIR%%/astest/ssnv157j.mail %%ASTERDIR%%/astest/ssnv157j.para +%%ASTERDIR%%/astest/ssnv157k.comm +%%ASTERDIR%%/astest/ssnv157k.mail +%%ASTERDIR%%/astest/ssnv157k.para %%ASTERDIR%%/astest/ssnv158a.comm %%ASTERDIR%%/astest/ssnv158a.mail %%ASTERDIR%%/astest/ssnv158a.para @@ -5956,6 +6402,18 @@ %%ASTERDIR%%/astest/ssnv164b.mail %%ASTERDIR%%/astest/ssnv164b.mgib %%ASTERDIR%%/astest/ssnv164b.para +%%ASTERDIR%%/astest/ssnv166a.comm +%%ASTERDIR%%/astest/ssnv166a.datg +%%ASTERDIR%%/astest/ssnv166a.mgib +%%ASTERDIR%%/astest/ssnv166a.para +%%ASTERDIR%%/astest/ssnv166b.comm +%%ASTERDIR%%/astest/ssnv166b.datg +%%ASTERDIR%%/astest/ssnv166b.mgib +%%ASTERDIR%%/astest/ssnv166b.para +%%ASTERDIR%%/astest/ssnv166c.comm +%%ASTERDIR%%/astest/ssnv166c.datg +%%ASTERDIR%%/astest/ssnv166c.mgib +%%ASTERDIR%%/astest/ssnv166c.para %%ASTERDIR%%/astest/ssnv167a.comm %%ASTERDIR%%/astest/ssnv167a.mail %%ASTERDIR%%/astest/ssnv167a.para @@ -6181,6 +6639,11 @@ %%ASTERDIR%%/astest/ssnv184c.comm %%ASTERDIR%%/astest/ssnv184c.mail %%ASTERDIR%%/astest/ssnv184c.para +%%ASTERDIR%%/astest/ssnv185a.comm +%%ASTERDIR%%/astest/ssnv185a.datg +%%ASTERDIR%%/astest/ssnv185a.mail +%%ASTERDIR%%/astest/ssnv185a.mgib +%%ASTERDIR%%/astest/ssnv185a.para %%ASTERDIR%%/astest/ssnv185b.comm %%ASTERDIR%%/astest/ssnv185b.datg %%ASTERDIR%%/astest/ssnv185b.mgib @@ -6236,6 +6699,10 @@ %%ASTERDIR%%/astest/ssnv185n.datg %%ASTERDIR%%/astest/ssnv185n.mgib %%ASTERDIR%%/astest/ssnv185n.para +%%ASTERDIR%%/astest/ssnv185o.comm +%%ASTERDIR%%/astest/ssnv185o.datg +%%ASTERDIR%%/astest/ssnv185o.mgib +%%ASTERDIR%%/astest/ssnv185o.para %%ASTERDIR%%/astest/ssnv185p.comm %%ASTERDIR%%/astest/ssnv185p.datg %%ASTERDIR%%/astest/ssnv185p.mgib @@ -6355,6 +6822,7 @@ %%ASTERDIR%%/astest/ssnv192a.para %%ASTERDIR%%/astest/ssnv193a.comm %%ASTERDIR%%/astest/ssnv193a.geo +%%ASTERDIR%%/astest/ssnv193a.mmed %%ASTERDIR%%/astest/ssnv193a.msh %%ASTERDIR%%/astest/ssnv193a.para %%ASTERDIR%%/astest/ssnv194a.com1 @@ -6565,6 +7033,13 @@ %%ASTERDIR%%/astest/ssnv218a.mgib %%ASTERDIR%%/astest/ssnv218a.mmed %%ASTERDIR%%/astest/ssnv218a.para +%%ASTERDIR%%/astest/ssnv220a.comm +%%ASTERDIR%%/astest/ssnv220a.mmed +%%ASTERDIR%%/astest/ssnv220a.para +%%ASTERDIR%%/astest/ssnv221a.comm +%%ASTERDIR%%/astest/ssnv221a.para +%%ASTERDIR%%/astest/ssnv221b.comm +%%ASTERDIR%%/astest/ssnv221b.para %%ASTERDIR%%/astest/ssnv301a.comm %%ASTERDIR%%/astest/ssnv301a.mail %%ASTERDIR%%/astest/ssnv301a.para @@ -6648,6 +7123,10 @@ %%ASTERDIR%%/astest/ssnv504f.datg %%ASTERDIR%%/astest/ssnv504f.mgib %%ASTERDIR%%/astest/ssnv504f.para +%%ASTERDIR%%/astest/ssnv504g.comm +%%ASTERDIR%%/astest/ssnv504g.datg +%%ASTERDIR%%/astest/ssnv504g.mgib +%%ASTERDIR%%/astest/ssnv504g.para %%ASTERDIR%%/astest/ssnv504h.comm %%ASTERDIR%%/astest/ssnv504h.datg %%ASTERDIR%%/astest/ssnv504h.mail @@ -6742,6 +7221,26 @@ %%ASTERDIR%%/astest/ssnv507d.datg %%ASTERDIR%%/astest/ssnv507d.mgib %%ASTERDIR%%/astest/ssnv507d.para +%%ASTERDIR%%/astest/ssnv507e.comm +%%ASTERDIR%%/astest/ssnv507e.datg +%%ASTERDIR%%/astest/ssnv507e.mgib +%%ASTERDIR%%/astest/ssnv507e.para +%%ASTERDIR%%/astest/ssnv507f.comm +%%ASTERDIR%%/astest/ssnv507f.datg +%%ASTERDIR%%/astest/ssnv507f.mgib +%%ASTERDIR%%/astest/ssnv507f.para +%%ASTERDIR%%/astest/ssnv507g.comm +%%ASTERDIR%%/astest/ssnv507g.datg +%%ASTERDIR%%/astest/ssnv507g.mgib +%%ASTERDIR%%/astest/ssnv507g.para +%%ASTERDIR%%/astest/ssnv507h.comm +%%ASTERDIR%%/astest/ssnv507h.datg +%%ASTERDIR%%/astest/ssnv507h.mgib +%%ASTERDIR%%/astest/ssnv507h.para +%%ASTERDIR%%/astest/ssnv507i.comm +%%ASTERDIR%%/astest/ssnv507i.datg +%%ASTERDIR%%/astest/ssnv507i.mgib +%%ASTERDIR%%/astest/ssnv507i.para %%ASTERDIR%%/astest/ssnv508a.comm %%ASTERDIR%%/astest/ssnv508a.datg %%ASTERDIR%%/astest/ssnv508a.mgib @@ -6762,6 +7261,66 @@ %%ASTERDIR%%/astest/ssnv510a.datg %%ASTERDIR%%/astest/ssnv510a.mgib %%ASTERDIR%%/astest/ssnv510a.para +%%ASTERDIR%%/astest/ssnv510b.comm +%%ASTERDIR%%/astest/ssnv510b.datg +%%ASTERDIR%%/astest/ssnv510b.mgib +%%ASTERDIR%%/astest/ssnv510b.para +%%ASTERDIR%%/astest/ssnv510c.comm +%%ASTERDIR%%/astest/ssnv510c.datg +%%ASTERDIR%%/astest/ssnv510c.mgib +%%ASTERDIR%%/astest/ssnv510c.para +%%ASTERDIR%%/astest/ssnv511a.comm +%%ASTERDIR%%/astest/ssnv511a.datg +%%ASTERDIR%%/astest/ssnv511a.mgib +%%ASTERDIR%%/astest/ssnv511a.para +%%ASTERDIR%%/astest/ssnv511b.comm +%%ASTERDIR%%/astest/ssnv511b.datg +%%ASTERDIR%%/astest/ssnv511b.mgib +%%ASTERDIR%%/astest/ssnv511b.para +%%ASTERDIR%%/astest/ssnv511c.comm +%%ASTERDIR%%/astest/ssnv511c.datg +%%ASTERDIR%%/astest/ssnv511c.mgib +%%ASTERDIR%%/astest/ssnv511c.para +%%ASTERDIR%%/astest/ssnv511d.comm +%%ASTERDIR%%/astest/ssnv511d.datg +%%ASTERDIR%%/astest/ssnv511d.mgib +%%ASTERDIR%%/astest/ssnv511d.para +%%ASTERDIR%%/astest/ssnv512a.comm +%%ASTERDIR%%/astest/ssnv512a.datg +%%ASTERDIR%%/astest/ssnv512a.mgib +%%ASTERDIR%%/astest/ssnv512a.para +%%ASTERDIR%%/astest/ssnv512b.comm +%%ASTERDIR%%/astest/ssnv512b.datg +%%ASTERDIR%%/astest/ssnv512b.mgib +%%ASTERDIR%%/astest/ssnv512b.para +%%ASTERDIR%%/astest/ssnv512c.comm +%%ASTERDIR%%/astest/ssnv512c.datg +%%ASTERDIR%%/astest/ssnv512c.mgib +%%ASTERDIR%%/astest/ssnv512c.para +%%ASTERDIR%%/astest/ssnv512d.comm +%%ASTERDIR%%/astest/ssnv512d.datg +%%ASTERDIR%%/astest/ssnv512d.mgib +%%ASTERDIR%%/astest/ssnv512d.para +%%ASTERDIR%%/astest/ssnv512e.comm +%%ASTERDIR%%/astest/ssnv512e.datg +%%ASTERDIR%%/astest/ssnv512e.mgib +%%ASTERDIR%%/astest/ssnv512e.para +%%ASTERDIR%%/astest/ssnv513a.comm +%%ASTERDIR%%/astest/ssnv513a.datg +%%ASTERDIR%%/astest/ssnv513a.mgib +%%ASTERDIR%%/astest/ssnv513a.para +%%ASTERDIR%%/astest/ssnv513b.comm +%%ASTERDIR%%/astest/ssnv513b.datg +%%ASTERDIR%%/astest/ssnv513b.mgib +%%ASTERDIR%%/astest/ssnv513b.para +%%ASTERDIR%%/astest/ssnv513c.comm +%%ASTERDIR%%/astest/ssnv513c.datg +%%ASTERDIR%%/astest/ssnv513c.mgib +%%ASTERDIR%%/astest/ssnv513c.para +%%ASTERDIR%%/astest/ssnv513d.comm +%%ASTERDIR%%/astest/ssnv513d.datg +%%ASTERDIR%%/astest/ssnv513d.mgib +%%ASTERDIR%%/astest/ssnv513d.para %%ASTERDIR%%/astest/ssnx101a.comm %%ASTERDIR%%/astest/ssnx101a.datg %%ASTERDIR%%/astest/ssnx101a.mgib @@ -6786,6 +7345,8 @@ %%ASTERDIR%%/astest/szlz107a.para %%ASTERDIR%%/astest/szlz108a.comm %%ASTERDIR%%/astest/szlz108a.para +%%ASTERDIR%%/astest/szlz108b.comm +%%ASTERDIR%%/astest/szlz108b.para %%ASTERDIR%%/astest/szlz109a.comm %%ASTERDIR%%/astest/szlz109a.para %%ASTERDIR%%/astest/szlz110a.comm @@ -6795,7 +7356,6 @@ %%ASTERDIR%%/astest/szlz111a.para %%ASTERDIR%%/astest/szlz111b.comm %%ASTERDIR%%/astest/szlz111b.para -%%ASTERDIR%%/astest/tmpexport.msk %%ASTERDIR%%/astest/tpla01a.comm %%ASTERDIR%%/astest/tpla01a.mail %%ASTERDIR%%/astest/tpla01a.para @@ -7254,6 +7814,18 @@ %%ASTERDIR%%/astest/ttnp200a.comm %%ASTERDIR%%/astest/ttnp200a.mail %%ASTERDIR%%/astest/ttnp200a.para +%%ASTERDIR%%/astest/ttnp201a.20 +%%ASTERDIR%%/astest/ttnp201a.comm +%%ASTERDIR%%/astest/ttnp201a.datg +%%ASTERDIR%%/astest/ttnp201a.para +%%ASTERDIR%%/astest/ttnp201b.20 +%%ASTERDIR%%/astest/ttnp201b.comm +%%ASTERDIR%%/astest/ttnp201b.datg +%%ASTERDIR%%/astest/ttnp201b.para +%%ASTERDIR%%/astest/ttnp201c.20 +%%ASTERDIR%%/astest/ttnp201c.comm +%%ASTERDIR%%/astest/ttnp201c.datg +%%ASTERDIR%%/astest/ttnp201c.para %%ASTERDIR%%/astest/umat001a.22 %%ASTERDIR%%/astest/umat001a.44 %%ASTERDIR%%/astest/umat001a.comm @@ -7261,6 +7833,13 @@ %%ASTERDIR%%/astest/umat001a.mail %%ASTERDIR%%/astest/umat001a.mgib %%ASTERDIR%%/astest/umat001a.para +%%ASTERDIR%%/astest/umat001b.22 +%%ASTERDIR%%/astest/umat001b.44 +%%ASTERDIR%%/astest/umat001b.comm +%%ASTERDIR%%/astest/umat001b.datg +%%ASTERDIR%%/astest/umat001b.mail +%%ASTERDIR%%/astest/umat001b.mgib +%%ASTERDIR%%/astest/umat001b.para %%ASTERDIR%%/astest/umat002a.22 %%ASTERDIR%%/astest/umat002a.23 %%ASTERDIR%%/astest/umat002a.44 @@ -7314,22 +7893,22 @@ %%ASTERDIR%%/astest/wtna102d.datg %%ASTERDIR%%/astest/wtna102d.mgib %%ASTERDIR%%/astest/wtna102d.para -%%ASTERDIR%%/astest/wtna103a.comm -%%ASTERDIR%%/astest/wtna103a.datg -%%ASTERDIR%%/astest/wtna103a.mgib -%%ASTERDIR%%/astest/wtna103a.para -%%ASTERDIR%%/astest/wtna103b.comm -%%ASTERDIR%%/astest/wtna103b.datg -%%ASTERDIR%%/astest/wtna103b.mgib -%%ASTERDIR%%/astest/wtna103b.para -%%ASTERDIR%%/astest/wtna103c.comm -%%ASTERDIR%%/astest/wtna103c.datg -%%ASTERDIR%%/astest/wtna103c.mgib -%%ASTERDIR%%/astest/wtna103c.para -%%ASTERDIR%%/astest/wtna103d.comm -%%ASTERDIR%%/astest/wtna103d.datg -%%ASTERDIR%%/astest/wtna103d.mgib -%%ASTERDIR%%/astest/wtna103d.para +%%ASTERDIR%%/astest/wtna102e.comm +%%ASTERDIR%%/astest/wtna102e.datg +%%ASTERDIR%%/astest/wtna102e.mgib +%%ASTERDIR%%/astest/wtna102e.para +%%ASTERDIR%%/astest/wtna102f.comm +%%ASTERDIR%%/astest/wtna102f.datg +%%ASTERDIR%%/astest/wtna102f.mgib +%%ASTERDIR%%/astest/wtna102f.para +%%ASTERDIR%%/astest/wtna102g.comm +%%ASTERDIR%%/astest/wtna102g.datg +%%ASTERDIR%%/astest/wtna102g.mgib +%%ASTERDIR%%/astest/wtna102g.para +%%ASTERDIR%%/astest/wtna102h.comm +%%ASTERDIR%%/astest/wtna102h.datg +%%ASTERDIR%%/astest/wtna102h.mgib +%%ASTERDIR%%/astest/wtna102h.para %%ASTERDIR%%/astest/wtna104a.comm %%ASTERDIR%%/astest/wtna104a.datg %%ASTERDIR%%/astest/wtna104a.mgib @@ -7338,6 +7917,10 @@ %%ASTERDIR%%/astest/wtna104b.datg %%ASTERDIR%%/astest/wtna104b.mgib %%ASTERDIR%%/astest/wtna104b.para +%%ASTERDIR%%/astest/wtna105a.comm +%%ASTERDIR%%/astest/wtna105a.datg +%%ASTERDIR%%/astest/wtna105a.mgib +%%ASTERDIR%%/astest/wtna105a.para %%ASTERDIR%%/astest/wtna106a.comm %%ASTERDIR%%/astest/wtna106a.datg %%ASTERDIR%%/astest/wtna106a.mgib @@ -7363,18 +7946,6 @@ %%ASTERDIR%%/astest/wtna107c.comm %%ASTERDIR%%/astest/wtna107c.mail %%ASTERDIR%%/astest/wtna107c.para -%%ASTERDIR%%/astest/wtna108a.comm -%%ASTERDIR%%/astest/wtna108a.datg -%%ASTERDIR%%/astest/wtna108a.mgib -%%ASTERDIR%%/astest/wtna108a.para -%%ASTERDIR%%/astest/wtna108b.comm -%%ASTERDIR%%/astest/wtna108b.datg -%%ASTERDIR%%/astest/wtna108b.mgib -%%ASTERDIR%%/astest/wtna108b.para -%%ASTERDIR%%/astest/wtna108c.comm -%%ASTERDIR%%/astest/wtna108c.datg -%%ASTERDIR%%/astest/wtna108c.mgib -%%ASTERDIR%%/astest/wtna108c.para %%ASTERDIR%%/astest/wtna109a.comm %%ASTERDIR%%/astest/wtna109a.datg %%ASTERDIR%%/astest/wtna109a.mgib @@ -7457,6 +8028,15 @@ %%ASTERDIR%%/astest/wtnp102d.datg %%ASTERDIR%%/astest/wtnp102d.mgib %%ASTERDIR%%/astest/wtnp102d.para +%%ASTERDIR%%/astest/wtnp102e.comm +%%ASTERDIR%%/astest/wtnp102e.datg +%%ASTERDIR%%/astest/wtnp102e.mail +%%ASTERDIR%%/astest/wtnp102e.mgib +%%ASTERDIR%%/astest/wtnp102e.para +%%ASTERDIR%%/astest/wtnp102f.comm +%%ASTERDIR%%/astest/wtnp102f.datg +%%ASTERDIR%%/astest/wtnp102f.mgib +%%ASTERDIR%%/astest/wtnp102f.para %%ASTERDIR%%/astest/wtnp103a.comm %%ASTERDIR%%/astest/wtnp103a.datg %%ASTERDIR%%/astest/wtnp103a.mgib @@ -7486,21 +8066,11 @@ %%ASTERDIR%%/astest/wtnp107a.comm %%ASTERDIR%%/astest/wtnp107a.mail %%ASTERDIR%%/astest/wtnp107a.para -%%ASTERDIR%%/astest/wtnp109a.comm -%%ASTERDIR%%/astest/wtnp109a.datg -%%ASTERDIR%%/astest/wtnp109a.mgib -%%ASTERDIR%%/astest/wtnp109a.para %%ASTERDIR%%/astest/wtnp110a.comm %%ASTERDIR%%/astest/wtnp110a.datg %%ASTERDIR%%/astest/wtnp110a.mail %%ASTERDIR%%/astest/wtnp110a.mgib %%ASTERDIR%%/astest/wtnp110a.para -%%ASTERDIR%%/astest/wtnp111a.comm -%%ASTERDIR%%/astest/wtnp111a.mail -%%ASTERDIR%%/astest/wtnp111a.para -%%ASTERDIR%%/astest/wtnp111b.comm -%%ASTERDIR%%/astest/wtnp111b.mail -%%ASTERDIR%%/astest/wtnp111b.para %%ASTERDIR%%/astest/wtnp112a.comm %%ASTERDIR%%/astest/wtnp112a.mail %%ASTERDIR%%/astest/wtnp112a.para @@ -7559,6 +8129,26 @@ %%ASTERDIR%%/astest/wtnp116b.mail %%ASTERDIR%%/astest/wtnp116b.msh %%ASTERDIR%%/astest/wtnp116b.para +%%ASTERDIR%%/astest/wtnp117a.comm +%%ASTERDIR%%/astest/wtnp117a.datg +%%ASTERDIR%%/astest/wtnp117a.mgib +%%ASTERDIR%%/astest/wtnp117a.para +%%ASTERDIR%%/astest/wtnp117b.comm +%%ASTERDIR%%/astest/wtnp117b.datg +%%ASTERDIR%%/astest/wtnp117b.mgib +%%ASTERDIR%%/astest/wtnp117b.para +%%ASTERDIR%%/astest/wtnp117c.comm +%%ASTERDIR%%/astest/wtnp117c.datg +%%ASTERDIR%%/astest/wtnp117c.mgib +%%ASTERDIR%%/astest/wtnp117c.para +%%ASTERDIR%%/astest/wtnp117d.comm +%%ASTERDIR%%/astest/wtnp117d.datg +%%ASTERDIR%%/astest/wtnp117d.mgib +%%ASTERDIR%%/astest/wtnp117d.para +%%ASTERDIR%%/astest/wtnp117e.comm +%%ASTERDIR%%/astest/wtnp117e.datg +%%ASTERDIR%%/astest/wtnp117e.mgib +%%ASTERDIR%%/astest/wtnp117e.para %%ASTERDIR%%/astest/wtnp118a.comm %%ASTERDIR%%/astest/wtnp118a.mail %%ASTERDIR%%/astest/wtnp118a.para @@ -7580,6 +8170,129 @@ %%ASTERDIR%%/astest/wtnp119d.comm %%ASTERDIR%%/astest/wtnp119d.mail %%ASTERDIR%%/astest/wtnp119d.para +%%ASTERDIR%%/astest/wtnp120a.comm +%%ASTERDIR%%/astest/wtnp120a.mail +%%ASTERDIR%%/astest/wtnp120a.para +%%ASTERDIR%%/astest/wtnp120b.comm +%%ASTERDIR%%/astest/wtnp120b.mail +%%ASTERDIR%%/astest/wtnp120b.para +%%ASTERDIR%%/astest/wtnp120c.comm +%%ASTERDIR%%/astest/wtnp120c.mail +%%ASTERDIR%%/astest/wtnp120c.para +%%ASTERDIR%%/astest/wtnp120d.comm +%%ASTERDIR%%/astest/wtnp120d.mail +%%ASTERDIR%%/astest/wtnp120d.para +%%ASTERDIR%%/astest/wtnp120e.comm +%%ASTERDIR%%/astest/wtnp120e.mail +%%ASTERDIR%%/astest/wtnp120e.para +%%ASTERDIR%%/astest/wtnp120f.comm +%%ASTERDIR%%/astest/wtnp120f.mail +%%ASTERDIR%%/astest/wtnp120f.para +%%ASTERDIR%%/astest/wtnp120g.comm +%%ASTERDIR%%/astest/wtnp120g.mail +%%ASTERDIR%%/astest/wtnp120g.para +%%ASTERDIR%%/astest/wtnp120h.comm +%%ASTERDIR%%/astest/wtnp120h.mail +%%ASTERDIR%%/astest/wtnp120h.para +%%ASTERDIR%%/astest/wtnp120i.comm +%%ASTERDIR%%/astest/wtnp120i.mail +%%ASTERDIR%%/astest/wtnp120i.para +%%ASTERDIR%%/astest/wtnp120j.comm +%%ASTERDIR%%/astest/wtnp120j.mail +%%ASTERDIR%%/astest/wtnp120j.para +%%ASTERDIR%%/astest/wtnp121a.comm +%%ASTERDIR%%/astest/wtnp121a.mail +%%ASTERDIR%%/astest/wtnp121a.para +%%ASTERDIR%%/astest/wtnp121b.comm +%%ASTERDIR%%/astest/wtnp121b.mail +%%ASTERDIR%%/astest/wtnp121b.para +%%ASTERDIR%%/astest/wtnp121c.comm +%%ASTERDIR%%/astest/wtnp121c.mail +%%ASTERDIR%%/astest/wtnp121c.para +%%ASTERDIR%%/astest/wtnp121d.comm +%%ASTERDIR%%/astest/wtnp121d.mail +%%ASTERDIR%%/astest/wtnp121d.para +%%ASTERDIR%%/astest/wtnp121e.comm +%%ASTERDIR%%/astest/wtnp121e.mail +%%ASTERDIR%%/astest/wtnp121e.para +%%ASTERDIR%%/astest/wtnp121f.comm +%%ASTERDIR%%/astest/wtnp121f.mail +%%ASTERDIR%%/astest/wtnp121f.para +%%ASTERDIR%%/astest/wtnp121g.comm +%%ASTERDIR%%/astest/wtnp121g.mail +%%ASTERDIR%%/astest/wtnp121g.para +%%ASTERDIR%%/astest/wtnp121h.comm +%%ASTERDIR%%/astest/wtnp121h.mail +%%ASTERDIR%%/astest/wtnp121h.para +%%ASTERDIR%%/astest/wtnp121i.comm +%%ASTERDIR%%/astest/wtnp121i.mail +%%ASTERDIR%%/astest/wtnp121i.para +%%ASTERDIR%%/astest/wtnp121j.comm +%%ASTERDIR%%/astest/wtnp121j.mail +%%ASTERDIR%%/astest/wtnp121j.para +%%ASTERDIR%%/astest/wtnp121k.comm +%%ASTERDIR%%/astest/wtnp121k.mail +%%ASTERDIR%%/astest/wtnp121k.para +%%ASTERDIR%%/astest/wtnp121l.comm +%%ASTERDIR%%/astest/wtnp121l.mail +%%ASTERDIR%%/astest/wtnp121l.para +%%ASTERDIR%%/astest/wtnp121m.comm +%%ASTERDIR%%/astest/wtnp121m.mail +%%ASTERDIR%%/astest/wtnp121m.para +%%ASTERDIR%%/astest/wtnp121n.comm +%%ASTERDIR%%/astest/wtnp121n.mail +%%ASTERDIR%%/astest/wtnp121n.para +%%ASTERDIR%%/astest/wtnp122a.comm +%%ASTERDIR%%/astest/wtnp122a.mail +%%ASTERDIR%%/astest/wtnp122a.para +%%ASTERDIR%%/astest/wtnp122b.comm +%%ASTERDIR%%/astest/wtnp122b.mail +%%ASTERDIR%%/astest/wtnp122b.para +%%ASTERDIR%%/astest/wtnp122c.comm +%%ASTERDIR%%/astest/wtnp122c.mail +%%ASTERDIR%%/astest/wtnp122c.para +%%ASTERDIR%%/astest/wtnp122d.comm +%%ASTERDIR%%/astest/wtnp122d.mail +%%ASTERDIR%%/astest/wtnp122d.para +%%ASTERDIR%%/astest/wtnp122e.comm +%%ASTERDIR%%/astest/wtnp122e.mail +%%ASTERDIR%%/astest/wtnp122e.para +%%ASTERDIR%%/astest/wtnp122f.comm +%%ASTERDIR%%/astest/wtnp122f.mail +%%ASTERDIR%%/astest/wtnp122f.para +%%ASTERDIR%%/astest/wtnp122g.comm +%%ASTERDIR%%/astest/wtnp122g.mail +%%ASTERDIR%%/astest/wtnp122g.para +%%ASTERDIR%%/astest/wtnp122h.comm +%%ASTERDIR%%/astest/wtnp122h.mail +%%ASTERDIR%%/astest/wtnp122h.para +%%ASTERDIR%%/astest/wtnp122i.comm +%%ASTERDIR%%/astest/wtnp122i.mail +%%ASTERDIR%%/astest/wtnp122i.para +%%ASTERDIR%%/astest/wtnp123a.comm +%%ASTERDIR%%/astest/wtnp123a.mail +%%ASTERDIR%%/astest/wtnp123a.para +%%ASTERDIR%%/astest/wtnp123b.comm +%%ASTERDIR%%/astest/wtnp123b.mail +%%ASTERDIR%%/astest/wtnp123b.para +%%ASTERDIR%%/astest/wtnp123c.comm +%%ASTERDIR%%/astest/wtnp123c.mail +%%ASTERDIR%%/astest/wtnp123c.para +%%ASTERDIR%%/astest/wtnp123d.comm +%%ASTERDIR%%/astest/wtnp123d.mail +%%ASTERDIR%%/astest/wtnp123d.para +%%ASTERDIR%%/astest/wtnp124a.comm +%%ASTERDIR%%/astest/wtnp124a.mail +%%ASTERDIR%%/astest/wtnp124a.para +%%ASTERDIR%%/astest/wtnp124b.comm +%%ASTERDIR%%/astest/wtnp124b.mail +%%ASTERDIR%%/astest/wtnp124b.para +%%ASTERDIR%%/astest/wtnp124c.comm +%%ASTERDIR%%/astest/wtnp124c.mail +%%ASTERDIR%%/astest/wtnp124c.para +%%ASTERDIR%%/astest/wtnp124d.comm +%%ASTERDIR%%/astest/wtnp124d.mail +%%ASTERDIR%%/astest/wtnp124d.para %%ASTERDIR%%/astest/wtnp125a.comm %%ASTERDIR%%/astest/wtnp125a.mail %%ASTERDIR%%/astest/wtnp125a.para @@ -7592,6 +8305,21 @@ %%ASTERDIR%%/astest/wtnp126b.comm %%ASTERDIR%%/astest/wtnp126b.mail %%ASTERDIR%%/astest/wtnp126b.para +%%ASTERDIR%%/astest/wtnp127a.comm +%%ASTERDIR%%/astest/wtnp127a.mail +%%ASTERDIR%%/astest/wtnp127a.para +%%ASTERDIR%%/astest/wtnp127b.comm +%%ASTERDIR%%/astest/wtnp127b.mail +%%ASTERDIR%%/astest/wtnp127b.para +%%ASTERDIR%%/astest/wtnp127c.comm +%%ASTERDIR%%/astest/wtnp127c.mail +%%ASTERDIR%%/astest/wtnp127c.para +%%ASTERDIR%%/astest/wtnp127d.comm +%%ASTERDIR%%/astest/wtnp127d.mail +%%ASTERDIR%%/astest/wtnp127d.para +%%ASTERDIR%%/astest/wtnp127e.comm +%%ASTERDIR%%/astest/wtnp127e.mail +%%ASTERDIR%%/astest/wtnp127e.para %%ASTERDIR%%/astest/wtnp128a.comm %%ASTERDIR%%/astest/wtnp128a.mmed %%ASTERDIR%%/astest/wtnp128a.para @@ -7616,14 +8344,6 @@ %%ASTERDIR%%/astest/wtnv101a.comm %%ASTERDIR%%/astest/wtnv101a.mail %%ASTERDIR%%/astest/wtnv101a.para -%%ASTERDIR%%/astest/wtnv102a.comm -%%ASTERDIR%%/astest/wtnv102a.datg -%%ASTERDIR%%/astest/wtnv102a.mgib -%%ASTERDIR%%/astest/wtnv102a.para -%%ASTERDIR%%/astest/wtnv102b.comm -%%ASTERDIR%%/astest/wtnv102b.datg -%%ASTERDIR%%/astest/wtnv102b.mgib -%%ASTERDIR%%/astest/wtnv102b.para %%ASTERDIR%%/astest/wtnv109a.comm %%ASTERDIR%%/astest/wtnv109a.mail %%ASTERDIR%%/astest/wtnv109a.para @@ -7684,6 +8404,12 @@ %%ASTERDIR%%/astest/wtnv113h.comm %%ASTERDIR%%/astest/wtnv113h.mail %%ASTERDIR%%/astest/wtnv113h.para +%%ASTERDIR%%/astest/wtnv113i.comm +%%ASTERDIR%%/astest/wtnv113i.mail +%%ASTERDIR%%/astest/wtnv113i.para +%%ASTERDIR%%/astest/wtnv113j.comm +%%ASTERDIR%%/astest/wtnv113j.mail +%%ASTERDIR%%/astest/wtnv113j.para %%ASTERDIR%%/astest/wtnv114a.comm %%ASTERDIR%%/astest/wtnv114a.mail %%ASTERDIR%%/astest/wtnv114a.para @@ -7848,6 +8574,47 @@ %%ASTERDIR%%/astest/wtnv138a.comm %%ASTERDIR%%/astest/wtnv138a.mail %%ASTERDIR%%/astest/wtnv138a.para +%%ASTERDIR%%/astest/zmat001a.33 +%%ASTERDIR%%/astest/zmat001a.comm +%%ASTERDIR%%/astest/zmat001a.mail +%%ASTERDIR%%/astest/zmat001a.para +%%ASTERDIR%%/astest/zmat001b.33 +%%ASTERDIR%%/astest/zmat001b.comm +%%ASTERDIR%%/astest/zmat001b.mail +%%ASTERDIR%%/astest/zmat001b.para +%%ASTERDIR%%/astest/zmat001c.33 +%%ASTERDIR%%/astest/zmat001c.comm +%%ASTERDIR%%/astest/zmat001c.para +%%ASTERDIR%%/astest/zmat002a.33 +%%ASTERDIR%%/astest/zmat002a.comm +%%ASTERDIR%%/astest/zmat002a.mail +%%ASTERDIR%%/astest/zmat002a.para +%%ASTERDIR%%/astest/zmat002b.33 +%%ASTERDIR%%/astest/zmat002b.comm +%%ASTERDIR%%/astest/zmat002b.mail +%%ASTERDIR%%/astest/zmat002b.para +%%ASTERDIR%%/astest/zmat003a.32 +%%ASTERDIR%%/astest/zmat003a.33 +%%ASTERDIR%%/astest/zmat003a.com1 +%%ASTERDIR%%/astest/zmat003a.comm +%%ASTERDIR%%/astest/zmat003a.mail +%%ASTERDIR%%/astest/zmat003a.para +%%ASTERDIR%%/astest/zmat004a.33 +%%ASTERDIR%%/astest/zmat004a.comm +%%ASTERDIR%%/astest/zmat004a.mail +%%ASTERDIR%%/astest/zmat004a.para +%%ASTERDIR%%/astest/zmat005a.33 +%%ASTERDIR%%/astest/zmat005a.comm +%%ASTERDIR%%/astest/zmat005a.mail +%%ASTERDIR%%/astest/zmat005a.para +%%ASTERDIR%%/astest/zmat005b.33 +%%ASTERDIR%%/astest/zmat005b.comm +%%ASTERDIR%%/astest/zmat005b.mail +%%ASTERDIR%%/astest/zmat005b.para +%%ASTERDIR%%/astest/zmat006a.33 +%%ASTERDIR%%/astest/zmat006a.comm +%%ASTERDIR%%/astest/zmat006a.mail +%%ASTERDIR%%/astest/zmat006a.para %%ASTERDIR%%/astest/zmat007a.33 %%ASTERDIR%%/astest/zmat007a.comm %%ASTERDIR%%/astest/zmat007a.mail @@ -7857,6 +8624,15 @@ %%ASTERDIR%%/astest/zmat008a.comm %%ASTERDIR%%/astest/zmat008a.mail %%ASTERDIR%%/astest/zmat008a.para +%%ASTERDIR%%/astest/zmat009a.33 +%%ASTERDIR%%/astest/zmat009a.36 +%%ASTERDIR%%/astest/zmat009a.comm +%%ASTERDIR%%/astest/zmat009a.mail +%%ASTERDIR%%/astest/zmat009a.para +%%ASTERDIR%%/astest/zmat010a.33 +%%ASTERDIR%%/astest/zmat010a.comm +%%ASTERDIR%%/astest/zmat010a.mail +%%ASTERDIR%%/astest/zmat010a.para %%ASTERDIR%%/astest/zzzz100a.11 %%ASTERDIR%%/astest/zzzz100a.com1 %%ASTERDIR%%/astest/zzzz100a.comm @@ -7912,6 +8688,9 @@ %%ASTERDIR%%/astest/zzzz111a.comm %%ASTERDIR%%/astest/zzzz111a.mail %%ASTERDIR%%/astest/zzzz111a.para +%%ASTERDIR%%/astest/zzzz111b.comm +%%ASTERDIR%%/astest/zzzz111b.mail +%%ASTERDIR%%/astest/zzzz111b.para %%ASTERDIR%%/astest/zzzz112a.18 %%ASTERDIR%%/astest/zzzz112a.23 %%ASTERDIR%%/astest/zzzz112a.comm @@ -7935,6 +8714,22 @@ %%ASTERDIR%%/astest/zzzz115a.comm %%ASTERDIR%%/astest/zzzz115a.mail %%ASTERDIR%%/astest/zzzz115a.para +%%ASTERDIR%%/astest/zzzz118a.comm +%%ASTERDIR%%/astest/zzzz118a.mail +%%ASTERDIR%%/astest/zzzz118a.para +%%ASTERDIR%%/astest/zzzz118b.comm +%%ASTERDIR%%/astest/zzzz118b.mail +%%ASTERDIR%%/astest/zzzz118b.para +%%ASTERDIR%%/astest/zzzz118c.38 +%%ASTERDIR%%/astest/zzzz118c.com1 +%%ASTERDIR%%/astest/zzzz118c.comm +%%ASTERDIR%%/astest/zzzz118c.mail +%%ASTERDIR%%/astest/zzzz118c.para +%%ASTERDIR%%/astest/zzzz118d.38 +%%ASTERDIR%%/astest/zzzz118d.com1 +%%ASTERDIR%%/astest/zzzz118d.comm +%%ASTERDIR%%/astest/zzzz118d.mail +%%ASTERDIR%%/astest/zzzz118d.para %%ASTERDIR%%/astest/zzzz119a.20 %%ASTERDIR%%/astest/zzzz119a.com0 %%ASTERDIR%%/astest/zzzz119a.com1 @@ -7945,6 +8740,7 @@ %%ASTERDIR%%/astest/zzzz121a.comm %%ASTERDIR%%/astest/zzzz121a.mail %%ASTERDIR%%/astest/zzzz121a.para +%%ASTERDIR%%/astest/zzzz121b.com1 %%ASTERDIR%%/astest/zzzz121b.comm %%ASTERDIR%%/astest/zzzz121b.mail %%ASTERDIR%%/astest/zzzz121b.para @@ -8004,6 +8800,9 @@ %%ASTERDIR%%/astest/zzzz136c.comm %%ASTERDIR%%/astest/zzzz136c.msup %%ASTERDIR%%/astest/zzzz136c.para +%%ASTERDIR%%/astest/zzzz136d.comm +%%ASTERDIR%%/astest/zzzz136d.mmed +%%ASTERDIR%%/astest/zzzz136d.para %%ASTERDIR%%/astest/zzzz137a.37 %%ASTERDIR%%/astest/zzzz137a.comm %%ASTERDIR%%/astest/zzzz137a.mail @@ -8015,7 +8814,15 @@ %%ASTERDIR%%/astest/zzzz141a.15 %%ASTERDIR%%/astest/zzzz141a.16 %%ASTERDIR%%/astest/zzzz141a.17 +%%ASTERDIR%%/astest/zzzz141a.18 +%%ASTERDIR%%/astest/zzzz141a.19 %%ASTERDIR%%/astest/zzzz141a.80 +%%ASTERDIR%%/astest/zzzz141a.91 +%%ASTERDIR%%/astest/zzzz141a.92 +%%ASTERDIR%%/astest/zzzz141a.93 +%%ASTERDIR%%/astest/zzzz141a.94 +%%ASTERDIR%%/astest/zzzz141a.95 +%%ASTERDIR%%/astest/zzzz141a.96 %%ASTERDIR%%/astest/zzzz141a.comm %%ASTERDIR%%/astest/zzzz141a.para %%ASTERDIR%%/astest/zzzz159a.3 @@ -8026,6 +8833,7 @@ %%ASTERDIR%%/astest/zzzz159a.mail %%ASTERDIR%%/astest/zzzz159a.para %%ASTERDIR%%/astest/zzzz159b.3 +%%ASTERDIR%%/astest/zzzz159b.90 %%ASTERDIR%%/astest/zzzz159b.comm %%ASTERDIR%%/astest/zzzz159b.mail %%ASTERDIR%%/astest/zzzz159b.para @@ -8088,6 +8896,10 @@ %%ASTERDIR%%/astest/zzzz166d.datg %%ASTERDIR%%/astest/zzzz166d.mgib %%ASTERDIR%%/astest/zzzz166d.para +%%ASTERDIR%%/astest/zzzz166e.comm +%%ASTERDIR%%/astest/zzzz166e.datg +%%ASTERDIR%%/astest/zzzz166e.mgib +%%ASTERDIR%%/astest/zzzz166e.para %%ASTERDIR%%/astest/zzzz166f.comm %%ASTERDIR%%/astest/zzzz166f.datg %%ASTERDIR%%/astest/zzzz166f.mgib @@ -8116,6 +8928,11 @@ %%ASTERDIR%%/astest/zzzz176a.mail %%ASTERDIR%%/astest/zzzz176a.msup %%ASTERDIR%%/astest/zzzz176a.para +%%ASTERDIR%%/astest/zzzz177a.31 +%%ASTERDIR%%/astest/zzzz177a.32 +%%ASTERDIR%%/astest/zzzz177a.com1 +%%ASTERDIR%%/astest/zzzz177a.comm +%%ASTERDIR%%/astest/zzzz177a.para %%ASTERDIR%%/astest/zzzz180a.comm %%ASTERDIR%%/astest/zzzz180a.para %%ASTERDIR%%/astest/zzzz185a.19 @@ -8167,9 +8984,18 @@ %%ASTERDIR%%/astest/zzzz215c.23 %%ASTERDIR%%/astest/zzzz215c.comm %%ASTERDIR%%/astest/zzzz215c.para +%%ASTERDIR%%/astest/zzzz216a.comm +%%ASTERDIR%%/astest/zzzz216a.datg +%%ASTERDIR%%/astest/zzzz216a.mail +%%ASTERDIR%%/astest/zzzz216a.mgib +%%ASTERDIR%%/astest/zzzz216a.para %%ASTERDIR%%/astest/zzzz219a.comm %%ASTERDIR%%/astest/zzzz219a.mail %%ASTERDIR%%/astest/zzzz219a.para +%%ASTERDIR%%/astest/zzzz221a.comm +%%ASTERDIR%%/astest/zzzz221a.datg +%%ASTERDIR%%/astest/zzzz221a.mgib +%%ASTERDIR%%/astest/zzzz221a.para %%ASTERDIR%%/astest/zzzz222a.20 %%ASTERDIR%%/astest/zzzz222a.21 %%ASTERDIR%%/astest/zzzz222a.22 @@ -8201,6 +9027,8 @@ %%ASTERDIR%%/astest/zzzz231c.comm %%ASTERDIR%%/astest/zzzz231c.mmed %%ASTERDIR%%/astest/zzzz231c.para +%%ASTERDIR%%/astest/zzzz233a.comm +%%ASTERDIR%%/astest/zzzz233a.para %%ASTERDIR%%/astest/zzzz234a.comm %%ASTERDIR%%/astest/zzzz234a.geo %%ASTERDIR%%/astest/zzzz234a.mail @@ -8235,6 +9063,16 @@ %%ASTERDIR%%/astest/zzzz237b.comm %%ASTERDIR%%/astest/zzzz237b.mmed %%ASTERDIR%%/astest/zzzz237b.para +%%ASTERDIR%%/astest/zzzz238a.comm +%%ASTERDIR%%/astest/zzzz238a.mmed +%%ASTERDIR%%/astest/zzzz238a.para +%%ASTERDIR%%/astest/zzzz238b.comm +%%ASTERDIR%%/astest/zzzz238b.mmed +%%ASTERDIR%%/astest/zzzz238b.para +%%ASTERDIR%%/astest/zzzz238c.comm +%%ASTERDIR%%/astest/zzzz238c.mail +%%ASTERDIR%%/astest/zzzz238c.msh +%%ASTERDIR%%/astest/zzzz238c.para %%ASTERDIR%%/astest/zzzz240a.14 %%ASTERDIR%%/astest/zzzz240a.comm %%ASTERDIR%%/astest/zzzz240a.para @@ -8252,6 +9090,23 @@ %%ASTERDIR%%/astest/zzzz254a.comm %%ASTERDIR%%/astest/zzzz254a.mmed %%ASTERDIR%%/astest/zzzz254a.para +%%ASTERDIR%%/astest/zzzz255a.comm +%%ASTERDIR%%/astest/zzzz255a.datg +%%ASTERDIR%%/astest/zzzz255a.mgib +%%ASTERDIR%%/astest/zzzz255a.mmed +%%ASTERDIR%%/astest/zzzz255a.para +%%ASTERDIR%%/astest/zzzz255b.comm +%%ASTERDIR%%/astest/zzzz255b.datg +%%ASTERDIR%%/astest/zzzz255b.mgib +%%ASTERDIR%%/astest/zzzz255b.mmed +%%ASTERDIR%%/astest/zzzz255b.para +%%ASTERDIR%%/astest/zzzz255c.38 +%%ASTERDIR%%/astest/zzzz255c.comm +%%ASTERDIR%%/astest/zzzz255c.datg +%%ASTERDIR%%/astest/zzzz255c.mgib +%%ASTERDIR%%/astest/zzzz255c.mmed +%%ASTERDIR%%/astest/zzzz255c.para +%%ASTERDIR%%/astest/zzzz256a.com0 %%ASTERDIR%%/astest/zzzz256a.comm %%ASTERDIR%%/astest/zzzz256a.mail %%ASTERDIR%%/astest/zzzz256a.para @@ -8285,6 +9140,11 @@ %%ASTERDIR%%/astest/zzzz261a.comm %%ASTERDIR%%/astest/zzzz261a.datg %%ASTERDIR%%/astest/zzzz261a.para +%%ASTERDIR%%/astest/zzzz264a.80 +%%ASTERDIR%%/astest/zzzz264a.comm +%%ASTERDIR%%/astest/zzzz264a.datg +%%ASTERDIR%%/astest/zzzz264a.mail +%%ASTERDIR%%/astest/zzzz264a.para %%ASTERDIR%%/astest/zzzz265a.comm %%ASTERDIR%%/astest/zzzz265a.mmed %%ASTERDIR%%/astest/zzzz265a.para @@ -8292,6 +9152,9 @@ %%ASTERDIR%%/astest/zzzz266a.23 %%ASTERDIR%%/astest/zzzz266a.comm %%ASTERDIR%%/astest/zzzz266a.para +%%ASTERDIR%%/astest/zzzz266b.comm +%%ASTERDIR%%/astest/zzzz266b.mail +%%ASTERDIR%%/astest/zzzz266b.para %%ASTERDIR%%/astest/zzzz268a.comm %%ASTERDIR%%/astest/zzzz268a.mail %%ASTERDIR%%/astest/zzzz268a.para @@ -8319,6 +9182,62 @@ %%ASTERDIR%%/astest/zzzz274d.comm %%ASTERDIR%%/astest/zzzz274d.mail %%ASTERDIR%%/astest/zzzz274d.para +%%ASTERDIR%%/astest/zzzz281a.comm +%%ASTERDIR%%/astest/zzzz281a.para +%%ASTERDIR%%/astest/zzzz282a.41 +%%ASTERDIR%%/astest/zzzz282a.comm +%%ASTERDIR%%/astest/zzzz282a.mmed +%%ASTERDIR%%/astest/zzzz282a.para +%%ASTERDIR%%/astest/zzzz283a.38 +%%ASTERDIR%%/astest/zzzz283a.comm +%%ASTERDIR%%/astest/zzzz283a.mmed +%%ASTERDIR%%/astest/zzzz283a.para +%%ASTERDIR%%/astest/zzzz284a.comm +%%ASTERDIR%%/astest/zzzz284a.mail +%%ASTERDIR%%/astest/zzzz284a.para +%%ASTERDIR%%/astest/zzzz285a.19 +%%ASTERDIR%%/astest/zzzz285a.21 +%%ASTERDIR%%/astest/zzzz285a.comm +%%ASTERDIR%%/astest/zzzz285a.datg +%%ASTERDIR%%/astest/zzzz285a.para +%%ASTERDIR%%/astest/zzzz285b.19 +%%ASTERDIR%%/astest/zzzz285b.21 +%%ASTERDIR%%/astest/zzzz285b.comm +%%ASTERDIR%%/astest/zzzz285b.datg +%%ASTERDIR%%/astest/zzzz285b.para +%%ASTERDIR%%/astest/zzzz285c.19 +%%ASTERDIR%%/astest/zzzz285c.21 +%%ASTERDIR%%/astest/zzzz285c.comm +%%ASTERDIR%%/astest/zzzz285c.datg +%%ASTERDIR%%/astest/zzzz285c.para +%%ASTERDIR%%/astest/zzzz285d.19 +%%ASTERDIR%%/astest/zzzz285d.21 +%%ASTERDIR%%/astest/zzzz285d.comm +%%ASTERDIR%%/astest/zzzz285d.datg +%%ASTERDIR%%/astest/zzzz285d.para +%%ASTERDIR%%/astest/zzzz285e.20 +%%ASTERDIR%%/astest/zzzz285e.22 +%%ASTERDIR%%/astest/zzzz285e.comm +%%ASTERDIR%%/astest/zzzz285e.para +%%ASTERDIR%%/astest/zzzz285f.20 +%%ASTERDIR%%/astest/zzzz285f.22 +%%ASTERDIR%%/astest/zzzz285f.comm +%%ASTERDIR%%/astest/zzzz285f.para +%%ASTERDIR%%/astest/zzzz289a.comm +%%ASTERDIR%%/astest/zzzz289a.mmed +%%ASTERDIR%%/astest/zzzz289a.para +%%ASTERDIR%%/astest/zzzz289b.comm +%%ASTERDIR%%/astest/zzzz289b.mmed +%%ASTERDIR%%/astest/zzzz289b.para +%%ASTERDIR%%/astest/zzzz289c.comm +%%ASTERDIR%%/astest/zzzz289c.mmed +%%ASTERDIR%%/astest/zzzz289c.para +%%ASTERDIR%%/astest/zzzz292a.comm +%%ASTERDIR%%/astest/zzzz292a.mmed +%%ASTERDIR%%/astest/zzzz292a.para +%%ASTERDIR%%/astest/zzzz295c.comm +%%ASTERDIR%%/astest/zzzz295c.mail +%%ASTERDIR%%/astest/zzzz295c.para %%ASTERDIR%%/astout.export %%ASTERDIR%%/bibpyt/Accas/A_AU_MOINS_UN.py %%ASTERDIR%%/bibpyt/Accas/A_AU_MOINS_UN.pyc @@ -8440,6 +9359,45 @@ %%ASTERDIR%%/bibpyt/Build/codex.py %%ASTERDIR%%/bibpyt/Build/codex.pyc %%ASTERDIR%%/bibpyt/Build/codex.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/__init__.py +%%ASTERDIR%%/bibpyt/Calc_essai/__init__.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/__init__.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/cata_ce.py +%%ASTERDIR%%/bibpyt/Calc_essai/cata_ce.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/cata_ce.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calc_spec.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calc_spec.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calc_spec.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_expansion.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_expansion.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_expansion.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_identification.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_identification.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_identification.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_modifstruct.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_modifstruct.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_calcul_modifstruct.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_expansion.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_expansion.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_expansion.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_identification.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_identification.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_identification.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_modifstruct.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_modifstruct.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_modifstruct.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_parametres.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_parametres.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_ihm_parametres.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_test.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_test.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_test.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/ce_visu.py +%%ASTERDIR%%/bibpyt/Calc_essai/ce_visu.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/ce_visu.pyo +%%ASTERDIR%%/bibpyt/Calc_essai/outils_ihm.py +%%ASTERDIR%%/bibpyt/Calc_essai/outils_ihm.pyc +%%ASTERDIR%%/bibpyt/Calc_essai/outils_ihm.pyo %%ASTERDIR%%/bibpyt/Cata/__init__.py %%ASTERDIR%%/bibpyt/Cata/__init__.pyc %%ASTERDIR%%/bibpyt/Cata/__init__.pyo @@ -8455,6 +9413,9 @@ %%ASTERDIR%%/bibpyt/Comportement/GDEF_HYPO_ELAS.py %%ASTERDIR%%/bibpyt/Comportement/GDEF_HYPO_ELAS.pyc %%ASTERDIR%%/bibpyt/Comportement/GDEF_HYPO_ELAS.pyo +%%ASTERDIR%%/bibpyt/Comportement/GDEF_LOG.py +%%ASTERDIR%%/bibpyt/Comportement/GDEF_LOG.pyc +%%ASTERDIR%%/bibpyt/Comportement/GDEF_LOG.pyo %%ASTERDIR%%/bibpyt/Comportement/__init__.py %%ASTERDIR%%/bibpyt/Comportement/__init__.pyc %%ASTERDIR%%/bibpyt/Comportement/__init__.pyo @@ -8515,6 +9476,9 @@ %%ASTERDIR%%/bibpyt/Comportement/czm_tac_mix.py %%ASTERDIR%%/bibpyt/Comportement/czm_tac_mix.pyc %%ASTERDIR%%/bibpyt/Comportement/czm_tac_mix.pyo +%%ASTERDIR%%/bibpyt/Comportement/czm_tra_mix.py +%%ASTERDIR%%/bibpyt/Comportement/czm_tra_mix.pyc +%%ASTERDIR%%/bibpyt/Comportement/czm_tra_mix.pyo %%ASTERDIR%%/bibpyt/Comportement/deborst.py %%ASTERDIR%%/bibpyt/Comportement/deborst.pyc %%ASTERDIR%%/bibpyt/Comportement/deborst.pyo @@ -8566,6 +9530,9 @@ %%ASTERDIR%%/bibpyt/Comportement/elas_vmis_trac.py %%ASTERDIR%%/bibpyt/Comportement/elas_vmis_trac.pyc %%ASTERDIR%%/bibpyt/Comportement/elas_vmis_trac.pyo +%%ASTERDIR%%/bibpyt/Comportement/endo_carre.py +%%ASTERDIR%%/bibpyt/Comportement/endo_carre.pyc +%%ASTERDIR%%/bibpyt/Comportement/endo_carre.pyo %%ASTERDIR%%/bibpyt/Comportement/endo_fragile.py %%ASTERDIR%%/bibpyt/Comportement/endo_fragile.pyc %%ASTERDIR%%/bibpyt/Comportement/endo_fragile.pyo @@ -8638,15 +9605,6 @@ %%ASTERDIR%%/bibpyt/Comportement/hydr_vgm.py %%ASTERDIR%%/bibpyt/Comportement/hydr_vgm.pyc %%ASTERDIR%%/bibpyt/Comportement/hydr_vgm.pyo -%%ASTERDIR%%/bibpyt/Comportement/implex_frag.py -%%ASTERDIR%%/bibpyt/Comportement/implex_frag.pyc -%%ASTERDIR%%/bibpyt/Comportement/implex_frag.pyo -%%ASTERDIR%%/bibpyt/Comportement/implex_isot_beto.py -%%ASTERDIR%%/bibpyt/Comportement/implex_isot_beto.pyc -%%ASTERDIR%%/bibpyt/Comportement/implex_isot_beto.pyo -%%ASTERDIR%%/bibpyt/Comportement/implex_isot_line.py -%%ASTERDIR%%/bibpyt/Comportement/implex_isot_line.pyc -%%ASTERDIR%%/bibpyt/Comportement/implex_isot_line.pyo %%ASTERDIR%%/bibpyt/Comportement/irrad3m.py %%ASTERDIR%%/bibpyt/Comportement/irrad3m.pyc %%ASTERDIR%%/bibpyt/Comportement/irrad3m.pyo @@ -8656,6 +9614,9 @@ %%ASTERDIR%%/bibpyt/Comportement/joint_bandis.py %%ASTERDIR%%/bibpyt/Comportement/joint_bandis.pyc %%ASTERDIR%%/bibpyt/Comportement/joint_bandis.pyo +%%ASTERDIR%%/bibpyt/Comportement/joint_meca_frot.py +%%ASTERDIR%%/bibpyt/Comportement/joint_meca_frot.pyc +%%ASTERDIR%%/bibpyt/Comportement/joint_meca_frot.pyo %%ASTERDIR%%/bibpyt/Comportement/joint_meca_rupt.py %%ASTERDIR%%/bibpyt/Comportement/joint_meca_rupt.pyc %%ASTERDIR%%/bibpyt/Comportement/joint_meca_rupt.pyo @@ -8881,6 +9842,9 @@ %%ASTERDIR%%/bibpyt/Comportement/visc_druc_prag.py %%ASTERDIR%%/bibpyt/Comportement/visc_druc_prag.pyc %%ASTERDIR%%/bibpyt/Comportement/visc_druc_prag.pyo +%%ASTERDIR%%/bibpyt/Comportement/visc_endo_lema.py +%%ASTERDIR%%/bibpyt/Comportement/visc_endo_lema.pyc +%%ASTERDIR%%/bibpyt/Comportement/visc_endo_lema.pyo %%ASTERDIR%%/bibpyt/Comportement/visc_irra_log.py %%ASTERDIR%%/bibpyt/Comportement/visc_irra_log.pyc %%ASTERDIR%%/bibpyt/Comportement/visc_irra_log.pyo @@ -9007,6 +9971,9 @@ %%ASTERDIR%%/bibpyt/Macro/__init__.py %%ASTERDIR%%/bibpyt/Macro/__init__.pyc %%ASTERDIR%%/bibpyt/Macro/__init__.pyo +%%ASTERDIR%%/bibpyt/Macro/asse_elem_ssd_ops.py +%%ASTERDIR%%/bibpyt/Macro/asse_elem_ssd_ops.pyc +%%ASTERDIR%%/bibpyt/Macro/asse_elem_ssd_ops.pyo %%ASTERDIR%%/bibpyt/Macro/calc_ecrevisse_ops.py %%ASTERDIR%%/bibpyt/Macro/calc_ecrevisse_ops.pyc %%ASTERDIR%%/bibpyt/Macro/calc_ecrevisse_ops.pyo @@ -9019,6 +9986,9 @@ %%ASTERDIR%%/bibpyt/Macro/calc_fonction_ops.py %%ASTERDIR%%/bibpyt/Macro/calc_fonction_ops.pyc %%ASTERDIR%%/bibpyt/Macro/calc_fonction_ops.pyo +%%ASTERDIR%%/bibpyt/Macro/calc_ifs_dnl_ops.py +%%ASTERDIR%%/bibpyt/Macro/calc_ifs_dnl_ops.pyc +%%ASTERDIR%%/bibpyt/Macro/calc_ifs_dnl_ops.pyo %%ASTERDIR%%/bibpyt/Macro/calc_miss_ops.py %%ASTERDIR%%/bibpyt/Macro/calc_miss_ops.pyc %%ASTERDIR%%/bibpyt/Macro/calc_miss_ops.pyo @@ -9037,6 +10007,9 @@ %%ASTERDIR%%/bibpyt/Macro/calc_table_ops.py %%ASTERDIR%%/bibpyt/Macro/calc_table_ops.pyc %%ASTERDIR%%/bibpyt/Macro/calc_table_ops.pyo +%%ASTERDIR%%/bibpyt/Macro/crea_elem_ssd_ops.py +%%ASTERDIR%%/bibpyt/Macro/crea_elem_ssd_ops.pyc +%%ASTERDIR%%/bibpyt/Macro/crea_elem_ssd_ops.pyo %%ASTERDIR%%/bibpyt/Macro/creation_donnees_homard.py %%ASTERDIR%%/bibpyt/Macro/creation_donnees_homard.pyc %%ASTERDIR%%/bibpyt/Macro/creation_donnees_homard.pyo @@ -9130,9 +10103,6 @@ %%ASTERDIR%%/bibpyt/Macro/macr_fiab_impr_ops.py %%ASTERDIR%%/bibpyt/Macro/macr_fiab_impr_ops.pyc %%ASTERDIR%%/bibpyt/Macro/macr_fiab_impr_ops.pyo -%%ASTERDIR%%/bibpyt/Macro/macr_fiabilite_ops.py -%%ASTERDIR%%/bibpyt/Macro/macr_fiabilite_ops.pyc -%%ASTERDIR%%/bibpyt/Macro/macr_fiabilite_ops.pyo %%ASTERDIR%%/bibpyt/Macro/macr_lign_coupe_ops.py %%ASTERDIR%%/bibpyt/Macro/macr_lign_coupe_ops.pyc %%ASTERDIR%%/bibpyt/Macro/macr_lign_coupe_ops.pyo @@ -9190,6 +10160,9 @@ %%ASTERDIR%%/bibpyt/Macro/post_k_trans_ops.py %%ASTERDIR%%/bibpyt/Macro/post_k_trans_ops.pyc %%ASTERDIR%%/bibpyt/Macro/post_k_trans_ops.pyo +%%ASTERDIR%%/bibpyt/Macro/post_miss_ops.py +%%ASTERDIR%%/bibpyt/Macro/post_miss_ops.pyc +%%ASTERDIR%%/bibpyt/Macro/post_miss_ops.pyo %%ASTERDIR%%/bibpyt/Macro/propa_fiss_ops.py %%ASTERDIR%%/bibpyt/Macro/propa_fiss_ops.pyc %%ASTERDIR%%/bibpyt/Macro/propa_fiss_ops.pyo @@ -9232,6 +10205,9 @@ %%ASTERDIR%%/bibpyt/Macro/stanley_ops.py %%ASTERDIR%%/bibpyt/Macro/stanley_ops.pyc %%ASTERDIR%%/bibpyt/Macro/stanley_ops.pyo +%%ASTERDIR%%/bibpyt/Macro/test_compor_ops.py +%%ASTERDIR%%/bibpyt/Macro/test_compor_ops.pyc +%%ASTERDIR%%/bibpyt/Macro/test_compor_ops.pyo %%ASTERDIR%%/bibpyt/Macro/test_fichier_ops.py %%ASTERDIR%%/bibpyt/Macro/test_fichier_ops.pyc %%ASTERDIR%%/bibpyt/Macro/test_fichier_ops.pyo @@ -9244,48 +10220,9 @@ %%ASTERDIR%%/bibpyt/Meidee/__init__.py %%ASTERDIR%%/bibpyt/Meidee/__init__.pyc %%ASTERDIR%%/bibpyt/Meidee/__init__.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_calc_spec.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_calc_spec.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_calc_spec.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_correlation.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_correlation.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_correlation.pyo %%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_modifstruct.py %%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_modifstruct.pyc %%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_modifstruct.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_turbulent.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_turbulent.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_calcul_turbulent.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_cata.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_cata.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_cata.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_correlation.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_correlation.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_correlation.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_iface.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_iface.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_iface.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_modifstruct.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_modifstruct.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_modifstruct.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_parametres.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_parametres.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_parametres.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_salome_visu.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_salome_visu.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_salome_visu.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_test.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_test.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_test.pyo -%%ASTERDIR%%/bibpyt/Meidee/meidee_turbulent.py -%%ASTERDIR%%/bibpyt/Meidee/meidee_turbulent.pyc -%%ASTERDIR%%/bibpyt/Meidee/meidee_turbulent.pyo -%%ASTERDIR%%/bibpyt/Meidee/modes.py -%%ASTERDIR%%/bibpyt/Meidee/modes.pyc -%%ASTERDIR%%/bibpyt/Meidee/modes.pyo %%ASTERDIR%%/bibpyt/Messages/__init__.py %%ASTERDIR%%/bibpyt/Messages/__init__.pyc %%ASTERDIR%%/bibpyt/Messages/__init__.pyo @@ -9367,15 +10304,6 @@ %%ASTERDIR%%/bibpyt/Messages/archivage.py %%ASTERDIR%%/bibpyt/Messages/archivage.pyc %%ASTERDIR%%/bibpyt/Messages/archivage.pyo -%%ASTERDIR%%/bibpyt/Messages/arlequin.py -%%ASTERDIR%%/bibpyt/Messages/arlequin.pyc -%%ASTERDIR%%/bibpyt/Messages/arlequin.pyo -%%ASTERDIR%%/bibpyt/Messages/arlequindebg.py -%%ASTERDIR%%/bibpyt/Messages/arlequindebg.pyc -%%ASTERDIR%%/bibpyt/Messages/arlequindebg.pyo -%%ASTERDIR%%/bibpyt/Messages/arlequindebg2.py -%%ASTERDIR%%/bibpyt/Messages/arlequindebg2.pyc -%%ASTERDIR%%/bibpyt/Messages/arlequindebg2.pyo %%ASTERDIR%%/bibpyt/Messages/ascouf0.py %%ASTERDIR%%/bibpyt/Messages/ascouf0.pyc %%ASTERDIR%%/bibpyt/Messages/ascouf0.pyo @@ -9388,6 +10316,9 @@ %%ASTERDIR%%/bibpyt/Messages/cable0.py %%ASTERDIR%%/bibpyt/Messages/cable0.pyc %%ASTERDIR%%/bibpyt/Messages/cable0.pyo +%%ASTERDIR%%/bibpyt/Messages/calcessai0.py +%%ASTERDIR%%/bibpyt/Messages/calcessai0.pyc +%%ASTERDIR%%/bibpyt/Messages/calcessai0.pyo %%ASTERDIR%%/bibpyt/Messages/calculel.py %%ASTERDIR%%/bibpyt/Messages/calculel.pyc %%ASTERDIR%%/bibpyt/Messages/calculel.pyo @@ -9442,6 +10373,12 @@ %%ASTERDIR%%/bibpyt/Messages/context_info.py %%ASTERDIR%%/bibpyt/Messages/context_info.pyc %%ASTERDIR%%/bibpyt/Messages/context_info.pyo +%%ASTERDIR%%/bibpyt/Messages/couplageifs.py +%%ASTERDIR%%/bibpyt/Messages/couplageifs.pyc +%%ASTERDIR%%/bibpyt/Messages/couplageifs.pyo +%%ASTERDIR%%/bibpyt/Messages/debug.py +%%ASTERDIR%%/bibpyt/Messages/debug.pyc +%%ASTERDIR%%/bibpyt/Messages/debug.pyo %%ASTERDIR%%/bibpyt/Messages/discretisation.py %%ASTERDIR%%/bibpyt/Messages/discretisation.pyc %%ASTERDIR%%/bibpyt/Messages/discretisation.pyo @@ -9481,9 +10418,15 @@ %%ASTERDIR%%/bibpyt/Messages/elements5.py %%ASTERDIR%%/bibpyt/Messages/elements5.pyc %%ASTERDIR%%/bibpyt/Messages/elements5.pyo +%%ASTERDIR%%/bibpyt/Messages/etatinit.py +%%ASTERDIR%%/bibpyt/Messages/etatinit.pyc +%%ASTERDIR%%/bibpyt/Messages/etatinit.pyo %%ASTERDIR%%/bibpyt/Messages/execlogiciel0.py %%ASTERDIR%%/bibpyt/Messages/execlogiciel0.pyc %%ASTERDIR%%/bibpyt/Messages/execlogiciel0.pyo +%%ASTERDIR%%/bibpyt/Messages/extraction.py +%%ASTERDIR%%/bibpyt/Messages/extraction.pyc +%%ASTERDIR%%/bibpyt/Messages/extraction.pyo %%ASTERDIR%%/bibpyt/Messages/factor.py %%ASTERDIR%%/bibpyt/Messages/factor.pyc %%ASTERDIR%%/bibpyt/Messages/factor.pyo @@ -9523,6 +10466,9 @@ %%ASTERDIR%%/bibpyt/Messages/jeveux1.py %%ASTERDIR%%/bibpyt/Messages/jeveux1.pyc %%ASTERDIR%%/bibpyt/Messages/jeveux1.pyo +%%ASTERDIR%%/bibpyt/Messages/listinst.py +%%ASTERDIR%%/bibpyt/Messages/listinst.pyc +%%ASTERDIR%%/bibpyt/Messages/listinst.pyo %%ASTERDIR%%/bibpyt/Messages/mail0.py %%ASTERDIR%%/bibpyt/Messages/mail0.pyc %%ASTERDIR%%/bibpyt/Messages/mail0.pyo @@ -9544,6 +10490,9 @@ %%ASTERDIR%%/bibpyt/Messages/mecanonline5.py %%ASTERDIR%%/bibpyt/Messages/mecanonline5.pyc %%ASTERDIR%%/bibpyt/Messages/mecanonline5.pyo +%%ASTERDIR%%/bibpyt/Messages/mecanonline6.py +%%ASTERDIR%%/bibpyt/Messages/mecanonline6.pyc +%%ASTERDIR%%/bibpyt/Messages/mecanonline6.pyo %%ASTERDIR%%/bibpyt/Messages/mecastatique.py %%ASTERDIR%%/bibpyt/Messages/mecastatique.pyc %%ASTERDIR%%/bibpyt/Messages/mecastatique.pyo @@ -9553,9 +10502,6 @@ %%ASTERDIR%%/bibpyt/Messages/med2.py %%ASTERDIR%%/bibpyt/Messages/med2.pyc %%ASTERDIR%%/bibpyt/Messages/med2.pyo -%%ASTERDIR%%/bibpyt/Messages/meidee0.py -%%ASTERDIR%%/bibpyt/Messages/meidee0.pyc -%%ASTERDIR%%/bibpyt/Messages/meidee0.pyo %%ASTERDIR%%/bibpyt/Messages/miss0.py %%ASTERDIR%%/bibpyt/Messages/miss0.pyc %%ASTERDIR%%/bibpyt/Messages/miss0.pyo @@ -9688,12 +10634,18 @@ %%ASTERDIR%%/bibpyt/Messages/supervis.py %%ASTERDIR%%/bibpyt/Messages/supervis.pyc %%ASTERDIR%%/bibpyt/Messages/supervis.pyo +%%ASTERDIR%%/bibpyt/Messages/supervis2.py +%%ASTERDIR%%/bibpyt/Messages/supervis2.pyc +%%ASTERDIR%%/bibpyt/Messages/supervis2.pyo %%ASTERDIR%%/bibpyt/Messages/table0.py %%ASTERDIR%%/bibpyt/Messages/table0.pyc %%ASTERDIR%%/bibpyt/Messages/table0.pyo %%ASTERDIR%%/bibpyt/Messages/test0.py %%ASTERDIR%%/bibpyt/Messages/test0.pyc %%ASTERDIR%%/bibpyt/Messages/test0.pyo +%%ASTERDIR%%/bibpyt/Messages/thernonline4.py +%%ASTERDIR%%/bibpyt/Messages/thernonline4.pyc +%%ASTERDIR%%/bibpyt/Messages/thernonline4.pyo %%ASTERDIR%%/bibpyt/Messages/unilater.py %%ASTERDIR%%/bibpyt/Messages/unilater.pyc %%ASTERDIR%%/bibpyt/Messages/unilater.pyo @@ -9748,6 +10700,9 @@ %%ASTERDIR%%/bibpyt/Miss/miss_fichier_sol.py %%ASTERDIR%%/bibpyt/Miss/miss_fichier_sol.pyc %%ASTERDIR%%/bibpyt/Miss/miss_fichier_sol.pyo +%%ASTERDIR%%/bibpyt/Miss/miss_post.py +%%ASTERDIR%%/bibpyt/Miss/miss_post.pyc +%%ASTERDIR%%/bibpyt/Miss/miss_post.pyo %%ASTERDIR%%/bibpyt/Miss/miss_resu_aster.py %%ASTERDIR%%/bibpyt/Miss/miss_resu_aster.pyc %%ASTERDIR%%/bibpyt/Miss/miss_resu_aster.pyo @@ -9928,6 +10883,9 @@ %%ASTERDIR%%/bibpyt/SD/co_contact.py %%ASTERDIR%%/bibpyt/SD/co_contact.pyc %%ASTERDIR%%/bibpyt/SD/co_contact.pyo +%%ASTERDIR%%/bibpyt/SD/co_corresp_2_mailla.py +%%ASTERDIR%%/bibpyt/SD/co_corresp_2_mailla.pyc +%%ASTERDIR%%/bibpyt/SD/co_corresp_2_mailla.pyo %%ASTERDIR%%/bibpyt/SD/co_courbe.py %%ASTERDIR%%/bibpyt/SD/co_courbe.pyc %%ASTERDIR%%/bibpyt/SD/co_courbe.pyo @@ -9943,6 +10901,9 @@ %%ASTERDIR%%/bibpyt/SD/co_gfibre.py %%ASTERDIR%%/bibpyt/SD/co_gfibre.pyc %%ASTERDIR%%/bibpyt/SD/co_gfibre.pyo +%%ASTERDIR%%/bibpyt/SD/co_grille.py +%%ASTERDIR%%/bibpyt/SD/co_grille.pyc +%%ASTERDIR%%/bibpyt/SD/co_grille.pyo %%ASTERDIR%%/bibpyt/SD/co_interf_dyna_clas.py %%ASTERDIR%%/bibpyt/SD/co_interf_dyna_clas.pyc %%ASTERDIR%%/bibpyt/SD/co_interf_dyna_clas.pyo @@ -10114,6 +11075,9 @@ %%ASTERDIR%%/bibpyt/SD/sd_gfibre.py %%ASTERDIR%%/bibpyt/SD/sd_gfibre.pyc %%ASTERDIR%%/bibpyt/SD/sd_gfibre.pyo +%%ASTERDIR%%/bibpyt/SD/sd_grille.py +%%ASTERDIR%%/bibpyt/SD/sd_grille.pyc +%%ASTERDIR%%/bibpyt/SD/sd_grille.pyo %%ASTERDIR%%/bibpyt/SD/sd_interf_dyna_clas.py %%ASTERDIR%%/bibpyt/SD/sd_interf_dyna_clas.pyc %%ASTERDIR%%/bibpyt/SD/sd_interf_dyna_clas.pyo @@ -10318,15 +11282,27 @@ %%ASTERDIR%%/bibpyt/Stanley/ihm_parametres.py %%ASTERDIR%%/bibpyt/Stanley/ihm_parametres.pyc %%ASTERDIR%%/bibpyt/Stanley/ihm_parametres.pyo +%%ASTERDIR%%/bibpyt/Stanley/salomeRunScript.py +%%ASTERDIR%%/bibpyt/Stanley/salomeRunScript.pyc +%%ASTERDIR%%/bibpyt/Stanley/salomeRunScript.pyo %%ASTERDIR%%/bibpyt/Stanley/salomeVisu.py %%ASTERDIR%%/bibpyt/Stanley/salomeVisu.pyc %%ASTERDIR%%/bibpyt/Stanley/salomeVisu.pyo +%%ASTERDIR%%/bibpyt/Stanley/salomeVisuPylo.py +%%ASTERDIR%%/bibpyt/Stanley/salomeVisuPylo.pyc +%%ASTERDIR%%/bibpyt/Stanley/salomeVisuPylo.pyo %%ASTERDIR%%/bibpyt/Stanley/stanley_engine.py %%ASTERDIR%%/bibpyt/Stanley/stanley_engine.pyc %%ASTERDIR%%/bibpyt/Stanley/stanley_engine.pyo %%ASTERDIR%%/bibpyt/Stanley/xmgrace.py %%ASTERDIR%%/bibpyt/Stanley/xmgrace.pyc %%ASTERDIR%%/bibpyt/Stanley/xmgrace.pyo +%%ASTERDIR%%/bibpyt/Templates/salomeGetStudies.py +%%ASTERDIR%%/bibpyt/Templates/salomeGetStudies.pyc +%%ASTERDIR%%/bibpyt/Templates/salomeGetStudies.pyo +%%ASTERDIR%%/bibpyt/Templates/salomeScript.py +%%ASTERDIR%%/bibpyt/Templates/salomeScript.pyc +%%ASTERDIR%%/bibpyt/Templates/salomeScript.pyo %%ASTERDIR%%/bibpyt/Utilitai/Graph.py %%ASTERDIR%%/bibpyt/Utilitai/Graph.pyc %%ASTERDIR%%/bibpyt/Utilitai/Graph.pyo @@ -10568,79 +11544,75 @@ %%ASTERDIR%%/catalo/options/char_ther_tnl.cata %%ASTERDIR%%/catalo/options/chvois_xfem.cata %%ASTERDIR%%/catalo/options/coor_elga.cata -%%ASTERDIR%%/catalo/options/crit_elno_rupt.cata -%%ASTERDIR%%/catalo/options/dcha_elga_sigm.cata -%%ASTERDIR%%/catalo/options/dcha_elno_sigm.cata -%%ASTERDIR%%/catalo/options/dede_elno_dlde.cata -%%ASTERDIR%%/catalo/options/dege_elno_depl.cata +%%ASTERDIR%%/catalo/options/crit_elno.cata +%%ASTERDIR%%/catalo/options/dede_elno.cata +%%ASTERDIR%%/catalo/options/dege_elno.cata %%ASTERDIR%%/catalo/options/depl_post_xfem.cata -%%ASTERDIR%%/catalo/options/desi_elno_dlsi.cata -%%ASTERDIR%%/catalo/options/dete_elno_dlte.cata +%%ASTERDIR%%/catalo/options/dera_elga.cata +%%ASTERDIR%%/catalo/options/dera_elno.cata +%%ASTERDIR%%/catalo/options/desi_elno.cata +%%ASTERDIR%%/catalo/options/dete_elno.cata %%ASTERDIR%%/catalo/options/diss_elga.cata -%%ASTERDIR%%/catalo/options/diss_elno_elga.cata +%%ASTERDIR%%/catalo/options/diss_elno.cata %%ASTERDIR%%/catalo/options/dlag_noeu_temp.cata %%ASTERDIR%%/catalo/options/dlsi_elga_depl.cata %%ASTERDIR%%/catalo/options/dlsi_elno_dlde.cata -%%ASTERDIR%%/catalo/options/durt_elno_meta.cata -%%ASTERDIR%%/catalo/options/ecin_elem_depl.cata -%%ASTERDIR%%/catalo/options/efge_elno_cart.cata -%%ASTERDIR%%/catalo/options/efge_elno_depl.cata +%%ASTERDIR%%/catalo/options/durt_elno.cata +%%ASTERDIR%%/catalo/options/ecin_elem.cata +%%ASTERDIR%%/catalo/options/efca_elno.cata +%%ASTERDIR%%/catalo/options/efge_elno.cata %%ASTERDIR%%/catalo/options/efge_elno_sens.cata %%ASTERDIR%%/catalo/options/endo_elga.cata +%%ASTERDIR%%/catalo/options/endo_elno.cata %%ASTERDIR%%/catalo/options/endo_elno_elga.cata -%%ASTERDIR%%/catalo/options/endo_elno_sigm.cata %%ASTERDIR%%/catalo/options/enel_elga.cata -%%ASTERDIR%%/catalo/options/enel_elno_elga.cata +%%ASTERDIR%%/catalo/options/enel_elno.cata %%ASTERDIR%%/catalo/options/ener_diss.cata %%ASTERDIR%%/catalo/options/ener_elas.cata %%ASTERDIR%%/catalo/options/ener_totale.cata -%%ASTERDIR%%/catalo/options/epeq_elno_tuyo.cata +%%ASTERDIR%%/catalo/options/epeq_elga.cata +%%ASTERDIR%%/catalo/options/epeq_elno.cata %%ASTERDIR%%/catalo/options/epfd_elga.cata %%ASTERDIR%%/catalo/options/epfd_elno.cata %%ASTERDIR%%/catalo/options/epfp_elga.cata %%ASTERDIR%%/catalo/options/epfp_elno.cata -%%ASTERDIR%%/catalo/options/epme_elga_depl.cata -%%ASTERDIR%%/catalo/options/epme_elno_depl.cata -%%ASTERDIR%%/catalo/options/epmg_elga_depl.cata -%%ASTERDIR%%/catalo/options/epmg_elno_depl.cata -%%ASTERDIR%%/catalo/options/epot_elem_depl.cata +%%ASTERDIR%%/catalo/options/epme_elga.cata +%%ASTERDIR%%/catalo/options/epme_elno.cata +%%ASTERDIR%%/catalo/options/epmg_elga.cata +%%ASTERDIR%%/catalo/options/epmg_elno.cata +%%ASTERDIR%%/catalo/options/epmq_elga.cata +%%ASTERDIR%%/catalo/options/epmq_elno.cata +%%ASTERDIR%%/catalo/options/epot_elem.cata %%ASTERDIR%%/catalo/options/epot_elem_temp.cata -%%ASTERDIR%%/catalo/options/epsg_elga_depl.cata -%%ASTERDIR%%/catalo/options/epsg_elno_depl.cata -%%ASTERDIR%%/catalo/options/epsi_elga_depl.cata -%%ASTERDIR%%/catalo/options/epsi_elno_depl.cata -%%ASTERDIR%%/catalo/options/epsi_elno_tuyo.cata +%%ASTERDIR%%/catalo/options/epsg_elga.cata +%%ASTERDIR%%/catalo/options/epsg_elno.cata +%%ASTERDIR%%/catalo/options/epsi_elga.cata +%%ASTERDIR%%/catalo/options/epsi_elno.cata %%ASTERDIR%%/catalo/options/epsp_elga.cata %%ASTERDIR%%/catalo/options/epsp_elno.cata +%%ASTERDIR%%/catalo/options/eptq_elno.cata +%%ASTERDIR%%/catalo/options/eptu_elno.cata %%ASTERDIR%%/catalo/options/epvc_elga.cata %%ASTERDIR%%/catalo/options/epvc_elno.cata -%%ASTERDIR%%/catalo/options/equi_elga_epme.cata -%%ASTERDIR%%/catalo/options/equi_elga_epsi.cata -%%ASTERDIR%%/catalo/options/equi_elga_sigm.cata -%%ASTERDIR%%/catalo/options/equi_elno_epme.cata -%%ASTERDIR%%/catalo/options/equi_elno_epsi.cata -%%ASTERDIR%%/catalo/options/equi_elno_sigm.cata -%%ASTERDIR%%/catalo/options/erre_elem_sigm.cata -%%ASTERDIR%%/catalo/options/erre_elem_temp_f.cata -%%ASTERDIR%%/catalo/options/erre_elem_temp_r.cata -%%ASTERDIR%%/catalo/options/erre_elno_elem.cata +%%ASTERDIR%%/catalo/options/erme_elem.cata +%%ASTERDIR%%/catalo/options/erme_elno.cata %%ASTERDIR%%/catalo/options/erre_qizz.cata %%ASTERDIR%%/catalo/options/erre_temps.cata +%%ASTERDIR%%/catalo/options/erth_elem.cata +%%ASTERDIR%%/catalo/options/erth_elno.cata %%ASTERDIR%%/catalo/options/etot_elem.cata %%ASTERDIR%%/catalo/options/etot_elga.cata -%%ASTERDIR%%/catalo/options/etot_elno_elga.cata -%%ASTERDIR%%/catalo/options/extr_elga_vari.cata -%%ASTERDIR%%/catalo/options/extr_elno_vari.cata +%%ASTERDIR%%/catalo/options/etot_elno.cata %%ASTERDIR%%/catalo/options/flhn_elga.cata +%%ASTERDIR%%/catalo/options/flux_elga.cata %%ASTERDIR%%/catalo/options/flux_elga_sens.cata -%%ASTERDIR%%/catalo/options/flux_elga_temp.cata +%%ASTERDIR%%/catalo/options/flux_elno.cata %%ASTERDIR%%/catalo/options/flux_elno_sens.cata -%%ASTERDIR%%/catalo/options/flux_elno_temp.cata %%ASTERDIR%%/catalo/options/flux_flui_x.cata %%ASTERDIR%%/catalo/options/flux_flui_y.cata %%ASTERDIR%%/catalo/options/flux_flui_z.cata +%%ASTERDIR%%/catalo/options/fonl_noeu.cata %%ASTERDIR%%/catalo/options/forc_noda.cata -%%ASTERDIR%%/catalo/options/forc_noda_nonl.cata %%ASTERDIR%%/catalo/options/full_meca.cata %%ASTERDIR%%/catalo/options/full_meca_elas.cata %%ASTERDIR%%/catalo/options/g_bili.cata @@ -10652,13 +11624,12 @@ %%ASTERDIR%%/catalo/options/gthe_elno_elga.cata %%ASTERDIR%%/catalo/options/impe_abso.cata %%ASTERDIR%%/catalo/options/impe_meca.cata -%%ASTERDIR%%/catalo/options/indi_loca_elga.cata %%ASTERDIR%%/catalo/options/indic_ener.cata %%ASTERDIR%%/catalo/options/indic_seuil.cata +%%ASTERDIR%%/catalo/options/indl_elga.cata %%ASTERDIR%%/catalo/options/init_mail_vois.cata %%ASTERDIR%%/catalo/options/init_varc.cata -%%ASTERDIR%%/catalo/options/inte_elno_acti.cata -%%ASTERDIR%%/catalo/options/inte_elno_reac.cata +%%ASTERDIR%%/catalo/options/inte_elno.cata %%ASTERDIR%%/catalo/options/k_g_moda.cata %%ASTERDIR%%/catalo/options/m_gamma.cata %%ASTERDIR%%/catalo/options/mass_acou.cata @@ -10683,7 +11654,7 @@ %%ASTERDIR%%/catalo/options/meca_sens_mate.cata %%ASTERDIR%%/catalo/options/meca_sens_raph.cata %%ASTERDIR%%/catalo/options/meca_sens_raphep.cata -%%ASTERDIR%%/catalo/options/meta_elno_temp.cata +%%ASTERDIR%%/catalo/options/meta_elno.cata %%ASTERDIR%%/catalo/options/meta_init_elno.cata %%ASTERDIR%%/catalo/options/moy_noeu_s.cata %%ASTERDIR%%/catalo/options/mtan_rigi_mass.cata @@ -10700,18 +11671,14 @@ %%ASTERDIR%%/catalo/options/pas_courant.cata %%ASTERDIR%%/catalo/options/pilo_pred_defo.cata %%ASTERDIR%%/catalo/options/pilo_pred_elas.cata -%%ASTERDIR%%/catalo/options/pmpb_elga_sief.cata -%%ASTERDIR%%/catalo/options/pmpb_elno_sief.cata +%%ASTERDIR%%/catalo/options/pilo_pred_xlas.cata +%%ASTERDIR%%/catalo/options/pmpb_elga.cata +%%ASTERDIR%%/catalo/options/pmpb_elno.cata +%%ASTERDIR%%/catalo/options/prac_elno.cata %%ASTERDIR%%/catalo/options/prep_vrc.cata -%%ASTERDIR%%/catalo/options/pres_dbel_depl.cata -%%ASTERDIR%%/catalo/options/pres_elno_dbel.cata -%%ASTERDIR%%/catalo/options/pres_elno_imag.cata -%%ASTERDIR%%/catalo/options/pres_elno_reel.cata -%%ASTERDIR%%/catalo/options/proj_elem_sigm.cata -%%ASTERDIR%%/catalo/options/qire_elem_sigm.cata -%%ASTERDIR%%/catalo/options/qire_elno_elem.cata -%%ASTERDIR%%/catalo/options/radi_elga_sigm.cata -%%ASTERDIR%%/catalo/options/radi_elno_sigm.cata +%%ASTERDIR%%/catalo/options/prme_elno.cata +%%ASTERDIR%%/catalo/options/qire_elem.cata +%%ASTERDIR%%/catalo/options/qire_elno.cata %%ASTERDIR%%/catalo/options/raph_meca.cata %%ASTERDIR%%/catalo/options/refe_forc_noda.cata %%ASTERDIR%%/catalo/options/resi_rigi_mass.cata @@ -10753,24 +11720,26 @@ %%ASTERDIR%%/catalo/options/rigi_ther_paro_r.cata %%ASTERDIR%%/catalo/options/rigi_ther_trans.cata %%ASTERDIR%%/catalo/options/secm_zz1.cata -%%ASTERDIR%%/catalo/options/sief_elga_depl.cata +%%ASTERDIR%%/catalo/options/sica_elno.cata +%%ASTERDIR%%/catalo/options/sico_elno.cata +%%ASTERDIR%%/catalo/options/sief_elga.cata %%ASTERDIR%%/catalo/options/sief_elga_elno.cata %%ASTERDIR%%/catalo/options/sief_elga_sens.cata -%%ASTERDIR%%/catalo/options/sief_elno_elga.cata -%%ASTERDIR%%/catalo/options/sieq_elno_tuyo.cata -%%ASTERDIR%%/catalo/options/sigm_elno_cart.cata -%%ASTERDIR%%/catalo/options/sigm_elno_coqu.cata -%%ASTERDIR%%/catalo/options/sigm_elno_depl.cata +%%ASTERDIR%%/catalo/options/sief_elno.cata +%%ASTERDIR%%/catalo/options/sieq_elga.cata +%%ASTERDIR%%/catalo/options/sieq_elno.cata +%%ASTERDIR%%/catalo/options/sigm_elno.cata %%ASTERDIR%%/catalo/options/sigm_elno_sens.cata -%%ASTERDIR%%/catalo/options/sigm_elno_sief.cata -%%ASTERDIR%%/catalo/options/sigm_elno_tuyo.cata %%ASTERDIR%%/catalo/options/sing_elem.cata -%%ASTERDIR%%/catalo/options/sing_elno_elem.cata -%%ASTERDIR%%/catalo/options/sipo_elno_depl.cata -%%ASTERDIR%%/catalo/options/sipo_elno_depl_c.cata +%%ASTERDIR%%/catalo/options/sing_elno.cata +%%ASTERDIR%%/catalo/options/sipm_elno.cata +%%ASTERDIR%%/catalo/options/sipo_elno.cata %%ASTERDIR%%/catalo/options/sipo_elno_sens.cata -%%ASTERDIR%%/catalo/options/sipo_elno_sief.cata -%%ASTERDIR%%/catalo/options/sour_elga_elec.cata +%%ASTERDIR%%/catalo/options/siro_elem.cata +%%ASTERDIR%%/catalo/options/sitq_elno.cata +%%ASTERDIR%%/catalo/options/situ_elno.cata +%%ASTERDIR%%/catalo/options/sour_elga.cata +%%ASTERDIR%%/catalo/options/spmx_elga.cata %%ASTERDIR%%/catalo/options/syme_mdns_r.cata %%ASTERDIR%%/catalo/options/syme_mtns_r.cata %%ASTERDIR%%/catalo/options/ther_btla_r.cata @@ -10783,12 +11752,13 @@ %%ASTERDIR%%/catalo/options/tou_ini_elem.cata %%ASTERDIR%%/catalo/options/tou_ini_elga.cata %%ASTERDIR%%/catalo/options/tou_ini_elno.cata -%%ASTERDIR%%/catalo/options/vale_ncou_maxi.cata +%%ASTERDIR%%/catalo/options/vaco_elno.cata +%%ASTERDIR%%/catalo/options/vaex_elga.cata +%%ASTERDIR%%/catalo/options/vaex_elno.cata %%ASTERDIR%%/catalo/options/varc_elga.cata %%ASTERDIR%%/catalo/options/vari_elga_elno.cata -%%ASTERDIR%%/catalo/options/vari_elno_coqu.cata -%%ASTERDIR%%/catalo/options/vari_elno_elga.cata -%%ASTERDIR%%/catalo/options/vari_elno_tuyo.cata +%%ASTERDIR%%/catalo/options/vari_elno.cata +%%ASTERDIR%%/catalo/options/vatu_elno.cata %%ASTERDIR%%/catalo/options/veri_jacobien.cata %%ASTERDIR%%/catalo/options/weibull.cata %%ASTERDIR%%/catalo/options/xcvbca.cata @@ -10823,6 +11793,11 @@ %%ASTERDIR%%/catalo/typelem/d_depl_r_h2x.cata %%ASTERDIR%%/catalo/typelem/d_depl_r_h2y.cata %%ASTERDIR%%/catalo/typelem/d_depl_r_h2z.cata +%%ASTERDIR%%/catalo/typelem/d_depl_r_h3x.cata +%%ASTERDIR%%/catalo/typelem/d_depl_r_h3y.cata +%%ASTERDIR%%/catalo/typelem/d_depl_r_h3z.cata +%%ASTERDIR%%/catalo/typelem/d_depl_r_h4x.cata +%%ASTERDIR%%/catalo/typelem/d_depl_r_h4y.cata %%ASTERDIR%%/catalo/typelem/d_depl_r_lags_c.cata %%ASTERDIR%%/catalo/typelem/d_depl_r_lags_f1.cata %%ASTERDIR%%/catalo/typelem/d_depl_r_lags_f2.cata @@ -10905,6 +11880,8 @@ %%ASTERDIR%%/catalo/typelem/gener_ctecp2.cata %%ASTERDIR%%/catalo/typelem/gener_ei2d_2.cata %%ASTERDIR%%/catalo/typelem/gener_ei3d_3.cata +%%ASTERDIR%%/catalo/typelem/gener_ej2d_hm.cata +%%ASTERDIR%%/catalo/typelem/gener_ej3d_hm.cata %%ASTERDIR%%/catalo/typelem/gener_ejah21.cata %%ASTERDIR%%/catalo/typelem/gener_ejah22.cata %%ASTERDIR%%/catalo/typelem/gener_ejdh21.cata @@ -10941,6 +11918,7 @@ %%ASTERDIR%%/catalo/typelem/gener_me3dg_1.cata %%ASTERDIR%%/catalo/typelem/gener_me3dg_3.cata %%ASTERDIR%%/catalo/typelem/gener_me3di3.cata +%%ASTERDIR%%/catalo/typelem/gener_me3du3.cata %%ASTERDIR%%/catalo/typelem/gener_me3fa2.cata %%ASTERDIR%%/catalo/typelem/gener_me3fl2.cata %%ASTERDIR%%/catalo/typelem/gener_me3fl3.cata @@ -10961,6 +11939,8 @@ %%ASTERDIR%%/catalo/typelem/gener_me_xh_2.cata %%ASTERDIR%%/catalo/typelem/gener_me_xhc.cata %%ASTERDIR%%/catalo/typelem/gener_me_xhc_xh.cata +%%ASTERDIR%%/catalo/typelem/gener_me_xhh.cata +%%ASTERDIR%%/catalo/typelem/gener_me_xhh_2.cata %%ASTERDIR%%/catalo/typelem/gener_me_xht.cata %%ASTERDIR%%/catalo/typelem/gener_me_xht_2.cata %%ASTERDIR%%/catalo/typelem/gener_me_xhtc.cata @@ -10993,7 +11973,13 @@ %%ASTERDIR%%/catalo/typelem/gener_meah42.cata %%ASTERDIR%%/catalo/typelem/gener_meah51.cata %%ASTERDIR%%/catalo/typelem/gener_meah52.cata +%%ASTERDIR%%/catalo/typelem/gener_meax1_xh.cata +%%ASTERDIR%%/catalo/typelem/gener_meax1_xht.cata +%%ASTERDIR%%/catalo/typelem/gener_meax1_xt.cata %%ASTERDIR%%/catalo/typelem/gener_meax_2.cata +%%ASTERDIR%%/catalo/typelem/gener_meax_2_xh.cata +%%ASTERDIR%%/catalo/typelem/gener_meax_2_xht.cata +%%ASTERDIR%%/catalo/typelem/gener_meax_2_xt.cata %%ASTERDIR%%/catalo/typelem/gener_meaxf1.cata %%ASTERDIR%%/catalo/typelem/gener_meaxf2.cata %%ASTERDIR%%/catalo/typelem/gener_meaxs2.cata @@ -11007,6 +11993,7 @@ %%ASTERDIR%%/catalo/typelem/gener_mecpl2_xh.cata %%ASTERDIR%%/catalo/typelem/gener_mecpl2_xhc.cata %%ASTERDIR%%/catalo/typelem/gener_mecpl2_xhc_xh.cata +%%ASTERDIR%%/catalo/typelem/gener_mecpl2_xhh.cata %%ASTERDIR%%/catalo/typelem/gener_mecpl2_xht.cata %%ASTERDIR%%/catalo/typelem/gener_mecpl2_xhtc.cata %%ASTERDIR%%/catalo/typelem/gener_mecpl2_xt.cata @@ -11028,6 +12015,7 @@ %%ASTERDIR%%/catalo/typelem/gener_meda64.cata %%ASTERDIR%%/catalo/typelem/gener_medg31.cata %%ASTERDIR%%/catalo/typelem/gener_medg32.cata +%%ASTERDIR%%/catalo/typelem/gener_medgn_2.cata %%ASTERDIR%%/catalo/typelem/gener_medh11.cata %%ASTERDIR%%/catalo/typelem/gener_medh12.cata %%ASTERDIR%%/catalo/typelem/gener_medh21.cata @@ -11051,6 +12039,7 @@ %%ASTERDIR%%/catalo/typelem/gener_medpg2.cata %%ASTERDIR%%/catalo/typelem/gener_medpl1.cata %%ASTERDIR%%/catalo/typelem/gener_medpl1_xh.cata +%%ASTERDIR%%/catalo/typelem/gener_medpl1_xhh.cata %%ASTERDIR%%/catalo/typelem/gener_medpl1_xht.cata %%ASTERDIR%%/catalo/typelem/gener_medpl1_xt.cata %%ASTERDIR%%/catalo/typelem/gener_medpl2.cata @@ -11078,6 +12067,7 @@ %%ASTERDIR%%/catalo/typelem/gener_mepgd1.cata %%ASTERDIR%%/catalo/typelem/gener_mepgi2.cata %%ASTERDIR%%/catalo/typelem/gener_mepli2.cata +%%ASTERDIR%%/catalo/typelem/gener_meplu2.cata %%ASTERDIR%%/catalo/typelem/gener_mepmf1.cata %%ASTERDIR%%/catalo/typelem/gener_mepmf2.cata %%ASTERDIR%%/catalo/typelem/gener_meq4g1.cata @@ -11088,6 +12078,7 @@ %%ASTERDIR%%/catalo/typelem/gener_mf3d_3.cata %%ASTERDIR%%/catalo/typelem/gener_mv2d_2.cata %%ASTERDIR%%/catalo/typelem/gener_mv3d_3.cata +%%ASTERDIR%%/catalo/typelem/gener_mv3dn_3.cata %%ASTERDIR%%/catalo/typelem/gener_sda261.cata %%ASTERDIR%%/catalo/typelem/gener_sda262.cata %%ASTERDIR%%/catalo/typelem/gener_sda361.cata @@ -11134,7 +12125,9 @@ %%ASTERDIR%%/catapy/commande/affe_char_ther_f.capy %%ASTERDIR%%/catapy/commande/affe_materiau.capy %%ASTERDIR%%/catapy/commande/affe_modele.capy -%%ASTERDIR%%/catapy/commande/aide.capy +%%ASTERDIR%%/catapy/commande/appl_cine_matr.capy +%%ASTERDIR%%/catapy/commande/appl_cine_scmb.capy +%%ASTERDIR%%/catapy/commande/asse_elem_ssd.capy %%ASTERDIR%%/catapy/commande/asse_maillage.capy %%ASTERDIR%%/catapy/commande/asse_matr_gene.capy %%ASTERDIR%%/catapy/commande/asse_matrice.capy @@ -11154,7 +12147,9 @@ %%ASTERDIR%%/catapy/commande/calc_fonc_interp.capy %%ASTERDIR%%/catapy/commande/calc_fonction.capy %%ASTERDIR%%/catapy/commande/calc_forc_ajou.capy +%%ASTERDIR%%/catapy/commande/calc_forc_nonl.capy %%ASTERDIR%%/catapy/commande/calc_g.capy +%%ASTERDIR%%/catapy/commande/calc_ifs_dnl.capy %%ASTERDIR%%/catapy/commande/calc_inte_spec.capy %%ASTERDIR%%/catapy/commande/calc_matr_ajou.capy %%ASTERDIR%%/catapy/commande/calc_matr_elem.capy @@ -11165,6 +12160,7 @@ %%ASTERDIR%%/catapy/commande/calc_no.capy %%ASTERDIR%%/catapy/commande/calc_point_mat.capy %%ASTERDIR%%/catapy/commande/calc_precont.capy +%%ASTERDIR%%/catapy/commande/calc_sensi.capy %%ASTERDIR%%/catapy/commande/calc_spec.capy %%ASTERDIR%%/catapy/commande/calc_table.capy %%ASTERDIR%%/catapy/commande/calc_theta.capy @@ -11174,6 +12170,7 @@ %%ASTERDIR%%/catapy/commande/comb_matr_asse.capy %%ASTERDIR%%/catapy/commande/comb_sism_modal.capy %%ASTERDIR%%/catapy/commande/crea_champ.capy +%%ASTERDIR%%/catapy/commande/crea_elem_ssd.capy %%ASTERDIR%%/catapy/commande/crea_maillage.capy %%ASTERDIR%%/catapy/commande/crea_resu.capy %%ASTERDIR%%/catapy/commande/crea_table.capy @@ -11195,6 +12192,7 @@ %%ASTERDIR%%/catapy/commande/defi_fond_fiss.capy %%ASTERDIR%%/catapy/commande/defi_geom_fibre.capy %%ASTERDIR%%/catapy/commande/defi_glrc.capy +%%ASTERDIR%%/catapy/commande/defi_grille.capy %%ASTERDIR%%/catapy/commande/defi_group.capy %%ASTERDIR%%/catapy/commande/defi_inte_spec.capy %%ASTERDIR%%/catapy/commande/defi_interf_dyna.capy @@ -11224,6 +12222,7 @@ %%ASTERDIR%%/catapy/commande/dyna_spec_modal.capy %%ASTERDIR%%/catapy/commande/dyna_tran_modal.capy %%ASTERDIR%%/catapy/commande/engendre_test.capy +%%ASTERDIR%%/catapy/commande/env_cine_yacs.capy %%ASTERDIR%%/catapy/commande/exec_logiciel.capy %%ASTERDIR%%/catapy/commande/extr_mode.capy %%ASTERDIR%%/catapy/commande/extr_resu.capy @@ -11241,6 +12240,7 @@ %%ASTERDIR%%/catapy/commande/impr_gene.capy %%ASTERDIR%%/catapy/commande/impr_jeveux.capy %%ASTERDIR%%/catapy/commande/impr_macr_elem.capy +%%ASTERDIR%%/catapy/commande/impr_mail_yacs.capy %%ASTERDIR%%/catapy/commande/impr_miss_3d.capy %%ASTERDIR%%/catapy/commande/impr_oar.capy %%ASTERDIR%%/catapy/commande/impr_resu.capy @@ -11276,8 +12276,6 @@ %%ASTERDIR%%/catapy/commande/macr_ecrevisse.capy %%ASTERDIR%%/catapy/commande/macr_elem_dyna.capy %%ASTERDIR%%/catapy/commande/macr_elem_stat.capy -%%ASTERDIR%%/catapy/commande/macr_fiab_impr.capy -%%ASTERDIR%%/catapy/commande/macr_fiabilite.capy %%ASTERDIR%%/catapy/commande/macr_info_mail.capy %%ASTERDIR%%/catapy/commande/macr_lign_coupe.capy %%ASTERDIR%%/catapy/commande/macr_recal.capy @@ -11296,6 +12294,7 @@ %%ASTERDIR%%/catapy/commande/mode_iter_simult.capy %%ASTERDIR%%/catapy/commande/mode_statique.capy %%ASTERDIR%%/catapy/commande/modi_base_modale.capy +%%ASTERDIR%%/catapy/commande/modi_char_yacs.capy %%ASTERDIR%%/catapy/commande/modi_maillage.capy %%ASTERDIR%%/catapy/commande/modi_modele.capy %%ASTERDIR%%/catapy/commande/modi_modele_xfem.capy @@ -11339,6 +12338,7 @@ %%ASTERDIR%%/catapy/commande/reca_weibull.capy %%ASTERDIR%%/catapy/commande/recu_fonction.capy %%ASTERDIR%%/catapy/commande/recu_gene.capy +%%ASTERDIR%%/catapy/commande/recu_para_yacs.capy %%ASTERDIR%%/catapy/commande/recu_table.capy %%ASTERDIR%%/catapy/commande/resoudre.capy %%ASTERDIR%%/catapy/commande/rest_cond_tran.capy @@ -11349,6 +12349,7 @@ %%ASTERDIR%%/catapy/commande/simu_point_mat.capy %%ASTERDIR%%/catapy/commande/stanley.capy %%ASTERDIR%%/catapy/commande/stat_non_line.capy +%%ASTERDIR%%/catapy/commande/test_compor.capy %%ASTERDIR%%/catapy/commande/test_fichier.capy %%ASTERDIR%%/catapy/commande/test_fonction.capy %%ASTERDIR%%/catapy/commande/test_resu.capy @@ -11357,6 +12358,9 @@ %%ASTERDIR%%/catapy/commande/ther_lineaire.capy %%ASTERDIR%%/catapy/commande/ther_non_line.capy %%ASTERDIR%%/catapy/commande/ther_non_line_mo.capy +%%ASTERDIR%%/catapy/commun/c_affichage.capy +%%ASTERDIR%%/catapy/commun/c_archivage.capy +%%ASTERDIR%%/catapy/commun/c_comp_elas.capy %%ASTERDIR%%/catapy/commun/c_comp_incr.capy %%ASTERDIR%%/catapy/commun/c_convergence.capy %%ASTERDIR%%/catapy/commun/c_impl_ex.capy @@ -11364,10 +12368,13 @@ %%ASTERDIR%%/catapy/commun/c_newton.capy %%ASTERDIR%%/catapy/commun/c_nom_cham_into.capy %%ASTERDIR%%/catapy/commun/c_nom_grandeur.capy +%%ASTERDIR%%/catapy/commun/c_observation.capy %%ASTERDIR%%/catapy/commun/c_para_fonction.capy +%%ASTERDIR%%/catapy/commun/c_pilotage.capy %%ASTERDIR%%/catapy/commun/c_rech_lineaire.capy %%ASTERDIR%%/catapy/commun/c_relation.capy %%ASTERDIR%%/catapy/commun/c_solveur.capy +%%ASTERDIR%%/catapy/commun/c_suivi_ddl.capy %%ASTERDIR%%/catapy/commun/c_type_cham_into.capy %%ASTERDIR%%/catapy/entete/accas.capy %%ASTERDIR%%/commande/cata.py @@ -11417,6 +12424,7 @@ aster/config.txt @dirrm %%ASTERDIR%%/catalo @dirrm %%ASTERDIR%%/bibpyt/Validation @dirrm %%ASTERDIR%%/bibpyt/Utilitai +@dirrm %%ASTERDIR%%/bibpyt/Templates @dirrm %%ASTERDIR%%/bibpyt/Stanley @dirrm %%ASTERDIR%%/bibpyt/SD @dirrm %%ASTERDIR%%/bibpyt/Outils @@ -11431,6 +12439,7 @@ aster/config.txt @dirrm %%ASTERDIR%%/bibpyt/Comportement @dirrm %%ASTERDIR%%/bibpyt/Cata_Utils @dirrm %%ASTERDIR%%/bibpyt/Cata +@dirrm %%ASTERDIR%%/bibpyt/Calc_essai @dirrm %%ASTERDIR%%/bibpyt/Build @dirrm %%ASTERDIR%%/bibpyt/Accas @dirrm %%ASTERDIR%%/bibpyt diff --git a/french/eficas/Makefile b/french/eficas/Makefile index 62ca809177a8..c96f9dce2234 100644 --- a/french/eficas/Makefile +++ b/french/eficas/Makefile @@ -6,30 +6,28 @@ # PORTNAME= eficas -DISTVERSION= 2.1.1-1 -PORTREVISION= 2 +DISTVERSION= 6.4.0-1 CATEGORIES= french cad -MAINTAINER= ports@FreeBSD.org +MAINTAINER= thierry@FreeBSD.org COMMENT= ASter Command FIle Editor +LICENSE= GPLv2 + RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Pmw:${PORTSDIR}/x11-toolkits/py-Pmw \ ${PYTHON_SITELIBDIR}/mx:${PORTSDIR}/lang/py-mx-base \ - ${PYNUMPY} \ - ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter + ${PYNUMPY} USE_PYTHON= yes REINPLACE_ARGS= -i "" NO_BUILD= yes -LICENSE= GPLv2 - WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} LEFICASDIR?= apps/${PORTNAME} EFICASDIR= ${PREFIX}/${LEFICASDIR} PLIST_SUB= EFICASDIR=${LEFICASDIR} -SUB_FILES= eficas +SUB_FILES= qtEficas SUB_LIST= EFICASDIR=${EFICASDIR} PYTHON_CMD=${PYTHON_CMD} .if defined(LANG) && ${LANG:Mfr*} != "" @@ -38,49 +36,38 @@ EF_LANG= fr EF_LANG= ang .endif -.if !defined(WITHOUT_QT) RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/PyQt4/QtGui.so:${PORTSDIR}/x11-toolkits/py-qt4-gui \ ${PYTHON_SITELIBDIR}/PyQt4/QtAssistant.so:${PORTSDIR}/devel/py-qt4-assistant -SUB_FILES+= qtEficas -PLIST_SUB+= QT4="" -.else -PLIST_SUB+= QT4="@comment " -.endif -FIXSHTK= bureau.py cataediteur.py panels.py FIXSHQT4= typeNode.py -FIXBASH= cataSTA9/Macro/macr_ecre_calc_ops.py cataSTA10/Macro/macr_ecre_calc_ops.py +FIXBASH= cataSTA9/Macro/macr_ecre_calc_ops.py \ + cataSTA10/Macro/macr_ecre_calc_ops.py +FIXPMW= Aster/editeur_salome.ini Aster/editeur.ini pre-configure: ${RM} ${WRKSRC}/convert/Parserv5/Translate.py.orig - ${RM} -r ${WRKSRC}/Pmw # Use our ported Pmw -.for tk in TK QT4 -. for FILE in ${FIXSH${tk}} - ${REINPLACE_CMD} -e "s|/usr/bin/sh|/bin/sh|" ${WRKSRC}/Interface${tk}/${FILE} -. endfor +.for FILE in ${FIXPMX} + ${REINPLACE_CMD} -e 's|../Pmw|${PYTHON_SITELIBDIR}/Pmw|' ${WRKSRC}/${FILE} +.endfor +.for FILE in ${FIXSHQT4} + ${REINPLACE_CMD} -e "s|/usr/bin/sh|/bin/sh|" ${WRKSRC}/InterfaceQT4/${FILE} .endfor ${REINPLACE_CMD} -e "s#lang='fr'#lang='${EF_LANG}'#" \ ${WRKSRC}/Aster/prefs.py ${REINPLACE_CMD} -e "s#os.path.join(rep_cata,'..','Doc')#\"${DOCSDIR}\"#" \ - -e "s#os.path.join(initialdir,'../Pmw')#'${PYTHON_SITELIBDIR}/Pmw'#" \ ${WRKSRC}/Aster/editeur.ini .for cata in ${FIXBASH} ${REINPLACE_CMD} -e "s|'/bin/bash'|'${LOCALBASE}/bin/bash'|" \ ${WRKSRC}/Aster/Cata/${cata} .endfor - ${REINPLACE_CMD} -e 's|QListBoxItem\*|QListWidgetItem*|' ${WRKSRC}/InterfaceQT4/*.py do-install: ${MKDIR} ${EFICASDIR} ${CP} -R ${WRKSRC}/* ${EFICASDIR} - ${FIND} ${EFICASDIR} -name CMakeFiles -delete - ${FIND} ${EFICASDIR} -name CVS | ${XARGS} ${RM} -rf @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${EFICASDIR} @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${EFICASDIR} - ${INSTALL_SCRIPT} ${WRKDIR}/eficas ${PREFIX}/bin -.if !defined(WITHOUT_QT) ${INSTALL_SCRIPT} ${WRKDIR}/qtEficas ${PREFIX}/bin -.endif + ${LN} -sf ${PREFIX}/bin/qtEficas ${PREFIX}/bin/eficas post-install: @${ECHO_MSG} diff --git a/french/eficas/files/eficas.in b/french/eficas/files/eficas.in deleted file mode 100644 index 5ef3ee03e943..000000000000 --- a/french/eficas/files/eficas.in +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# $1 = comm -# $2 = com0 -# $3 = com1 -# $4 = com2 - -cd %%EFICASDIR%%/Aster -exec %%PYTHON_CMD%% eficas_aster.pyo $1 $2 $3 $4 diff --git a/french/eficas/pkg-message b/french/eficas/pkg-message index 9cf024ae9c72..9c9f59f08f49 100644 --- a/french/eficas/pkg-message +++ b/french/eficas/pkg-message @@ -1,4 +1,4 @@ -Warning: if py26-Pmw and py26-tkinter are built against different +Warning: if py27-Pmw and py27-tkinter are built against different versions of Tk, eficas won't run! When upgrading, don't forget to remove the line diff --git a/french/eficas/pkg-plist b/french/eficas/pkg-plist index d52343cb3eb5..15d7e57e4c31 100644 --- a/french/eficas/pkg-plist +++ b/french/eficas/pkg-plist @@ -1,20 +1,5 @@ bin/eficas -%%QT4%%bin/qtEficas -%%EFICASDIR%%/AIDE/__init__.py -%%EFICASDIR%%/AIDE/__init__.pyc -%%EFICASDIR%%/AIDE/__init__.pyo -%%EFICASDIR%%/AIDE/aide_gui.py -%%EFICASDIR%%/AIDE/aide_gui.pyc -%%EFICASDIR%%/AIDE/aide_gui.pyo -%%EFICASDIR%%/AIDE/aide_objets.py -%%EFICASDIR%%/AIDE/aide_objets.pyc -%%EFICASDIR%%/AIDE/aide_objets.pyo -%%EFICASDIR%%/AIDE/index_aide.py -%%EFICASDIR%%/AIDE/index_aide.pyc -%%EFICASDIR%%/AIDE/index_aide.pyo -%%EFICASDIR%%/AIDE/viewer.py -%%EFICASDIR%%/AIDE/viewer.pyc -%%EFICASDIR%%/AIDE/viewer.pyo +bin/qtEficas %%EFICASDIR%%/Accas/A_ASSD.py %%EFICASDIR%%/Accas/A_ASSD.pyc %%EFICASDIR%%/Accas/A_ASSD.pyo @@ -81,6 +66,9 @@ bin/eficas %%EFICASDIR%%/Accas/A_MCSIMP.py %%EFICASDIR%%/Accas/A_MCSIMP.pyc %%EFICASDIR%%/Accas/A_MCSIMP.pyo +%%EFICASDIR%%/Accas/A_MEME_NOMBRE.py +%%EFICASDIR%%/Accas/A_MEME_NOMBRE.pyc +%%EFICASDIR%%/Accas/A_MEME_NOMBRE.pyo %%EFICASDIR%%/Accas/A_NUPLET.py %%EFICASDIR%%/Accas/A_NUPLET.pyc %%EFICASDIR%%/Accas/A_NUPLET.pyo @@ -139,6 +127,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/__init__.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/__init__.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/__init__.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/asse_elem_ssd_ops.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/asse_elem_ssd_ops.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/asse_elem_ssd_ops.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_ecrevisse_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_ecrevisse_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_ecrevisse_ops.pyo @@ -151,6 +142,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_fonction_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_fonction_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_fonction_ops.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_ifs_dnl_ops.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_ifs_dnl_ops.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_ifs_dnl_ops.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_miss_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_miss_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_miss_ops.pyo @@ -169,6 +163,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_table_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_table_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/calc_table_ops.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/crea_elem_ssd_ops.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/crea_elem_ssd_ops.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/crea_elem_ssd_ops.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/creation_donnees_homard.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/creation_donnees_homard.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/creation_donnees_homard.pyo @@ -322,6 +319,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/post_k_trans_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/post_k_trans_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/post_k_trans_ops.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/post_miss_ops.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/post_miss_ops.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/post_miss_ops.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/propa_fiss_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/propa_fiss_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/propa_fiss_ops.pyo @@ -364,6 +364,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/stanley_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/stanley_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/stanley_ops.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/test_compor_ops.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/test_compor_ops.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/test_compor_ops.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/test_fichier_ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/test_fichier_ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Macro/test_fichier_ops.pyo @@ -424,6 +427,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_contact.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_contact.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_contact.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_corresp_2_mailla.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_corresp_2_mailla.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_corresp_2_mailla.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_courbe.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_courbe.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_courbe.pyo @@ -439,6 +445,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_gfibre.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_gfibre.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_gfibre.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_grille.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_grille.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_grille.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_interf_dyna_clas.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_interf_dyna_clas.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/co_interf_dyna_clas.pyo @@ -610,6 +619,9 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_gfibre.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_gfibre.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_gfibre.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_grille.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_grille.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_grille.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_interf_dyna_clas.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_interf_dyna_clas.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/sd_interf_dyna_clas.pyo @@ -796,245 +808,204 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/utilsd.py %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/utilsd.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/SD/utilsd.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Graph.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Graph.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Graph.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/System.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/System.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/System.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Table.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Table.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Table.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/UniteAster.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/UniteAster.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/UniteAster.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Utmess.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Utmess.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/Utmess.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/__init__.py %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/__init__.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/__init__.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/as_timer.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/as_timer.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/as_timer.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/courbes.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/courbes.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/courbes.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/funct_root.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/funct_root.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/funct_root.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/liss_enveloppe.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/liss_enveloppe.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/liss_enveloppe.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/macro_rota_globale.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/macro_rota_globale.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/macro_rota_globale.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/optimize.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/optimize.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/optimize.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/partition.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/partition.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/partition.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/stats.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/stats.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/stats.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/sup_gmsh.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/sup_gmsh.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/sup_gmsh.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/transpose.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/transpose.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/transpose.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/utils.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/utils.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/utils.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/veri_matr_tang.py +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/veri_matr_tang.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai/veri_matr_tang.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/__init__.py %%EFICASDIR%%/Aster/Cata/cataSTA10/__init__.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/__init__.pyo %%EFICASDIR%%/Aster/Cata/cataSTA10/cata.py %%EFICASDIR%%/Aster/Cata/cataSTA10/cata.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/cata.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/16MND5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/18MND5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/18MND5_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/18MND5_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/20CD4M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/20M5M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/20MN5M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/20NCD1407_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/30M5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A37C1_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A37_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A37_REF_B.NOMI %%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A42_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A42_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A42_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A48_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A48_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A48_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A52_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/A52_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/ERNICRFE3_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/NC15FE_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/NC30FE_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/P355GH_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/P355GH_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z10C13_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z12CN13_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z2CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z2CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z2CN2010_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z2CN2412_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z2CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z3CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z3CN2009M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z5CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z5CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z5CND1304_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z5CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z5CND1712_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6CND1712_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6CNNB1811_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6CNNB1811_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z6NCTDV2515_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z8CNDNB1812_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z8CNDNB1812_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z8CNDT1812_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z8CNDT1812_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z8CNT1811_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA10/materiau/Z8CNT1811_REF_B.NOMI %%EFICASDIR%%/Aster/Cata/cataSTA10/ops.py %%EFICASDIR%%/Aster/Cata/cataSTA10/ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA10/ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/__init__.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/__init__.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/__init__.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/ajout_quad_gmsh.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/ajout_quad_gmsh.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/ajout_quad_gmsh.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_fonction_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_fonction_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_fonction_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_precont_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_precont_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_precont_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_table_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_table_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/calc_table_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/creation_donnees_homard.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/creation_donnees_homard.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/creation_donnees_homard.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_cable_bp_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_cable_bp_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_cable_bp_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_inte_spec_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_inte_spec_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_inte_spec_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_part_feti_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_part_feti_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/defi_part_feti_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/exec_logiciel_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/exec_logiciel_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/exec_logiciel_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/fiabilite_fichier.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/fiabilite_fichier.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/fiabilite_fichier.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/fiabilite_mefisto.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/fiabilite_mefisto.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/fiabilite_mefisto.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/gene_vari_alea_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/gene_vari_alea_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/gene_vari_alea_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_fonction_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_fonction_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_fonction_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_oar_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_oar_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_oar_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_table_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_table_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/impr_table_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/info_fonction_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/info_fonction_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/info_fonction_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_fonction_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_fonction_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_fonction_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_inte_spec_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_inte_spec_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_inte_spec_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_table_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_table_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/lire_table_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_adap_mail_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_adap_mail_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_adap_mail_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ascouf_calc_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ascouf_calc_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ascouf_calc_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ascouf_mail_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ascouf_mail_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ascouf_mail_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_aspic_calc_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_aspic_calc_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_aspic_calc_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_aspic_mail_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_aspic_mail_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_aspic_mail_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_calc_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_calc_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_calc_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_mail_dat.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_mail_dat.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_mail_dat.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_mail_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_mail_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cabri_mail_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cara_poutre_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cara_poutre_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_cara_poutre_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ecla_pg_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ecla_pg_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_ecla_pg_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_fiab_impr_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_fiab_impr_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_fiab_impr_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_fiabilite_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_fiabilite_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_fiabilite_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_lign_coupe_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_lign_coupe_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_lign_coupe_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_recal_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_recal_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_recal_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_spectre_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_spectre_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macr_spectre_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_elas_mult_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_elas_mult_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_elas_mult_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_matr_ajou_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_matr_ajou_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_matr_ajou_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_matr_asse_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_matr_asse_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_matr_asse_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_miss_3d_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_miss_3d_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_miss_3d_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_mode_meca_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_mode_meca_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_mode_meca_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_proj_base_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_proj_base_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/macro_proj_base_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_dyna_alea_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_dyna_alea_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_dyna_alea_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_gp_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_gp_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_gp_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_k1_k2_k3_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_k1_k2_k3_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_k1_k2_k3_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_k_trans_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_k_trans_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/post_k_trans_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_algo.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_algo.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_algo.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_calcul_aster.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_calcul_aster.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_calcul_aster.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_controles.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_controles.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_controles.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_graphique.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_graphique.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_graphique.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_interp.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_interp.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_interp.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_message.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_message.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_message.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_utilitaires.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_utilitaires.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/reca_utilitaires.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/recal.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/recal.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/recal.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/simu_point_mat_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/simu_point_mat_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/simu_point_mat_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/stanley_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/stanley_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/stanley_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/test_fichier_ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/test_fichier_ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Macro/test_fichier_ops.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Graph.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Graph.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Graph.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Sensibilite.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Sensibilite.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Sensibilite.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/System.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/System.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/System.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Table.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Table.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Table.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/UniteAster.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/UniteAster.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/UniteAster.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Utmess.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Utmess.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/Utmess.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/__init__.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/__init__.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/__init__.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/courbes.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/courbes.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/courbes.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/funct_root.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/funct_root.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/funct_root.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/liss_enveloppe.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/liss_enveloppe.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/liss_enveloppe.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/optimize.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/optimize.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/optimize.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/partition.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/partition.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/partition.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/sup_gmsh.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/sup_gmsh.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/sup_gmsh.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/t_fonction.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/t_fonction.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/t_fonction.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/transpose.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/transpose.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai/transpose.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/__init__.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/__init__.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/__init__.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/cata.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/cata.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/cata.pyo -%%EFICASDIR%%/Aster/Cata/cataSTA8/materiau/A42_REF_A.NOMI -%%EFICASDIR%%/Aster/Cata/cataSTA8/ops.py -%%EFICASDIR%%/Aster/Cata/cataSTA8/ops.pyc -%%EFICASDIR%%/Aster/Cata/cataSTA8/ops.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils/__init__.py +%%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils/__init__.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils/__init__.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils/t_fonction.py +%%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils/t_fonction.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils/t_fonction.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA11/__init__.py +%%EFICASDIR%%/Aster/Cata/cataSTA11/__init__.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA11/__init__.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA11/cata.py +%%EFICASDIR%%/Aster/Cata/cataSTA11/cata.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA11/cata.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/16MND5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/18MND5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/18MND5_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/18MND5_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/20CD4M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/20M5M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/20MN5M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/20NCD1407_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/30M5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A37C1_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A37_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A37_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A42_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A42_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A42_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A48_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A48_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A48_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A52_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/A52_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_CR_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_DIL_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_EI_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_ES_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_GC_EB_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_GC_EH_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_GC_ME_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AF3G_TG_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_CR_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_DIL_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_EI_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_ES_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_GC_EB_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_GC_EH_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_GC_ME_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/AFA_TG_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/ERNICRFE3_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/NC15FE_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/NC30FE_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/P355GH_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/P355GH_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z10C13_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z12CN13_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z2CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z2CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z2CN2010_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z2CN2412_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z2CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z3CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z3CN2009M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z5CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z5CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z5CND1304_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z5CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z5CND1712_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6CND1712_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6CNNB1811_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6CNNB1811_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z6NCTDV2515_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z8CNDNB1812_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z8CNDNB1812_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z8CNDT1812_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z8CNDT1812_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z8CNT1811_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/materiau/Z8CNT1811_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA11/ops.py +%%EFICASDIR%%/Aster/Cata/cataSTA11/ops.pyc +%%EFICASDIR%%/Aster/Cata/cataSTA11/ops.pyo %%EFICASDIR%%/Aster/Cata/cataSTA9/Macro/__init__.py %%EFICASDIR%%/Aster/Cata/cataSTA9/Macro/__init__.pyc %%EFICASDIR%%/Aster/Cata/cataSTA9/Macro/__init__.pyo @@ -1698,7 +1669,58 @@ bin/eficas %%EFICASDIR%%/Aster/Cata/cataSTA9/cata.py %%EFICASDIR%%/Aster/Cata/cataSTA9/cata.pyc %%EFICASDIR%%/Aster/Cata/cataSTA9/cata.pyo +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/16MND5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/18MND5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/18MND5_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/18MND5_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/20CD4M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/20M5M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/20MN5M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/20NCD1407_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/30M5_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A37C1_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A37_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A37_REF_B.NOMI %%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A42_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A42_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A42_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A48_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A48_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A48_REF_C.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A52_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/A52_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/ERNICRFE3_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/NC15FE_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/NC30FE_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/P355GH_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/P355GH_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z10C13_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z12CN13_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z2CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z2CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z2CN2010_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z2CN2412_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z2CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z3CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z3CN2009M_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z5CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z5CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z5CND1304_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z5CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z5CND1712_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6CN1810_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6CN1810_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6CND1712_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6CND1712_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6CNNB1811_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6CNNB1811_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z6NCTDV2515_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z8CNDNB1812_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z8CNDNB1812_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z8CNDT1812_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z8CNDT1812_REF_B.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z8CNT1811_REF_A.NOMI +%%EFICASDIR%%/Aster/Cata/cataSTA9/materiau/Z8CNT1811_REF_B.NOMI %%EFICASDIR%%/Aster/Cata/cataSTA9/ops.py %%EFICASDIR%%/Aster/Cata/cataSTA9/ops.pyc %%EFICASDIR%%/Aster/Cata/cataSTA9/ops.pyo @@ -1847,6 +1869,7 @@ bin/eficas %%EFICASDIR%%/Editeur/icons/code_descartes.gif %%EFICASDIR%%/Editeur/icons/code_saturne.gif %%EFICASDIR%%/Editeur/icons/compute.png +%%EFICASDIR%%/Editeur/icons/delete.png %%EFICASDIR%%/Editeur/icons/empty.png %%EFICASDIR%%/Editeur/icons/image240.png %%EFICASDIR%%/Editeur/icons/logo_edf.gif @@ -2130,6 +2153,9 @@ bin/eficas %%EFICASDIR%%/InterfaceQT4/monRacinePanel.py %%EFICASDIR%%/InterfaceQT4/monRacinePanel.pyc %%EFICASDIR%%/InterfaceQT4/monRacinePanel.pyo +%%EFICASDIR%%/InterfaceQT4/monSelectImage.py +%%EFICASDIR%%/InterfaceQT4/monSelectImage.pyc +%%EFICASDIR%%/InterfaceQT4/monSelectImage.pyo %%EFICASDIR%%/InterfaceQT4/monSelectVal.py %%EFICASDIR%%/InterfaceQT4/monSelectVal.pyc %%EFICASDIR%%/InterfaceQT4/monSelectVal.pyo @@ -2181,225 +2207,6 @@ bin/eficas %%EFICASDIR%%/InterfaceQT4/viewManager.py %%EFICASDIR%%/InterfaceQT4/viewManager.pyc %%EFICASDIR%%/InterfaceQT4/viewManager.pyo -%%EFICASDIR%%/InterfaceTK/Interp.py -%%EFICASDIR%%/InterfaceTK/Interp.pyc -%%EFICASDIR%%/InterfaceTK/Interp.pyo -%%EFICASDIR%%/InterfaceTK/TroisDPal.py -%%EFICASDIR%%/InterfaceTK/TroisDPal.pyc -%%EFICASDIR%%/InterfaceTK/TroisDPal.pyo -%%EFICASDIR%%/InterfaceTK/__init__.py -%%EFICASDIR%%/InterfaceTK/__init__.pyc -%%EFICASDIR%%/InterfaceTK/__init__.pyo -%%EFICASDIR%%/InterfaceTK/appli.py -%%EFICASDIR%%/InterfaceTK/appli.pyc -%%EFICASDIR%%/InterfaceTK/appli.pyo -%%EFICASDIR%%/InterfaceTK/basestyle.py -%%EFICASDIR%%/InterfaceTK/basestyle.pyc -%%EFICASDIR%%/InterfaceTK/basestyle.pyo -%%EFICASDIR%%/InterfaceTK/browser.py -%%EFICASDIR%%/InterfaceTK/browser.pyc -%%EFICASDIR%%/InterfaceTK/browser.pyo -%%EFICASDIR%%/InterfaceTK/bureau.py -%%EFICASDIR%%/InterfaceTK/bureau.pyc -%%EFICASDIR%%/InterfaceTK/bureau.pyo -%%EFICASDIR%%/InterfaceTK/catabrowser.py -%%EFICASDIR%%/InterfaceTK/catabrowser.pyc -%%EFICASDIR%%/InterfaceTK/catabrowser.pyo -%%EFICASDIR%%/InterfaceTK/cataediteur.py -%%EFICASDIR%%/InterfaceTK/cataediteur.pyc -%%EFICASDIR%%/InterfaceTK/cataediteur.pyo -%%EFICASDIR%%/InterfaceTK/centerwindow.py -%%EFICASDIR%%/InterfaceTK/centerwindow.pyc -%%EFICASDIR%%/InterfaceTK/centerwindow.pyo -%%EFICASDIR%%/InterfaceTK/change_comm.py -%%EFICASDIR%%/InterfaceTK/change_comm.pyc -%%EFICASDIR%%/InterfaceTK/change_comm.pyo -%%EFICASDIR%%/InterfaceTK/compobase.py -%%EFICASDIR%%/InterfaceTK/compobase.pyc -%%EFICASDIR%%/InterfaceTK/compobase.pyo -%%EFICASDIR%%/InterfaceTK/compobloc.py -%%EFICASDIR%%/InterfaceTK/compobloc.pyc -%%EFICASDIR%%/InterfaceTK/compobloc.pyo -%%EFICASDIR%%/InterfaceTK/compocomm.py -%%EFICASDIR%%/InterfaceTK/compocomm.pyc -%%EFICASDIR%%/InterfaceTK/compocomm.pyo -%%EFICASDIR%%/InterfaceTK/compocommandecomm.py -%%EFICASDIR%%/InterfaceTK/compocommandecomm.pyc -%%EFICASDIR%%/InterfaceTK/compocommandecomm.pyo -%%EFICASDIR%%/InterfaceTK/compoerror.py -%%EFICASDIR%%/InterfaceTK/compoerror.pyc -%%EFICASDIR%%/InterfaceTK/compoerror.pyo -%%EFICASDIR%%/InterfaceTK/compofact.py -%%EFICASDIR%%/InterfaceTK/compofact.pyc -%%EFICASDIR%%/InterfaceTK/compofact.pyo -%%EFICASDIR%%/InterfaceTK/compoformule.py -%%EFICASDIR%%/InterfaceTK/compoformule.pyc -%%EFICASDIR%%/InterfaceTK/compoformule.pyo -%%EFICASDIR%%/InterfaceTK/compojdc.py -%%EFICASDIR%%/InterfaceTK/compojdc.pyc -%%EFICASDIR%%/InterfaceTK/compojdc.pyo -%%EFICASDIR%%/InterfaceTK/compomacro.py -%%EFICASDIR%%/InterfaceTK/compomacro.pyc -%%EFICASDIR%%/InterfaceTK/compomacro.pyo -%%EFICASDIR%%/InterfaceTK/compomclist.py -%%EFICASDIR%%/InterfaceTK/compomclist.pyc -%%EFICASDIR%%/InterfaceTK/compomclist.pyo -%%EFICASDIR%%/InterfaceTK/componiveau.py -%%EFICASDIR%%/InterfaceTK/componiveau.pyc -%%EFICASDIR%%/InterfaceTK/componiveau.pyo -%%EFICASDIR%%/InterfaceTK/componuplet.py -%%EFICASDIR%%/InterfaceTK/componuplet.pyc -%%EFICASDIR%%/InterfaceTK/componuplet.pyo -%%EFICASDIR%%/InterfaceTK/compooper.py -%%EFICASDIR%%/InterfaceTK/compooper.pyc -%%EFICASDIR%%/InterfaceTK/compooper.pyo -%%EFICASDIR%%/InterfaceTK/compoparam.py -%%EFICASDIR%%/InterfaceTK/compoparam.pyc -%%EFICASDIR%%/InterfaceTK/compoparam.pyo -%%EFICASDIR%%/InterfaceTK/compoparameval.py -%%EFICASDIR%%/InterfaceTK/compoparameval.pyc -%%EFICASDIR%%/InterfaceTK/compoparameval.pyo -%%EFICASDIR%%/InterfaceTK/compoproc.py -%%EFICASDIR%%/InterfaceTK/compoproc.pyc -%%EFICASDIR%%/InterfaceTK/compoproc.pyo -%%EFICASDIR%%/InterfaceTK/composimp.py -%%EFICASDIR%%/InterfaceTK/composimp.pyc -%%EFICASDIR%%/InterfaceTK/composimp.pyo -%%EFICASDIR%%/InterfaceTK/definition_cata.py -%%EFICASDIR%%/InterfaceTK/definition_cata.pyc -%%EFICASDIR%%/InterfaceTK/definition_cata.pyo -%%EFICASDIR%%/InterfaceTK/eficas.py -%%EFICASDIR%%/InterfaceTK/eficas.pyc -%%EFICASDIR%%/InterfaceTK/eficas.pyo -%%EFICASDIR%%/InterfaceTK/eficas_go.py -%%EFICASDIR%%/InterfaceTK/eficas_go.pyc -%%EFICASDIR%%/InterfaceTK/eficas_go.pyo -%%EFICASDIR%%/InterfaceTK/eficas_test.py -%%EFICASDIR%%/InterfaceTK/eficas_test.pyc -%%EFICASDIR%%/InterfaceTK/eficas_test.pyo -%%EFICASDIR%%/InterfaceTK/faq.py -%%EFICASDIR%%/InterfaceTK/faq.pyc -%%EFICASDIR%%/InterfaceTK/faq.pyo -%%EFICASDIR%%/InterfaceTK/fenetre_mc_inconnus.py -%%EFICASDIR%%/InterfaceTK/fenetre_mc_inconnus.pyc -%%EFICASDIR%%/InterfaceTK/fenetre_mc_inconnus.pyo -%%EFICASDIR%%/InterfaceTK/fonctionpanel.py -%%EFICASDIR%%/InterfaceTK/fonctionpanel.pyc -%%EFICASDIR%%/InterfaceTK/fonctionpanel.pyo -%%EFICASDIR%%/InterfaceTK/fontes.py -%%EFICASDIR%%/InterfaceTK/fontes.pyc -%%EFICASDIR%%/InterfaceTK/fontes.pyo -%%EFICASDIR%%/InterfaceTK/images.py -%%EFICASDIR%%/InterfaceTK/images.pyc -%%EFICASDIR%%/InterfaceTK/images.pyo -%%EFICASDIR%%/InterfaceTK/jdcdisplay.py -%%EFICASDIR%%/InterfaceTK/jdcdisplay.pyc -%%EFICASDIR%%/InterfaceTK/jdcdisplay.pyo -%%EFICASDIR%%/InterfaceTK/listeFichiers.py -%%EFICASDIR%%/InterfaceTK/listeFichiers.pyc -%%EFICASDIR%%/InterfaceTK/listeFichiers.pyo -%%EFICASDIR%%/InterfaceTK/listePatronsTK.py -%%EFICASDIR%%/InterfaceTK/listePatronsTK.pyc -%%EFICASDIR%%/InterfaceTK/listePatronsTK.pyo -%%EFICASDIR%%/InterfaceTK/macrodisplay.py -%%EFICASDIR%%/InterfaceTK/macrodisplay.pyc -%%EFICASDIR%%/InterfaceTK/macrodisplay.pyo -%%EFICASDIR%%/InterfaceTK/menubar.py -%%EFICASDIR%%/InterfaceTK/menubar.pyc -%%EFICASDIR%%/InterfaceTK/menubar.pyo -%%EFICASDIR%%/InterfaceTK/newsimppanel.py -%%EFICASDIR%%/InterfaceTK/newsimppanel.pyc -%%EFICASDIR%%/InterfaceTK/newsimppanel.pyo -%%EFICASDIR%%/InterfaceTK/options.py -%%EFICASDIR%%/InterfaceTK/options.pyc -%%EFICASDIR%%/InterfaceTK/options.pyo -%%EFICASDIR%%/InterfaceTK/panels.py -%%EFICASDIR%%/InterfaceTK/panels.pyc -%%EFICASDIR%%/InterfaceTK/panels.pyo -%%EFICASDIR%%/InterfaceTK/panelsSalome.py -%%EFICASDIR%%/InterfaceTK/panelsSalome.pyc -%%EFICASDIR%%/InterfaceTK/panelsSalome.pyo -%%EFICASDIR%%/InterfaceTK/patches.py -%%EFICASDIR%%/InterfaceTK/patches.pyc -%%EFICASDIR%%/InterfaceTK/patches.pyo -%%EFICASDIR%%/InterfaceTK/plusieursassdpanel.py -%%EFICASDIR%%/InterfaceTK/plusieursassdpanel.pyc -%%EFICASDIR%%/InterfaceTK/plusieursassdpanel.pyo -%%EFICASDIR%%/InterfaceTK/plusieursbasepanel.py -%%EFICASDIR%%/InterfaceTK/plusieursbasepanel.pyc -%%EFICASDIR%%/InterfaceTK/plusieursbasepanel.pyo -%%EFICASDIR%%/InterfaceTK/plusieursintopanel.py -%%EFICASDIR%%/InterfaceTK/plusieursintopanel.pyc -%%EFICASDIR%%/InterfaceTK/plusieursintopanel.pyo -%%EFICASDIR%%/InterfaceTK/plusieurspanel.py -%%EFICASDIR%%/InterfaceTK/plusieurspanel.pyc -%%EFICASDIR%%/InterfaceTK/plusieurspanel.pyo -%%EFICASDIR%%/InterfaceTK/readercata.py -%%EFICASDIR%%/InterfaceTK/readercata.pyc -%%EFICASDIR%%/InterfaceTK/readercata.pyo -%%EFICASDIR%%/InterfaceTK/shellpanel.py -%%EFICASDIR%%/InterfaceTK/shellpanel.pyc -%%EFICASDIR%%/InterfaceTK/shellpanel.pyo -%%EFICASDIR%%/InterfaceTK/splash.py -%%EFICASDIR%%/InterfaceTK/splash.pyc -%%EFICASDIR%%/InterfaceTK/splash.pyo -%%EFICASDIR%%/InterfaceTK/statusbar.py -%%EFICASDIR%%/InterfaceTK/statusbar.pyc -%%EFICASDIR%%/InterfaceTK/statusbar.pyo -%%EFICASDIR%%/InterfaceTK/styles.py -%%EFICASDIR%%/InterfaceTK/styles.pyc -%%EFICASDIR%%/InterfaceTK/styles.pyo -%%EFICASDIR%%/InterfaceTK/toolbar.py -%%EFICASDIR%%/InterfaceTK/toolbar.pyc -%%EFICASDIR%%/InterfaceTK/toolbar.pyo -%%EFICASDIR%%/InterfaceTK/tooltip.py -%%EFICASDIR%%/InterfaceTK/tooltip.pyc -%%EFICASDIR%%/InterfaceTK/tooltip.pyo -%%EFICASDIR%%/InterfaceTK/treeitemincanvas.py -%%EFICASDIR%%/InterfaceTK/treeitemincanvas.pyc -%%EFICASDIR%%/InterfaceTK/treeitemincanvas.pyo -%%EFICASDIR%%/InterfaceTK/treewidget.py -%%EFICASDIR%%/InterfaceTK/treewidget.pyc -%%EFICASDIR%%/InterfaceTK/treewidget.pyo -%%EFICASDIR%%/InterfaceTK/uniqueassdpanel.py -%%EFICASDIR%%/InterfaceTK/uniqueassdpanel.pyc -%%EFICASDIR%%/InterfaceTK/uniqueassdpanel.pyo -%%EFICASDIR%%/InterfaceTK/uniquebasepanel.py -%%EFICASDIR%%/InterfaceTK/uniquebasepanel.pyc -%%EFICASDIR%%/InterfaceTK/uniquebasepanel.pyo -%%EFICASDIR%%/InterfaceTK/uniquecomppanel.py -%%EFICASDIR%%/InterfaceTK/uniquecomppanel.pyc -%%EFICASDIR%%/InterfaceTK/uniquecomppanel.pyo -%%EFICASDIR%%/InterfaceTK/uniqueintopanel.py -%%EFICASDIR%%/InterfaceTK/uniqueintopanel.pyc -%%EFICASDIR%%/InterfaceTK/uniqueintopanel.pyo -%%EFICASDIR%%/InterfaceTK/uniquepanel.py -%%EFICASDIR%%/InterfaceTK/uniquepanel.pyc -%%EFICASDIR%%/InterfaceTK/uniquepanel.pyo -%%EFICASDIR%%/InterfaceTK/uniquesdcopanel.py -%%EFICASDIR%%/InterfaceTK/uniquesdcopanel.pyc -%%EFICASDIR%%/InterfaceTK/uniquesdcopanel.pyo -%%EFICASDIR%%/InterfaceTK/widgets.py -%%EFICASDIR%%/InterfaceTK/widgets.pyc -%%EFICASDIR%%/InterfaceTK/widgets.pyo -%%EFICASDIR%%/Misc/Cyclops.py -%%EFICASDIR%%/Misc/Cyclops.pyc -%%EFICASDIR%%/Misc/Cyclops.pyo -%%EFICASDIR%%/Misc/MakeNomComplet.py -%%EFICASDIR%%/Misc/MakeNomComplet.pyc -%%EFICASDIR%%/Misc/MakeNomComplet.pyo -%%EFICASDIR%%/Misc/Trace.py -%%EFICASDIR%%/Misc/Trace.pyc -%%EFICASDIR%%/Misc/Trace.pyo -%%EFICASDIR%%/Misc/__init__.py -%%EFICASDIR%%/Misc/__init__.pyc -%%EFICASDIR%%/Misc/__init__.pyo -%%EFICASDIR%%/Misc/timing.py -%%EFICASDIR%%/Misc/timing.pyc -%%EFICASDIR%%/Misc/timing.pyo -%%EFICASDIR%%/Misc/traced.py -%%EFICASDIR%%/Misc/traced.pyc -%%EFICASDIR%%/Misc/traced.pyo %%EFICASDIR%%/Noyau/N_ASSD.py %%EFICASDIR%%/Noyau/N_ASSD.pyc %%EFICASDIR%%/Noyau/N_ASSD.pyo @@ -2478,6 +2285,9 @@ bin/eficas %%EFICASDIR%%/Noyau/N_OPER.py %%EFICASDIR%%/Noyau/N_OPER.pyc %%EFICASDIR%%/Noyau/N_OPER.pyo +%%EFICASDIR%%/Noyau/N_OPS.py +%%EFICASDIR%%/Noyau/N_OPS.pyc +%%EFICASDIR%%/Noyau/N_OPS.pyo %%EFICASDIR%%/Noyau/N_PROC.py %%EFICASDIR%%/Noyau/N_PROC.pyc %%EFICASDIR%%/Noyau/N_PROC.pyo @@ -2499,6 +2309,9 @@ bin/eficas %%EFICASDIR%%/Noyau/N__F.py %%EFICASDIR%%/Noyau/N__F.pyc %%EFICASDIR%%/Noyau/N__F.pyo +%%EFICASDIR%%/Noyau/N_info.py +%%EFICASDIR%%/Noyau/N_info.pyc +%%EFICASDIR%%/Noyau/N_info.pyo %%EFICASDIR%%/Noyau/N_types.py %%EFICASDIR%%/Noyau/N_types.pyc %%EFICASDIR%%/Noyau/N_types.pyo @@ -2561,24 +2374,6 @@ bin/eficas %%EFICASDIR%%/Openturns_Wrapper/qtEficas_openturns_wrapper.py %%EFICASDIR%%/Openturns_Wrapper/qtEficas_openturns_wrapper.pyc %%EFICASDIR%%/Openturns_Wrapper/qtEficas_openturns_wrapper.pyo -%%EFICASDIR%%/Tools/__init__.py -%%EFICASDIR%%/Tools/__init__.pyc -%%EFICASDIR%%/Tools/__init__.pyo -%%EFICASDIR%%/Tools/foztools/__init__.py -%%EFICASDIR%%/Tools/foztools/__init__.pyc -%%EFICASDIR%%/Tools/foztools/__init__.pyo -%%EFICASDIR%%/Tools/foztools/foztools.py -%%EFICASDIR%%/Tools/foztools/foztools.pyc -%%EFICASDIR%%/Tools/foztools/foztools.pyo -%%EFICASDIR%%/Tools/foztools/slider.py -%%EFICASDIR%%/Tools/foztools/slider.pyc -%%EFICASDIR%%/Tools/foztools/slider.pyo -%%EFICASDIR%%/Tools/optparse.py -%%EFICASDIR%%/Tools/optparse.pyc -%%EFICASDIR%%/Tools/optparse.pyo -%%EFICASDIR%%/Tools/textwrap.py -%%EFICASDIR%%/Tools/textwrap.pyc -%%EFICASDIR%%/Tools/textwrap.pyo %%EFICASDIR%%/Traducteur/__init__.py %%EFICASDIR%%/Traducteur/__init__.pyc %%EFICASDIR%%/Traducteur/__init__.pyo @@ -2624,6 +2419,9 @@ bin/eficas %%EFICASDIR%%/Traducteur/traduitV8V9.py %%EFICASDIR%%/Traducteur/traduitV8V9.pyc %%EFICASDIR%%/Traducteur/traduitV8V9.pyo +%%EFICASDIR%%/Traducteur/traduitV9V10.py +%%EFICASDIR%%/Traducteur/traduitV9V10.pyc +%%EFICASDIR%%/Traducteur/traduitV9V10.pyo %%EFICASDIR%%/Traducteur/utils.py %%EFICASDIR%%/Traducteur/utils.pyc %%EFICASDIR%%/Traducteur/utils.pyo @@ -2648,6 +2446,9 @@ bin/eficas %%EFICASDIR%%/UiQT4/desChoixCata.py %%EFICASDIR%%/UiQT4/desChoixCata.pyc %%EFICASDIR%%/UiQT4/desChoixCata.pyo +%%EFICASDIR%%/UiQT4/desChoixCode.py +%%EFICASDIR%%/UiQT4/desChoixCode.pyc +%%EFICASDIR%%/UiQT4/desChoixCode.pyo %%EFICASDIR%%/UiQT4/desChoixMap.py %%EFICASDIR%%/UiQT4/desChoixMap.pyc %%EFICASDIR%%/UiQT4/desChoixMap.pyo @@ -2669,7 +2470,6 @@ bin/eficas %%EFICASDIR%%/UiQT4/desInclude.py %%EFICASDIR%%/UiQT4/desInclude.pyc %%EFICASDIR%%/UiQT4/desInclude.pyo -%%EFICASDIR%%/UiQT4/desInclude.ui %%EFICASDIR%%/UiQT4/desListeParam.py %%EFICASDIR%%/UiQT4/desListeParam.pyc %%EFICASDIR%%/UiQT4/desListeParam.pyo @@ -2769,6 +2569,9 @@ bin/eficas %%EFICASDIR%%/Validation/V_MCSIMP.py %%EFICASDIR%%/Validation/V_MCSIMP.pyc %%EFICASDIR%%/Validation/V_MCSIMP.pyo +%%EFICASDIR%%/Validation/V_MEME_NOMBRE.py +%%EFICASDIR%%/Validation/V_MEME_NOMBRE.pyc +%%EFICASDIR%%/Validation/V_MEME_NOMBRE.pyo %%EFICASDIR%%/Validation/V_PRESENT_ABSENT.py %%EFICASDIR%%/Validation/V_PRESENT_ABSENT.pyc %%EFICASDIR%%/Validation/V_PRESENT_ABSENT.pyo @@ -2819,6 +2622,8 @@ bin/eficas %%EFICASDIR%%/convert/parseur_python.py %%EFICASDIR%%/convert/parseur_python.pyc %%EFICASDIR%%/convert/parseur_python.pyo +%%EFICASDIR%%/eficas +%%EFICASDIR%%/eficasQt %%EFICASDIR%%/generator/Formatage.py %%EFICASDIR%%/generator/Formatage.pyc %%EFICASDIR%%/generator/Formatage.pyo @@ -2867,13 +2672,9 @@ bin/eficas @dirrm %%EFICASDIR%%/Validation @dirrm %%EFICASDIR%%/UiQT4 @dirrm %%EFICASDIR%%/Traducteur -@dirrm %%EFICASDIR%%/Tools/foztools -@dirrm %%EFICASDIR%%/Tools @dirrm %%EFICASDIR%%/Openturns_Wrapper @dirrm %%EFICASDIR%%/Openturns_Study @dirrm %%EFICASDIR%%/Noyau -@dirrm %%EFICASDIR%%/Misc -@dirrm %%EFICASDIR%%/InterfaceTK @dirrm %%EFICASDIR%%/InterfaceQT4 @dirrm %%EFICASDIR%%/Ihm @dirrm %%EFICASDIR%%/Extensions @@ -2886,10 +2687,9 @@ bin/eficas @dirrm %%EFICASDIR%%/Aster/Cata/cataSTA9/SD @dirrm %%EFICASDIR%%/Aster/Cata/cataSTA9/Macro @dirrm %%EFICASDIR%%/Aster/Cata/cataSTA9 -@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA8/materiau -@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA8/Utilitai -@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA8/Macro -@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA8 +@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA11/materiau +@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA11/Cata_Utils +@dirrm %%EFICASDIR%%/Aster/Cata/cataSTA11 @dirrm %%EFICASDIR%%/Aster/Cata/cataSTA10/materiau @dirrm %%EFICASDIR%%/Aster/Cata/cataSTA10/Utilitai @dirrm %%EFICASDIR%%/Aster/Cata/cataSTA10/SD @@ -2902,6 +2702,5 @@ bin/eficas @dirrm %%EFICASDIR%%/Aide/fichiers_ASTER @dirrm %%EFICASDIR%%/Aide @dirrm %%EFICASDIR%%/Accas -@dirrm %%EFICASDIR%%/AIDE @dirrm %%EFICASDIR%% @dirrmtry apps diff --git a/french/eficas_doc/Makefile b/french/eficas_doc/Makefile index 1028df0ebab4..f1eb8e0306ac 100644 --- a/french/eficas_doc/Makefile +++ b/french/eficas_doc/Makefile @@ -6,8 +6,7 @@ # PORTNAME= eficas-doc -DISTVERSION= 2.1.1-1 -PORTREVISION= 1 +DISTVERSION= 6.4.0-1 CATEGORIES= french cad MAINTAINER= thierry@FreeBSD.org @@ -22,7 +21,7 @@ PKG_INSTALL= pkg-install DOCSDIR= ${PREFIX}/share/doc/eficas LEFICASDIR?= apps/${PORTNAME:S/-doc//} EFICASDIR= ${PREFIX}/${LEFICASDIR} -PLIST_SUB= EFICASDIR=${LEFICASDIR} ASTER_VER=STA${ASTER_VER:R} ASTER_VER-1=STA9.8 +PLIST_SUB= EFICASDIR=${LEFICASDIR} ASTER_VER=STA${ASTER_VER:R} ASTER_VER+1=STA11.1 pre-install: PKG_PREFIX=${PREFIX} ${SH} ${PKG_INSTALL} ${PKGNAME} PRE-INSTALL diff --git a/french/eficas_doc/pkg-deinstall b/french/eficas_doc/pkg-deinstall index f45a96940d74..3796fa44bcff 100644 --- a/french/eficas_doc/pkg-deinstall +++ b/french/eficas_doc/pkg-deinstall @@ -13,15 +13,15 @@ case $2 in DEINSTALL) ;; POST-DEINSTALL) - if [ -f ${CATADIR}/cataSTA8c_clefs_docu.orig ]; then - mv ${CATADIR}/cataSTA8c_clefs_docu.orig ${CATADIR}/cataSTA8c_clefs_docu - fi if [ -f ${CATADIR}/cataSTA9c_clefs_docu.orig ]; then mv ${CATADIR}/cataSTA9c_clefs_docu.orig ${CATADIR}/cataSTA9c_clefs_docu fi if [ -f ${CATADIR}/cataSTA10c_clefs_docu.orig ]; then mv ${CATADIR}/cataSTA10c_clefs_docu.orig ${CATADIR}/cataSTA10c_clefs_docu fi + if [ -f ${CATADIR}/cataSTA11c_clefs_docu.orig ]; then + mv ${CATADIR}/cataSTA11c_clefs_docu.orig ${CATADIR}/cataSTA11c_clefs_docu + fi ;; *) echo "usage: $0 distname { DEINSTALL | POST-DEINSTALL }" >&2 diff --git a/french/eficas_doc/pkg-install b/french/eficas_doc/pkg-install index 284543f803ab..21dd7a0f40db 100644 --- a/french/eficas_doc/pkg-install +++ b/french/eficas_doc/pkg-install @@ -11,15 +11,15 @@ fi case $2 in PRE-INSTALL) - if [ -f ${CATADIR}/cataSTA8c_clefs_docu ]; then - mv ${CATADIR}/cataSTA8c_clefs_docu ${CATADIR}/cataSTA8c_clefs_docu.orig - fi if [ -f ${CATADIR}/cataSTA9c_clefs_docu ]; then mv ${CATADIR}/cataSTA9c_clefs_docu ${CATADIR}/cataSTA9c_clefs_docu.orig fi if [ -f ${CATADIR}/cataSTA10c_clefs_docu ]; then mv ${CATADIR}/cataSTA10c_clefs_docu ${CATADIR}/cataSTA10c_clefs_docu.orig fi + if [ -f ${CATADIR}/cataSTA11c_clefs_docu ]; then + mv ${CATADIR}/cataSTA11c_clefs_docu ${CATADIR}/cataSTA11c_clefs_docu.orig + fi ;; POST-INSTALL) ;; diff --git a/french/eficas_doc/pkg-plist b/french/eficas_doc/pkg-plist index 91abe2fedef4..da285ea37898 100644 --- a/french/eficas_doc/pkg-plist +++ b/french/eficas_doc/pkg-plist @@ -1,4 +1,3 @@ -%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.02.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.11.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.11.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.11.03.pdf @@ -16,6 +15,7 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.23.04.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.23.05.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.24.01.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.24.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.25.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.26.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.31.01.pdf @@ -35,6 +35,7 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.33.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.34.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.34.02.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.34.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.35.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.35.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.36.01.pdf @@ -44,6 +45,7 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.36.06.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.36.07.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.41.01.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.41.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.41.11.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.42.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.42.02.pdf @@ -85,6 +87,8 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.52.13.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.52.14.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.52.15.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.52.51.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.52.52.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.53.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.53.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.53.11.pdf @@ -123,6 +127,8 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.65.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.65.04.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.65.05.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.65.11.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.65.12.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.66.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.66.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.66.03.pdf @@ -148,7 +154,11 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.13.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.21.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.22.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.23.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.31.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.41.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.42.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.81.51.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.82.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.82.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.82.03.pdf @@ -170,7 +180,10 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.84.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.84.04.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.84.05.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.84.11.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.84.21.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.85.01.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.86.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.90.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.90.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.90.03.pdf @@ -178,12 +191,14 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.91.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.91.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.91.11.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.91.12.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.91.21.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.04.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.05.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.06.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.92.11.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.cf.10.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4/u4.cf.20.pdf @@ -202,12 +217,16 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.02.31.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.02.32.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.02.33.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.02.34.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.01.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.02.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.03.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.10.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.11.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.12.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.31.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.41.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.03.51.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.04.11.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.04.33.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.04.41.pdf @@ -217,238 +236,271 @@ %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.05.21.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.05.31.pdf %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.05.32.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.02.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.11.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.11.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.11.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.12.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.13.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.13.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.14.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.15.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.15.12.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.21.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.22.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.23.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.23.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.23.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.23.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.23.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.24.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.25.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.26.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.31.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.31.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.31.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.31.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.31.06.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.32.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.33.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.33.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.33.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.34.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.34.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.35.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.35.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.36.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.36.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.36.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.36.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.36.06.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.36.07.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.41.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.41.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.42.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.42.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.42.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.42.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.42.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.42.06.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.43.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.43.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.43.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.43.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.43.06.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.12.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.14.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.22.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.44.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.50.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.50.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.51.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.51.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.51.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.51.10.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.51.12.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.10.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.12.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.13.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.14.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.52.15.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.22.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.23.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.53.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.54.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.54.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.54.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.55.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.55.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.22.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.61.23.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.62.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.62.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.12.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.13.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.14.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.22.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.32.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.33.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.63.34.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.64.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.64.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.65.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.65.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.65.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.65.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.65.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.66.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.66.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.66.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.66.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.66.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.71.00.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.71.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.71.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.71.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.71.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.72.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.72.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.72.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.72.06.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.73.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.73.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.74.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.12.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.13.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.22.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.81.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.06.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.07.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.08.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.22.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.30.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.82.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.83.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.83.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.83.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.83.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.84.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.84.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.84.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.84.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.84.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.85.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.90.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.90.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.90.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.91.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.91.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.91.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.91.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.91.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.92.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.92.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.92.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.92.04.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.92.05.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.92.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.cf.10.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.cf.20.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.mk.10.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.pc.10.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4/u4.pc.20.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.00.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.01.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.01.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.01.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.01.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.32.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.02.33.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.03.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.03.02.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.03.03.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.03.10.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.03.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.03.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.04.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.04.33.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.04.41.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.04.51.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.05.01.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.05.11.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.05.21.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.05.31.pdf -%%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7/u7.05.32.pdf -@exec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu %D/%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu.orig 2>/dev/null || /usr/bin/true +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.06.01.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.06.11.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.06.21.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.06.22.pdf +%%DOCSDIR%%/%%ASTER_VER%%/man_u/u7/u7.06.23.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.11.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.11.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.11.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.12.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.13.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.13.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.14.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.15.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.15.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.21.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.22.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.23.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.23.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.23.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.23.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.23.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.24.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.24.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.25.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.26.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.31.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.31.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.31.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.31.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.31.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.32.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.33.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.33.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.33.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.34.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.34.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.34.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.35.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.35.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.36.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.36.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.36.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.36.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.36.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.36.07.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.41.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.41.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.41.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.42.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.42.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.42.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.42.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.42.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.42.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.43.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.43.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.43.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.43.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.43.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.14.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.44.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.50.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.50.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.51.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.51.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.51.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.51.10.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.51.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.10.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.13.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.14.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.15.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.16.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.51.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.52.52.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.23.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.53.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.54.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.54.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.54.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.55.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.55.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.61.23.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.62.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.62.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.13.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.14.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.32.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.33.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.63.34.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.64.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.64.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.65.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.66.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.66.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.66.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.66.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.66.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.71.00.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.71.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.71.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.71.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.71.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.72.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.72.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.72.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.72.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.73.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.73.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.74.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.13.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.23.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.41.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.42.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.81.51.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.07.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.08.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.30.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.82.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.83.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.83.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.83.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.83.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.84.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.85.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.86.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.90.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.90.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.90.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.91.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.91.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.91.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.91.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.91.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.91.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.04.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.05.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.06.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.92.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.cf.10.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.cf.20.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.mk.10.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.pc.10.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4/u4.pc.20.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.00.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.01.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.01.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.01.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.01.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.31.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.32.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.33.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.02.34.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.02.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.03.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.10.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.12.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.41.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.51.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.03.61.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.04.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.04.33.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.04.51.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.05.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.05.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.05.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.05.32.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.06.01.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.06.11.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.06.21.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.06.22.pdf +%%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7/u7.06.23.pdf @exec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu %D/%%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu.orig 2>/dev/null || /usr/bin/true @exec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu %D/%%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu.orig 2>/dev/null || /usr/bin/true -%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu +@exec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu %D/%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu.orig 2>/dev/null || /usr/bin/true %%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu %%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu -@unexec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu.orig ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu.orig %D/%%EFICASDIR%%/Aster/Cata/cataSTA8c_clefs_docu 2>/dev/null || /usr/bin/true +%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu @unexec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu.orig ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu.orig %D/%%EFICASDIR%%/Aster/Cata/cataSTA9c_clefs_docu 2>/dev/null || /usr/bin/true @unexec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu.orig ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu.orig %D/%%EFICASDIR%%/Aster/Cata/cataSTA10c_clefs_docu 2>/dev/null || /usr/bin/true -@dirrm %%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u7 -@dirrm %%DOCSDIR%%/%%ASTER_VER-1%%/man_u/u4 -@dirrm %%DOCSDIR%%/%%ASTER_VER-1%%/man_u -@dirrm %%DOCSDIR%%/%%ASTER_VER-1%% +@unexec [ -f %D/%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu.orig ] && /bin/mv %D/%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu.orig %D/%%EFICASDIR%%/Aster/Cata/cataSTA11c_clefs_docu 2>/dev/null || /usr/bin/true +@dirrm %%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u7 +@dirrm %%DOCSDIR%%/%%ASTER_VER+1%%/man_u/u4 +@dirrm %%DOCSDIR%%/%%ASTER_VER+1%%/man_u +@dirrm %%DOCSDIR%%/%%ASTER_VER+1%% @dirrm %%DOCSDIR%%/%%ASTER_VER%%/man_u/u7 @dirrm %%DOCSDIR%%/%%ASTER_VER%%/man_u/u4 @dirrm %%DOCSDIR%%/%%ASTER_VER%%/man_u diff --git a/french/gibi/Makefile b/french/gibi/Makefile index 5ba7f7b0afad..2b88f6a1e4a8 100644 --- a/french/gibi/Makefile +++ b/french/gibi/Makefile @@ -8,7 +8,7 @@ PORTNAME= gibi DISTVERSION= 2003-2 DISTVERSIONSUFFIX= .i386 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= french cad linux MASTER_SITES= http://www.code-aster.org/V2/UPLOAD/DOC/Telechargement/ EXTRACT_SUFX= .tar @@ -59,7 +59,7 @@ SHELL_RUN_GIBI= ${LOCALBASE}/bin/${SHRG} LGIBIDIR?= apps/${PORTNAME} GIBIDIR= ${PREFIX}/${LGIBIDIR} -ASTER_VER= 10.3 +ASTER_VER= 10.6 vaster= STA${ASTER_VER} ASTER_TOOLS= ${LOCALBASE}/aster/outils KERVER= 2.4.1 diff --git a/french/homard/Makefile b/french/homard/Makefile index 75a7e12fa4b7..a00a970296e7 100644 --- a/french/homard/Makefile +++ b/french/homard/Makefile @@ -6,11 +6,10 @@ # PORTNAME= homard -DISTVERSION= 9.8-1 -PORTREVISION= 2 +DISTVERSION= 10.1-1 CATEGORIES= french cad linux -MAINTAINER= ports@FreeBSD.org +MAINTAINER= thierry@FreeBSD.org COMMENT= A refinement and de-refinement mesh tool BUILD_DEPENDS= ${LOCALBASE}/aster/${vaster}/asteru:${PORTSDIR}/french/aster @@ -34,7 +33,7 @@ vaster= STA${ASTER_VER:R} ASTER_TOOLS= ${LOCALBASE}/aster/outils HOMARDDIR= ${PREFIX}/${LHOMARDDIR} AHPY= aster_homard_py -HOMARDSCRIPT= ${PORTNAME}_base +HOMARDSCRIPT= ${PORTNAME}_base ASTER_HOMARD/aster_homard_py/aster_homard_3.py # This name is requested to run aster's make test HOMARDPG= ${PORTNAME:U}_V${PORTVERSION:R}.out HOMARDWDIR= ${PORTNAME:U} @@ -44,16 +43,23 @@ DOCS= A_Lire.txt Readme.txt PLIST_SUB= HOMARDDIR=${LHOMARDDIR} AHPY=${LHOMARDDIR}/${AHPY} \ UNAMES=${OPSYS} HOMARDPG=${HOMARDPG} ASTER_TOOLS=${ASTER_TOOLS} +.include <bsd.port.pre.mk> + pre-configure: - ${REINPLACE_CMD} -e "s#/logiciels/HOMARD/HOMARD_PUBLIC#${PREFIX}/bin#" \ - ${WRKSRC}/${HOMARDWDIR}/${HOMARDSCRIPT} +.for sc in ${HOMARDSCRIPT} + ${REINPLACE_CMD} -e "s#/logiciels/HOMARD/HOMARD_PUBLIC#${HOMARDDIR}#" \ + ${WRKSRC}/${HOMARDWDIR}/${sc} +.endfor do-install: - ${MKDIR} ${HOMARDDIR} - ${MKDIR} ${PREFIX}/bin/${OPSYS} - ${INSTALL_PROGRAM} ${WRKSRC}/${HOMARDWDIR}/Linux/${HOMARDPG} ${PREFIX}/bin/${OPSYS} - ${BRANDELF} -t Linux ${PREFIX}/bin/${OPSYS}/${HOMARDPG} - ${INSTALL_SCRIPT} ${WRKSRC}/${HOMARDWDIR}/${HOMARDSCRIPT} ${HOMARDDIR}/${PORTNAME} + ${MKDIR} ${HOMARDDIR} ${PREFIX}/apps/${OPSYS} +.if ${ARCH} == "i386" + ${INSTALL_PROGRAM} ${WRKSRC}/${HOMARDWDIR}/Linux/${HOMARDPG} ${PREFIX}/apps/${OPSYS} +.else + ${INSTALL_PROGRAM} ${WRKSRC}/${HOMARDWDIR}/Linux64/${HOMARDPG} ${PREFIX}/apps/${OPSYS} +.endif + ${BRANDELF} -t Linux ${PREFIX}/apps/${OPSYS}/${HOMARDPG} + ${INSTALL_SCRIPT} ${WRKSRC}/${HOMARDWDIR}/${PORTNAME}_base ${HOMARDDIR}/${PORTNAME} ${CP} -R ${WRKSRC}/${HOMARDWDIR}/ASTER_HOMARD/${AHPY} ${HOMARDDIR} @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${HOMARDDIR} @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${HOMARDDIR} @@ -79,4 +85,4 @@ post-install: @${ECHO_MSG} .include "${.CURDIR}/../../french/aster/bsd.aster.mk" -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/french/homard/pkg-plist b/french/homard/pkg-plist index eb79ca88f6bb..52b635755c0f 100644 --- a/french/homard/pkg-plist +++ b/french/homard/pkg-plist @@ -1,4 +1,4 @@ -bin/%%UNAMES%%/%%HOMARDPG%% +apps/%%UNAMES%%/%%HOMARDPG%% %%AHPY%%/__init__.py %%AHPY%%/__init__.pyc %%AHPY%%/__init__.pyo @@ -79,6 +79,63 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_d1/resultats_ref/qual.tria.02.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_d1/resultats_ref/qual.tria.03.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_d1/resultats_ref/verif_avad.00.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/M00.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.00.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.01.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.02.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.02.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.03.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/depart/maill.03.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats/.keepme +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/HOMARD.Configuration +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/HOMARD.Configuration.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/HOMARD.Configuration.01.vers.02 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/HOMARD.Configuration.02.vers.03 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/HOMARD.Configuration.03.vers.04 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/Liste.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/Liste.01.vers.02 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/Liste.02.vers.03 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/Liste.03.vers.04 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/apad.01.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/apad.02.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/apad.03.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/apad.04.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.hexa.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.hexa.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.hexa.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.hexa.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.pyra.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.pyra.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.pyra.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.pyra.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.tetr.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.tetr.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/diam.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/indic.noeu.00.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/indic.noeu.00.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/indic.noeu.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/indic.noeu.01.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/indic.noeu.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/indic.noeu.03.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.01.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.02.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.02.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.03.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.03.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.04.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/maill.04.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.hexa.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.hexa.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.hexa.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.hexa.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.tetr.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.tetr.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/qual.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref/verif_avad.00.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_d2/depart/maill.00.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_d2/depart/maill.00.old.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hex_d2/depart/maill.01.init.med @@ -211,6 +268,18 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.hexa.04.hist %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.hexa.06.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.hexa.06.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.00.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.00.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.01.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.02.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.04.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.05.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.05.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.06.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pent.06.hist %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pyra.01.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pyra.01.hist %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_3d_ind_d2/resultats_ref/indic.pyra.02.dat @@ -314,6 +383,16 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_qua_tri_d1_equ/resultats_ref/qual.tria.02.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_qua_tri_d1_equ/resultats_ref/qual.tria.03.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/mix_qua_tri_d1_equ/resultats_ref/verif_avad.00.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/depart/maill.00.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats/.keepme +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/HOMARD.Configuration +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/HOMARD.Configuration.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/Liste.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/maill.01.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/modi.00.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/modi.01.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref/verif_modi.00.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/depart/maill.00.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/depart/maill.01.init.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/depart/maill.01.med @@ -330,6 +409,11 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/apad.01.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/apad.02.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/apad.03.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/indic.pent.00.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/indic.pent.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/indic.pent.01.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/indic.pent.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/indic.pent.02.hist %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/maill.01.hom.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/maill.01.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pen_d1/resultats_ref/maill.02.hom.med @@ -397,6 +481,7 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/apad.02.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/apad.03.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/apad.04.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/diam.quad.01.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/diam.quad.02.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/diam.quad.03.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/diam.quad.04.dat @@ -428,6 +513,10 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/maill.03.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/maill.04.hom.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/maill.04.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.quad.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.quad.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.quad.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.quad.04.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.tria.01.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.tria.02.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sau_qua_tri_d1/resultats_ref/qual.tria.03.dat @@ -481,11 +570,8 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_1d_mix_zzzz121d_d1/resultats_ref/qual.tria.03.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_1d_mix_zzzz121d_d1/resultats_ref/verif_avad.00.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/front.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/maill.00.init.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/maill.00.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/maill.01.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/maill.02.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/maill.03.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/depart/maill.init.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/resultats/.keepme %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/resultats_ref/HOMARD.Configuration %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/resultats_ref/HOMARD.Configuration.00.vers.01 @@ -525,63 +611,118 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/resultats_ref/qual.tria.03.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/resultats_ref/qual.tria.04.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sfr_2d_piquage/resultats_ref/verif_avad.00.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/depart/maill.00.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/depart/maill.01.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/depart/maill.02.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/depart/maill.03.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/depart/maill.04.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats/.keepme -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/HOMARD.Configuration -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/HOMARD.Configuration.00.vers.01 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/HOMARD.Configuration.01.vers.02 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/HOMARD.Configuration.02.vers.03 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/HOMARD.Configuration.03.vers.04 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/HOMARD.Configuration.04.vers.05 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/Liste.00.vers.01 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/Liste.01.vers.02 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/Liste.02.vers.03 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/Liste.03.vers.04 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/Liste.04.vers.05 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/apad.01.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/apad.02.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/apad.03.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/apad.04.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/apad.05.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tetr.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tetr.02.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tetr.03.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tetr.04.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tetr.05.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tria.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tria.02.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tria.03.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tria.04.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/diam.tria.05.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/indic.noeu.03.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/indic.noeu.03.hist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/indic.tetr.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/indic.tetr.01.hist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/indic.tetr.04.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/indic.tetr.04.hist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.01.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.01.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.02.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.02.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.03.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.03.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.04.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.04.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.05.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/maill.05.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tetr.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tetr.02.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tetr.03.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tetr.04.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tetr.05.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tria.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tria.04.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/qual.tria.05.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref/verif_avad.00.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.00.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.00.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.01.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.02.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.02.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.03.init.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/depart/maill.03.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats/.keepme +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/HOMARD.Configuration +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/HOMARD.Configuration.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/HOMARD.Configuration.01.vers.02 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/HOMARD.Configuration.02.vers.03 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/HOMARD.Configuration.03.vers.04 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/Liste.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/Liste.01.vers.02 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/Liste.02.vers.03 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/Liste.03.vers.04 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/apad.01.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/apad.02.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/apad.03.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/apad.04.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tetr.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tetr.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tria.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tria.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tria.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/diam.tria.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.00.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.00.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.01.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.02.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/indic.noeu.03.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.01.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.02.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.02.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.03.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.03.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.04.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/maill.04.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tetr.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tetr.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tria.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tria.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tria.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/qual.tria.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref/verif_avad.00.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/depart/maill.00.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/depart/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/depart/maill.02.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/depart/maill.03.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/depart/maill.04.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats/.keepme +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/HOMARD.Configuration +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/HOMARD.Configuration.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/HOMARD.Configuration.01.vers.02 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/HOMARD.Configuration.02.vers.03 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/HOMARD.Configuration.03.vers.04 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/HOMARD.Configuration.04.vers.05 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/Liste.00.vers.01 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/Liste.01.vers.02 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/Liste.02.vers.03 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/Liste.03.vers.04 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/Liste.04.vers.05 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/apad.01.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/apad.02.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/apad.03.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/apad.04.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/apad.05.bilan +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tetr.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tetr.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tetr.05.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tria.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tria.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tria.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/diam.tria.05.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/indic.noeu.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/indic.noeu.03.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/indic.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/indic.tetr.01.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/indic.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/indic.tetr.04.hist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.01.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.01.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.02.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.02.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.03.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.03.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.04.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.04.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.05.hom.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/maill.05.med +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tetr.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tetr.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tetr.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tetr.04.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tetr.05.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tria.01.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tria.02.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tria.03.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/qual.tria.05.dat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref/verif_avad.00.bilan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_tri_d2_man/depart/maill.00.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_tri_d2_man/depart/maill.01.med %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet_tri_d2_man/resultats/.keepme @@ -638,54 +779,6 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_6xtri_d2/resultats_ref/qual.tria.02.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_6xtri_d2/resultats_ref/qual.tria.03.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_6xtri_d2/resultats_ref/verif_avad.00.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.00.init.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.00.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.01.init.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.01.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.02.init.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.02.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.03.init.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.03.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.04.init.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart/maill.04.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats/.keepme -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/HOMARD.Configuration -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/HOMARD.Configuration.00.vers.01 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/HOMARD.Configuration.01.vers.02 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/HOMARD.Configuration.02.vers.03 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/Liste.00.vers.01 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/Liste.01.vers.02 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/Liste.02.vers.03 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/apad.01.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/apad.02.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/apad.03.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/avad.00.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/avad.01.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/avad.02.bilan -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/diam.tria.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/diam.tria.02.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/diam.tria.03.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/indic.tria.00.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/indic.tria.00.hist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/indic.tria.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/indic.tria.01.hist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/indic.tria.02.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/indic.tria.02.hist -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.00.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.01.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.01.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.02.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.02.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.03.hom.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/maill.03.med -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/qual.tria.01.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/qual.tria.02.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/qual.tria.03.dat -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref/verif_avad.00.bilan -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats_ref -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_8xtri_d1/resultats -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_8xtri_d1/depart -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_8xtri_d1 %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_6xtri_d2/resultats_ref %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_6xtri_d2/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tri_2d_6xtri_d2/depart @@ -694,10 +787,14 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_tri_d2_man/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_tri_d2_man/depart %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_tri_d2_man -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fig/resultats_ref -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fig/resultats -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fig/depart -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fig +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fil/resultats_ref +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fil/resultats +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fil/depart +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cube_d2_fil +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cable_fil_diam/resultats_ref +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cable_fil_diam/resultats +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cable_fil_diam/depart +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tet_cable_fil_diam %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sfr_2d_piquage/resultats_ref %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sfr_2d_piquage/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sfr_2d_piquage/depart @@ -718,6 +815,10 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pen_d1/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pen_d1/depart %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pen_d1 +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mod_joint_qt_d1/resultats_ref +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mod_joint_qt_d1/resultats +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mod_joint_qt_d1/depart +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mod_joint_qt_d1 %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mix_qua_tri_d1_equ/resultats_ref %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mix_qua_tri_d1_equ/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/mix_qua_tri_d1_equ/depart @@ -730,6 +831,10 @@ bin/%%UNAMES%%/%%HOMARDPG%% %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_d2/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_d2/depart %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_d2 +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats_ref +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_fil_diam/resultats +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_fil_diam/depart +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_fil_diam %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_d1/resultats_ref %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_d1/resultats %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hex_3x3_d1/depart @@ -740,7 +845,7 @@ bin/%%UNAMES%%/%%HOMARDPG%% @exec ln -sf %D/%%HOMARDDIR%%/homard %%ASTER_TOOLS%% @unexec rm -f %%ASTER_TOOLS%%/aster_homard_py @unexec rm -f %%ASTER_TOOLS%%/homard -@dirrmtry bin/%%UNAMES%% @dirrm %%AHPY%% @dirrm %%HOMARDDIR%% +@dirrmtry apps/%%UNAMES%% @dirrmtry apps diff --git a/french/med/Makefile b/french/med/Makefile index d25836a3f26b..792de1a7d81c 100644 --- a/french/med/Makefile +++ b/french/med/Makefile @@ -6,19 +6,18 @@ # PORTNAME= med -DISTVERSION= 2.3.6 -PORTREVISION= 4 +DISTVERSION= 3.0.4 CATEGORIES= french science -MAINTAINER= ports@FreeBSD.org +MAINTAINER= thierry@FreeBSD.org COMMENT= Modelisation et Echanges de Donnees +LICENSE= GPLv3 + BUILD_DEPENDS= wish${TK_VER}:${PORTSDIR}/x11-toolkits/tk${SHORT_TK_VER} LIB_DEPENDS= hdf5.7:${PORTSDIR}/science/hdf5-18 RUN_DEPENDS= wish${TK_VER}:${PORTSDIR}/x11-toolkits/tk${SHORT_TK_VER} -LICENSE= GPLv3 - WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} TK_VER?= 8.5 @@ -37,7 +36,7 @@ USE_GMAKE= yes USE_AUTOTOOLS= autoconf USE_LDCONFIG= yes -DOC2FIX= . gif html jpg png tests +DOC2FIX= . dox gif html html.dox jpg png TST2FIX= c f PORTDOCS= * @@ -55,10 +54,12 @@ pre-configure: ${REINPLACE_CMD} -e 's|docdir = $$(datadir)/doc|docdir = @docdir@|' \ ${WRKSRC}/doc/${dd}/Makefile.${ext} . endfor -. for dd in ${TST2FIX} +.endfor +.for dd in ${TST2FIX} + ${FIND} ${WRKSRC}/tests -name "Makefile.*" | ${XARGS} \ ${REINPLACE_CMD} -e 's|test${dd}dir = $$(bindir)/test|test${dd}dir = ${EXAMPLESDIR}/test|' \ - ${WRKSRC}/tests/${dd}/Makefile.${ext} -. endfor + -e 's|unittestsdir = $$(bindir)/unit|unittestsdir = ${EXAMPLESDIR}/unit|' \ + -e 's|usescasesdir = $$(bindir)/uses|usescasesdir = ${EXAMPLESDIR}/uses|' .endfor post-install: diff --git a/french/med/files/patch-config_ltmain.sh b/french/med/files/patch-config_ltmain.sh new file mode 100644 index 000000000000..02cae670602b --- /dev/null +++ b/french/med/files/patch-config_ltmain.sh @@ -0,0 +1,11 @@ +--- ./config/ltmain.sh.orig 2011-11-03 15:35:55.000000000 +0100 ++++ ./config/ltmain.sh 2011-12-26 21:19:08.000000000 +0100 +@@ -4160,7 +4160,7 @@ + # include <io.h> + # endif + #endif +-#include <malloc.h> ++#include <stdlib.h> + #include <stdarg.h> + #include <assert.h> + #include <string.h> diff --git a/french/med/files/patch-include::med_outils.h b/french/med/files/patch-include::med_outils.h index bd8370cdb58d..d2d797e71fae 100644 --- a/french/med/files/patch-include::med_outils.h +++ b/french/med/files/patch-include::med_outils.h @@ -1,11 +1,11 @@ ---- include/med_outils.h.orig Wed Nov 17 15:05:46 2004 -+++ include/med_outils.h Sat Jan 8 22:51:32 2005 -@@ -152,7 +152,7 @@ - #define MED_TAILLE_LIENS 7 +--- include/med_outils.h.orig 2011-07-28 15:11:41.000000000 +0200 ++++ include/med_outils.h 2011-12-26 19:27:12.000000000 +0100 +@@ -241,7 +241,7 @@ /*Pour eviter le bug solaris*/ + #ifndef __APPLE__ -#include <malloc.h> +#include <stdlib.h> + #endif /* Interface des routines du composant tools */ - #include <med_misc.h> diff --git a/french/med/files/patch-include_2.3.6_med_outils.h b/french/med/files/patch-include_2.3.6_med_outils.h new file mode 100644 index 000000000000..b5e5d4c5bdf1 --- /dev/null +++ b/french/med/files/patch-include_2.3.6_med_outils.h @@ -0,0 +1,11 @@ +--- include/2.3.6/med_outils.h.orig 2011-04-13 16:19:53.000000000 +0200 ++++ include/2.3.6/med_outils.h 2011-12-26 21:14:25.000000000 +0100 +@@ -157,7 +157,7 @@ + + /*Pour eviter le bug solaris*/ + #ifndef __APPLE__ +-#include <malloc.h> ++#include <stdlib.h> + #endif + + diff --git a/french/med/files/patch-src::ci::MEDunvCr.c b/french/med/files/patch-src::ci::MEDunvCr.c deleted file mode 100644 index 4312f999de4b..000000000000 --- a/french/med/files/patch-src::ci::MEDunvCr.c +++ /dev/null @@ -1,27 +0,0 @@ ---- ./src/ci/MEDunvCr.c.orig 2009-07-06 17:49:32.000000000 +0200 -+++ ./src/ci/MEDunvCr.c 2010-01-31 14:20:10.000000000 +0100 -@@ -50,6 +50,12 @@ - - #endif - -+#ifdef __FreeBSD__ -+#include <sys/types.h> -+#include <unistd.h> -+#include <pwd.h> -+#endif -+ - med_err - MEDunvCr(med_idt fid, char *maa) - { -@@ -100,7 +106,11 @@ - goto ERROR; - } - strcat(nomu,mypasswd->pw_name);*/ -+# ifdef __FreeBSD__ -+ if ( !getpwuid(geteuid()) ) { -+# else - if ( !cuserid(nomu) ) { -+# endif - MESSAGE("Impossible d'obtenir le nom de l'utilisateur effectif"); - goto ERROR; - } diff --git a/french/med/files/patch-src_2.3.6_ci_MEDunvCr.c b/french/med/files/patch-src_2.3.6_ci_MEDunvCr.c new file mode 100644 index 000000000000..ca4b1f4b1d74 --- /dev/null +++ b/french/med/files/patch-src_2.3.6_ci_MEDunvCr.c @@ -0,0 +1,15 @@ +--- ./src/2.3.6/ci/MEDunvCr.c.orig 2011-10-20 19:12:46.000000000 +0200 ++++ ./src/2.3.6/ci/MEDunvCr.c 2011-12-26 19:32:03.000000000 +0100 +@@ -55,6 +55,12 @@ + + #endif + ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#include <unistd.h> ++#include <pwd.h> ++#endif ++ + med_err + MEDunvCr(med_idt fid, char *maa) + { diff --git a/french/med/files/patch-tests_f_2.3.1_Makefile.am b/french/med/files/patch-tests_f_2.3.1_Makefile.am deleted file mode 100644 index e43c301f2aed..000000000000 --- a/french/med/files/patch-tests_f_2.3.1_Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ ---- tests/f/2.3.1/Makefile.am.orig 2007-12-17 18:44:05.000000000 +0100 -+++ tests/f/2.3.1/Makefile.am 2008-03-22 22:38:41.000000000 +0100 -@@ -9,7 +9,8 @@ - - if WITHF90 - --myTESTS_LEC = ../test5.sh ../test7.sh ../test9.sh \ -+# FreeBSD: test9.sh disabled because test8.med seems invalid -+myTESTS_LEC = ../test5.sh ../test7.sh \ - test11.sh ../test13.sh ../test15.sh ../test17.sh \ - ../test30.sh - diff --git a/french/med/files/patch-tests_f_2.3.1_Makefile.in b/french/med/files/patch-tests_f_2.3.1_Makefile.in deleted file mode 100644 index d0e052a4bb3e..000000000000 --- a/french/med/files/patch-tests_f_2.3.1_Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- tests/f/2.3.1/Makefile.in.orig 2008-02-08 15:21:54.000000000 +0100 -+++ tests/f/2.3.1/Makefile.in 2008-03-23 00:30:47.000000000 +0100 -@@ -221,7 +221,8 @@ - - AM_LDFLAGS = $(FTLDFLAGS) - AM_LIBTOOLFLAGS = --tag=F77 --@WITHF90_TRUE@myTESTS_LEC = ../test5.sh ../test7.sh ../test9.sh \ -+# FreeBSD: test9.sh disabled because test8.med seems invalid -+@WITHF90_TRUE@myTESTS_LEC = ../test5.sh ../test7.sh \ - @WITHF90_TRUE@ test11.sh ../test13.sh ../test15.sh ../test17.sh \ - @WITHF90_TRUE@ ../test30.sh - diff --git a/french/med/files/patch-tests_f_2.3.2_Makefile.am b/french/med/files/patch-tests_f_2.3.2_Makefile.am deleted file mode 100644 index e93dae71efbb..000000000000 --- a/french/med/files/patch-tests_f_2.3.2_Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ ---- tests/f/2.3.2/Makefile.am.orig 2007-12-18 12:34:30.000000000 +0100 -+++ tests/f/2.3.2/Makefile.am 2008-03-22 23:11:40.000000000 +0100 -@@ -9,7 +9,8 @@ - - if WITHF90 - --myTESTS_LEC = ../test5.sh ../test7.sh ../test9.sh \ -+# FreeBSD: test9.sh disabled because test8.med seems invalid -+myTESTS_LEC = ../test5.sh ../test7.sh \ - test11.sh ../test13.sh ../test15.sh ../test17.sh \ - ../test30.sh - diff --git a/french/med/files/patch-tests_f_2.3.2_Makefile.in b/french/med/files/patch-tests_f_2.3.2_Makefile.in deleted file mode 100644 index 42d55d91a41b..000000000000 --- a/french/med/files/patch-tests_f_2.3.2_Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- tests/f/2.3.2/Makefile.in.orig 2008-02-08 15:21:55.000000000 +0100 -+++ tests/f/2.3.2/Makefile.in 2008-03-23 00:32:04.000000000 +0100 -@@ -221,7 +221,8 @@ - - AM_LDFLAGS = $(FTLDFLAGS) - AM_LIBTOOLFLAGS = --tag=F77 --@WITHF90_TRUE@myTESTS_LEC = ../test5.sh ../test7.sh ../test9.sh \ -+# FreeBSD: test9.sh disabled because test8.med seems invalid -+@WITHF90_TRUE@myTESTS_LEC = ../test5.sh ../test7.sh \ - @WITHF90_TRUE@ test11.sh ../test13.sh ../test15.sh ../test17.sh \ - @WITHF90_TRUE@ ../test30.sh - diff --git a/french/med/files/patch-tests_f_Makefile.am b/french/med/files/patch-tests_f_Makefile.am deleted file mode 100644 index be649de47b5d..000000000000 --- a/french/med/files/patch-tests_f_Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ ---- tests/f/Makefile.am.orig 2007-12-17 18:44:03.000000000 +0100 -+++ tests/f/Makefile.am 2008-03-22 22:51:36.000000000 +0100 -@@ -19,7 +19,8 @@ - - mycheckPROGRAMS = test5 test7 test9 test11 test13 test15 test17 test30 - --myTESTS_LEC = test5.sh test7.sh test9.sh test11.sh test13.sh test15.sh test17.sh test30.sh -+# FreeBSD: test9.sh disabled because test8.med seems invalid -+myTESTS_LEC = test5.sh test7.sh test11.sh test13.sh test15.sh test17.sh test30.sh - - test5_SOURCES = test5.f90 - ##test5_LINK = $(LIBTOOL) --mode=link $(F90) $(AM_FFLAGS) \ diff --git a/french/med/files/patch-tests_f_Makefile.in b/french/med/files/patch-tests_f_Makefile.in deleted file mode 100644 index ea718b0b25b7..000000000000 --- a/french/med/files/patch-tests_f_Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- tests/f/Makefile.in.orig 2008-02-08 15:21:56.000000000 +0100 -+++ tests/f/Makefile.in 2008-03-23 00:29:37.000000000 +0100 -@@ -387,7 +387,8 @@ - AM_LIBTOOLFLAGS = --tag=F77 - testfdir = $(bindir)/testf - @WITHF90_TRUE@mycheckPROGRAMS = test5 test7 test9 test11 test13 test15 test17 test30 --@WITHF90_TRUE@myTESTS_LEC = test5.sh test7.sh test9.sh test11.sh test13.sh test15.sh test17.sh test30.sh -+# FreeBSD: test9.sh disabled because test8.med seems invalid -+@WITHF90_TRUE@myTESTS_LEC = test5.sh test7.sh test11.sh test13.sh test15.sh test17.sh test30.sh - @WITHF90_TRUE@test5_SOURCES = test5.f90 - @WITHF90_TRUE@test7_SOURCES = test7.f90 - @WITHF90_TRUE@test9_SOURCES = test9.f90 diff --git a/french/med/pkg-plist b/french/med/pkg-plist index 94aef3aa08cb..cab84f9f5caf 100644 --- a/french/med/pkg-plist +++ b/french/med/pkg-plist @@ -1,13 +1,25 @@ bin/mdump +bin/mdump3 bin/medconforme bin/medimport bin/xmdump +bin/xmdump3 +include/2.3.6/MEDerreur.hxx +include/2.3.6/med.h +include/2.3.6/med.hf +include/2.3.6/med23v30.h +include/2.3.6/med23v30_proto.h +include/2.3.6/medC_win_dll.h +include/2.3.6/med_exit_if.h +include/2.3.6/med_proto.h +include/2.3.6/med_utils.h include/MEDerreur.hxx include/MEDimport.h include/MEDimport.hxx include/med.h include/med.hf include/medC_win_dll.h +include/med_err.h include/med_exit_if.h include/med_proto.h include/med_utils.h @@ -16,17 +28,14 @@ include/medimportcxx_win_dll.h lib/libmed.a lib/libmed.la lib/libmed.so -lib/libmed.so.2 -lib/libmed2.settings +lib/libmed.so.4 +lib/libmed3.settings lib/libmedC.a lib/libmedC.la lib/libmedC.so -lib/libmedC.so.2 +lib/libmedC.so.4 lib/libmedimport.a lib/libmedimport.la lib/libmedimport.so -lib/libmedimport.so.0 -lib/libmedimportcxx.a -lib/libmedimportcxx.la -lib/libmedimportcxx.so -lib/libmedimportcxx.so.0 +lib/libmedimport.so.2 +@dirrm include/2.3.6 |