tis-teraterm

5.4.0-1
Tera Term est un programme d'émulation de terminal. Il émule différents types de terminaux d'ordinateur, supporte Telnet, SSH 1 & 2 et les connexions par port série
543 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal
tis-teraterm icon
  • package : tis-teraterm
  • name : Tera Term
  • version : 5.4.0-1
  • categories : System and network
  • maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
  • editor :
  • licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
  • locale : all
  • target_os : windows
  • impacted_process : ttermpro
  • architecture : x64
  • signature_date : 2025-03-03 09:00
  • size : 10.19 Mo
  • installed_size : 18.75 Mo
package           : tis-teraterm
version           : 5.4.0-1
architecture      : x64
section           : base
priority          : optional
name              : Tera Term
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT
description       : Tera Term is a terminal emulator program. It emulates different types of computer terminals, it supports Telnet, SSH 1 & 2 and serial port connections
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 18745845
impacted_process  : ttermpro
description_fr    : Tera Term est un programme d'émulation de terminal. Il émule différents types de terminaux d'ordinateur, supporte Telnet, SSH 1 & 2 et les connexions par port série
description_pl    : Tera Term to emulator terminala. Emuluje różne typy terminali komputerowych, obsługuje połączenia Telnet, SSH 1 i 2 oraz port szeregowy
description_de    : Tera Term ist ein Terminal-Emulator-Programm. Es emuliert verschiedene Arten von Computerterminals, es unterstützt Telnet, SSH 1 & 2 und serielle Schnittstellenverbindungen
description_es    : Tera Term es un programa emulador de terminales. Emula diferentes tipos de terminales de ordenador, soporta Telnet, SSH 1 y 2 y conexiones de puerto serie
description_pt    : O Tera Term é um programa emulador de terminal. Ele emula diferentes tipos de terminais de computador, suporta Telnet, SSH 1 & 2 e conexões de porta serial
description_it    : Tera Term è un programma di emulazione di terminale. Emula diversi tipi di terminali di computer, supporta le connessioni Telnet, SSH 1 e 2 e la porta seriale
description_nl    : Tera Term is een terminal emulator programma. Het emuleert verschillende soorten computerterminals en ondersteunt Telnet, SSH 1 & 2 en seriële poortverbindingen
description_ru    : Tera Term - это программа-эмулятор терминала. Она эмулирует различные типы компьютерных терминалов, поддерживает Telnet, SSH 1 & 2 и соединения с последовательным портом
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage          : 
package_uuid      : 0a55ccb8-1b6c-4923-9a4e-0d31ae205af7
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-03-03T09:00:12.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : FArzUyPvPYH40G7bBaEutIYAVBwRjCTmBrhfJ5wGZeA2e5fSih+ptl85AO/ATxIAyyIl5tlUwUQS/H73ukS1Vl/snk847fWHJlwRT+sD7QppfmSUSNhmnSIrmV6pPR6BBW9EAvBOH2+HPo1tXiqn0GN1u75ifCmRNXSyDILCjzD/hnsPLBKQwWO7jjit0548GFOkJUPbGG4kGNXWhX5KT2c0PTzoGJLH7c0il/uRj4oQTXO6Ictx9ygAzGwCI44x8Jk5+S3MCTUqfpIqG6ZhhL9IdNIclP0RuF8dBli5fX8sDb4xn+W6FSQPkTf6Or8R+9AK+/36nQv5oN7HrxNfXw==
# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    bin_name = glob.glob("teraterm-*.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
        key="{07A7E17A-F6D6-44A7-82E6-6BEE528CCA2A}_is1",
        min_version=control.get_software_version(),
    )
# -*- coding: utf-8 -*-
from setuphelpers import *

def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    update_dict = {"windows": ".exe"}
    api_url = "https://api.github.com/repos/TeraTermProject/teraterm/releases/latest"

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    exe_found = False  # Flag pour indiquer la découverte d'un fichier .exe
    for release in releases_dict:
        if exe_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".exe") and update_dict[control.target_os] in asset["browser_download_url"]:
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["tag_name"].strip("v")
                exe_found = True  # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
                break

    # Deleting binaries
    for f in glob.glob("*.exe"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_download)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_download, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    control.set_software_version(version)
    control.save_control_to_wapt()
    
    return package_updated    
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7f69ac9d4866e596f21175ba741d548352b421f6499e65bf5c1f04e32e00308e : WAPT/control
f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad : WAPT/icon.png
809d7fe79691f21d87bc8cb62fcbb610f0ebf787e269c85d67984815a220db66 : luti.json
fcd4a8232d3777770270b42f24db9564b4a048ba434bcb17528b6d05238d3ebc : setup.py
dfa4a9e4a6baccd7f557a8e30063b176e45f8260a74d47df443e351a40d93a7f : teraterm-5.4.0.exe
c31063893206cbc389f42a24d8cedb3bb83537f5c34498d3c9e04167ce0bf8fa : update_package.py