
SPAD.neXt
Silent install package for SPAD.neXt
0.9.23.29-1
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-spad
- name: SPAD.neXt
- version: 0.9.23.29-1
- maintainer: Amel FRADJ
- licence: https://www.spadnext.com/discover/discover/complete-edition.html
- target_os: windows
- architecture: x64
- signature_date:
- size: 102.61 Mo
- homepage : https://www.spadnext.com/home.html
package : tis-spad
version : 0.9.23.29-1
architecture : x64
section : base
priority : optional
name : SPAD.neXt
categories :
maintainer : Amel FRADJ
description : Simulation panel Advanced drivers: new generation
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Panneau de simulation Pilotes avancés : nouvelle génération
description_pl : Panel symulacyjny Zaawansowane sterowniki: nowa generacja
description_de : Simulationspanel Fortgeschrittene Treiber: Neue Generation
description_es : Panel de simulación Conductores avanzados: nueva generación
description_pt : Painel de simulação Condutores avançados: nova geração
description_it : Pannello di simulazione Driver avanzati: nuova generazione
description_nl : Simulatiepaneel Geavanceerde bestuurders: nieuwe generatie
description_ru : Панель моделирования Передовые водители: новое поколение
audit_schedule :
editor :
keywords :
licence : https://www.spadnext.com/discover/discover/complete-edition.html
homepage : https://www.spadnext.com/home.html
package_uuid : 31669249-289c-486a-a6e9-2976969890f9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 8c5aec6b7f166297c41632f68d0f0dddfe232f6072f4769f1923504b7b66e1d7
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-14T17:52:52.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 : VOp+Ts1gPjTFPRlHUwlwFVW/mDJfIAbRTakiYgBdQwZbhWIpUCMYfpS6Hlxz/VgXsNrdvM+4SPLqS/Xq/SBoaeubzvPRyRw10gL2bHY53b7XBT0dBRBlInI5/krAddC+ve/1I2GPoD0Sok7xiy9Z7UlFUCGFCqm22/UJB9XH9nSc7MonL0QsCXTzrT1YNiusgy0i0Vaqw3y0dvvELBWoW0Zhkm+Aq8pMkUD9M0InbbotUzKhIq4Jt23j3N5g1MlLQx/KECJm49sT4PTSnAJkEKGcOlIHSBGbcFKtGvByLTBMR6hhVQOeye5EV5SveAUE6ojbISX3e2gJoDQnK3+ViA==
from setuphelpers import *
def install():
bin_name = glob.glob("SPAD.neXt.*.Setup.exe")[0]
install_exe_if_needed(
bin_name,
silentflags="/allusers /S /VERYSILENT",
key="{CE21AD13-50E6-474A-89B9-81E262E620A0}_is1",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
from zipfile import ZipFile
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://www.spadnext.com/download/download-spad-next.html"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
divs = bs_find_all(response.text, "div","class","ce_hyperlink block", proxies=proxies)
zip_file = None
for div in divs:
if zip_file:
break
links = div.find_all('a', href=True)
for link in links:
href = link['href']
zip_file = href
latest_bin = zip_file.split('/')[-1]
download_url = f"https://www.spadnext.com/files/download/{latest_bin}"
break
# 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('*.zip'):
if f != latest_bin:
remove_file(f)
# Dézipper le fichier téléchargé
if latest_bin.endswith('.zip'):
with ZipFile(latest_bin, 'r') as zip_ref:
zip_ref.extractall('.')
# Trouver le fichier .exe extrait
extracted_exe = None
for file in glob.glob('*.exe'):
if file != latest_bin:
extracted_exe = file
break
# Supprimer le fichier .zip
if os.path.isfile(latest_bin):
os.remove(latest_bin)
# Obtenir la version à partir du binaire
version = get_version_from_binary(extracted_exe)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
f982c3750a23c36ba6e1b0cdc8900ab4f41fbda28dbe2ff38828ff3ca9b79d56 : SPAD.neXt.0.9.23.29.Setup.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
fe85542e7f3a6c1a85ed3e4e89d79d31b974b9529fb5515fbc467a946930a327 : WAPT/control
8c5aec6b7f166297c41632f68d0f0dddfe232f6072f4769f1923504b7b66e1d7 : WAPT/icon.png
168c7f29408c4233b72bf0a29fb508c02f4c8a055f35cd520267cbb55933d71e : luti.json
f79a724397108064d37b1d8707629b59981123fd3a0785d7318c308ce3eba8c8 : setup.py
5541b58d8cfa16a8f03d1040a2645de5c555815ea50974ce4befecfc019e34dd : update_package.py