debian/0000755000000000000000000000000012176153107007171 5ustar debian/patches/0000755000000000000000000000000012110226075010611 5ustar debian/patches/config.patch0000644000000000000000000002437012110226075013105 0ustar --- a/ASTK_CLIENT/etc/astkrc/outils +++ b/ASTK_CLIENT/etc/astkrc/outils @@ -4,22 +4,22 @@ astkrc_version : 1.1 # nom : Eficas -cmde : ?TOOLS_DIR?/eficas (@F) +cmde : /usr/lib/codeaster/outils/eficasQt (@F) ext : comm com0 com1 com2 dist : on # nom : Gmsh -cmde : ?TOOLS_DIR?/gmsh (@F) +cmde : /usr/lib/codeaster/outils/gmsh (@F) ext : geo msh pos dist : on # nom : Gibi -cmde : ?TOOLS_DIR?/gibi.x (@F) +cmde : /usr/lib/codeaster/outils/gibi.x (@F) ext : datg dgibi dist : on # nom : Grace -cmde : ?TOOLS_DIR?/xmgrace (@F) +cmde : /usr/lib/codeaster/outils/xmgrace (@F) ext : dat dist : on # --- a/ASTK_CLIENT/bin/astk +++ b/ASTK_CLIENT/bin/astk @@ -1,4 +1,4 @@ -#!?SHELL_EXECUTION? +#!/bin/bash # ============================================================================== # COPYRIGHT (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG @@ -17,21 +17,10 @@ # 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. # ============================================================================== -set_prefix() { - local this=`readlink -n -f $1` - local bin=`dirname $this` - prefix=`dirname $bin` -} - -set_prefix $0 - -ASTER_ROOT=$prefix -ASTER_ETC=$ASTER_ROOT/etc -if [ "$ASTER_ROOT" = "/usr" ]; then +if [ -z "$ASTER_ETC" ]; then ASTER_ETC=/etc + export ASTER_ETC fi -export ASTER_ROOT -export ASTER_ETC # set environment if [ -f $ASTER_ETC/codeaster/profile.sh ]; then @@ -43,5 +32,5 @@ WISHEXECUTABLE=wish fi -$WISHEXECUTABLE $ASTER_ROOT/lib/astk/astk.tcl -- $* & +$WISHEXECUTABLE /usr/share/astk/astk.tcl -- $* & --- a/ASTK_SERV/etc/profile.csh +++ b/ASTK_SERV/etc/profile.csh @@ -14,37 +14,19 @@ if !($?ASTER_ROOT) then # from first installation - setenv ASTER_ROOT ?ASTER_ROOT? -endif -setenv ASTER_ETC $ASTER_ROOT/etc -if ( "X$ASTER_ROOT" == "X/usr" ) then - setenv ASTER_ETC /etc -endif - -if !($?PATH) then - setenv PATH $ASTER_ROOT/bin:$ASTER_ROOT/outils -else - setenv PATH $ASTER_ROOT/bin:$ASTER_ROOT/outils:$PATH + setenv ASTER_ROOT /usr/lib/codeaster + setenv PATH $ASTER_ROOT/bin:$ASTER_ROOT/outils:$PATH endif -if !($?LD_LIBRARY_PATH) then - setenv LD_LIBRARY_PATH ?HOME_PYTHON?/lib -else - setenv LD_LIBRARY_PATH ?HOME_PYTHON?/lib:$LD_LIBRARY_PATH +if (!$?ASTER_ETC) then + setenv ASTER_ETC /etc endif -if !($?PYTHONPATH) then - setenv PYTHONPATH ?ASRUN_SITE_PKG? -else - setenv PYTHONPATH ?ASRUN_SITE_PKG?:$PYTHONPATH -endif -setenv PYTHONEXECUTABLE ?PYTHON_EXE? +setenv PYTHONEXECUTABLE /usr/bin/python -# this should not be usefull... -#setenv PYTHONHOME ?HOME_PYTHON? -setenv WISHEXECUTABLE ?WISH_EXE? +setenv WISHEXECUTABLE /usr/bin/wish # source local profile --- a/ASTK_SERV/etc/asrun +++ b/ASTK_SERV/etc/asrun @@ -212,10 +212,10 @@ # mpirun # available arguments are : mpi_hostfile, mpi_nbnoeud, mpi_nbcpu # (use Python string formatting style) -mpirun_cmd : ?MPIRUN? -np %(mpi_nbcpu)s --hostfile %(mpi_hostfile)s %(program)s +mpirun_cmd : mpirun -np %(mpi_nbcpu)s --hostfile %(mpi_hostfile)s %(program)s # file which contains list of hosts (REQUIRED even if it is not used in mpirun_cmd) -mpi_hostfile : $ASTER_ETC/codeaster/mpi_hostfile +mpi_hostfile : /etc/codeaster/aster-mpihosts # command called to initialize MPI environment (for example for mpich2) #mpi_ini : mpdboot --totalnum=%(mpi_nbnoeud)s --file=%(mpi_hostfile)s ; sleep 10 @@ -229,7 +229,7 @@ # OpenMPI (1.3) : echo $OMPI_MCA_orte_ess_vpid # OpenMPI (1.34 : echo $OMPI_COMM_WORLD_RANK # Mpich2 : echo $PMI_RANK -mpi_get_procid_cmd : echo $PMI_RANK +mpi_get_procid_cmd : echo $OMPI_MCA_orte_ess_vpid # should heavily decrease the elapsed time copying the environment # for a lot of processors (but not yet very qualified, may fail) @@ -248,10 +248,10 @@ #------------------------------------------------------------------------------- # ps commands : uncomment lines corresponding to your platform -#ps_cpu : /bin/ps -e --width=512 -ocputime -ocommand -#ps_pid : /bin/ps -e --width=512 -opid -ocommand -ps_cpu : ?PS_COMMAND_CPU? -ps_pid : ?PS_COMMAND_PID? +ps_cpu : /bin/ps -e --width=512 -ocputime -ocommand +ps_pid : /bin/ps -e --width=512 -opid -ocommand +#ps_cpu : ?PS_COMMAND_CPU? +#ps_pid : ?PS_COMMAND_PID? #------------------------------------------------------------------------------- # debug command : @@ -261,13 +261,13 @@ # @d will be replaced by the string 'where ; quit' # @a will be replaced by the arguments of Code_Aster command line # -#cmd_post : gdb -batch --command=@D @E @C +cmd_post : gdb -batch --command=@D @E @C #cmd_dbg : gdb --command=@D @E -#cmd_dbg : ddd --debugger gdb --command=@D @E @C +cmd_dbg : ddd --debugger gdb --command=@D @E @C #cmd_dbg : idb -gui -gdb -command @D -exec @E #cmd_dbg : nemiver @E @a -cmd_post : ?DEBUGGER_COMMAND_POST? -cmd_dbg : ?DEBUGGER_COMMAND? +#cmd_post : ?DEBUGGER_COMMAND_POST? +#cmd_dbg : ?DEBUGGER_COMMAND? #------------------------------------------------------------------------------- # [OPTIONNAL] --- a/ASTK_SERV/etc/aster +++ b/ASTK_SERV/etc/aster @@ -3,7 +3,7 @@ # examples : NEW11, /usr/lib/codeaster/NEW11 # default version (overridden by --vers option) -default_vers : ?ASTER_VERSION? +default_vers : STA10.6 # available versions # DO NOT EDIT FOLLOWING LINE ! --- a/ASTK_CLIENT/bin/bsf +++ b/ASTK_CLIENT/bin/bsf @@ -1,4 +1,4 @@ -#!?SHELL_EXECUTION? +#!/bin/bash # ============================================================================== # COPYRIGHT (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG @@ -17,21 +17,10 @@ # 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. # ============================================================================== -set_prefix() { - local this=`readlink -n -f $1` - local bin=`dirname $this` - prefix=`dirname $bin` -} - -set_prefix $0 - -ASTER_ROOT=$prefix -ASTER_ETC=$ASTER_ROOT/etc -if [ "$ASTER_ROOT" = "/usr" ]; then +if [ -z "$ASTER_ETC" ]; then ASTER_ETC=/etc + export ASTER_ETC fi -export ASTER_ROOT -export ASTER_ETC # set environment if [ -f $ASTER_ETC/codeaster/profile.sh ]; then @@ -43,5 +32,5 @@ WISHEXECUTABLE=wish fi -$WISHEXECUTABLE $ASTER_ROOT/lib/astk/bsf.tcl -- $* & +$WISHEXECUTABLE /usr/share/astk/bsf.tcl -- $* & --- a/ASTK_SERV/etc/profile.sh +++ b/ASTK_SERV/etc/profile.sh @@ -13,14 +13,17 @@ #--- ifndef DEFINE_PROFILE_ASRUN ----------------------------------------------- if [ -z "$ASTER_ROOT" ]; then - [ -z "${BASH_SOURCE[0]}" ] && here=$0 || here=${BASH_SOURCE[0]} - ASTER_ROOT=`dirname $(dirname $(dirname $(readlink -f ${here})))` - export ASTER_ROOT + export ASTER_ROOT=/usr/lib/codeaster fi -ASTER_ETC=$ASTER_ROOT/etc -if [ "$ASTER_ROOT" = "/usr" ]; then + +if [ "$ASTER_ROOT" = "/usr/lib/codeaster" ]; then ASTER_ETC=/etc fi + +if [ -z "$ASTER_ETC" ]; then + ASTER_ETC=/etc +fi + export ASTER_ETC if [ -z "$PATH" ]; then @@ -29,24 +32,12 @@ export PATH=$ASTER_ROOT/bin:$ASTER_ROOT/outils:$PATH fi -if [ -z "$LD_LIBRARY_PATH" ]; then - export LD_LIBRARY_PATH=?HOME_PYTHON?/lib -else - export LD_LIBRARY_PATH=?HOME_PYTHON?/lib:$LD_LIBRARY_PATH -fi - -if [ -z "$PYTHONPATH" ]; then - export PYTHONPATH=?ASRUN_SITE_PKG? -else - export PYTHONPATH=?ASRUN_SITE_PKG?:$PYTHONPATH -fi - -export PYTHONEXECUTABLE=?PYTHON_EXE? +export PYTHONEXECUTABLE=/usr/bin/python # this should not be usefull... #export PYTHONHOME=?HOME_PYTHON? -export WISHEXECUTABLE=?WISH_EXE? +export WISHEXECUTABLE=/usr/bin/wish # source local profile --- a/ASTK_SERV/bin/as_run +++ b/ASTK_SERV/bin/as_run @@ -1,4 +1,4 @@ -#!?SHELL_EXECUTION? +#!/bin/bash # ============================================================================== # COPYRIGHT (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG @@ -17,21 +17,10 @@ # 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. # ============================================================================== -set_prefix() { - local this=`readlink -n -f $1` - local bin=`dirname $this` - prefix=`dirname $bin` -} - -set_prefix $0 - -ASTER_ROOT=$prefix -ASTER_ETC=$ASTER_ROOT/etc -if [ "$ASTER_ROOT" = "/usr" ]; then +if [ -z "$ASTER_ETC" ]; then ASTER_ETC=/etc + export ASTER_ETC fi -export ASTER_ROOT -export ASTER_ETC # set environment if [ -f $ASTER_ETC/codeaster/profile.sh ]; then --- a/ASTK_SERV/bin/auto_update.cron +++ b/ASTK_SERV/bin/auto_update.cron @@ -1,4 +1,4 @@ -#!?SHELL_EXECUTION? +#!/bin/bash # cron script to update (and build) Code_Aster versions @@ -27,6 +27,17 @@ # Code_Aster root directory + +if [ -z "$ASTER_ETC" ]; then + ASTER_ETC=/etc + export ASTER_ETC +fi + +# set environment +if [ -f $ASTER_ETC/codeaster/profile.sh ]; then + . $ASTER_ETC/codeaster/profile.sh +fi + set_prefix() { local here=`readlink -n -f $1` local bin=`dirname $here` @@ -80,7 +91,7 @@ ================================================================================ EOF - ${ASTER_ROOT}/bin/as_run --auto_update ${loc} \ + /usr/bin/as_run --auto_update ${loc} \ --report_to=${MAIL_DEST} \ --vers=${vers} \ >> ${LOG_FILE} 2>> ${ERR_FILE} @@ -97,7 +108,7 @@ ================================================================================ EOF - ${ASTER_ROOT}/bin/as_run --make \ + /usr/bin/as_run --make \ --report_to=${MAIL_DEST} \ --vers=${vers} \ >> ${LOG_FILE} 2>> ${ERR_FILE} --- a/ASTK_SERV/bin/parallel_cp +++ b/ASTK_SERV/bin/parallel_cp @@ -1,4 +1,4 @@ -#!?SHELL_EXECUTION? +#!/bin/bash # ============================================================================== # COPYRIGHT (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG @@ -17,21 +17,10 @@ # 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. # ============================================================================== -set_prefix() { - local this=`readlink -n -f $1` - local bin=`dirname $this` - prefix=`dirname $bin` -} - -set_prefix $0 - -ASTER_ROOT=$prefix -ASTER_ETC=$ASTER_ROOT/etc -if [ "$ASTER_ROOT" = "/usr" ]; then +if [ -z "$ASTER_ETC" ]; then ASTER_ETC=/etc + export ASTER_ETC fi -export ASTER_ROOT -export ASTER_ETC # set environment if [ -f $ASTER_ETC/codeaster/profile.sh ]; then debian/patches/debian-install.patch0000644000000000000000000001470512105176706014540 0ustar --- a/ASTK_SERV/asrun/maintenance.py +++ b/ASTK_SERV/asrun/maintenance.py @@ -798,13 +798,19 @@ subject = subject) elif target == 'clean': + destdir = run.get('destdir') + if not destdir: + destdir=REPREF + else: + destdir = destdir + REPREF + run.Mess(_(u'cleaning : %s') % destdir, 'TITLE') if len(param) == 0: l_clean = ['BIN_NODBG', 'BIN_DBG', 'BINCMDE', 'BINCMDE_ZIP', 'BINELE', 'BINPICKLED', 'BINLIB_NODBG', 'BINLIB_DBG', 'BINSHLIB_NODBG', 'BINSHLIB_DBG', 'BINLIBF_NODBG', 'BINLIBF_DBG', 'BINSHLIBF_NODBG', 'BINSHLIBF_DBG', 'BINOBJ_NODBG', 'BINOBJF_NODBG', 'BINOBJ_DBG', 'BINOBJF_DBG'] for key in l_clean: - ficrep = os.path.join(REPREF, conf[key][0]) + ficrep = os.path.join(destdir, conf[key][0]) if conf[key][0] != '': run.Delete(ficrep, verbose=True) remove_empty_dirs(REPREF) @@ -813,7 +819,7 @@ # source files lf = [] for ext in ('*.c', '*.f', '*.F'): - lf.extend(glob.glob(os.path.join(REPREF, dsrc, ext))) + lf.extend(glob.glob(os.path.join(destdir, dsrc, ext))) # object files lo = [os.path.splitext(os.path.basename(f))[0]+'.o' for f in lf] for dobj in ('BINOBJ_NODBG', 'BINOBJ_DBG'): @@ -851,6 +857,8 @@ debug_mode = [mod for mod in conf['MAKE'][0].split() if mod in ('debug', 'nodebug')] if not destdir: destdir = REPREF + else : + destdir = destdir+REPREF # ----- Initialize MPI_INFO object mpi_info = MPI_INFO(conf.get_defines()) @@ -899,11 +907,14 @@ if run.IsDir(libferm): libferm = os.path.join(libaster, 'ferm.lib') run.Mess(_(u'Start build in %s mode') % mode, 'TITLE') + run.Mess(_(u'destdir = %s') % destdir, 'TITLE') + run.Mess(_(u'REPPREF = %s') % REPREF, 'TITLE') # 1.2. compile updated files tit = _(u'Compilation in %s mode') % mode run.timer.Start(tit) - kret = build.CompilAster(REPREF, dbg=mode) + #kret = build.CompilAster(REPREF, dbg=mode) + kret = build.CompilAster(destdir, dbg=mode) run.timer.Stop(tit) run.CheckOK() @@ -911,13 +922,13 @@ # 1.3.1. obj or dbg tit = _(u'Add object files to library') run.timer.Start(tit) - kret = build.Archive(repobj=os.path.join(REPREF, DbgPara[mode]['suff']), + kret = build.Archive(repobj=os.path.join(destdir, DbgPara[mode]['suff']), lib=libaster) run.CheckOK() # 1.3.2. obj_f or dbg_f kret = build.Archive( - repobj=os.path.join(REPREF, DbgPara[mode]['suffer']), + repobj=os.path.join(destdir, DbgPara[mode]['suffer']), lib=libferm) run.CheckOK() run.timer.Stop(tit) @@ -936,7 +947,10 @@ # - required Python modules are present tit = _(u'Test executables') run.timer.Start(tit) - cmd = exec_name + ' -c ' + if not destdir : + cmd = exec_name + ' -c ' + else : + cmd = 'LD_LIBRARY_PATH='+ destdir + 'lib ' + exec_name + ' -c ' cpyt = ['import traceback'] cmd_import = """ print '%(cmd)s :', @@ -973,7 +987,7 @@ kargs['exe'] = os.path.join(destdir, DbgPara['debug']['exe']) tit = _(u'Compilation of commands catalogue') run.timer.Start(tit) - kret = build.CompilCapy(REPREF, reptrav, i18n=True, **kargs) + kret = build.CompilCapy(destdir, reptrav, i18n=True, **kargs) run.timer.Stop(tit) run.CheckOK() @@ -984,24 +998,17 @@ }) tit = _(u'Make pickled of elements') run.timer.Start(tit) - kret = build.MakePickled(REPREF, reptrav, repdest=destdir, **kargs) + kret = build.MakePickled(destdir, reptrav, repdest=destdir, **kargs) run.timer.Stop(tit) run.CheckOK() tit = _(u'Elements compilation') run.timer.Start(tit) - kret = build.CompilEle(REPREF, reptrav, **kargs) + kret = build.CompilEle(destdir, reptrav, **kargs) run.timer.Stop(tit) run.CheckOK() # 4. ----- copy of auxiliary files - if os.path.abspath(destdir) != os.path.abspath(REPREF): - lsrc = [os.path.join(REPREF, fsrc) for fsrc in [conf['SRCPY'][0], conf.get_filename()]] - run.Copy(destdir, *lsrc) - #XXX only works if the files are in REPREF - lsrc = [os.path.join(REPREF, fsrc) for fsrc in conf['ENV_SH'] \ - if fsrc == os.path.basename(fsrc)] - run.Copy(destdir, *lsrc) # 9. ----- end run.Mess(_(u'Code_Aster has been successfully built'), 'OK') @@ -1202,7 +1209,7 @@ run.Mess(_(u'Apply unigest directives'), 'TITLE') lardv = [] for f in lunig: - run.Delete(os.path.join(REPREF, f), verbose=True) + run.Delete(os.path.join(destdir, f), verbose=True) if re.search('^'+conf['SRCC'][0]+'/' + \ '|^'+conf['SRCFOR'][0]+'/' + \ '|^'+conf['SRCF90'][0]+'/', f): --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ data_files.extend(build_data_files(osp.join(confdir, "astkrc"), 'ASTK_CLIENT/etc/astkrc')) data_files.extend(build_data_files('lib/astk', 'ASTK_CLIENT/lib')) data_files.extend(build_data_files('share', 'ASTK_SERV/share')) - data_files.extend(build_data_files('share/codeaster/asrun/unittest', 'ASTK_SERV/unittest')) + data_files.extend(build_data_files('lib/codeaster/asrun/unittest', 'ASTK_SERV/unittest')) if sys.hexversion >= 0x020500F0: data_files.extend(build_data_files('share/locale', 'ASTK_SERV/i18n/locale')) --- a/ASTK_SERV/asrun/installation.py +++ b/ASTK_SERV/asrun/installation.py @@ -18,17 +18,14 @@ # directory for configuration files (profile.sh, config) # alternative to /etc/code_aster for non-root install -prefix = aster_root -if aster_root == '/usr': - prefix = '/' -confdir = osp.join(prefix, 'etc', 'codeaster') +confdir = os.path.join('/etc', 'codeaster') # confdir contains plugins directory if confdir not in sys.path: sys.path.append(confdir) # directory containing data files -datadir = osp.join(aster_root, 'share', 'codeaster', 'asrun', 'data') +datadir = osp.join('/usr', 'lib', 'codeaster', 'asrun', 'data') # directory for internationalization -localedir = osp.join(aster_root, 'share', 'locale') +localedir = osp.join('/usr', 'share', 'locale') debian/patches/onecore.patch0000644000000000000000000000133311436661337013302 0ustar Index: astk-1.8.1/ASTK_SERV/asrun/system.py =================================================================== --- astk-1.8.1.orig/ASTK_SERV/asrun/system.py 2010-07-21 09:57:06.000000000 +0200 +++ astk-1.8.1/ASTK_SERV/asrun/system.py 2010-07-21 09:57:12.000000000 +0200 @@ -814,7 +814,7 @@ iret, out = self.Shell('cat /proc/cpuinfo', mach, user) exp = re.compile('^processor\s+:\s+([0-9]+)', re.MULTILINE) l_ids = exp.findall(out) - if len(l_ids) > 1: # else: it should not ! + if len(l_ids) >= 1: # else: it should not ! num = max([int(i) for i in l_ids]) + 1 elif on_windows(): num = 1 debian/patches/series0000644000000000000000000000010611745216330012031 0ustar config.patch tcl_fixpath.patch debian-install.patch parallel_cp.patch debian/patches/tcl_fixpath.patch0000644000000000000000000001426112105176706014154 0ustar --- a/ASTK_CLIENT/lib/init_env.tcl +++ b/ASTK_CLIENT/lib/init_env.tcl @@ -132,7 +132,7 @@ set idexp [open $ftmp w] write_server_infos $idexp $serv close $idexp - set lcmd [file join $ashare::prefix "bin" as_run] + set lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --info --schema=[get_schema $serv info] $ftmp" append lcmd [ashare::get_glob_args] # on n'ajoute pas les protocoles en argument : --- a/ASTK_CLIENT/lib/aide.tcl +++ b/ASTK_CLIENT/lib/aide.tcl @@ -144,7 +144,7 @@ set idexp [open $ftmp w] write_server_infos $idexp $serv close $idexp - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --sendmail --schema=[get_schema $serv sendmail]" append [ashare::get_glob_args] append argu "--report_to=$astk::agla(mail_ata) " --- a/ASTK_CLIENT/lib/asjob_main.tcl +++ b/ASTK_CLIENT/lib/asjob_main.tcl @@ -244,7 +244,7 @@ puts $idexp "P noeud $noeud" close $idexp set retour -1 - append cmd [file join $ashare::prefix "bin" as_run] + append cmd [file join $ashare::prefix "usr/bin" as_run] append cmd " --proxy --del --schema=[get_schema $nsrv stop_del] $ftmp" append lcmd [ashare::get_glob_args] append cmd " --signal=KILL ; " @@ -306,7 +306,7 @@ set idexp [open $ftmp w] write_server_infos $idexp $nsrv close $idexp - set cmd [file join $ashare::prefix "bin" as_run] + set cmd [file join $ashare::prefix "usr/bin" as_run] append cmd [ashare::get_glob_args] append cmd " --proxy --purge_flash --schema=[get_schema $nsrv purge_flash] $ftmp" set id [array startsearch asjob::TextJobs] @@ -371,7 +371,7 @@ puts $idexp "P noeud $noeud" close $idexp set lcmd "" - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --del --schema=[get_schema $nsrv stop_del] $ftmp" append lcmd [ashare::get_glob_args] append lcmd " --signal=USR1" @@ -493,7 +493,7 @@ puts $idexp "P edit_type $type" close $idexp set lcmd "" - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --edit --schema=[get_schema $nsrv edit] $ftmp" if { $action == "output_html" } { append lcmd " --result_to_output" @@ -566,7 +566,7 @@ puts $idexp "P mode $mode" close $idexp set lcmd "" - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --get_results --schema=[get_schema $nsrv get_results]" append lcmd [ashare::get_glob_args] set argu "$ftmp" @@ -635,7 +635,7 @@ puts $idexp "P tail_regexp $expr_tail" close $idexp set lcmd "" - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --tail --schema=[get_schema $nsrv tail] $ftmp" append lcmd [ashare::get_glob_args] set retour [ashare::rexec_cmd -1 astk::config $lcmd "" 0 out $asjob::fen_root progress] --- a/ASTK_CLIENT/lib/convbase.tcl +++ b/ASTK_CLIENT/lib/convbase.tcl @@ -110,7 +110,7 @@ set lcmd "" set argu "" # profil - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --serv --schema=[get_schema $serv serv]" append lcmd [ashare::get_glob_args] if { [is_localhost_serv $serv_export] == 0 } { --- a/ASTK_CLIENT/lib/fichier.tcl +++ b/ASTK_CLIENT/lib/fichier.tcl @@ -320,7 +320,7 @@ write_server_infos $idexp $srv close $idexp # as_run --get_export testcase - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --get_export --schema=[get_schema $srv get_export] $ftmp" append lcmd " --vers=$astk::profil(version)" append lcmd " $tst" @@ -496,7 +496,7 @@ # prparation de la ligne de commande excuter set lcmd "" set argu "" - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --insert_in_db --schema=[get_schema $serv insert_in_db]" append lcmd [ashare::get_glob_args] append argu $astk::profil(nom_fich_export) --- a/ASTK_CLIENT/lib/i_serv.tcl +++ b/ASTK_CLIENT/lib/i_serv.tcl @@ -107,7 +107,7 @@ set lcmd "" set argu "" # as_exec fichier_export - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --serv --schema=[get_schema $serv serv]" append lcmd [ashare::get_glob_args] if { [is_localhost_serv $astk::profil(serv_fich_export)] == 0 } { --- a/ASTK_CLIENT/lib/ihm_outils.tcl +++ b/ASTK_CLIENT/lib/ihm_outils.tcl @@ -331,7 +331,7 @@ set argu "" # tool_stanley profil #XXX assert serv_export == -1 ! - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --serv --schema=[get_schema $serv serv]" append lcmd [ashare::get_glob_args] if { [is_localhost_serv $serv_export] == 0 } { --- a/ASTK_CLIENT/lib/ihm_rex.tcl +++ b/ASTK_CLIENT/lib/ihm_rex.tcl @@ -249,7 +249,7 @@ # prparation de la ligne de commande excuter set lcmd "" set argu "" - append lcmd [file join $ashare::prefix "bin" as_run] + append lcmd [file join $ashare::prefix "usr/bin" as_run] append lcmd " --proxy --create_issue --schema=[get_schema $serv create_issue]" append lcmd [ashare::get_glob_args] append argu $frex debian/patches/parallel_cp.patch0000644000000000000000000000070011745216330014113 0ustar --- a/ASTK_SERV/asrun/mpi.py +++ b/ASTK_SERV/asrun/mpi.py @@ -167,7 +167,7 @@ if run.get('use_parallel_cp') in YES_VALUES: cp_cmd = '%s --with-as_run %s %s' \ - % (osp.join(aster_root, 'bin', 'parallel_cp'), + % (osp.join(aster_root, 'bin', 'codeaster-parallel_cp'), " ".join(run.get_remote_args()), self.global_reptrav) elif self.nbnode() > 1: debian/source/0000755000000000000000000000000011436661337010500 5ustar debian/source/format0000644000000000000000000000001411436661337011706 0ustar 3.0 (quilt) debian/source/lintian-overrides0000644000000000000000000000023311436661337014057 0ustar # Lintian thinks uploader Adam Powell's name violates policy astk source: uploader-address-missing "Adam C. Powell astk source: uploader-not-full-name IV" debian/po/0000755000000000000000000000000012176153107007607 5ustar debian/po/templates.pot0000644000000000000000000000434312176153107012335 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: astk\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" debian/po/pt.po0000644000000000000000000000731412176153107010577 0ustar # Portuguese translation for astk's debconf messages # Copyright (C) 2010 THE ASTK'S COPYRIGHT HOLDER # This file is distributed under the same license as the astk package. # Miguel Figueiredo , 2010. # msgid "" msgstr "" "Project-Id-Version: astk\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-10 11:27+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" "Language: Portuguese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Portuguese\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "plataforma Aster:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr " Escolha a plataforma Aster." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Nome de domínio do servidor ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Por favor introduza o nome do domínio do servidor ao qual este cliente ASTK " "se deve ligar." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Nome da máquina do servidor ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Por favor introduza o nome da máquina (sem o nome de domínio) do servidor ao " "qual este cliente ASTK se deve ligar." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Nome do nó cliente ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Por favor introduza o nome público pelo qual este cliente será conhecido na " "rede. Tem de ser um nome único dentro do domínio." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Editor standard:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Por favor escolha a linha de comandos que o ASTK deve utilizar para lançar " "um editor." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Emulador de terminal standard:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Por favor escolha a linha de comandos que o ASTK deve utilizar para lançar " "uma janela de terminal." #~ msgid "ASTK server MPI implementation:" #~ msgstr "Implementação MPI do servidor ASTK:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Por favor escolha a implementação MPI utilizada pelo servidor ao qual " #~ "este cliente ASTK se deve ligar." #~ msgid "ASTK server bit width:" #~ msgstr "Quantidade de bits do servidor ASTK:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Por favor escolha a quantidade de bits do servidor ao qual este cliente " #~ "ASTK se deve ligar." #~ msgid "string" #~ msgstr "string" debian/po/da.po0000644000000000000000000000702512176153107010537 0ustar # Danish translation astk. # Copyright (C) 2010 astk & nedenstående oversættere. # This file is distributed under the same license as the astk package. # Joe Hansen , 2010. # msgid "" msgstr "" "Project-Id-Version: astk\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-10 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Aasterplatform:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr " Vælg Asterplatform." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "ASTK-serverdomænenavn:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Indtast venligst domænenavnet på serveren som denne ASTK-klient skal " "forbinde til." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "ASTK-serverværtsnavn:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Indtast venligst værtsnavnet (uden domænenavn) på serveren som denne ASTK-" "klient skal forbinde til." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "ASTK-klientknudenavn:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Indtast venligst det offentlige navn som denne klient vil blive kendt som på " "netværket. Det skal være et unikt navn indenfor domænet." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Standardredigering:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Vælg venligst kommandolinjen som ASTK skal bruge til at starte en redigering." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Standardterminalemulator:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Vælg venligst kommandolinjen som ASTK skal bruge til at starte et " "terminalvindue." #~ msgid "ASTK server MPI implementation:" #~ msgstr "ASTK-server MPI-implementation:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Vælg venligst MPI-implementationen brugt af serveren som denne ASTK-" #~ "klient skal forbinde til." #~ msgid "ASTK server bit width:" #~ msgstr "ASTK-serverbitbredde:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Vælg venligst bitbredden på serveren som denne ASTK-klient skal forbinde " #~ "til." #~ msgid "string" #~ msgstr "streng" debian/po/cs.po0000644000000000000000000000712112176153107010555 0ustar # Czech PO debconf template translation of astk. # Copyright (C) 2010 Michal Simunek # This file is distributed under the same license as the astk package. # Michal Simunek , 2010. # msgid "" msgstr "" "Project-Id-Version: astk 1.8.0-2\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-12 15:02+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Aster platforma:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Vyberte Aster platformu." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Doména ASTK serveru:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Zadejte prosím doménu serveru, ke kterému se má tento ASTK klient připojit." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Název hostitele ASTK serveru:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Zadejte prosím název hostitele serveru (bez domény), ke kterému se má tento " "ASTK klient připojit." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Název ASTK klientského uzlu:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Zadejte prosím veřejný název, pod kterým bude tento klient na síti " "vystupovat. Název musí být v doméně jedinečný." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Standardní editor" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "Vyberte prosím příkaz, který má ASTK použít ke spuštění editoru." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Standardní emulátor terminálu:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Vyberte prosím příkaz, který má ASTK použít ke spuštění okna terminálu." #~ msgid "ASTK server MPI implementation:" #~ msgstr "MPI implementace na ASTK serveru:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Vyberte prosím MPI implementaci používanou na serveru, ke kterému se má " #~ "tento ASTK klient připojit." #~ msgid "ASTK server bit width:" #~ msgstr "Bitová šířka ASTK serveru:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Vyberte prosím bitovou šířku serveru, ke kterému se má tento ASTK klient " #~ "připojit." #~ msgid "string" #~ msgstr "řetězec" debian/po/ru.po0000644000000000000000000001054112176153107010576 0ustar # translation of ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2010. msgid "" msgstr "" "Project-Id-Version: astk 1.8.0-2\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-09 18:54+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Платформа Aster:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Выберите платформу Aster." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Доменное имя сервера ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Введите доменное имя сервера, к которому должен подключаться данный клиент " "ASTK." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Имя узла сервера ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Введите имя узла (без доменного имени) сервера, к которому должен " "подключаться данный клиент ASTK." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Имя клиентского узла ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Введите общедоступное имя, под которым будет известен данный клиент в сети. " "Оно должно быть уникальным внутри домена." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Стандартный редактор:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Введите командную строку, которую ASTK должен использовать для запуска " "редактора." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Стандартный эмулятор терминала:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Введите командную строку, которую ASTK должен использовать для запуска окна " "терминала." #~ msgid "ASTK server MPI implementation:" #~ msgstr "Реализация MPI на сервере ASTK:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Укажите реализацию MPI, используемую на сервере, к которому будет " #~ "подключаться данный клиент ASTK." #~ msgid "ASTK server bit width:" #~ msgstr "Битовая ширина сервера ASTK:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Укажите битовую ширину сервера, будет подключаться данный клиент ASTK." #~ msgid "string" #~ msgstr "строка" debian/po/es.po0000644000000000000000000001072712176153107010565 0ustar # astk po-debconf translation to Spanish # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the astk package. # # Changes: # - Initial translation # Camaleón , 2010 # # - Updates # # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: astk_1.8.0-1\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-08-03 20:11+0100\n" "Last-Translator: Camaleón \n" "Language-Team: Debian Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Spanish\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Plataforma Aster:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Seleccione la plataforma Aster." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Nombre de dominio del servidor ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Por favor, introduzca el nombre de dominio del servidor al que se debe " "conectar este cliente ASTK." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Nombre del equipo del servidor ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Por favor, introduzca el nombre del equipo (sin el nombre de dominio) del " "servidor al que se debe conectar este cliente ASTK." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Nombre del nodo del cliente ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Por favor, introduzca el nombre público que se utilizará para este cliente " "en la red. Tiene que ser un nombre único dentro del dominio." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Editor estándar:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Por favor, introduzca la línea de órdenes que debe utilizar ASTK para " "iniciar el editor." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Emulador de terminal estándar:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Por favor, introduzca la línea de órdenes que debe utilizar ASTK para " "iniciar la ventana de terminal." #~ msgid "ASTK server MPI implementation:" #~ msgstr "Implementación MPI del servidor ASTK:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Por favor, seleccione la implementación MPI del servidor al que se debe " #~ "conectar este cliente ASTK." #~ msgid "ASTK server bit width:" #~ msgstr "Amplitud de bits del servidor ASTK:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Por favor, seleccione la amplitud de bits del servidor al que se debe " #~ "conectar este cliente ASTK." #~ msgid "string" #~ msgstr "Cadena" debian/po/fr.po0000644000000000000000000000716512176153107010567 0ustar # Translation of astk debconf templates to French # Copyright (C) 2010 Debian French l10n team # This file is distributed under the same license as the astk package. # # Julien Patriarca, 2010 msgid "" msgstr "" "Project-Id-Version: astk\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-13 20:01+0100\n" "Last-Translator: Julien Patriarca \n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Plateforme Aster :" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Veuillez choisir la plateforme Aster." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Nom de domaine du serveur ASTK :" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Veuillez indiquer le nom de domaine du serveur auquel ce client ASTK doit se " "connecter." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Nom d'hôte du serveur ASTK :" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Veuillez indiquer le nom d'hôte (sans le nom de domaine) du serveur auquel " "ce client ASTK doit se connecter." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Nom de nœud du client ASTK :" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Veuillez indiquer le nom public par lequel ce client sera vu sur le réseau. " "Cela doit être un nom unique au sein du domaine." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Éditeur standard :" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Veuillez choisir la ligne de commande que ASTK doit utiliser pour démarrer " "l'éditeur." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Émulateur de terminal standard :" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Veuillez choisir la ligne de commande que ASTK doit utiliser pour ouvrir un " "terminal." #~ msgid "ASTK server MPI implementation:" #~ msgstr "Version MPI du serveur ASTK :" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Veuillez choisir la version MPI utilisée par le serveur auquel ce client " #~ "ASTK doit se connecter." #~ msgid "ASTK server bit width:" #~ msgstr "Largeur d'octet du serveur ASTK :" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Veuillez choisir la largeur d'octet du serveur auquel ce client ASTK doit " #~ "se connecter." debian/po/de.po0000644000000000000000000000725712176153107010552 0ustar # German translation of astk. # Copyright (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG. # This file is distributed under the same license as the astk package. # Chris Leick , 2010. # msgid "" msgstr "" "Project-Id-Version: astk 1.8.0-1\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-17 21:40+0200\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Aster-Plattform:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Wählen Sie die Aster-Plattform aus." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "ASTK-Server-Domain-Name:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Bitte geben Sie den Domain-Namen des Servers ein, mit dem sich dieser ASTK-" "Client verbinden soll." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "ASTK-Server-Rechnername:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Bitte geben Sie den Rechnernamen (ohne Domain-Name) des Servers an, mit dem " "sich dieser ASTK-Client verbinden soll." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "ASTK-Client-Knoten-Name:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Bitte geben Sie den öffentlichen Namen an, unter dem dieser Client im " "Netzwerk sichtbar sein wird. Es muss ein Name sein, der innerhalb der Domain " "einmalig ist." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Standard-Editor:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Bitte wählen Sie die Befehlszeile, die ASTK benutzen soll, um einen Editor " "zu starten." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Standard-Terminal-Emulator:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Bitte wählen Sie die Befehlszeile, die ASTK benutzen soll, um ein Terminal-" "Fenster zu starten." #~ msgid "ASTK server MPI implementation:" #~ msgstr "ASTK-Server-MPI-Implementierung:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Bitte wählen Sie die MPI-Implementierung, die der Server benutzt, mit dem " #~ "sich dieser ASTK-Client verbinden soll." #~ msgid "ASTK server bit width:" #~ msgstr "ASTK-Server-Bit-Breite:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Bitte wählen Sie die Bit-Breite des Servers, mit dem sich dieser ASTK-" #~ "Client verbinden soll." #~ msgid "string" #~ msgstr "Zeichenkette" debian/po/sv.po0000644000000000000000000000703212176153107010601 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: ASTK\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2011-01-11 15:33+0100\n" "Last-Translator: Martin Bagge / brother \n" "Language-Team: Swedish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Asterplattform:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Välj Asterplattform:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Domännamn för ASTK-server:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "Ange domännamnet för servern som denna ASTK-klient ska ansluta till." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Värdnamn för ASTK-server:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Ange värdnamnet (utan domännamnsdelen) för servern som denna ASTK-klient ska " "ansluta till." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Nodnamn för ASTK-klient:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Ange det publika namnet som denna klient kommer att vara känd under i " "nätverket. Det måste vara ett unikt namn inom domänen." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Förvald editor:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "Ange kommandoraden som ASTK ska använda för att starta en editor." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Förvald terminalemulator:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Ange kommandoraden som ASTK ska använda för att starta ett terminalfönster." #~ msgid "ASTK server MPI implementation:" #~ msgstr "MPI-implementation på ASTK-servern:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Ange vilken MPI-implementation som används av servern som denna ASTK-" #~ "klient ska ansluta till." #~ msgid "ASTK server bit width:" #~ msgstr "Bitbredd för ASTK-servern:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "Ange bitbredden för servern som denna ASTK-klient ska ansluta till." #~ msgid "string" #~ msgstr "str??ng" debian/po/POTFILES.in0000644000000000000000000000006311436705676011377 0ustar [type: gettext/rfc822deb] code-aster-gui.templates debian/po/zh_CN.po0000644000000000000000000000661312176153107011156 0ustar # Chinese translations for PACKAGE package # PACKAGE 软件包的简体中文翻译. # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # YunQiang Su , 2010. # msgid "" msgstr "" "Project-Id-Version: astk 1.8.0-2\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-06-09 23:17+0800\n" "Last-Translator: YunQiang Su \n" "Language-Team: Chinese (simplified) <>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Aster 平台" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "选择 Aster 平台。" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "ASTK 服务器域名" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "请输入这个 ASTK 客户端需要连接到的服务器的域名。" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "ASTK 服务器域名:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "请输入这个 ASTK 客户端要连接到的服务器的主机名(不带域名)。" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "ASTK 客户端结点名:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "请输入本客户端在网络上所周知的公共名。这必须是域内独有的名称。" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "标准编辑器:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "请选择可以让 ASTK 启动一个文本编辑器的命令。" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "标准终端模拟器:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "请选择可以让 ASTK 启动一个终端窗口的命令。" #~ msgid "ASTK server MPI implementation:" #~ msgstr "ASTK 服务器 MPI 实现" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "请选择这个ASTK 客户端要连接到的服务所使用的 MPI 实现。" #~ msgid "ASTK server bit width:" #~ msgstr "ASTK 服务器位宽:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "请选择这个 ASTK 要连接到的服务器的位宽。" #~ msgid "string" #~ msgstr "字符串" debian/po/ja.po0000644000000000000000000000731112176153107010543 0ustar # Copyright (C) 2010 Nobuhiro Iwamatsu # This file is distributed under the 2-clause BSD license. # Nobuhiro Iwamatsu , 2010. # msgid "" msgstr "" "Project-Id-Version: astk_1.8.3-1\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2010-11-05 04:27+0900\n" "Last-Translator: Nobuhiro Iwamatsu \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Aster プラットホーム:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Aster プラットホームを選択します。" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "ASTK サーバドメイン名:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "ASTK クライアントが接続するサーバーのドメイン名を入力してください。" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "ASTK サーバホスト名:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "ASTK クライアントが接続するサーバのホスト名 (ドメイン名なしで) を入力してくだ" "さい。" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "ASTK クライアントノード名:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "クライアントがネットワーク上で名乗っている公開名を入力してください。それはド" "メイン内で一意な名前でないといけません。" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "標準のエディタ:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "ASTK がエディタを起動するために利用するコマンドラインを選んでください。" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "標準のターミナルエミュレータ:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "ASTK がターミナルウィンドウを起動するために利用するコマンドラインを選んでくだ" "さい。" #~ msgid "ASTK server MPI implementation:" #~ msgstr "ASTK サーバの MPI 実装:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "ASTK クライアントが接続するサーバーで利用される MPI 実装を選んでください。" #~ msgid "ASTK server bit width:" #~ msgstr "ASTK サーバのビット幅:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "ASTK クライアントが接続するサーバーのビット幅を選んでください。" debian/po/it.po0000644000000000000000000000722712176153107010573 0ustar # Italian translation of astk debconf messages. # Copyright (C) 2012, astk package copyright holder # This file is distributed under the same license as the astk package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: astk\n" "Report-Msgid-Bugs-To: astk@packages.debian.org\n" "POT-Creation-Date: 2013-07-31 09:17+0000\n" "PO-Revision-Date: 2012-05-21 20:27+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Aster platform:" msgstr "Piattaforma Aster:" #. Type: select #. Description #: ../code-aster-gui.templates:2001 msgid "Select Aster platform." msgstr "Selezionare la piattaforma Aster." #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "ASTK server domain name:" msgstr "Nome di dominio del server ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:3001 msgid "" "Please enter the domain name of the server that this ASTK client should " "connect to." msgstr "" "Inserire il nome di dominio del server a cui si deve connettere questo " "client ASTK." #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "ASTK server host name:" msgstr "Nome host del server ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:4001 msgid "" "Please enter the host name (without domain name) of the server that this " "ASTK client should connect to." msgstr "" "Inserire il nome host (senza nome di dominio) del server a cui si deve " "connettere questo client ASTK." #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "ASTK client node name:" msgstr "Nome del nodo del client ASTK:" #. Type: string #. Description #: ../code-aster-gui.templates:5001 msgid "" "Please enter the public name by which this client will be known on the " "network. It must be a unique name within the domain." msgstr "" "Inserire il nome pubblico con sui sarà conosciuto nella rete questo client. " "Deve essere un nome univoco all'interno del dominio." #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "Standard editor:" msgstr "Editor standard:" #. Type: select #. Description #: ../code-aster-gui.templates:6001 msgid "" "Please select the command line that ASTK should use to launch an editor." msgstr "" "Selezionare la riga di comando che ASTK deve usare per avviare un editor." #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "Standard terminal emulator:" msgstr "Emulatore di terminale standard:" #. Type: select #. Description #: ../code-aster-gui.templates:7001 msgid "" "Please select the command line that ASTK should use to launch a terminal " "window." msgstr "" "Selezionare la riga di comando che ASTK deve usare per avviare una finestra " "di terminale." #~ msgid "ASTK server MPI implementation:" #~ msgstr "Implementazione MPI del server ASTK:" #~ msgid "" #~ "Please select the MPI implementation used by the server that this ASTK " #~ "client should connect to." #~ msgstr "" #~ "Selezionare l'implementazione MPI usata dal server a cui si deve " #~ "connettere questo client ASTK." #~ msgid "ASTK server bit width:" #~ msgstr "Larghezza in bit del server ASTK:" #~ msgid "" #~ "Please select the bit width of the server that this ASTK client should " #~ "connect to." #~ msgstr "" #~ "Selezionare la larghezza in bit del server a cui si deve connettere " #~ "questo client ASTK." debian/changelog0000644000000000000000000001752612176152762011064 0ustar astk (1.13.1-1) unstable; urgency=low [ Andrea Palazzi ] * Updated to upstream version 1.13.1 (Code Aster 11.4) * Removed duplicate Section: parts from control file * fixed code-aster-run.postrm script to remove /etc/codeaster/aster file (closes: #704542) * fixed possible bug in code-aster-run.postinst script not creating the /etc/codeaster directory [ Sylvestre Ledru ] * Standards-Version updated to 3.9.4 -- Andrea Palazzi Fri, 12 Jul 2013 11:09:47 +0200 astk (1.11.0-2) unstable; urgency=low * Added script update-codeaster-engines to create the aster config file * Now the file /etc/codeaster/aster is installed in a minimal version by code-aster-run.postinst (Closes: #670567) * Fixed some errors introduced previously in patch config.patch when it was updated for astk 1.11.0 -- Andrea Palazzi Sat, 26 Feb 2013 09:35:32 +0100 astk (1.11.0-1) unstable; urgency=low * Updated to version 1.11.0 * Removed unnecessary build-deps on gmsh, garce and eficas [ Christophe Trophime ] * code-aster-run : Depends on code-aster-gui (closes: #681750) -- Andrea Palazzi Mon, 31 Dec 2012 14:31:43 +0100 astk (1.10.4-4) unstable; urgency=low * debian/control: - Remove dpkg-dev, gcc from code-aster-gui Depends * fix code-aster-gui.config (closes: #679589) * postrm files remove unowned files (closes: #679689) -- Christophe Trophime Sat, 30 Jun 2012 14:44:09 +0200 astk (1.10.4-3) unstable; urgency=low * debian/rules: - switch to dh_python2 - use debhelper instead of cdbs * debian/control: remove quilt * debian/code-aster-gui.install - remove codeaster-gui installed with dh_link [Julien Cristau] * Fix postinst and postrm scripts (Closes: #670293) * Add code-aster-run.templates * Add code-aster-run.config * Install configfiles in usr/share/codeaster -- Christophe Trophime Tue, 26 Jun 2012 16:01:42 +0200 astk (1.10.4-2) unstable; urgency=low [Beatrice Torracca] * Add Italian translation of astk debconf messages (Closes: #677646) * Fix postinst and postrm scripts (Closes: #670293) -- Christophe Trophime Sun, 17 Jun 2012 10:17:59 +0200 astk (1.10.4-1) unstable; urgency=low * New upstream release * debian/rules: simply install targets - add debian/codeaster-run.install - add debian/codeaster-gui.install * debian/control: add tkpg to Depends * Add tcl_fixpath.patch to fix as_run path in tcl scripts * Add README.Debian [ Andrea Palazzi ] * Fixed get-orig-source target in debian/rules * Fix "code-aster-mpi-engine: symbolic link needed for parallel_cp" Added quilt patch to call codeaster-parallel_cp instead of the original parallel_cp (Closes: #669931) -- Christophe Trophime Mon, 23 Apr 2012 10:08:56 +0200 astk (1.8.4-5) unstable; urgency=low [Andrea Palazzi] * debian/patches/config.patch fix wrong /etc/codeaster/asrun for OpenMPI * add /etc/codeaster/aster-mpihosts needed for building code-aster * Rename get, getop and parralel_cp (Closes: #626353) * debian/control: update maintainers emails -- Christophe Trophime Tue, 06 Dec 2011 11:30:02 +0200 astk (1.8.4-4) unstable; urgency=low * move mpirun_template to usr/lib/codeaster/asrun/data (closes: #627540) * fix lintian errors and warnings * add codeaster-run.lintian-overrides -- Christophe Trophime Mon, 20 Jun 2011 17:56:34 +0200 astk (1.8.4-3) unstable; urgency=low * Standards-Version updated to version 3.9.2 [ Christophe Trophime ] * debian/rules: add mpirun_template to code-aster-run (Closes: #627540) -- Sylvestre Ledru Tue, 07 Jun 2011 20:28:03 +0200 astk (1.8.4-2) unstable; urgency=low * debian/rules: correct get-orig-source target -- Christophe Trophime Fri, 14 Jan 2011 10:35:43 +0100 astk (1.8.4-1) unstable; urgency=low [Martin Bagge / brother] * Debconf translation updates Swedish [Andre Espaze] * New upstream version * debian/rules: moving asrun Python package to code-aster-run -- Christophe Trophime Tue, 11 Jan 2011 15:43:53 +0100 astk (1.8.3-2) unstable; urgency=low * [Debconf translation updates] - Japanese (Nobuhiro Iwamatsu). Closes: #602465 * debian/control: add dpkg-dev deps (Closes: #603687) -- Christophe Trophime Tue, 16 Nov 2010 13:27:14 +0100 astk (1.8.3-1) unstable; urgency=low * New upstream version * Remove debug -x flag from postinst and post rm scripts * debian/rules : correct get-orig-source (update spip id) add a symlink to /usr/bin/as_run in $ASTER_ROOT/bin in code-aster-run do not install manpage for show (Closes: #581915) * Add directory $ASTER_ROOT/outils * Add links to gmsh, grace, eficasQt to $ASTER_ROOT/outils * debian/control : Add gmsh, grace, eficas to BuildDepends Add astk-server to Replaces/conflicts Closes: #596660 [Andre Espaze] * remove onecore.patch * update debian-install.patch to latest version -- Christophe Trophime Thu, 30 Sep 2010 10:43:38 +0200 astk (1.8.1-2) unstable; urgency=low * Added source lintian overrides about Adam Powell's name. * Add debian-install.patch to fix installation paths * Change ASTER_ROOT to /usr/lib/codeaster * debian/control: Rename astk : code-aster-gui Rename astk-server : code-aster-run -- Christophe Trophime Mon, 30 Aug 2010 08:38:39 +0200 astk (1.8.1-1) unstable; urgency=low * New upstream version * Bump Standards-Version: to 3.9.1. (No changes needed.) * Added source lintian overrides about Adam Powell's name. * Complete postinst configuration [Christian Perrier] * Non-maintainer upload to fix pending l10n issues * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #584616 * [Debconf translation updates] - Swedish (Martin Bagge / brother). Closes: #585112 - Russian (Yuri Kozlov). Closes: #585150 - Simplified Chinese (YunQiang Su). Closes: #585151 - Danish (Joe Hansen). Closes: #585486 - Czech (Michal Simunek). Closes: #585630 - French (Julien Patriarca). Closes: #586097 - German (Chris Leick). Closes: #586282 - Portuguese (Miguel Figueiredo). Closes: #586979 - Spanish (Camaleón). Closes: #591507 -- Christophe Trophime Mon, 16 Aug 2010 15:45:48 +0200 astk (1.8.0-2) unstable; urgency=low * debian/rules: do not install show.1.gz (Closes: #581915) * debian/rules: do not install /etc/.mysql_connect_REX [Christian Perrier] * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #584616 * [Debconf translation updates] * Swedish (Martin Bagge / brother). Closes: #585112 * Russian (Yuri Kozlov). Closes: #585150 * Simplified Chinese (YunQiang Su). Closes: #585151 * Danish (Joe Hansen). Closes: #585486 * Czech (Michal Simunek). Closes: #585630 * French (Julien Patriarca). Closes: #586097 * German (Chris Leick). Closes: #586282 * Portuguese (Miguel Figueiredo). Closes: #586979 -- Christophe Trophime Thu, 01 Jul 2010 14:48:52 +0200 astk (1.8.0-1) unstable; urgency=low [ Adam C. Powell, IV ] * First package (Closes: #467085) [ Christophe Trophime ] * Update of the package to a more recent version -- Christophe Trophime Sun, 25 Apr 2010 16:43:13 +0200 debian/show.10000644000000000000000000000075411436712511010237 0ustar .\" In .TH, FOO should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .\" .\" This template provided by Tom Christiansen . .\" .TH SHOW "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME show \- symbolic link to \fBas_run\fB command .SH DESCRIPTION .BR show is a symbolic link to \fBas_run\fB .SH SEE ALSO For more details consult .BR as_run(1) .SH AUTHOR The Debian Scientific Computing Team debian/control0000644000000000000000000000333312176152722010600 0ustar Source: astk Section: science Priority: extra Maintainer: Debian Science Team Uploaders: Christophe Trophime , "Adam C. Powell, IV" , Andrea Palazzi Standards-Version: 3.9.4 Build-Depends: debhelper (>= 8), python-all (>= 2.6.6-3~), po-debconf X-Python-Version: all Homepage: http://www.code-aster.org/ Vcs-Svn: svn://svn.debian.org/svn/debian-science/packages/code-aster/astk/ Vcs-Browser: http://svn.debian.org/viewsvn/debian-science/packages/code-aster/astk/ Package: code-aster-gui Architecture: all Depends: tk8.5 | wish, tcl8.5 | tclsh, tkpng, debconf (>= 1.5.30), ${misc:Depends} Recommends: code-aster-run Replaces: astk, astk-server Conflicts: astk, astk-server Suggests: eficas, gmsh, grace, nedit, ddd Description: Graphical user interface for Code_Aster - client Code_Aster is the finite element PDE solver used by the French nuclear industry. code-aster-gui provides a Tcl front end to its Python build and control systems. . This package contains the code-aster-gui client, which needs to connect to a locally or remotely installed server (in the package "code-aster-run"). Package: code-aster-run Architecture: all Depends: ${python:Depends}, python-numpy, debconf (>= 1.5.30), ${misc:Depends}, code-aster-gui Replaces: astk, astk-server Conflicts: astk, astk-server Suggests: emacs, gdb, ddd Description: Graphical user interface for Code_Aster - server Code_Aster is the finite element PDE solver used by the French nuclear industry. code-aster-run provides a Tcl front end to its Python build and control systems. . This package contains the code-aster-run server, which runs Aster code. debian/compat0000644000000000000000000000000212036604011010355 0ustar 8 debian/as_run.10000644000000000000000000002074211436676662010565 0ustar .\" In .TH, FOO should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .\" .\" This template provided by Tom Christiansen . .\" .TH AS_RUN "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME as_run \- as_run command .SH SYNOPSIS A short usage summary. .PP .B as_run .I action [ .I options ] [ .I arguments ] .SH DESCRIPTION This manual page documents briefly the .BR as_run command .PP .SH FUNCTIONS .TP .B as_run \-\-getop [\fIoptions\fB] \fIcommande\fB[\fI.capy\fB] Return the main subroutine of a code_aster command .TP .B as_run \-\-getversion [\fIoptions\fB\fB] - Return current release number of the development version .TP .B as_run \-\-get [\fIoptions\fB] \fIobj1\fB [\fIobj2...\fB] Copy a source file in current directory .TP .B as_run \-\-show [\fIoptions\fB] \fIobj1\fB [\fIobj2...\fB] Show a source file : fortran, c, python, capy, cata, histor or test .TP .B as_run \-\-diff [\fIoptions\fB] \fIobj1\fB [\fIobj2...\fB] Show the diff of a source file : fortran, c, python, capy, cata or test .TP .B as_run \-\-get_export \fItestcase_name Build an export file to run a testcase and print it to stdout .TP .B as_run \-\-make [\-\-vers\fr=\fIVERS\fB] [\fItarget\fB] Build a code_aster version (executable, libraries, catalogues). \fItarget\fR may be all or clean .TP .B as_run \-\-update [\fIoptions\fB] \fIfich1.tar.gz\fB [\fIfich2.tar.gz...\fB] Perform one or several updates of a development version .TP .B as_run \-\-auto_update [\-\-vers\fr=\fI...\fB] [\-\-force_upgrade\fB] [\-\-keep_increment\fB] [\fIother options\fB] Download available updates from a server and apply them to the current development version .TP .B as_run \-\-astk_update [\fIoptions\fB] Download available updates from a server and update astk/as_run itself .TP .B as_run \-\-diag [\-\-astest_dir\fr=\fIDIR1,[\fIDIR2\fB]\fB] [\-\-test_list\fr=\fILIST\fB] [\-\-only_nook\fB] [\fIdiag_result.pick\fB] Build the diagnosis of code_aster testcases (from dir or default astest directory) and write a pickled file of the result. .TP .B as_run \-\-list [\-\-all\fB] [\-\-test_list\fr=\fIFILE\fB] [\-\-filter\fr=\fI...\fB] [\-\-command\fr=\fI...\fB] [\-\-user_filter\fr=\fI...\fB] [\fItest1 [\fItest2 ..\fB]\fB] Build a list of testcases using a list of command/keywords and/or verifying some criterias about cputime or memory. .TP .B as_run \-\-ctags [\-\-vers\fr=\fIVERS\fB] Build ctags file .TP .B as_run \-\-messages \fIsubroutine\fR | \fImessage_number\fR | \fIcheck\fR [\-\-fort\fr=\fI...\fB] [\-\-python\fr=\fI...\fB] [\-\-unigest\fr=\fI...\fB] | move old_msgid new_msgid Operation on code_aster messages catalogues. \fIsubroutine\fR returns messages called by "subroutine". \fImessage_number\fR returns subroutines calling this message. \fIcheck\fR returns check messages catalogues and print some stats. \fImove\fR a message from a catalogue to another and produce new catalogues and new source files. .TP .B as_run \-\-sendmail [\-\-report_to\fr=\fIEMAIL1,EMAIL2\fB] \fIfilename Send the content of \fIfilename\fR (may be on a remote host) to \fIEMAIL1,EMAIL2,..\fR .TP .B as_run \-\-get_infos \fIhost1\fR [\fIhost2 [\fI...]\fB] Return cpu and memory informations about given hosts .TP .B as_run \-\-run [\fIoptions\fB] \fIprofile Execute the execution described by the \fIprofile\fR (default action) .TP .B as_run \-\-serv \fIuser@mach:/nom_profil.export\fR Start an execution (calling as_run in a separate process) .TP .B as_run \-\-info Returns informations from astk server configuration : batch, interactive (yes/no, limits), compute nodes, versions .TP .B as_run \-\-actu \fIjob_number job_name mode Returns the state, diagnosis, execution node, spent cpu time and working directory of a job .TP .B as_run \-\-edit \fIjob_number job_name mode output\fR|\fIerror DISPLAY Opens output or error file on the provided display .TP .B as_run \-\-tail job_number job_name mode fdest nb_lines [\fIregexp\fB] Output the last part of fort.6 file or filter lines matching a pattern .TP .B as_run \-\-del \fIjob_number job_name mode\fB [\fInode\fB] [\-\-signal\fr=\fI...\fB] Kill a job and delete related files .TP .B as_run \-\-purge_flash \fIjob_number1\fB [\fIjob_number2 [\fI...\fB]\fB]\fB] Delete files of jobs which are not in the list .TP .B as_run \-\-create_issue \fIissue_file\fB [\fIexport_file\fB] Insert a new issue in database and copy attached files if an export file is provided .TP .B as_run \-\-extract_\fIhistor\fB [\-\-status\fr=\fISTAT\fB] [\-\-format\fr=\fIFORM\fB] [\-\-all_msg\fB] \fIinput_file histor Extract the content of issues listed in \fIinput_file\fR to \fIhistor\fR .TP .B as_run \-\-close_issue \-\-vers\fR\fr=\fI\fIVERS\fB \fIhistor Fill "corrvdev" or "corrvexpl" field (depends on vers) in issues found in \fIhistor\fR and eventually close them .TP .B as_run \-\-insert_in_db [\fIexport_file\fB] Prepare the profile to insert an execution into a database. .SH OPTIONS .SS "General options" .TP .B \-\-version show program's version number and exit .TP .B \-h, \-\-help show this help message and exit .TP .B \-v, \-\-verbose increase verbosity .TP .B \-\-silent run as silent as possible .TP .B \-g, \-\-debug print debugging information .TP .B \-\-nodebug_stderr disable printing of debugging information to stderr .TP .B \-f, \-\-force force operations which can be cached (download, compilation...) .TP .B \-\-display\fR=\fIDISPLAY value of DISPLAY variable (NOTE : some functions read it from a file) .TP .B \-\-rcdir\fr=\fISUFFIX use resources directory $HOME/.astkrc_'SUFFIX' .TP .B \-\-remote_shell_protocol\fR=\fIREMOTE_SHELL_PROTOCOL remote protocol used for shell commands .TP .B \-\-remote_copy_protocol\fR=\fIREMOTE_COPY_PROTOCOL remote protocol used to copy files and directories .TP .B \-\-editor\fR=\fIEDITOR editor command .TP .B \-\-devel_server_user\fR=\fIDEVEL_SERVER_USER login on the development server (name/ip address is usually set in /etc/codeaster/asrun) .SS "Options for maintenance operations" .TP .B \-\-filter\fR=\fIFILTER filters applied to the testcases parameters : 'nom_para < valeur' (supported comparison <, >, =). .TP .B \-\-vers\fR=\fIVERS Code_Aster version to used (for get, show, getop) .TP .B \-\-force_upgrade Force upgrade to the next release (for example from 10.1.xx to 10.2.0) .TP .B \-o FILE, \-\-output\fR=\fIFILE redirect the result to FILE instead of stdout. .TP .B \-\-surch_pyt\fR=\fIREP one or more directories (comma separated) containing additionnal python source files .TP .B \-\-config\fR=\fIFILE use another "config.txt" file (only used for make, update and auto_update). .TP .B \-\-only_nook report only errors (but time spent by passed testcases is included) .TP .B \-\-surch_fort\fR=\fIREP one or more directories (comma separated) containing additionnal fortran source files .TP .B \-a, \-\-all get all the files of the test .TP .B \-\-destdir\fR=\fIDIR root directory to install .TP .B \-\-keep_increment update a version increment by increment and keep intermediate executable .TP .B \-\-search\fR=\fIREGEXP keep testcases matching the given regular expression (or simple string). .TP .B \-\-unigest\fR=\fIFILE a unigest file (for deletion) .TP .B \-\-command=COMMANDE[\fI/MOTCLEFACT[\fI/MOTCLE[\fR=\fIVALEUR\fB]\fB]\fB] keep testcases using the given command and keywords. .TP .B \-\-test_list\fR=\fIFILE list of the testcases .TP .B \-\-report_to\fR=\fIEMAIL email address to send the report of a execution (only used for \-\-auto_update) .TP .B \-\-user_filter\fR=\fIFILE file containing testlist.FILTRE classes. See [\fI...\fB]/share/codeaster/asrun/examples/user_filter.py for an example. .TP .B \-\-astest_dir\fR=\fIDIR testcases directory to watch .TP .B \-\-version_dev\fR=\fIVERS development version of Code_Aster (for make, update, auto_update, getversion) .TP .B \-l, \-\-local files will not been searched on a server but on the local machine .TP .B \-nolocal force remote files search (reverse of \-\-local) .SS "Options for operations on jobs" .TP .B \-\-signal\fR=\fISIGNAL signal to the job (KILL|USR1) .SS "Options for issue tracker interface" .TP .B \-\-status\fR=\fISTAT raise an error if issues are not in this status .TP .B \-\-all_msg retrieve all the messages of issues .TP .B \-\-format\fR=\fIFORM format of generated histor file (text or html) .SH FILES \fI/etc/codeaster\fR default configuration directory \fI/etc/codeaster/astkrc\fR default configuration directory for astk .SH AUTHOR The Debian Scientific Computing Team debian/rules0000755000000000000000000000545012176146163010261 0ustar #!/usr/bin/make -f # Copyright 2008 - Sylvestre Ledru ASTER_VERSION=11.4.0 ASTER_VERSION_FULL=$(ASTER_VERSION)-1 ASTER_ROOT=/usr/lib/codeaster DEB_SOURCE_PACKAGE := astk DEB_UPSTREAM_VERSION := 1.13.1 BUILDDIR = $(CURDIR)/debian/build DEB_DESTDIR = $(CURDIR)/debian/tmp DEB_HOST_ARCH_OS=$(shell dpkg-architecture -qDEB_HOST_ARCH_OS | tr '[:lower:]' '[:upper:]') DEB_HOST_ARCH_BITS=$(shell dpkg-architecture -qDEB_HOST_ARCH_BITS) %: dh $@ --builddirectory=$(BUILDDIR) --with python2 DEB_PYTHON_COMPILE_VERSION := $(shell pyversions -r) DEB_PYTHON_INSTALL_ARGS_ALL += --no-compile \ --install-lib=usr/share/pyshared --install-layout=deb export DESTDIR = $(DEB_DESTDIR) override_dh_auto_install: dh_auto_install -- #install/code-gui-run:: rm -f $(DEB_DESTDIR)/usr/lib/astk/BWidget-1.7.0/LICENSE.txt dh_link usr/bin/codeaster-client usr/bin/codeaster-gui # Add links in $ASTER_ROOT/outils mkdir -p debian/code-aster-gui/$(ASTER_ROOT)/outils ln -sf /usr/bin/eficas debian/code-aster-gui/$(ASTER_ROOT)/outils ln -sf /usr/bin/eficasQt debian/code-aster-gui/$(ASTER_ROOT)/outils ln -sf /usr/bin/gmsh debian/code-aster-gui/$(ASTER_ROOT)/outils ln -sf /usr/bin/xmgrace debian/code-aster-gui/$(ASTER_ROOT)/outils #install/code-aster-run:: # install update-codeaster-engine script mkdir -p $(DEB_DESTDIR)/usr/sbin cp debian/update-codeaster-engines $(DEB_DESTDIR)/usr/sbin chmod 755 $(DEB_DESTDIR)/usr/sbin/update-codeaster-engines # Fix platform in ASTK_SERV/etc/asrun (/etc/codeaster/asrun) if [ "${DEB_HOST_ARCH_BITS}" = "64" ]; then \ perl -pi -e "s|\?IFDEF\?|$(DEB_HOST_ARCH_OS)$(DEB_HOST_ARCH_BITS)|" ASTK_SERV/etc/asrun; \ else \ perl -pi -e "s|\?IFDEF\?|$(DEB_HOST_ARCH_OS)|" ASTK_SERV/etc/asrun; \ fi #fix lintian error #chmod ugo-x $(DEB_DESTDIR)debian/code-aster-run/$(ASTER_ROOT)/asrun/unittest/run_test.py # how to remove duplicate .py in $(ASTER_ROOT)/asrun/unittest?? mkdir -p debian/tmp/usr/lib/codeaster/bin ln -sf /usr/bin/as_run debian/tmp/usr/lib/codeaster/bin/as_run cd $(DEB_DESTDIR)/usr/bin && mv get codeaster-get cd $(DEB_DESTDIR)/usr/bin && mv parallel_cp codeaster-parallel_cp cd $(DEB_DESTDIR)/usr/bin && ln -sf as_run codeaster override_dh_auto_clean: rm -rf $(BUILDDIR) rm -rf $(CURDIR)/debian/tmp find . -name \*.pyc | xargs -r rm debconf-updatepo get-orig-source: # Retreive aster-full-src-$(ASTER_VERSION_FULL).noarch.tar.gz mkdir -p tmp cd tmp && wget "http://www.code-aster.org/FICHIERS/aster-full-src-$(ASTER_VERSION_FULL).noarch.tar.gz" # Go to SRC directory and retreive astk source cd tmp && tar xzf aster-full-src-$(ASTER_VERSION_FULL).noarch.tar.gz cd tmp/aster-full-src-$(ASTER_VERSION)/SRC && mv $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION).tar.gz $(CURDIR)/$(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz rm -rf tmp debian/code-aster-run.postinst0000644000000000000000000000171312176146163013634 0ustar #!/bin/sh set -ex # Source debconf library. . /usr/share/debconf/confmodule TEMPLATE=/usr/share/codeaster/asrun ASRUN=/etc/codeaster/asrun ASTER_TEMPLATE=/usr/share/codeaster/aster.template ASTER=/etc/codeaster/aster if [ "$1" = "configure" ]; then if [ -z "$2" ]; then # first install of pacakge mkdir -p /etc/codeaster/astkrc if [ "$(getconf LONG_BIT)" = 64 ]; then platform=LINUX64 else platform=LINUX fi node=$(hostname -s 2>/dev/null) sed -e "s|^plate-forme : .*|plate-forme : $platform|;s|noeud : .*|noeud : $node|" < $TEMPLATE > $ASRUN cp $ASTER_TEMPLATE $ASTER fi db_get astk/EDITOR || true editor=${RET} db_get astk/TERMINAL || true terminal=${RET} sed -i -e "s|editor : .*|editor : $editor|;s|terminal : .*|terminal : $terminal|" $ASRUN fi #DEBHELPER# debian/codeaster-gui.10000644000000000000000000000066511436710627012021 0ustar .TH ASTK "1" "April 2010" "Code Aster 10.2.0" "Astk Gui" .SH NAME codeaster-gui \- launch the astk GUI .SH SYNOPSIS .PP .B codeaster-gui [ .B -h ] [ .B -debug \fR[\fIN\fR] ] [ .B -profil \fIprofile_name\fR ] [ .B -agla \fIdata\fR ] .SH DESCRIPTION .BR codeaster-gui is a symbolic link to .BR astk command. .PP .SH FILES \fI/etc/codeaster/astkrc\fR default configuration directory for astk .SH AUTHOR The Debian Scientific Computing Team debian/aster_def_var.py0000644000000000000000000001144711436661337012365 0ustar # 1.3.2. ----- convert uname value to Code_Aster terminology... sysname, nodename, release, version, machine = os.uname() log._print('Architecture : os.uname = %s' % str(os.uname()), DBG=True) log._print('Architecture : sys.platform = %s os.name = %s' % (sys.platform, os.name), DBG=True) sident = ' '.join(os.uname()) if os.path.isfile('/etc/issue'): sident = re.sub(r'\\.', '', open('/etc/issue', 'r').read()) + sident log._print(_separ, """Installation on : %s""" % sident, _separ) if sys.platform == 'win32': cfg['IFDEF'] = 'WIN32' elif sys.platform.lower() == 'darwin': cfg['ARCH'] = 'default' cfg['IFDEF'] = 'LINUX' elif sys.platform in ('linux2', 'cygwin'): cfg['ARCH'] = 'x86' if machine.endswith('64'): cfg['IFDEF'] = 'LINUX64' if machine in ('x86_64', 'ia64'): cfg['ARCH'] = machine else: # force to x86_64 cfg['ARCH'] = 'x86_64' else: cfg['IFDEF'] = 'LINUX' elif sys.platform[:4] == 'osf1': cfg['IFDEF']='TRU64' elif sys.platform == 'sunos5': cfg['IFDEF'] = 'SOLARIS' # elif sys.platform[:6] == 'irix64': # cfg['IFDEF']='IRIX64' elif sys.platform[:4] == 'irix': cfg['IFDEF'] = 'IRIX' else: raise SetupError, "Unsupported platform : sys.platform=%s, os.name=%s" % \ (sys.platform, os.name) if cfg.get('_solaris64', False) and sys.platform == 'sunos5': cfg['IFDEF'] = 'SOLARIS64' cfg['DEFINED'] = cfg['IFDEF'] # 1.4.1c. ----- check for mpirun command #ftools.find_and_set(cfg, 'MPIRUN', ['mpirun', 'prun'], err=False) cfg['MPIRUN'] = cfg.get('MPIRUN', 'mpirun') # 1.4.4. ----- check for a terminal ListTerm=[ ['xterm' , 'xterm -display @D -e @E',], ['gnome-terminal' , 'gnome-terminal --display=@D --command=@E',], ['konsole', 'konsole --display @D -e @E'],] for prg, cmd in ListTerm: term = ftools.find_file(prg, typ='bin') if term != None: term = cmd.replace(prg, term) break cfg['TERMINAL'] = cfg.get('TERMINAL', term) if cfg['TERMINAL'] is None: del cfg['TERMINAL'] # 1.4.5. ----- check for a text editor # and modify command line of those which don't have a --display= option ListEdit=[ ['nedit' , 'nedit',], ['gedit' , 'gedit --display=@D',], ['kwrite', 'kwrite --display @D',], ['xemacs', 'xemacs -display @D',], ['emacs' , 'emacs -display @D',], ['xedit' , 'xedit -display @D',], ['vi' , cfg.get('TERMINAL', 'xterm')+' -e vi',],] for prg, cmd in ListEdit: edit = ftools.find_file(prg, typ='bin') if edit != None: edit = cmd.replace(prg, edit) break cfg['EDITOR'] = cfg.get('EDITOR', edit) if cfg['EDITOR'] == None: del cfg['EDITOR'] # 1.4.6. ----- check for debugger # DEBUGGER_COMMAND runs an interactive debugger # DEBUGGER_COMMAND_POST dumps a post-mortem traceback # @E will be remplaced by the name of the executable # @C will be remplaced by the name of the corefile # @D will be remplaced by the filename which contains "where+quit" # @d will be remplaced by the string 'where ; quit' cfg['DEBUGGER_COMMAND'] = '' cfg['DEBUGGER_COMMAND_POST'] = '' ListDebbuger=[ ['gdb', '%s -batch --command=@D @E @C',], ['dbx', '%s -c @D @E @C',], ['ladebug', '%s -c @D @E @C',],] for debugger, debugger_command_format in ListDebbuger: debugger_command = ftools.find_file(debugger, typ='bin') if debugger_command != None: cfg['DEBUGGER_COMMAND_POST'] = debugger_command_format % debugger_command break if debugger_command != None: ddd = ftools.find_file('ddd', typ='bin') if ddd != None: cfg['DEBUGGER_COMMAND'] = '%s --%s --debugger %s --command=@D @E @C' \ % (ddd, debugger, debugger_command) #------------------------------------------------------------------------------- # 1.5. ----- products configuration #------------------------------------------------------------------------------- log._print(_separ, term='') # 1.5.1. ----- check for hostname (for client part of astk) log._print(_fmt_search % _('host name'), term='') host=system.GetHostName() # deduce domain name tmp=host.split('.') if len(tmp)>1: host=tmp[0] domain='.'.join(tmp[1:]) else: domain='' cfg['SERVER_NAME']=cfg.get('SERVER_NAME', host) cfg['DOMAIN_NAME']=cfg.get('DOMAIN_NAME', domain) cfg['FULL_SERVER_NAME']=cfg.get('FULL_SERVER_NAME', '.'.join(tmp)) domain=cfg['DOMAIN_NAME'] if domain=='': domain='(empty)' log._print(cfg['SERVER_NAME']) log._print(_fmt_search % _('network domain name'), domain) log._print(_fmt_search % _('full qualified network name'), cfg['FULL_SERVER_NAME']) debian/aster.template0000644000000000000000000000030612120622532012033 0ustar # Code_Aster versions - template file # this file is just a barebone configuration because as_run needs it # to run; it should not appear in a functional system. default_vers : STABLE vers : STABLE debian/code-aster-run.postrm0000644000000000000000000000057412176146163013301 0ustar #!/bin/sh set -ex if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then # Source debconf library. . /usr/share/debconf/confmodule # Remove my changes to the db. db_purge # Remove files in /etc/codeaster rm -f /etc/codeaster/asrun rm -f /etc/codeaster/aster find /etc/codeaster -type d -empty | xargs -r rmdir fi #DEBHELPER# debian/codeaster.10000644000000000000000000000124011436710627011225 0ustar .\" In .TH, FOO should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .\" .\" This template provided by Tom Christiansen . .\" .TH CODEASTER "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME codeaster \- codeaster command .SH SYNOPSIS A short usage summary. .PP .B codeaster .I action [ .I options ] [ .I arguments ] .SH DESCRIPTION .BR codeaster command is a symbolic link to .BR as_run .PP .SH FILES \fI/etc/codeaster\fR default configuration directory \fI/etc/codeaster/astkrc\fR default configuration directory for astk .SH AUTHOR The Debian Scientific Computing Team debian/code-aster-run.templates0000644000000000000000000000260112036604010013725 0ustar # These templates have been reviewed by the debian-l10n-english # team # # If modifications/additions/rewording are needed, please ask # debian-l10n-english@lists.debian.org for advice. # # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. Template: astk/platform Type: select Choices: LINUX, P_LINUX, LINUX64, P_LINUX64 Default: LINUX64 _Description: Aster platform: Select Aster platform. Template: astk/node Type: string _Description: ASTK client node name: Please enter the public name by which this client will be known on the network. It must be a unique name within the domain. Template: astk/EDITOR Type: select Choices: /usr/bin/nedit, /usr/bin/gedit --display=\@D, /usr/bin/kwrite --display \@D, /usr/bin/xemacs -display \@D, /usr/bin/emacs -display \@D, /usr/bin/xedit -display \@D, /usr/bin/xterm -display \@D -e \@E -e vi Default: /usr/bin/nedit _Description: Standard editor: Please select the command line that ASTK should use to launch an editor. Template: astk/TERMINAL Type: select Choices: /usr/bin/xterm -display \@D -e \@E, /usr/bin/gnome-terminal --display=\@D --command=\@E, /usr/bin/konsole --display \@D -e \@E Default: /usr/bin/gnome-terminal --display=\@D --command=\@E _Description: Standard terminal emulator: Please select the command line that ASTK should use to launch a terminal window. debian/code-aster-gui.menu0000644000000000000000000000036111436676604012701 0ustar ?package(code-aster-gui): \ needs="X11" \ section="Applications/Science/Engineering" \ title="Codeaster-gui" \ command="/usr/bin/codeaster-gui" \ icon="/usr/share/pixmaps/astk.xpm" debian/astk.10000644000000000000000000000265011436676656010241 0ustar .TH ASTK "1" "April 2010" "Code Aster 10.2.0" "Astk Gui" .SH NAME astk \- launch the astk GUI .SH SYNOPSIS .PP .B astk [ .B -h ] [ .B -debug \fR[\fIN\fR] ] [ .B -profil \fIprofile_name\fR ] [ .B -agla \fIdata\fR ] .SH DESCRIPTION This manual page documents briefly the .BR astk command. \fBastk\fR is an application to help launching calculations with Code Aster. .SH OPTIONS .PP .B -h, --help print the options list .TP .B -g, --debug \fR[\fIN\fR] turn on the print of debug informations. \fIN\fR message level, default 1 .TP .B --profil \fIprofile_name open \fIprofile_name\fR at startup .TP .B --serv \FIserver_name \fIserver\fR where is the profile .TP .B --agla \fIdata use an alternative AGLA configuration .TP .B --nb black and white .TP .B --check check the configuration and exits .TP .B --norecup don't get informations about the servers configuration .TP .B --no-splash suppress the splash screen .TP .B --no-initial-warnings suppress warning dialogs during initialization step (usefull only when astk is called by a Qt widget to work around a Qt bug) .TP .B --stdout write messages to the terminal .TP .B --version prints ASTK version and exits .TP .B --from_salome | --stand-alone starting mode : \fBfrom Salome\fR or \fBstand-alone\fR .TP .B --rcdir \fIsuffix use ressources directory .astkrc_\fIsuffix\fR .SH FILES \fI/etc/codeaster/astkrc\fR default configuration directory for astk .SH AUTHOR The Debian Scientific Computing Team debian/code-aster-gui.postinst0000644000000000000000000000243512036604010013577 0ustar #!/bin/sh set -ex # Source debconf library. . /usr/share/debconf/confmodule if [ "$1" = "configure" ] ; then if [ -z "$2" ]; then mkdir -p /etc/codeaster/astkrc cp -a /usr/share/codeaster/astkrc/config_serveurs \ /usr/share/codeaster/astkrc/prefs \ /usr/share/codeaster/astkrc/outils \ /usr/share/codeaster/astkrc/ASTKRC_INFO.txt \ /etc/codeaster/astkrc/ fi db_get astk/servername || true servername=${RET} perl -pi -le "s|serveur : .*|serveur : $servername|" /etc/codeaster/astkrc/config_serveurs db_get astk/domainname || true domainname=${RET} perl -pi -le "s|nom_domaine : .*|nom_domaine : $domainname|" /etc/codeaster/astkrc/prefs perl -pi -le "s|nom_complet : .*|nom_complet : $servername\.$domainname|" /etc/codeaster/astkrc/config_serveurs db_get astk/EDITOR || true editor=${RET} perl -pi -le "s|editeur : .*|editeur : $editor|" /etc/codeaster/astkrc/prefs perl -pi -le "s|editeur : .*|editeur : $editor|" /etc/codeaster/astkrc/config_serveurs db_get astk/TERMINAL || true terminal=${RET} perl -pi -le "s|xterm : .*|xterm : $terminal|" /etc/codeaster/astkrc/prefs perl -pi -le "s|xterm : .*|xterm : $terminal|" /etc/codeaster/astkrc/config_serveurs fi #DEBHELPER# debian/astk.xpm0000644000000000000000000000470711436661337010700 0ustar /* XPM */ static char *astk[] = { /* columns rows colors chars-per-pixel */ "16 16 114 2", " c #B93823", ". c #B93A25", "X c #BC3A24", "o c #C73B23", "O c #CB3921", "+ c #CB3B23", "@ c #D43B22", "# c #D83B21", "$ c #E33A20", "% c #E5581C", "& c #DC4320", "* c #CB4F36", "= c #E65737", "- c #DE6F52", "; c #7C9831", ": c #7F9D31", "> c #AC8A1F", ", c #B08E1E", "< c #B38F1E", "1 c #B8931D", "2 c #809E31", "3 c #98B42E", "4 c #93B82F", "5 c #9BBE2F", "6 c #84A431", "7 c #86A631", "8 c #89AA31", "9 c #8CAF31", "0 c #92B73E", "q c #B1AD25", "w c #BABB25", "e c #DD851B", "r c #C59B1B", "t c #C59D1B", "y c #C0991C", "u c #E48019", "i c #CCA11A", "p c #DDAD17", "a c #D3A618", "s c #D2A619", "d c #DEA718", "f c #D3B31B", "g c #D9B51A", "h c #E3A617", "j c #E3B215", "k c #E0B016", "l c #E3B216", "z c #E4B216", "x c #C2B02A", "c c #9BC330", "v c #9CC430", "b c #9CC434", "n c #A8C22A", "m c #E39562", "M c #EA9876", "N c #98C045", "B c #98C265", "V c #4E7C96", "C c #4F7F9A", "Z c #4F819C", "A c #5084A1", "S c #5288A7", "D c #538BAA", "F c #538BAB", "G c #558FB0", "H c #5693B5", "J c #5A9ABE", "K c #5D9BBD", "L c #7596A6", "P c #7697AA", "I c #7799AA", "U c #7EA2B5", "Y c #579AC0", "T c #5B9DC1", "R c #5D9DC1", "E c #69A4C1", "W c #70A7C4", "Q c #79ABC6", "! c #8EB795", "~ c #93BE98", "^ c #84A9A0", "/ c #87B5A9", "( c #80A6B9", ") c #80A6BA", "_ c #8DB5BE", "` c #BAC8B6", "' c #C2C2A4", "] c #C7C7A7", "[ c #C9C9A9", "{ c #CDCDAD", "} c #CECEAD", "| c #DCD2AE", " . c #D6D5B2", ".. c #D8D8B5", "X. c #DBDDBA", "o. c #E9C9A4", "O. c #F0D1AB", "+. c #E0E0BC", "@. c #86ADC2", "#. c #81AEC5", "$. c #84B5CF", "%. c #88B2C8", "&. c #91B9C2", "*. c #90BDCC", "=. c #83B5D1", "-. c #8EBBD3", ";. c #90BDD4", ":. c #AAC8C3", ">. c #D2E1C8", ",. c #E4E6C1", "<. c #EEEDC6", "1. c #EFF0C8", "2. c #F1F2CA", "3. c None", /* pixels */ "3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.", "3.3.3.3.3.3.3.3.Z V 3.3.3.3.3.3.", "3.3.3.3.3.3.3.D D A C 3.3.3.3.3.", "3.3.3.' [ 3.3.H G D A 3.3.3.3.3.", "3.3.] { .` K K W Q #.@.U L 3.3.", "3.3.{ ..X._ J R $.;.-.%.( I 3.3.", "3.3.3.+.,.:.E T =.*.~ ! ( I 3.3.", "3.3.3.| <.2.>.&./ B b N ^ P 3.3.", "3.3. * o.2.O.m x n c c 0 3.3.3.", "3.3.X + - M = u j g w 5 4 3.3.3.", "3.3.X + # $ % h j z f 3 9 7 3.3.", "3.3.. o @ & e d p k q 8 7 : 3.3.", "3.3.3.3.3.3.r i a a 3.2 ; 3.3.3.", "3.3.3.3.3.< 1 y t 3.3.3.3.3.3.3.", "3.3.3.3.3.3.> < 3.3.3.3.3.3.3.3.", "3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3." }; debian/as_client.10000644000000000000000000000065111717740114011216 0ustar .TH ASTK "1" "April 2010" "Code Aster 10.2.0" "Astk Gui" .SH NAME as_client \- launch the astk GUI .SH SYNOPSIS .PP .B as_client [ .B -h ] [ .B -debug \fR[\fIN\fR] ] [ .B -profil \fIprofile_name\fR ] [ .B -agla \fIdata\fR ] .SH DESCRIPTION .BR as_client is a symbolic link to .BR astk command. .PP .SH FILES \fI/etc/codeaster/astkrc\fR default configuration directory for astk .SH AUTHOR The Debian Scientific Computing Team debian/copyright0000644000000000000000000000710211436661337011133 0ustar Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat Debianized-By: Adam C. Powell, IV Debianized-Date: Fri, 22 Feb 2008 16:15:05 -0500 Upstream-Author: EDF (Electricité de France) Original-Source: http://www.code-aster.org/V2/spip.php?article90 File aster-full-src-9.2.0-2.noarch.tar.gz contains multiple tarballs, several of which already have Debian packages. astk is one of the tarballs contained in that file. Files: * Copyright: COPYRIGHT (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG License: GPL-2+ THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION. . THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU GENERAL PUBLIC LICENSE FOR MORE DETAILS. . YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER, 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE. . On Debian systems, the complete text of the GNU General Public License version 2 can be found in file /usr/share/common-licenses/GPL-2 Files: ASTK_CLIENT/share/BWidget-1.7.0/* Copyright: Copyright (c) 1998-1999 UNIFIX. Copyright (c) 2001-2002 ActiveState Corp. License: other The following terms apply to all files associated with the software unless explicitly disclaimed in individual files. . The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply. . IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. . GOVERNMENT USE: If you are acquiring this software on behalf of the U.S. government, the Government shall have only "Restricted Rights" in the software and related documentation as defined in the Federal Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are acquiring the software on behalf of the Department of Defense, the software shall be classified as "Commercial Computer Software" and the Government shall have only "Restricted Rights" as defined in Clause 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the terms specified in this license. debian/bsf.10000644000000000000000000000077711436661337010047 0ustar .TH BSF "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME bsf \- bsf command .SH SYNOPSIS A short usage summary. .PP .B bsf [ .I -h ] [ .I -debug ] .PP .SH DESCRIPTION This manual page documents briefly the .BR bsf command .PP .SH OPTIONS .TP .B \-h, \-\-help print the options list .TP .B \-g, \-\-debug turn on the print of debug informations .TP .B \-\-inidir initial directory instead of 'pwd' .TP .B \-\-version prints BSF version and exits .SH AUTHOR The Debian Scientific Computing Team debian/code-aster-gui.postrm0000644000000000000000000000106612036604011013240 0ustar #!/bin/sh set -ex if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then # Source debconf library. . /usr/share/debconf/confmodule # Remove my changes to the db. db_purge # Remove files in /etc/codeaster/astkrc rm -f /etc/codeaster/astkrc/config_serveurs rm -f /etc/codeaster/astkrc/outils rm -f /etc/codeaster/astkrc/prefs rm -f /etc/codeaster/astkrc/ASTKRC_INFO.txt find /etc/codeaster/astkrc -type d -empty | xargs -r rmdir find /etc/codeaster -type d -empty | xargs -r rmdir fi #DEBHELPER# debian/aster-mpihosts0000644000000000000000000000002211667703365012103 0ustar localhost slots=1 debian/codeaster-parallel_cp.10000644000000000000000000000270211667703365013514 0ustar .\" In .TH, FOO should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .\" .\" This template provided by Tom Christiansen . .\" .TH CODEASTER-PARALLEL_CP "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME codeaster-parallel_cp \- codeaster-parallel_cp command .SH SYNOPSIS A short usage summary. .PP .B parallel_cp [ .I options ] .I tracker_path .I source_directory .I destination_directory .SH DESCRIPTION This module allows to copy a source directory into multiple destinations. .TP .I tracker_path This directory MUST be shared by all nodes. It stores which sources are available. .TP .I source_directory The directory to copy .TP .I destination_directory (local) directory in which content will be copied. .PP .SH OPTIONS .TP .B \-h, \-\-help show this help message and exit .TP .B \-\-with\-as_run use as_run functions to allow remote copy .TP .B \-\-remote_copy_protocol\fr=\fIREMOTE_COPY_PROTOCOL remote protocol used to copy files and directories .TP .B \-\-remote_shell_protocol\fr=\fIREMOTE_SHELL_PROTOCOL remote protocol used for shell commands .TP .B \-\-leech_limit\fr=\fINUM maximum number of connections to each seed (default 2) .TP .B \-\-silent run silently (do not print start/end time...) .TP .B \-\-long_help print complete help (with example) and exit .SH SEE ALSO For more details consult .BR as_run(1) .SH AUTHOR The Debian Scientific Computing Team debian/codeaster-getop.10000644000000000000000000000101511667703365012350 0ustar .\" In .TH, FOO should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .\" .\" This template provided by Tom Christiansen . .\" .TH CODEASTER-GETOP "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME codeaster-getop \- symbolic link to \fBas_run\fB command .SH DESCRIPTION .BR codeaster-getop is a symbolic link to \fBas_run\fB .SH SEE ALSO For more details consult .BR as_run(1) .SH AUTHOR The Debian Scientific Computing Team debian/codeaster-client.10000644000000000000000000000067611717740114012511 0ustar .TH ASTK "1" "April 2010" "Code Aster 10.2.0" "Astk Gui" .SH NAME codeaster-client \- launch the astk GUI .SH SYNOPSIS .PP .B codeaster-client [ .B -h ] [ .B -debug \fR[\fIN\fR] ] [ .B -profil \fIprofile_name\fR ] [ .B -agla \fIdata\fR ] .SH DESCRIPTION .BR codeaster-client is a symbolic link to .BR astk command. .PP .SH FILES \fI/etc/codeaster/astkrc\fR default configuration directory for astk .SH AUTHOR The Debian Scientific Computing Team debian/code-aster-gui.config0000644000000000000000000000342012036604010013154 0ustar #!/bin/sh set -ex alias stripwhitespace="sed -e 's/^[[:blank:]]*//' -e 's/[[:blank:]]*$//'" # Source debconf library. . /usr/share/debconf/confmodule #DEB_HOST_ARCH_OS="$(dpkg-architecture -qDEB_HOST_ARCH_OS | tr '[:lower:]' '[:upper:]')" #DEB_HOST_ARCH_BITS="$(dpkg-architecture -qDEB_HOST_ARCH_BITS)" #Set default platform #if [ "${dc_platform}" = "" ] ; then # dc_platform="${DEB_HOST_ARCH_OS}" && \ # db_set astk/platform "${dc_platform}" # if [ "${DEB_HOST_ARCH_BITS}" = "64" ] ; then # dc_platform="${DEB_HOST_ARCH_OS}${DEB_HOST_ARCH_BITS}" && \ # db_set astk/platform "${dc_platform}" # fi #fi #Set default domain name if [ "${dc_domainname}" = "" ] ; then dc_domainname="$(hostname --domain 2>/dev/null)" && \ db_set astk/domainname "${dc_domainname}" fi #Set default server name if [ "${dc_servername}" = "" ] ; then dc_servername="$(hostname 2>/dev/null)" && \ db_set astk/servername "${dc_servername}" fi #Set default node name if [ "${dc_node}" = "" ] ; then dc_node="$(hostname -s 2>/dev/null)" && \ db_set astk/node "${dc_node}" fi #Set default editor name if [ "${dc_editor}" = "" ] ; then dc_editor="/usr/bin/gedit --display=\@D" && \ db_set astk/EDITOR "${dc_editor}" fi #Set default terminal name if [ "${dc_terminal}" = "" ] ; then dc_terminal="/usr/bin/gnome-terminal --display=\@D --command=\@E" && \ db_set astk/TERMINAL "${dc_terminal}" fi db_version 2.0 # Choose Platform #db_input medium astk/platform || true #dc_platform="$RET" #db_go db_input medium astk/domainname || true dc_domainname="$RET" db_go db_input medium astk/servername || true dc_servername="$RET" db_go db_input medium astk/node || true dc_node="$RET" db_go db_input medium astk/EDITOR || true dc_editor="$RET" db_go db_input medium astk/TERMINAL || true dc_terminal="$RET" db_go debian/code-aster-gui.desktop0000644000000000000000000000044011436676622013404 0ustar [Desktop Entry] Version=1.0 Encoding=UTF-8 Name=code-aster-gui GenericName=Graphical command editor for Code_Aster Comment=Graphical command editor for Code_Aster. Exec=/usr/bin/codeaster-gui Icon=astk Type=Application Terminal=false Categories=Education;Math;Science; StartupNotify=true debian/code-aster-gui.templates0000644000000000000000000000333512036604011013713 0ustar # These templates have been reviewed by the debian-l10n-english # team # # If modifications/additions/rewording are needed, please ask # debian-l10n-english@lists.debian.org for advice. # # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. Template: astk/platform Type: select Choices: LINUX, P_LINUX, LINUX64, P_LINUX64 Default: LINUX64 _Description: Aster platform: Select Aster platform. Template: astk/domainname Type: string _Description: ASTK server domain name: Please enter the domain name of the server that this ASTK client should connect to. Template: astk/servername Type: string _Description: ASTK server host name: Please enter the host name (without domain name) of the server that this ASTK client should connect to. Template: astk/node Type: string _Description: ASTK client node name: Please enter the public name by which this client will be known on the network. It must be a unique name within the domain. Template: astk/EDITOR Type: select Choices: /usr/bin/nedit, /usr/bin/gedit --display=\@D, /usr/bin/kwrite --display \@D, /usr/bin/xemacs -display \@D, /usr/bin/emacs -display \@D, /usr/bin/xedit -display \@D, /usr/bin/xterm -display \@D -e \@E -e vi Default: /usr/bin/nedit _Description: Standard editor: Please select the command line that ASTK should use to launch an editor. Template: astk/TERMINAL Type: select Choices: /usr/bin/xterm -display \@D -e \@E, /usr/bin/gnome-terminal --display=\@D --command=\@E, /usr/bin/konsole --display \@D -e \@E Default: /usr/bin/gnome-terminal --display=\@D --command=\@E _Description: Standard terminal emulator: Please select the command line that ASTK should use to launch a terminal window. debian/codeaster-get.10000644000000000000000000000077511667703365012025 0ustar .\" In .TH, FOO should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .\" .\" This template provided by Tom Christiansen . .\" .TH CODEASTER-GET "1" "April 2010" "Code Aster 10.2.0" "Astk Main Commands" .SH NAME get \- symbolic link to \fBas_run\fB command .SH DESCRIPTION .BR codeaster-get is a symbolic link to \fBas_run\fB .SH SEE ALSO For more details consult .BR as_run(1) .SH AUTHOR The Debian Scientific Computing Team debian/code-aster-run.lintian-overrides0000644000000000000000000000013511602113160015364 0ustar code-aster-run: shell-script-fails-syntax-check usr/lib/codeaster/asrun/data/mpirun_template debian/code-aster-run.install0000644000000000000000000000201512120622532013377 0ustar # executables debian/tmp/usr/bin/codeaster usr/bin debian/tmp/usr/bin/as_run usr/bin debian/tmp/usr/bin/codeaster-get usr/bin debian/tmp/usr/bin/codeaster-parallel_cp usr/bin debian/tmp/usr/sbin/update-codeaster-engines usr/sbin # config ASTK_SERV/etc/profile.sh etc/codeaster ASTK_SERV/etc/config_nodename etc/codeaster #ASTK_SERV/etc/aster etc/codeaster ASTK_SERV/etc/profile.csh etc/codeaster ASTK_SERV/etc/asrun usr/share/codeaster debian/aster-mpihosts etc/codeaster debian/aster.template usr/share/codeaster # ASTER_ROOT debian/tmp/usr/lib/codeaster usr/lib debian/tmp/usr/lib/codeaster/bin usr/lib/codeaster # data ASTK_SERV/share/codeaster/asrun/data/mpirun_template usr/lib/codeaster/asrun/data #install manpages debian/as_run.1 usr/share/man/man1 debian/codeaster.1 usr/share/man/man1 debian/codeaster-get.1 usr/share/man/man1 debian/codeaster-parallel_cp.1 usr/share/man/man1 # locale debian/tmp/usr/share/locale/* usr/share/locale # lintian-overrides debian/code-aster-run.lintian-overrides usr/share/lintian/overrides debian/code-aster-gui.install0000644000000000000000000000237412036604011013365 0ustar debian/tmp/usr/bin/as_client usr/bin debian/tmp/usr/bin/codeaster-client usr/bin #debian/tmp/usr/bin/codeaster-gui usr/bin debian/tmp/usr/bin/astk usr/bin debian/tmp/usr/bin/bsf usr/bin debian/tmp/usr/lib/astk/*.tcl usr/share/astk debian/tmp/usr/lib/astk/BWidget-1.7.0 usr/share/astk debian/tmp/usr/lib/astk/DOC usr/share/astk debian/tmp/usr/lib/astk/HELP usr/share/astk debian/tmp/usr/lib/astk/icons usr/share/astk debian/tmp/usr/lib/astk/locales.txt usr/share/astk debian/tmp/usr/lib/astk/RELNOTES* usr/share/astk # config debian/tmp/etc/codeaster/astkrc/prefs usr/share/codeaster/astkrc debian/tmp/etc/codeaster/astkrc/config_serveurs usr/share/codeaster/astkrc debian/tmp/etc/codeaster/astkrc/outils usr/share/codeaster/astkrc debian/tmp/etc/codeaster/astkrc/ASTKRC_INFO.txt usr/share/codeaster/astkrc # menu debian/code-aster-gui.desktop usr/share/applications debian/astk.xpm usr/share/pixmaps #links in $ASTER_ROOT/outils #usr/lib/codeaster/outils/eficas #usr/lib/codeaster/outils/eficasQt #usr/lib/codeaster/outils/gmsh #usr/lib/codeaster/outils/xmgrace #install manpages debian/astk.1 usr/share/man/man1 debian/codeaster-gui.1 usr/share/man/man1 debian/codeaster-client.1 usr/share/man/man1 debian/as_client.1 usr/share/man/man1 debian/bsf.1 usr/share/man/man1 debian/README.Debian0000644000000000000000000000051211706534722011234 0ustar astk for Debian --------------- To test astk aka codeaster-run goto th export ASTER_ROOT=/usr/lib/codeaster cd $ASTER_ROOT/asrun/unittest python run_test.py --all Note codeaster-engine should be installed to get some tests working. -- Christophe Trophime Tue, 13 Dec 2011 09:01:13 +0100 debian/code-aster-run.pyinstall0000644000000000000000000000116612036604010013753 0ustar debian/tmp/usr/lib/python2.7/dist-packages/asrun/*.py asrun debian/tmp/usr/lib/python2.7/dist-packages/asrun/common/*.py asrun.common debian/tmp/usr/lib/python2.7/dist-packages/asrun/plugins/*.py asrun.plugins debian/tmp/usr/lib/python2.7/dist-packages/asrun/client/*.py asrun.client debian/tmp/usr/lib/python2.7/dist-packages/asrun/ctl/*.py asrun.ctl debian/tmp/usr/lib/python2.7/dist-packages/asrun/contrib/*.py asrun.contrib debian/tmp/usr/lib/python2.7/dist-packages/asrun/dev/*.py asrun.dev debian/tmp/usr/lib/python2.7/dist-packages/asrun/core/*.py asrun.core debian/tmp/usr/lib/codeaster/asrun/unittest/*.py asrun.unittest debian/code-aster-run.config0000644000000000000000000000072212036604011013177 0ustar #!/bin/sh set -ex # Source debconf library. . /usr/share/debconf/confmodule ASRUN=/etc/codeaster/asrun if [ -f "$ASRUN" ]; then editor=$(sed -ne 's/^editor[[:space:]]*:[[:space:]]*//; p; q' $ASRUN) terminal=$(sed -ne '/^terminal/ { s/^terminal[[:space:]]*:[[:space:]]*//; p; q}' $ASRUN) db_set astk/EDITOR "$editor" db_set astk/TERMINAL "$terminal" fi db_input low astk/EDITOR || true db_input low astk/TERMINAL || true db_go || true debian/update-codeaster-engines0000755000000000000000000000105212120622532013764 0ustar #!/bin/sh set -ex # CONFFILE=/etc/codeaster/aster ENGINES_DIR=/var/lib/codeaster CA_VERSIONS=$(ls ${ENGINES_DIR}) CA_DEFAULT_VERSION=$(echo ${CA_VERSIONS} | cut -f 1 -d ' ') cat << EOF # Code_Aster versions # versions can be absolute paths or relative to ASTER_ROOT # examples : NEW10, /usr/lib/codeaster/NEW10 # default version (overridden by --vers option) EOF echo default_vers : ${CA_DEFAULT_VERSION} echo "# available versions" echo "# DO NOT EDIT FOLLOWING LINES !" for CA_VERSION in ${CA_VERSIONS} ; do echo "vers : ${CA_VERSION}" done