tis-zoom
6.2.6.41824-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.6.41824-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 : x64
- signature_date : 2024-11-01 08:01
- size : 43.24 Mo
- installed_size : 348.84 Mo
- homepage : https://zoom.us/
package : tis-zoom
version : 6.2.6.41824-17
architecture : x64
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 : 86475241-c0c7-4a5e-92ef-055702d7a22b
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-01T08: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 : KsJ0qYXIYn9X/ioYeKG9Xj1I/lD8F5U+05EzGcGEfwZR/PCfEH8wEIxwhIAJRzKUGgAiUxc69A4vdgHKV1H4UC58LFcAbB7ElT40M82iHyzNOd5HgVL6U0lsehpVisQldR5WCPS+A2dzBEz85Xhni5wgmWILhHSj3M6vuiPWdgl5NJTmnOB0+9xQp6w3p6tiE7CbmDYVCtr+Ojx9Me7hEH0uothDAlNPD2+b0QeRfHfnehpcCMvC5ttIWmKgYmKuYJZFim0cF0ZLRLoVkGv4AKis0kNEEzM+D7HG/IYDTD/Np9LS/pjVl4TirdKus/L7CxSi0+u72TNHB4oB4P9QLw==
# -*- 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/Zoom.pkg"
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/Zoom.pkg").headers["Location"]
version = url_dl.split("/")[-2]
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
5fb24ff60d528c6d572502473ec2a0096ba68bf6344aad8acc78ed7d9197d812 : WAPT/control
07e6189e229728d04052abe0386bd7d4da42d38b0c288af28596d7204bdf0810 : WAPT/icon.png
06c3f49d674a1757d3a64f9a4f56e0384dbeb245d3d7a4e89a9c730047399ba5 : Zoom.pkg
ffe3b4cd6d43cace1c5a748590414af9b969301ec6e1b33a5a0565b08d3f54eb : luti.json
32e3fcaa53f99fc40ca684933264ef588fefafb7699eea3f13d5059209ea54df : setup.py
5bd96a5925436f9f1d2e636747e2d21bd97068a28c7f55b85e1931b024bf7fba : update_package.py