tis-zoom
6.2.3.40682-17
Une visioconférence d'entreprise avec messagerie et partage de contenu en temps réel
47027 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal

- package : tis-zoom
- name : Zoom Client
- version : 6.2.3.40682-17
- categories : Messaging
- maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Jordan ARNAUD
- editor : Zoom Video Communications, Inc.
- licence : proprietary_free,wapt_public
- locale : all
- target_os : darwin
- impacted_process : Zoom
- architecture : arm
- signature_date : 2024-10-28 10:02
- size : 128.62 Mo
- installed_size : 348.84 Mo
- homepage : https://zoom.us/
package : tis-zoom
version : 6.2.3.40682-17
architecture : arm
section : base
priority : optional
name : Zoom Client
categories : Messaging
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Jordan ARNAUD
description : Enterprise video conferencing with real-time messaging and content sharing
depends :
conflicts :
maturity : PROD
locale : all
target_os : darwin
min_wapt_version : 2.3
sources : https://zoom.us/download
installed_size : 348838866
impacted_process : Zoom
description_fr : Une visioconférence d'entreprise avec messagerie et partage de contenu en temps réel
description_pl : Wideokonferencje korporacyjne z przesyłaniem wiadomości w czasie rzeczywistym i udostępnianiem treści
description_de : Videokonferenzen für Unternehmen mit Messaging und Content Sharing in Echtzeit
description_es : Videoconferencias para empresas con mensajería en tiempo real y compartición de contenidos
description_pt : Videoconferência empresarial com mensagens em tempo real e partilha de conteúdos
description_it : Videoconferenze aziendali con messaggistica e condivisione di contenuti in tempo reale
description_nl : Enterprise-videoconferencing met real-time messaging en het delen van inhoud
description_ru : Корпоративные видеоконференции с обменом сообщениями и контентом в режиме реального времени
audit_schedule :
editor : Zoom Video Communications, Inc.
keywords : zoom,video,conferencing,messaging
licence : proprietary_free,wapt_public
homepage : https://zoom.us/
package_uuid : 75246332-5212-4d7e-9dbb-9a720b03df42
valid_from :
valid_until :
forced_install_on :
changelog : https://support.zoom.us/hc/en-us/sections/360008531132-Zoom-Releases-By-Date
min_os_version :
max_os_version :
icon_sha256sum : 07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-10-28T10:02:57.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 : rmC3K59sBr4jMNZBEicOHtxiIPY7ulpya6177z4FgZIWVr0Va1ygP287NBam1FYICDhw0usORTE6+bL7czY4Cnu5FjwpCJ4ayhYd/iUKjDoft+zE8GLqxhakEp0sY3w9e68rVpcR0KVFClG0ptRVDp5WlludYtiwoIoapd8dM0WutXah8FxGE3oTy+3q1GEjs/zR6goSTVmrNUxSPpKaDCjISEJxuD/uxcNhxsO0rL665Lp5WSWH/OC2rsTLK/zh3Lc4AyIueRPNiKEz+AkTnWrnwKwL1tV3O01ViIKKShwFJP6pYRHU/Kt18P2g/w5zw6d2bxThFXp4I5/qSgZcSw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_pkg("Zoom.pkg")
def uninstall():
uninstall_pkg("us.zoom.pkg.videomeeting")
remove_tree("/Applications/zoom.us.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
import requests
url_dl = "https://zoom.us/client/latest/zoomusInstallerFull.pkg?archType=arm64"
def update_package():
print("Download/Update package content from upstream binary sources")
# Getting proxy informations from WAPT settings
proxy = get_proxies_from_wapt_console()
# Downloading latest binaries
if isfile("Zoom.pkg"):
remove_file("Zoom.pkg")
print("Downloading: " + "Zoom.pkg")
url_dl = requests.head("https://zoom.us/client/latest/zoomusInstallerFull.pkg?archType=arm64").headers["Location"]
version = url_dl.split("/")[-3]
wget(url_dl, "Zoom.pkg", proxies=proxy)
# Change version of the package
control.version = "%s-%s" % (version, int(control.version.split("-", 1)[1]) + 1)
control.save_control_to_wapt(".")
print("Changing version to " + control.version + " in WAPT\\control")
print("Update package done. You can now build-upload your package")
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9617c69d40e8b02654de0ca51cb9d059d5e48c88d245761a938e49462fe9ac85 : WAPT/control
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
9299dc97a655b3f3b64d7b41859ff6d38f6326e51d62521ac6d2d7df021fa551 : Zoom.pkg
71d3eea94b2533be9cc5f96811c433d61daffeb3e78c774bc88f528d45388098 : luti.json
32e3fcaa53f99fc40ca684933264ef588fefafb7699eea3f13d5059209ea54df : setup.py
40a9f99e7d2deb3fcd87e7263270860987685b8751adf34f62a3242964bbbd43 : update_package.py