tis-zoom
6.2.10.43047-17
Enterprise video conferencing with real-time messaging and content sharing
47027 downloads
Download
See build result See VirusTotal scan

- package : tis-zoom
- name : Zoom Client
- version : 6.2.10.43047-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-11-23 15:02
- size : 130.42 Mo
- installed_size : 348.84 Mo
- homepage : https://zoom.us/
package : tis-zoom
version : 6.2.10.43047-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 : 9de3782e-9a69-4638-8e1a-7ff2c7d824bb
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-11-23T15:02:52.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 : R2s+/sNL0e3YYEtTug28TMi9zqyhqzqLrtVxOlOaC7MthRFq1vnGc4Uc9mnC6Wbgwkb/fPYtJtBmhMV2qBfz8thfASF1yPFAVIpjxRB/VO47AKDTXDP32hXvWVVK4U7HpgEPF2y87rN5djlwWKVCHA2UqUJhp6Zua57ToNXgYIWcWfhk0H0m33Uom2OSMQl96EMjJnTxYd321+zO6bI8U9TaJvRRzAsHhLCP/Mg786lRIr2EA3Wd52g4vxxTGwUeOGUojYBxeHT68SBRqBOAo+aeLdFU7MjyUWQLdTlJxhWDsKiM4CphTDYwRb+7AvmTEhP5taTiUUHUBQ8niCpycQ==
# -*- 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
88b8dc693ab0cb38adb9b9312ea7f8b4fbb6e85a2dc68647a7805835063fa8b0 : WAPT/control
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
8ba64ee86a743cbdb4d28925a7b349e7a8c6285fe7beea39e046b3c9f054d04a : Zoom.pkg
9e7d23804ea890df89b275eb933162e34613cc23363bc7b49527e676a82df56d : luti.json
32e3fcaa53f99fc40ca684933264ef588fefafb7699eea3f13d5059209ea54df : setup.py
40a9f99e7d2deb3fcd87e7263270860987685b8751adf34f62a3242964bbbd43 : update_package.py