PeaZip
Paquet d’installation silencieuse pour PeaZip
10.8.0-6
System and network
Utilities
System and network
Utilities
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-peazip
- name: PeaZip
- version: 10.8.0-6
- categories: System and network,Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Giorgio Tani
- licence: LGPLv3
- locale: all
- target_os: windows
- impacted_process: peazip,peazip-configuration,pea
- architecture: x86
- signature_date:
- size: 8.43 Mo
- installed_size: 41.50 Mo
package : tis-peazip
version : 10.8.0-6
architecture : x86
section : base
priority : optional
name : PeaZip
categories : System and network,Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : PeaZip is a free and open-source file manager and file archiver
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://github.com/giorgiotani/PeaZip/releases
installed_size : 41496576
impacted_process : peazip,peazip-configuration,pea
description_fr : PeaZip est un logiciel libre permettant de compresser en divers formats (.zip, .7z, TAR…) tout type de fichiers
description_pl : PeaZip to darmowy i open-source'owy menedżer plików i archiwizator plików
description_de : PeaZip ist ein freier und quelloffener Dateimanager und Dateiarchivierer
description_es : PeaZip es un gestor y archivador de archivos gratuito y de código abierto
description_pt : PeaZip é um gestor de ficheiros e arquivador de ficheiros gratuito e de código aberto
description_it : PeaZip è un file manager e un archiviatore di file gratuito e open-source
description_nl : PeaZip is een gratis en open-source bestandsmanager en bestandsarchiver
description_ru : PeaZip - это бесплатный файловый менеджер с открытым исходным кодом и архиватор файлов
audit_schedule :
editor : Giorgio Tani
keywords : file,manager,archiver
licence : LGPLv3
homepage :
package_uuid : f0c7a487-6438-4fe5-9936-e1bf51f1f4b1
valid_from :
valid_until :
forced_install_on :
changelog : https://peazip.github.io/changelog.html
min_os_version : 5.0
max_os_version :
icon_sha256sum : 2d7a3e7dfda4ca9b7bef070b7b2959dc7ca911bd3f0c973797cc6d31caf3b317
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-12-06T10:32:46.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 : Rf1HdhARwrn/AtXbFANtcHU3/IK5yNwLxEjfzVhZRkUPHUrMmMaA/z1ZvgaPEllG8+BBHl0lh1Lt8idjk8sopdM3ztbd8wuPEe7VbEH8f0tKDB2tQi729Hrb3tDX5E6GlQ7MCqhgzHrqPf8kHtbEqMZfH5AL6DwjkNq42ojIrVpsxK9ILigUhGyLpa6B/mjPk6cp6AIQKEfCuYtOILpJMEMg4MwCTIse6L56o8cBgb9MxPJd7PnMWqTbO7ydFRABJaoE7yycIxRYAWnjVxeYTgonLo9sXfHGYz17LGkDUGSjHGmdCRbXuzroxnjpqUrR93jLoI407oKDafDu2P5TLg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variables
bin_name = glob.glob("*peazip*.exe")[0]
# Installing the software
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT",
key="{5A2BC38A-406C-4A5B-BF45-6991F9A05325}_is1",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "peazip-"
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = "peazip/PeaZip"
api_url = "https://api.github.com/repos/%s/releases/latest" % git_repo
if control.architecture == "x64":
arch_contains = ".WIN64.exe"
else:
arch_contains = ".WINDOWS.exe"
sub_bin_name = bin_contains + "%s" + arch_contains
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for download in json_load["assets"]:
if bin_contains in download["name"] and arch_contains in download["name"]:
download_url = download["browser_download_url"]
version = json_load["tag_name"].replace("v", "")
latest_bin = download["name"]
break
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
# Checking version from file
version_from_file = get_product_props(latest_bin)["ProductVersion"]
if version_from_file.startswith(version) and version_from_file != "":
print("Changing version to the version number of the binary")
os.rename(latest_bin, sub_bin_name % version_from_file)
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return result
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
2a16a4fdcb44292d4de01a1362074eb40ba86e78ca0c02735b7b17c71b5dc89b : WAPT/control
2d7a3e7dfda4ca9b7bef070b7b2959dc7ca911bd3f0c973797cc6d31caf3b317 : WAPT/icon.png
44f4ad3df0db432a75a0798606ad1347f20a441e9f24a54c392f8167510be9a6 : altconf.txt
f9e6a3dfb63a410da21852dc56607db95301fa5de9af1cafe231f49895fd5b4d : conf.txt
682b750ec4fb44e0380f9b43baf3a23f5f6407bcccbbe553f888a45d71e3bd0d : luti.json
538e4489ae19fea87e52c4167bd91d1af618da6394e475a8f03a5d3feff86aa4 : peazip-10.8.0.WINDOWS.exe
200808ad8261d467a7c69d2790b7c0e153f19a5074eb2ba4e8c88eec13bb914f : setup.py
a9a9cd90a288b5432b45358feb430f31fc6b5ff2dcb2c3559f274864578972d3 : update_package.py