Opera
Paquet d’installation silencieuse pour Opera
124.0.5705.65-6
Internet
Internet
- package: tis-opera
- name: Opera
- version: 124.0.5705.65-6
- categories: Internet
- maintainer: WAPT Team,Tranquil IT,Kevin Guerineau,Simon Fonteneau,Jimmy PELÉ,Gaëtan SEGAT
- editor: Opera Software
- licence: Freeware
- locale: all
- target_os: windows
- impacted_process: opera,opera_crashreporter,opera_autoupdate
- architecture: x86
- signature_date:
- size: 122.48 Mo
- installed_size: 202.10 Mo
- homepage : https://www.opera.com
package : tis-opera
version : 124.0.5705.65-6
architecture : x86
section : base
priority : optional
name : Opera
categories : Internet
maintainer : WAPT Team,Tranquil IT,Kevin Guerineau,Simon Fonteneau,Jimmy PELÉ,Gaëtan SEGAT
description : Opera is a free, cross-platform web browser developed by the Norwegian company Opera Software
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://get.geo.opera.com/pub/opera/desktop/
installed_size : 202104832
impacted_process : opera,opera_crashreporter,opera_autoupdate
description_fr : Opera est un navigateur Web gratuit et multiplate-forme développé par la société norvégienne Opera Software
description_pl : Opera to darmowa, cross-platformowa przeglądarka internetowa stworzona przez norweską firmę Opera Software
description_de : Opera ist ein kostenloser, plattformübergreifender Webbrowser, der von dem norwegischen Unternehmen Opera Software
description_es : Opera es un navegador web gratuito y multiplataforma desarrollado por la empresa noruega Opera Software
description_pt : Opera é um navegador web gratuito e multiplataforma desenvolvido pela empresa norueguesa Opera Software
description_it : Opera è un browser web gratuito e multipiattaforma sviluppato dalla società norvegese Opera Software
description_nl : Opera is een gratis, platformonafhankelijke webbrowser, ontwikkeld door het Noorse bedrijf Opera Software
description_ru : Opera - это бесплатный кроссплатформенный веб-браузер, разработанный норвежской компанией Opera Software
audit_schedule :
editor : Opera Software
keywords : web,browser,opera
licence : Freeware
homepage : https://www.opera.com
package_uuid : 348690e6-fa11-42a5-aed6-1a814f204200
valid_from :
valid_until :
forced_install_on :
changelog : https://blogs.opera.com/desktop/changelog-for-80/
min_os_version : 10
max_os_version :
icon_sha256sum : 5a1abf75c0f18834556bbdf1142d11b8bf3528e0b0342a4f6dfcbcc672ac0c9f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-27T18:02:22.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 : sQwh7+LGBDXlyrIUpAjZ+UGvcKb6Vx1rEW3kiFThNpbXW6ohG7adb8oezVatDUbN1pUY5Ew748T3IY/pGkcnConUdihE9LuYwergGEwexVWMbivmls4bZM9txh2Dcqbpiiu5GLNU57n4df1b066WlDZuTOKkJUKQYetszq9LJisFKm9tPgfQORcj62Tsz4kniL3ZkWN3mwqfUIS9eRuT64paqUXKJRw09HAkGGmTboKf3fHD0IW9nlKdNaHMev6rFxTqLXHKEqbfxx0jH3JPg4oYz/GBb0l6snR8sdx6Gqi7vFRh68puaGBgLvpM5XwJotm7MGSMKfsIzDtPOYUxIg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variables
package_version = control.get_software_version()
bin_name = glob.glob("*Opera_*.exe")[0]
app_uninstallkey = "Opera %s" % package_version
# Installing the software
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1 /pintotaskbar=0 /desktopshortcut=0",
key=app_uninstallkey,
min_version=package_version,
)
# Avoiding the usage by WAPT of the app built-in Uninstallstring
uninstallkey.remove(app_uninstallkey)
def uninstall():
# Declaring local variables
package_version = control.get_software_version()
app_uninstallkey = "Opera %s" % package_version
# Uninstalling the software
for uninstall in installed_softwares(uninstallkey=app_uninstallkey):
print("Removing: %s (%s)" % (uninstall["name"], uninstall["version"]))
killalltasks(control.get_impacted_process_list())
app_uninstall_cmd = uninstall_cmd(uninstall["key"])
app_uninstall_cmd[2] = "/silent"
run(app_uninstall_cmd)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
import requests
bin_contains = "Opera_"
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
download_url = "https://get.geo.opera.com/pub/opera/desktop/%s/win/"
# Getting latest version from official sources
re_versions = re.compile('<a href="([\d\.]*)/">')
index = wgets("https://get.geo.opera.com/pub/opera/desktop/", proxies=proxies)
for versionopera in sorted(re_versions.findall(index),key=lambda p:(Version(p)),reverse=True):
if control.architecture == "x64":
latest_bin = bin_contains + "%s_Setup_x64.exe" % versionopera
else:
latest_bin = bin_contains + "%s_Setup.exe" % versionopera
if not requests.head((download_url % versionopera) + latest_bin, proxies=proxies).status_code == 404:
version = versionopera
break
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % (download_url % version))
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget((download_url % version) + latest_bin, latest_bin, proxies=proxies)
# Checking version from file
version_from_file = get_product_props(latest_bin)["ProductVersion"]
if Version(version) != Version(version_from_file) and version_from_file != "":
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating or not update-package-sources
return result
6b2ae4f82d4a1ed7c02ff8fb1a9282d4b0a18ead75c3348364edd3ec7b5d5530 : Opera_124.0.5705.65_Setup.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
47e489623c781563b3e7812e78ae2242c7c3e67056c28e54f5f8b764468a7ef9 : WAPT/control
5a1abf75c0f18834556bbdf1142d11b8bf3528e0b0342a4f6dfcbcc672ac0c9f : WAPT/icon.png
114fec887d557742496ed4d9e50541cb60c3428ef13e6e3232dd774aaa67b44c : luti.json
f6434c6a2269463872b02158b929d50dfbfd833c6d651f2947bccd23c2c949a9 : setup.py
1e56858ab27099155e11be423788b2ab099cef771deafc43cfd5f519bcc30650 : update_package.py