
- package: tis-cpu-z
- name: CPUID CPU-Z
- version: 2.13-1
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: all
- signature_date:
- size: 3.10 Mo
- homepage : https://www.cpuid.com/softwares/cpu-z.html
package : tis-cpu-z
version : 2.13-1
architecture : all
section : base
priority : optional
name : CPUID CPU-Z
categories : System and network
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : A free system profiling application (system monitor) that detects the CPU, RAM, motherboard chipset and other hardware features
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Une application gratuite de profilage système (moniteur système) qui détecte l'unité centrale de traitement, la RAM, le chipset de la carte mère et d'autres fonctionnalités matérielles
description_pl : Bezpłatna aplikacja do profilowania systemu (monitor systemu), która wykrywa procesor, pamięć RAM, chipset płyty głównej i inne funkcje sprzętowe
description_de : Eine kostenlose Systemprofilierungsanwendung (Systemmonitor), die die CPU, den RAM, den Chipsatz des Motherboards und andere Hardwarefunktionen erkennt
description_es : Una aplicación gratuita de perfilado del sistema (monitor del sistema) que detecta la CPU, la RAM, el chipset de la placa base y otras características del hardware
description_pt : Uma aplicação gratuita de criação de perfis do sistema (monitor do sistema) que detecta a CPU, a RAM, o chipset da placa-mãe e outras caraterísticas do hardware
description_it : Un'applicazione gratuita per la profilazione del sistema (monitor di sistema) che rileva la CPU, la RAM, il chipset della scheda madre e altre caratteristiche hardware
description_nl : Een gratis systeemprofielprogramma (systeemmonitor) dat de CPU, het RAM-geheugen, de chipset van het moederbord en andere hardwarekenmerken detecteert
description_ru : Бесплатное приложение для профилирования системы (системный монитор), которое определяет процессор, оперативную память, чипсет материнской платы и другие аппаратные характеристики
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://www.cpuid.com/softwares/cpu-z.html
package_uuid : 22b08857-8899-44f8-92a8-434e2523b37c
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b4938c35b76a40c64f421d40210e0ed7ed4e940f932a244cc2def7d9edff7829
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-12-25T15:00:32.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 : nNVe0kovyX5pp4vC+RCo3tqIgODfN62Q05/PwEJ3QlP+iPhXSk6VVDjfQGORzfTVq/JY3uJVA28YUKaC7ATJwrKT3yH+sv+kP6tXvSKtMuIhDkyLzeGRibKSu63jlVpFLXYr+4gv6F4q4397vQV/Chc+3Q2qcTJNd6oqZBY/fVbKkSPDVMNthyv9ce5cdNNnQ5tI4XqxfMmPVezWZ9FwRVTiIzDu/Xwc+ozdagvLFiTcAqd77W7PzoUZuimPTrXgY9WnqtGP3uyBdEl3fu14qDEEQB+liyYtyDAK4UdQjGe6kfXSVu6Z9OaVwWKWh7XpDk/b4EvHO1mOCjT/oMAUmA==
# -*- 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
bin_name = glob.glob('cpu-z_*-en.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART',
key='CPUID CPU-Z_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()
url_base = "https://www.cpuid.com/softwares/cpu-z.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","links", proxies=proxies)
exe_file = None
for div in divs:
if exe_file:
break
links = div.find_all('a', href=True)
for link in links:
if link['href'].endswith('.exe'):
href = link['href']
exe_file = href
latest_bin = exe_file.split('/')[-1]
download_url = "https://download.cpuid.com/cpu-z/"+ latest_bin
version = latest_bin.split("_")[-1].rsplit('-')[0]
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('*.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
dd5454b533f847f8423d61934485e8b9a87969f5245993e0d3034ae2dcb0a519 : WAPT/control
b4938c35b76a40c64f421d40210e0ed7ed4e940f932a244cc2def7d9edff7829 : WAPT/icon.png
a4d4394bddb7a6d30db5d59656c8156a40afbe55929712eef54c12513e2fd36f : cpu-z_2.13-en.exe
e860ad3dac2c7fa68e7f9715da25ba0acd34d9935cdd52ef63208401ec05e9ac : luti.json
2d5b2843110e9090132ed11aa7ad446e46d3290c161bc52f1e3b54cb81deb02f : setup.py
33803605b9431d1b9a4b187327d857b379f822f221549e34f2ae6af812952e0b : update_package.py