tis-jitsi icon

Jitsi Meet

Paquet d’installation silencieuse pour Jitsi Meet

2.10.5550-1

  • 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: x86
  • signature_date:
  • size: 72.66 Mo
  • homepage : https://desktop.jitsi.org/Main/Download.html

package           : tis-jitsi
version           : 2.10.5550-1
architecture      : x86
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      : 16fb5116-74a7-4676-a7fd-e67147ab932f
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 3e46ecca8a5fec839693dbdfe13c3dcb116093d88427884436acca02efd6a707
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : jSfqfTCOyPMPDOGd/PYnget9WkIJHTcBE0K+bB/KTWG4xlMKnORsne1b+Dd/Ya8/UgOBGalld/M5GPgaozUL6y8VVEi1Pf6XUw1B1ZGFFH86630XzPafZGws0N4IQGT0RBnQw14fO+HMXp7S6+buTuotCtLigT1LF1wI5bzRsmNb9JWG0SbxIG9+gPbVlH25bRXNJG+cRd6HiBn+cjZkqDKewnhXX1BfmGAiOwgqz0XW3Ehu11NzxdTpxDof+M+/DWoWVOumHm9ZtYtUfsWbit6LdqUejSyaG0HiIuFkZLgzo8WkL4peAo8c5UYSxDdLVFNCrOwsVFaUglq8MySWzA==
signature_date    : 2024-06-04T10:00:47.677364
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()
{
   "key":"{C67C1D3F-7207-4867-A542-5BAF5778C403}",
   "name":"Jitsi",
   "version":"2.11.5633",
   "install_date":"2024-05-29 00:00:00",
   "install_location":"",
   "uninstall_string":"MsiExec.exe /I{C67C1D3F-7207-4867-A542-5BAF5778C403}",
   "publisher":"Jitsi",
   "system_component":0,
   "win64":false
  }
 ]
}

"""
# 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-*-x86.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()

91b0d52488ba1abd3520b141fb41bdd838b496742be6bcf1b07e4437f24e3f03 : setup.py
f0aabb9f32e93183d6845f5b5d9e2f1f8b531133c92f3a26bf539a87f16b4572 : jitsi-2.10.5550-x86.msi
5e660a64b1d27a3926b7f87ae626e057552ebc04fef1361325cd263932b3a32f : update_package.py
3e46ecca8a5fec839693dbdfe13c3dcb116093d88427884436acca02efd6a707 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
a331e40d29d1ec83f1b4523762caff970f10813e131a6ad755936ca611b55fb3 : luti.json
a0bd97f0b8cfe9083d3eb63f83f56bc6743ae83add0370bd96ecbd0b815ba392 : WAPT/control