Jitsi Meet
Silent install package for Jitsi Meet
2.10.5550-1
Utilities
Utilities
- package: tis-jitsi
- name: Jitsi Meet
- version: 2.10.5550-1
- categories: Utilities
- maintainer: Amel FRADJ
- licence: Apache-2.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 74.31 Mo
- homepage : https://desktop.jitsi.org/Main/Download.html
package : tis-jitsi
version : 2.10.5550-1
architecture : x64
section : base
priority : optional
name : Jitsi Meet
categories : Utilities
maintainer : Amel FRADJ
description : Jitsi (formerly SIP Communicator) is a free and open source multiplatform voice (VoIP), videoconferencing and instant messaging application
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources : https://github.com/jitsi/jitsi/releases
installed_size :
impacted_process :
description_fr : Jitsi (anciennement SIP Communicator) est une application gratuite et open source multiplateforme de voix (VoIP), de vidéoconférence et de messagerie instantanée
description_pl : Jitsi (dawniej SIP Communicator) to darmowa i wieloplatformowa aplikacja głosowa (VoIP), wideokonferencyjna i komunikatorowa typu open source
description_de : Jitsi (ehemals SIP Communicator) ist eine kostenlose und quelloffene Multiplattform-Anwendung für Sprach- (VoIP) und Videokonferenzen sowie Instant Messaging
description_es : Jitsi (antes SIP Communicator) es una aplicación de voz (VoIP), videoconferencia y mensajería instantánea multiplataforma, gratuita y de código abierto
description_pt : O Jitsi (anteriormente SIP Communicator) é uma aplicação multiplataforma gratuita e de código aberto para voz (VoIP), videoconferência e mensagens instantâneas
description_it : Jitsi (ex SIP Communicator) è un'applicazione multipiattaforma gratuita e open source per voce (VoIP), videoconferenza e messaggistica istantanea
description_nl : Jitsi (voorheen SIP Communicator) is een gratis en open source multiplatformapplicatie voor spraak (VoIP), videoconferenties en instant messaging
description_ru : Jitsi (ранее SIP Communicator) - это бесплатное мультиплатформенное приложение для голосовой связи (VoIP), видеоконференций и обмена мгновенными сообщениями с открытым исходным кодом
audit_schedule :
editor :
keywords :
licence : Apache-2.0 license
homepage : https://desktop.jitsi.org/Main/Download.html
package_uuid : 0e04eaa3-9ea1-4e9a-b0e5-6b64e0f322c5
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 3e46ecca8a5fec839693dbdfe13c3dcb116093d88427884436acca02efd6a707
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : y/032LsSAkW9C4oPPR4Vbkeva0pbnxRWoCDurK++c9z/o966RFBRm3Klty8IRPbPCyTWYiylP5RUieMKmInpAd20swzumJvus2+8jXuCrhkEcY3SehNowVwUM2gZnB0Yoz8H3tDXNDj/svfXxgNAb8VKF1Uz87ExBboutroTo3BMqNRdvLjBUHlskaQTkmdjX4XsFg1u/9fohf5dexsdBdpHSHFvkdP8QB9DMSrjV1uKBh3vI3ZKUg2RM7+2mRrH5HROwq1dVbAQcxDLyoVfMLz/yLun1d3XHE89VGOrsiZO7sr7NyEnEK1tSuKg2flCUQy6NJ+TYcyaU2I38FHUzA==
signature_date : 2024-06-04T10:01:55.277196
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
# -*- 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
def install():
# Declaring local variables
bin_name = glob.glob('jitsi-*-x64.msi')[0]
# Installing the software
install_msi_if_needed(bin_name,name='Jitsi')
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
dict_arch = {"x64": "-x64.msi", "x86": "-x86.msi"}
git_repo = "jitsi/jitsi"
url_api = "https://api.github.com/repos/%s/releases" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
# Getting latest version information from official sources
print(f"API used is: {url_api}")
json_load = json.loads(wgets(url_api, proxies=proxies))
# Vérifier que json_load est une liste
if isinstance(json_load, list):
# Itérer à travers chaque release
for release in json_load:
# Ignorer les préversions
if release["prerelease"]:
print("Skipping prerelease:", release["tag_name"])
continue
# Vérifier que la release contient une clé "assets" et que c'est une liste
if "assets" in release and isinstance(release["assets"], list):
found_valid_asset = False
for download in release["assets"]:
# Vérifier si l'URL de téléchargement se termine par .msi et correspond à l'architecture
if download["browser_download_url"].endswith(".msi") and dict_arch[control.architecture] in download["browser_download_url"]:
url_dl = download["browser_download_url"]
filename = download["name"]
version = release["name"][5:]
found_valid_asset = True
break
if not isfile(filename):
package_updated = True
wget(url_dl, filename, proxies=proxies)
# nettoyer les fichiers temporaires
for f in glob.glob("*.msi"):
if f != filename:
remove_file(f)
version = get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
5bb211323130264feeaf60f162534f4fa446432e9bf12841f76e3fdf6db3a284 : setup.py
5e660a64b1d27a3926b7f87ae626e057552ebc04fef1361325cd263932b3a32f : update_package.py
3e46ecca8a5fec839693dbdfe13c3dcb116093d88427884436acca02efd6a707 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
ffe018701107ce8327cfd8500668dfcb87cb138dfbe8489f3cf474168e54454c : luti.json
cf0afa658974af2ffc2683497419ba03a68448d69d3f972b0d29c89c629d0442 : jitsi-2.10.5550-x64.msi
d9854db295f6d792e99263e859a61b76be95c44a3824ff2885869c62baf9070f : WAPT/control