Vivaldi Installer
Silent install package for Vivaldi Installer
7.9.3970.47-1
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-vivaldi
- name: Vivaldi Installer
- version: 7.9.3970.47-1
- maintainer: Joffrey Le Piquet
- licence: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/
- target_os: darwin
- architecture: all
- signature_date:
- size: 223.25 Mo
- homepage : https://vivaldi.com/
package : tis-vivaldi
version : 7.9.3970.47-1
architecture : all
section : base
priority : optional
name : Vivaldi Installer
categories :
maintainer : Joffrey Le Piquet
description : It's a navigator. But fun. It's packed with smart built-in features. It's also incredibly flexible and private
depends :
conflicts :
maturity : PREPROD
locale :
target_os : darwin
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : C'est un navigateur. Mais amusant. Il est doté de nombreuses fonctionnalités intelligentes intégrées. Il est également incroyablement flexible et privé
description_pl : To nawigator. Ale zabawny. Ma wbudowanych wiele inteligentnych funkcji. Jest również niezwykle elastyczny i prywatny
description_de : Es ist ein Browser. Aber einer, der Spaß macht. Er verfügt über viele eingebaute intelligente Funktionen. Er ist außerdem unglaublich flexibel und privat
description_es : Es un navegador. Pero divertido. Tiene un montón de funciones inteligentes integradas. También es increíblemente flexible y privado
description_pt : É um navegador. Mas um divertido. Tem muitas funcionalidades inteligentes incorporadas. É também incrivelmente flexível e privado
description_it : È un navigatore. Ma divertente. Ha molte funzioni intelligenti integrate. È anche incredibilmente flessibile e privato
description_nl : Het is een navigator. Maar wel een leuke. Er zijn veel slimme functies ingebouwd. Het is ook ongelooflijk flexibel en privé
description_ru : Это навигатор. Но очень интересный. В него встроено множество умных функций. Кроме того, он невероятно гибкий и индивидуальный
audit_schedule :
editor :
keywords :
licence : https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/
homepage : https://vivaldi.com/
package_uuid : a16e2c2a-2fa3-4d4c-b97b-7174d03380e4
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.15
max_os_version :
icon_sha256sum : ba4569a7cb2fefd8e3cd20b9c67d858355e38038a6509f357b5f8b4447b3411a
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-04-01T07:07:17.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 : rmlUW67wMy+r3K2Du0djWRqQ43f9fsZC416OBk/qB/yBAa6FcGp8VmqCHb7lRpvqFOEedq9VDViGBorlh8cRm8YzpV/cA0zGW1tX7sL/WjFqrvjJufCENfujB7IQ23ohufJYg1MubKak3YJxBspWK0vRr4XhaDdwYLIwlTdppKyk/uFeLOkV2ShvZp7EoL70zOG/zdRpDhGPekaYcAXRVv04RiOKU6bsw0mO6P25QHp5isoa9vQ4uT5gUtwSZgNTbuwm+TsYK63+nl58JW5o1ArPQIUjuvaljw3dHCLTf7dfKbNCgJDhLrudzH5kKx78QoD2Qd7UFPBKi8RUfkgYpw==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
dmg_file = glob.glob("*.dmg")[0]
install_dmg(dmg_file)
def uninstall():
remove_tree("/Applications/Vivaldi.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://vivaldi.com/fr/download/"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
links = bs_find_all(url_base, "a","class","download-link", proxies=proxies)
exe_file = None
for link in links:
if link['href'].endswith('.dmg'):
href = link['href']
exe_file = href
download_url = exe_file
latest_bin = exe_file.split('/')[-1]
version = latest_bin.replace("Vivaldi.", "").replace(".universal.dmg", "")
break
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.dmg'):
if f != latest_bin:
remove_file(f)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
483c55cf8363e161565037e40b05862d8b1a384eae2f14f8e52abf518793ee28 : Vivaldi.7.9.3970.47.universal.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
79a46ee324cf0c59d7822b91bffe894b050effbd98cbeab1305396c9237d2902 : WAPT/control
ba4569a7cb2fefd8e3cd20b9c67d858355e38038a6509f357b5f8b4447b3411a : WAPT/icon.png
96c8800ed2c203d2e8e13c7e2912307bd5985fd64402f10c4554f59efd0b002d : luti.json
f5e30edbb46ca53187586222b8410eafe9168f4e6851296a02802518668c9e19 : setup.py
e9c580be0e89b72e6e60bacfada7948473de3bf4481106e2e976e3c5c297083e : update_package.py