Opera
Paquet d'installation silencieuse pour Opera
131.0.5877.74-6
Internet
Internet
- package: tis-opera
- name: Opera
- version: 131.0.5877.74-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.11 Mo
- installed_size: 202.10 Mo
- homepage : https://www.opera.com
package : tis-opera
version : 131.0.5877.74-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 : 654c9ec6-1cf9-44b4-a6a6-64119b3287ab
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 : 2026-05-20T12:18:40.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 : AHmGJxS9ELplQ0LquJRK90gcT635+auNlUj5WhwZJLEiNJstIHJ8y2ehPvGhKOzDXyrkF19K5aQxlNH+ts5S9LM7uSfba1A/bvfT8QEmTZs92ewQOJG842Mww/U98ISywyhvAxH/1resLWoMDXlFNPndUnkqI8FehpyJaCpT5Qn9ElL1XErFriaW1ZoH1Nhn7RqLAs9/QmlCe84O85mAXFmI2hIycxrT1yAuRr2X9UCIz4OFoS1/Uy1w71da5XD8Ib/s+1QCm53vR6iD75D878iqeDpy7OGJswMMwmjcKiX9X3MxyybEvfL/ri3n6CHIBaY5U6KFGe8kvyuqQwt7IA==
# -*- 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
f8c2f069a36c1a0b99b32eaa73f43c203bf7c40564734272d961937b3d3b26b0 : Opera_131.0.5877.74_Setup.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
40e11d48a960245756db7912f4608cc9cb718756225390a670143e668366e78b : WAPT/control
5a1abf75c0f18834556bbdf1142d11b8bf3528e0b0342a4f6dfcbcc672ac0c9f : WAPT/icon.png
0dfabe8ae448b9c362d34365c37ed6245c75f809a1facf895f95fe6d72db89ea : luti.json
f6434c6a2269463872b02158b929d50dfbfd833c6d651f2947bccd23c2c949a9 : setup.py
1e56858ab27099155e11be423788b2ab099cef771deafc43cfd5f519bcc30650 : update_package.py