srware iron
Silent install package for srware iron
141.0.7150.0-1
Internet
Internet
- package: tis-srware-iron
- name: srware iron
- version: 141.0.7150.0-1
- categories: Internet
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 122.80 Mo
- homepage : http://www.srware.net/en/software_srware_iron.php
package : tis-srware-iron
version : 141.0.7150.0-1
architecture : x64
section : base
priority : optional
name : srware iron
categories : Internet
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : SRWare Iron is a free implementation of the Chromium source code web browser
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : SRWare Iron est une implémentation gratuite du navigateur Web du code source Chromium
description_pl : SRWare Iron to darmowa implementacja przeglądarki internetowej z kodem źródłowym Chromium
description_de : SRWare Iron ist eine kostenlose Implementierung des Webbrowsers aus dem Chromium-Quellcode
description_es : SRWare Iron es una implementación gratuita del navegador web de código fuente Chromium
description_pt : O SRWare Iron é uma implementação gratuita do navegador Web de código-fonte Chromium
description_it : SRWare Iron è un'implementazione gratuita del browser web con codice sorgente Chromium
description_nl : SRWare Iron is een gratis implementatie van de Chromium webbrowser met broncode
description_ru : SRWare Iron - это бесплатная реализация веб-браузера с исходным кодом Chromium
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : http://www.srware.net/en/software_srware_iron.php
package_uuid : 46b69368-4724-44c5-b984-66bb9a965d4b
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : a1ab90ce46049568ddfab071942bc3acfa6f4c57c79d1708dea7800b052a870d
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-10-20T21:03: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 : um6vRZM9n1jsdrQaqvni238jXlPWBrLNpPKw1PB4+JK2/7NkvbnUD5480Z02j6jO6l3unawYRSNHk/Xm8+pTwZcSAvijTbnJHrGZpL9/lsvvOvfFb+k5mdUzzylI6HLCEHmQKJ4ibmVxgSu7OHIc5I7sFA55yZfXGjeeytmAoNV71R9xXwmq+wjzNSVxCuem2uAR0lzEWN1qxNLpC+VHGpobAsnqvsuRnMZrU9DurJUYAcINx/kdjz9sDmZ+PgsoRULesHgTPqSKRzByti12tWL2itNvNw3EBOSXQoTHM13F53I9D6agA3bSBYBQYRPPnw97SMZ+K7NA4TUwp6QBYQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
print("Installing: srware_iron64.exe")
install_exe_if_needed('srware_iron64.exe',
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /Components=Iron',
key='{BA85A29D-B48E-4826-BAEE-817024E52E29}_is1',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://www.srware.net/downloads/srware_iron64.exe"
latest_bin = download_url.split("/")[-1]
# 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('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
198ba3874f6d73afd5905d00058851570b5f74e127d52c434ad1893637353c43 : WAPT/control
a1ab90ce46049568ddfab071942bc3acfa6f4c57c79d1708dea7800b052a870d : WAPT/icon.png
4699c1e05cf223ab08a9648a35ac53a169751a84787353cc1c468773bef29adc : luti.json
e48a5a90d07824247dfabe124e9ca7037e5796c979252e031ae59713d5cf22d1 : setup.py
7018cf86f5d1dec000774d8ee7a8735f9aba8c47c034b66741d1b8d416ac57cb : srware_iron64.exe
90203af171d1fb4fc2539a13e2cb54f3be3e5eaae7f4fefc166030111fb87525 : update_package.py