Tryton Client
Paquet d'installation silencieuse pour Tryton Client
8.0-3
Utilities
Utilities
- package: tis-trytonclient
- name: Tryton Client
- version: 8.0-3
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELE,Ingrid TALBOT
- editor: Cedric Kier
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
- locale: all
- target_os: windows
- impacted_process: tryton
- architecture: x64
- signature_date:
- size: 44.69 Mo
- installed_size: 139.89 Mo
- homepage : https://www.tryton.org/
package : tis-trytonclient
version : 8.0-3
architecture : x64
section : base
priority : optional
name : Tryton Client
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELE,Ingrid TALBOT
description : Customer for Tryton ERP
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://www.tryton.org/download
installed_size : 139894477
impacted_process : tryton
description_fr : Client pour l'ERP Tryton
description_pl : Klient Tryton ERP
description_de : Kunde für Tryton ERP
description_es : Cliente de Tryton ERP
description_pt : Cliente da Tryton ERP
description_it : Cliente per Tryton ERP
description_nl : Klant voor Tryton ERP
description_ru : Клиент для Tryton ERP
audit_schedule :
editor : Cedric Kier
keywords : erp
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage : https://www.tryton.org/
package_uuid : 1b82709e-fc77-4f88-a179-06c9318bc925
valid_from :
valid_until :
forced_install_on :
changelog : https://docs.tryton.org/latest/modules-product-kit/releases.html
min_os_version : 10
max_os_version :
icon_sha256sum : c47ff46598f5233b2a0bdef592e9243f55392b590e4f2d77f0a7643f9903f77f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-04-26T09:00:37.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 : gXYWpz/XIRXevxdJzSMHcGAn1THlNOtHUKYM+0ovvQMxbhrBtLr8L+i0bOrMLq8AjYZbytB80MTqen1hcN0nzRkw0yFRx/VD9rQ0hTVsifKUWhvUt5OE1mK8xqVGMhBte9iQTHkEzT9nZsnnXcEixA43xY5gAIK4ZhKBcjZZ/jGbga3CI8JTuWCwmJYe+54/ADLbgoNDRezTk1RG1jFhcuDNHNEYhzscMvIYqq3wZJPrt0Dm0jgY3NYAXLSM7i9SythwICbCXhMIvoVZaAWfFXjjXz09L3+ijma1M+IRQcz8FtTm4OtpxTh8YBgRz9V34NwIws4lLeU+Vg3RzSxJBg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def get_version(app_registry_dict):
return app_registry_dict['key'].rsplit('-', 1)[-1]
def install():
bin_name = glob.glob("tryton-*.exe")[0]
uninstall_older_version()
install_exe_if_needed(
bin_name,
silentflags="/S",
key=f"tryton-64bit-{control.get_software_version()}",
get_version=get_version,
min_version=control.get_software_version()
)
def uninstall_older_version():
killalltasks(ensure_list(control.impacted_process))
for soft in installed_softwares("Tryton"):
uninstall_key = soft['key']
version = soft['key'].rsplit('-', 1)[-1]
if Version(version) < Version(control.get_software_version()):
run(uninstall_cmd(uninstall_key))
wait_uninstallkey_absent(uninstall_key)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
user_agent = r"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0"
download_dict = {
"windows-x64": "https://downloads.tryton.org/current/tryton-64bit-last.exe",
"windows-x86": "https://downloads.tryton.org/current/tryton-32bit-last.exe",
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
download_url = requests.head(download_dict[os_type], proxies=proxies).headers['Location']
latest_bin = download_url.rsplit("/", 1)[-1]
version = download_url.split("/")[-2]
latest_bin = latest_bin.replace("last", version)
latest_bin_extension = latest_bin.rsplit(".")[-1]
# Downloading latest binaries
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies, user_agent=user_agent)
else:
print("Binary is present: %s" % latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
#nettoyer les fichiers temporaires
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f6650ab380d8a0e25ab253a91e636703b16423dd1002ae3539d3e9419ae95136 : WAPT/control
c47ff46598f5233b2a0bdef592e9243f55392b590e4f2d77f0a7643f9903f77f : WAPT/icon.png
30969b863cd5116bded35140f22a05ae11a0b8348784637ee318802771453954 : luti.json
4c0eaafd992cff81fd4c71738f6eeeb9aad26fb48aca4996ec4acab5a2d5e870 : setup.py
ceb5808f9cc30660e4c1ef863e6e5cce71e1c5429b132a5d550a8f9f1df10870 : tryton-64bit-8.0.exe
683a9e9a76438be8e6ab052b71548ea35646e4dcfae52aff10f58ef51daaa24c : update_package.py