tis-speccy icon

Speccy

Paquet d’installation silencieuse pour Speccy

1.33.75-7

  • package: tis-speccy
  • name: Speccy
  • version: 1.33.75-7
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN
  • licence: GPL
  • locale: all
  • target_os: windows
  • impacted_process: speccy.exe
  • architecture: all
  • signature_date:
  • size: 18.81 Mo
  • installed_size: 4.52 Mo
  • homepage : https://www.ccleaner.com/speccy

package           : tis-speccy
version           : 1.33.75-7
architecture      : all
section           : base
priority          : optional
name              : Speccy
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Kenan KILICARSLAN
description       : Speccy is a free system information display software, developed by Piriform Ltd, and running on a computer running the Windows operating system
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.ccleaner.com/speccy/download/
installed_size    : 4517888
impacted_process  : speccy.exe
description_fr    : Speccy est un gratuiciel d'affichage d'informations système, développé par Piriform Ltd, et fonctionnant sur un ordinateur muni du système d'exploitation Windows
description_pl    : Speccy to darmowe oprogramowanie do wyświetlania informacji systemowych, opracowane przez firmę Piriform Ltd, działające na komputerze z systemem operacyjnym Windows
description_de    : Speccy ist eine kostenlose Software zur Anzeige von Systeminformationen, die von Piriform Ltd
description_es    : Speccy es un software gratuito de visualización de información del sistema, desarrollado por Piriform Ltd, que se ejecuta en un ordenador con sistema operativo Windows
description_pt    : Speccy é um software gratuito de exibição de informação do sistema, desenvolvido pela Piriform Ltd, e executado num computador com o sistema operativo Windows
description_it    : Speccy è un software gratuito per la visualizzazione delle informazioni di sistema, sviluppato da Piriform Ltd, che funziona su un computer con sistema operativo Windows
description_nl    : Speccy is een gratis systeeminformatiedisplay-software, ontwikkeld door Piriform Ltd, en draait op een computer met het Windows-besturingssysteem
description_ru    : Speccy - это бесплатное программное обеспечение для отображения системной информации, разработанное компанией Piriform Ltd. и работающее на компьютере под управлением операционной системы Windows
audit_schedule    : 
editor            : 
keywords          : speccy,windows
licence           : GPL
homepage          : https://www.ccleaner.com/speccy
package_uuid      : 77072b6f-5215-4c54-b38b-902088fc4e1b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : 58fa6574e3d6d6e2d2bc03f6dfd0bf8283dab0f95c8579ceb8df0244a2642412
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : F2D0KW+XkKsEfrGUpUaIiBG7ebzkvQCwhExO5deR97l4OhcREDi1yJts8JTQI/azvRB4R8lLc3JmZB4M2p1A1ketBnn10fSye7ZLsLd5kcm/ougA87BX0n0cYp5zEPOdtR7t7N/HWixr1hwOk6eL452gsnH7QAk0kmJEWWvzrMLuGkT/d1YQ8cgV0uOrRBq31UjJ9v6Tsaqnz9rUOWkAvS3EmkL80Zv6xcr4mESW159Tk1vggmb2saCVYmvxiv5Cn2gW193K6qfJ/g57fR65+E7kJbGi1qf69x+CxI9tJuFefhYXU5G0AwnpF03n8m8IbFYtn8YKnm2bubvJ7eqIGw==
signature_date    : 2024-06-22T20:00:08.287567
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

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():

    version = control.get_software_version()
    bin_name = "spsetup-%s.exe" % version
    print("installing tis-speccy")
    install_exe_if_needed(
        bin_name,
        "/S /SUPPRESSMSGBOXES /NORESTART",
        key="Speccy",
        min_version=version.rsplit(".", 1)[0],
    )

    # Kill at end of installation
    killalltasks("spsetup.exe")

# -*- coding: utf-8 -*-
from setuphelpers import *

bin_name_string = "spsetup-%s.exe"


def update_package():
    print("Downloading/Updating package content from upstream binary sources")

    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    bin_name_temp = "spsetup.exe"
    url_dl = bs_find(
        "https://www.ccleaner.com/speccy/download/standard",
        "a",
        "class",
        "text-semibold",
        headers={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0"},
        proxies=proxies,
    )["href"]
    latest_bin = bin_name_temp
    version = "0"

    # print("Latest %s version is: %s" % (app_name, version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: " + latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

        # Checking version from file
        download_html = wgets("https://www.ccleaner.com/speccy/version-history", proxies=proxies).splitlines()
        for line in download_html:
            if "latest-version" in line:
                version_from_file = line.split("v")[-1].split("<")[0]

        if version != version_from_file:
            os.rename(latest_bin, bin_name_string % version_from_file)
            version = version_from_file

        # Changing version of the package
        control.version = "%s-%s" % (version, int(control.version.split("-")[-1]) + 1)
        control.save_control_to_wapt()
        print("Changing version to: %s in WAPT\\control" % control.version)

    # Deleting outdated binaries
    remove_outdated_binaries(version)

9f968d2f75b9fe3f3929bfb58c1be111b6675bd1e2c8152ea9181e5221b36d0c : setup.py
03c35fcb1d10cf478c0b9896699937e6e262daa4f4a4353a7cc56b238fe86892 : spsetup-1.33.75.exe
bed8a8021b3f0792dcc9ca330cf574c63d38c478681d862906e80d422f6a82c3 : update_package.py
58fa6574e3d6d6e2d2bc03f6dfd0bf8283dab0f95c8579ceb8df0244a2642412 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
2a74b224038f61752efb015e5185ee20149e2cfcaf484072d501b3a18c585653 : luti.json
7f11ed95ab69a4c651d6dcd334b899cfe3c203efb8887a25a02b0761726864a8 : WAPT/control