tis-peazip icon

PeaZip

Silent install package for PeaZip

10.8.0-6
System and network
Utilities
System and network
Utilities

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-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: x64
  • signature_date:
  • size: 11.27 Mo
  • installed_size: 41.50 Mo

package           : tis-peazip
version           : 10.8.0-6
architecture      : x64
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      : c9c5aa81-660a-4122-8e6b-bb6e385d8145
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:30:56.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         : V8V9S5t252sIFLaAzLoTIqaCP9urGe56b7GoE+qIJiHmYGSs5UX2d0TGdUy/g1GgTzQtNYfCGMtfKweGS0oBItCaF1qRCJjlaac47C23l65GjzAgUCzYmaaJAE1P094mxxWCK01wMCTUcbwMPl//IiM0x84yn8skWeugSfeOQ4FTMGQ/4r1zPHuT+1kRNmhQ/qk7AluMoK9iiE8KbDoe6e379atJmd1EDGf7Jakkqazyq+CJDwBh4NrJzKM2r3EIHzLibDNr5gX/5/uspueL/prJWDuGm9eXzpydISajc116Vv8dMBQvS2JAmKA25P8gHKEcZIvjnQ9f5HnfOmcZMQ==

# -*- 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
440119d6425bda2262e9995879a1519bd8ee08ef6e5db6feea514069ca3debef : WAPT/control
2d7a3e7dfda4ca9b7bef070b7b2959dc7ca911bd3f0c973797cc6d31caf3b317 : WAPT/icon.png
44f4ad3df0db432a75a0798606ad1347f20a441e9f24a54c392f8167510be9a6 : altconf.txt
f9e6a3dfb63a410da21852dc56607db95301fa5de9af1cafe231f49895fd5b4d : conf.txt
1ffc099dffa31f3cac6ad963731b9663edbf33bf594029763064b3e233e6e5cc : luti.json
e9e50bfa974462d4de2107a483caccfed48de1f785b50a3324094256beb092ae : peazip-10.8.0.WIN64.exe
200808ad8261d467a7c69d2790b7c0e153f19a5074eb2ba4e8c88eec13bb914f : setup.py
e337cf584f69538ad83af1999fd046b75da38cdc4b44220e4d8742b96520093b : update_package.py