- package: tis-opera
- name: Opera
- version: 120.0.5543.201-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: 118.01 Mo
- installed_size: 202.10 Mo
- homepage : https://www.opera.com
package : tis-opera
version : 120.0.5543.201-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 : 07d61f79-aad8-4a32-935a-7db27e57042a
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-08-25T12:02:00.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 : ihEAPYwgenNanMfXgt+0GwaGICZAilaB5lJkTtkTFwVimH4E9w4FJLSbuwJHbJ9/pyNmTu9v/Khhu+QeTZQtkhQ9QDAaRbM44HneG/FXwLs63Sk5WRFC/xWsbHjDzfYMG0/jyism39FfW6IDRJ18w31tdYwB48hYec6b9YdRTGRcqtYepv7KKodsq8wE1ZM8++N+djOBgqor6KaMKpzQrr/MEybqJc5L3yfvTG0vxBXVEPJP5jSJ1bRBBkrQMVnahdcMw3of3mQVcFWPdTRnQp3vdHF5aicKaJEULwG+YDbqPRwuo76MDXjrInaV7TkPEOGDRSGHPRGYldAyYeWMRA==
# -*- 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
df391ba70a912b6cd1aa76e5ec1bb4c6d4b7e4e966efe8dddbf398cac0f2880d : Opera_120.0.5543.201_Setup.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d51ce1ed2a5dc9715105b5d01213310964de268a971c19d3a0444c7119d3d1d6 : WAPT/control
5a1abf75c0f18834556bbdf1142d11b8bf3528e0b0342a4f6dfcbcc672ac0c9f : WAPT/icon.png
073b3e016ebe91a26df12c987bd1390f5164f9cd80abdbe81917091637ca0ee8 : luti.json
f6434c6a2269463872b02158b929d50dfbfd833c6d651f2947bccd23c2c949a9 : setup.py
1e56858ab27099155e11be423788b2ab099cef771deafc43cfd5f519bcc30650 : update_package.py