- package: tis-srware-iron
- name: srware iron
- version: 137.0.6950.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.30 Mo
- homepage : http://www.srware.net/en/software_srware_iron.php
package : tis-srware-iron
version : 137.0.6950.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 : d09ef2fd-698f-4d8b-bb7c-86a9c856d819
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-06-28T19:03:13.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 : T7KvIX3z+AyIL/9k03/ZiS7vUfIsy/XDO4TElC7GQnUyrwzE/JOtcJkNUdtV1HqaHQ7DQZ9yjQ0te02TV0dFxxoblSzLefgtvO4LNQtPYBRYXEuZGn6YUBhyz56iqQromOKI5PiegfdMbVxrfAeZzUe3stIk6ectFwYMMuFQRn+mNNT6Ll8+jW5yQ3jSLQTaXlmhCWQriMx+wmBPcFwxRG1pu1G9FR39LRmuNfAcN8O7936HeCVpUYOVSPcISIbrWcRErJdHfY1FH3xpOHj0lLmKguTCeVBHv4zkLzvgx5H7YOb8lVVy57QrZ9UXbxYmr9LYOat5RBS+YcOCJMD2Jw==
# -*- 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
831ef92c49260ca1d2f23ebd583c2c791b8957383cc2e865d298edf9da63757c : WAPT/control
a1ab90ce46049568ddfab071942bc3acfa6f4c57c79d1708dea7800b052a870d : WAPT/icon.png
c2e8b3b9593a0b1d3c5fec1c8732ba34a767362206ffb0f303d9b331811270dd : luti.json
e48a5a90d07824247dfabe124e9ca7037e5796c979252e031ae59713d5cf22d1 : setup.py
3d9fb1f2a11d201216325157bf2a1828bdfb595906c0e7f94b156eb95cb922bd : srware_iron64.exe
90203af171d1fb4fc2539a13e2cb54f3be3e5eaae7f4fefc166030111fb87525 : update_package.py