
Trillian
Silent install package for Trillian
6.5.45-1
- package: tis-trillian
- name: Trillian
- version: 6.5.45-1
- maintainer: Administrator
- licence: Freemium
- target_os: windows
- architecture: all
- signature_date:
- size: 30.05 Mo
- homepage : https://trillian.im/
package : tis-trillian
version : 6.5.45-1
architecture : all
section : base
priority : optional
name : Trillian
categories :
maintainer : Administrator
description : Trillian is modern and secure instant messaging for people, business and healthcare
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Trillian est une messagerie instantanée moderne et sécurisée pour les particuliers, les entreprises et le secteur de la santé
description_pl : Trillian to nowoczesny i bezpieczny komunikator internetowy dla ludzi, firm i służby zdrowia
description_de : Trillian ist modernes und sicheres Instant Messaging für Menschen, Unternehmen und das Gesundheitswesen
description_es : Trillian es un servicio de mensajería instantánea moderno y seguro para particulares, empresas y sanidad
description_pt : O Trillian é um serviço de mensagens instantâneas moderno e seguro para pessoas, empresas e serviços de saúde
description_it : Trillian è la messaggistica istantanea moderna e sicura per le persone, le aziende e l'assistenza sanitaria
description_nl : Trillian is moderne en veilige instant messaging voor mensen, bedrijven en de gezondheidszorg
description_ru : Trillian - это современный и безопасный обмен мгновенными сообщениями для людей, бизнеса и здравоохранения
audit_schedule :
editor :
keywords : A4F8B230-B180-4CD8-90EB-C16FB3544E4F
licence : Freemium
homepage : https://trillian.im/
package_uuid : ce1100ce-0517-4e88-9c78-12ebde346533
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 059c0858b6f8b9779dc7910b2370eaa19bdec15aba2b0d66dba799a5460f684b
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-09-18T14:01:47.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 : EvMiH/9W/+gw2cqyhhPINnbGV5jQGHWU3DUELQZJmILh7kgG31LCTffdCe4Ufn8CR+zEAG6GQwCL+XLsw7gS3KBKFOgMSxh6ob9XIcAx1BoJmWv3TIDWu+gHwpmiV5q3hlep3JHSPRY0dE8m6Dxb8UWSlI7Hg263htXdYljKD8qLWCV9HFM/H76+po3PhkqV+tyL15sN3fYgAcHFzwlnSrqrGccMNl6fTD3K3hSo3dtVwzErvWy3J0fml1EqgTCkyF9nQa0cfD3zFSbLmsWaGCjmPXYGKR7/NKGOylWmQG1PCc1+TothWWJgaZV1swk45VPNNkXh0Sq1LuNDPIPL4A==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
sofware_name = "trillian"
def install():
# Declaring local variables
bin_name = glob.glob("trillian-*.msi")[0]
# Installing the software
install_msi_if_needed(
bin_name,
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://trillian.im/get/windows/msi/"
# Getting latest version information from download url
requests_result = requests.head(download_url, proxies=proxies, allow_redirects=True)
latest_bin = requests_result.url.split("/")[-1]
# Deleting binaries
for f in glob.glob('*.msi'):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
latest_version = get_msi_properties(latest_bin)["ProductVersion"]
# Updating the package
control.set_software_version(latest_version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
bb421647a30e719c5bf465cc8ed12da91a97a5b3fb24b298108f9135b4916951 : WAPT/control
059c0858b6f8b9779dc7910b2370eaa19bdec15aba2b0d66dba799a5460f684b : WAPT/icon.png
0463ccf00ef536205e5bdcb78a93aea062ec46f543e630837c9283797dd0b181 : luti.json
5977c24b4a48821e05ef47f5ea2b4739282207da0ccfb54f77c2c1034b848be9 : setup.py
33f467106cf009114d19dc6ba5706c594a1f24e422e5a2a5f438f705ce142e98 : trillian-v6.5.0.45.msi
d9a7f1617a42aaf6192e15867dcc9840feba016695b88bddf7c941c01456187a : update_package.py