- package: tis-srware-iron
- name: srware iron
- version: 138.0.7000.0-1
- categories: Internet
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 120.73 Mo
- homepage : http://www.srware.net/en/software_srware_iron.php
package : tis-srware-iron
version : 138.0.7000.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 : 4b44d096-3ff0-4c9a-a319-b686a354c8a3
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-09-08T00:37:29.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 : OecjTqeRA4SxxU+tj5f9LaNcn9A6S9Q1GWU7yzgQeeV8pquu1XXQYH84kukrpZOqAKry5LGe08AOZGiZp0FIu+QweQ6JzC67V+5ghy+DILgwV0Uf9TbRe8rEc2XxCVY+kgmgvasExFeIXg0gbMvxsxvIp5Sx7afa1EnRGkhrGTCV/VWx4ccCpx3HJ9pN9guqYUrXsFYPYT6zYszQsqU/qfrXGhgjg0TjO1atzIzhqfBYYU4UVvkBL416T3eqTnaboYg5dpqjDsVp6MrP9s8WFN2VSoP1vbMvYPOpZZqZ9GMvGihnn9wsWEYwjJm1aAFuBiv6lTVnjbKISKz3FdoIlA==
# -*- 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
230ceccae63f60052d4d00d8b5f599a6635dddd70ee97e7d2a15030801293bc3 : WAPT/control
a1ab90ce46049568ddfab071942bc3acfa6f4c57c79d1708dea7800b052a870d : WAPT/icon.png
464b4efe63ec4c13b8425b25bce1a5bcf8407a7ddaefbd70fdddb106f7d3289c : luti.json
e48a5a90d07824247dfabe124e9ca7037e5796c979252e031ae59713d5cf22d1 : setup.py
b12668ab7ac6c838c202dafc9ee56cb28b9adc4b060cea7d2c0e7a45ebb01ae1 : srware_iron64.exe
90203af171d1fb4fc2539a13e2cb54f3be3e5eaae7f4fefc166030111fb87525 : update_package.py