tis-vivaldi icon

Vivaldi Installer

Paquet d’installation silencieuse pour Vivaldi Installer

7.6.3797.52-1

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-vivaldi
  • name: Vivaldi Installer
  • version: 7.6.3797.52-1
  • maintainer: Joffrey Le Piquet
  • licence: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/
  • target_os: debian_based
  • architecture: x64
  • signature_date:
  • size: 126.38 Mo
  • homepage : https://vivaldi.com/

package           : tis-vivaldi
version           : 7.6.3797.52-1
architecture      : x64
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         : debian_based
min_wapt_version  : 
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      : 87944275-bea7-4c78-954c-baa334ebfb8a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : ba4569a7cb2fefd8e3cd20b9c67d858355e38038a6509f357b5f8b4447b3411a
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-09-18T07:25: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         : eOtTofK0oFVlbD70YhFcL2ddDGTl0DHHvjzTF+mRn+FwIDtRFF2MBpP+DIebiLmDgQefbPvPU0bDNv0/+YnO1FdWsvXqfwDpppgHsEI9bsqphi+M9D9JYK5QoY/YTw+BlaW1407bwcqcjLYuiVFSU7l7KOWx/2uDYVXMaH3+5imh6iXx8z2Am5vT1PyEyW3kTfODX9k/e+8VB6N2NrqaOufInGtNcsDWqoOUrjo2cM3k7sI8hf3Czs76aWNtlDg+GNUJ/yTiIE+Z0o+dY2mVbkYaBDruJYaACSYIcSXVplfW/GbYkiNVVynxecYUkdl2OGf5e+YicGrnCJDApVyvHw==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    deb_file = glob.glob("*.deb")[0]
    install_deb(deb_file)


def uninstall():
    uninstall_apt("vivaldi-stable")


# -*- 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('amd64.deb'):
            href = link['href']
            exe_file = href
            download_url = exe_file
            latest_bin = exe_file.split('/')[-1]
            version = latest_bin.split("_")[1].replace("_amd64.deb", "")
            version = version.split('-')[0]
            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('*.deb'):
        if f != latest_bin:
            remove_file(f)

    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()


01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
f18cd4d7a35ef87d2e6a412dfa0770caa5a71b84b4fc82cfd22328a4677641df : WAPT/control
ba4569a7cb2fefd8e3cd20b9c67d858355e38038a6509f357b5f8b4447b3411a : WAPT/icon.png
c1c20b377afe380068d5eb75d831027caf9a1c890a759a767f6ee18e90825b8a : luti.json
81d8d8a71c40c0eb3c82db03bc4b7956a85c64ecbc0b4b4117f33629e36f0369 : setup.py
fbc856c6111d597909c5226118f3d3ee7f3c4a545b898125c96b4d53543bb34c : update_package.py
703627e958fe4bfa5fb798c5d88b5250a2082c218717ef99847efde012cdc504 : vivaldi-stable_7.6.3797.52-1_amd64.deb