tis-0install icon

Zero Install

Paquet d’installation silencieuse pour Zero Install

2.28.3-2
Configuration
Configuration

  • package: tis-0install
  • name: Zero Install
  • version: 2.28.3-2
  • categories: Configuration
  • maintainer: WAPT Team,Tranquil IT,Clément Baziret
  • licence: opensource_free,wapt_public
  • target_os: windows
  • impacted_process: ZeroInstall
  • architecture: all
  • signature_date:
  • size: 13.76 Mo
  • installed_size: 32.73 Mo
  • homepage : https://0install.net/
  • depends:

package           : tis-0install
version           : 2.28.3-2
architecture      : all
section           : base
priority          : optional
name              : Zero Install
categories        : Configuration
maintainer        : WAPT Team,Tranquil IT,Clément Baziret
description       : A decentralised cross-platform software installation system
depends           : tis-dotnetfx
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : https://docs.0install.net/
installed_size    : 32732999
impacted_process  : ZeroInstall
description_fr    : Un système décentralisé d'installation de logiciels multiplateformes
description_pl    : Zdecentralizowany, wieloplatformowy system instalacji oprogramowania
description_de    : Ein dezentrales, plattformübergreifendes Software-Installationssystem
description_es    : Un sistema descentralizado de instalación de software multiplataforma
description_pt    : Um sistema descentralizado de instalação de software multiplataforma
description_it    : Un sistema decentralizzato di installazione di software multipiattaforma
description_nl    : Een gedecentraliseerd cross-platform software installatiesysteem
description_ru    : Децентрализованная кроссплатформенная система установки программного обеспечения
audit_schedule    : 
editor            : 
keywords          : decentralised,cross,platform,software,installation,system
licence           : opensource_free,wapt_public
homepage          : https://0install.net/
package_uuid      : 456403f8-67af-45e8-94d6-d52949699e86
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0.18363
max_os_version    : 
icon_sha256sum    : 4f7616d8b7e04ca1e372a0a124529ae5e1e3f4012a5d2bd9a5aaf23ac3a3744c
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-02-17T12:18:27.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         : inwLjR4TKovazyRnWAG0Y0/3f+p8SdvygCVyaitqnzbg2W+aSRrrsncDJ7UOd4bmNIWsGCZvnKfkGp4Lgm1Q0n9Y7ihObSmGwvnjCce5Z8Xhl0Ou0tRKAXCqOPrYeIBBI6wVef9MlEVeuXRO9EJU5NYg1zkEwswrg74f491m2X04bjuwSmdkAY1+jjp3FmFYlBk/iPDwNXOxFAsYIOMbRuUHrU7RKV7qTSmdqkZ1h2g5XPHlfcL9XRpOPV04C1evy2UmE6nOK6KkV+hL1EWCkNLNCfWOMjFvCjK8VSiOCnKeFT384VkBb9CsJLbpgAjEa+I41V7GPku72U/6i+CZ6A==

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


def install():
    bin_name = glob.glob("0install.exe")[0]

    def get_version(key):
        return key['version'].split('+')[0]

    # Installing software

    install_exe_if_needed(
        bin_name,
        silentflags=f"self deploy --machine --batch",
        key="Zero Install_is1",
        remove_old_version=True,
        min_version=control.get_software_version(),
        get_version=get_version
    )
 

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

import json


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    for bs_search in reversed(bs_find_all('https://apps.0install.net/0install/0install-win.xml','implementation', proxies=proxies)):
        if 'stable' in str(bs_search):
            version = bs_search['version']
            break

    download_url = f'https://github.com/0install/0install-win/releases/download/{version}/0install.exe'
    latest_bin = '0install.exe'

    # Deleting binaries
    for f in glob.glob("*.exe"):
        print("Removing: %s" % f)
        remove_file(f)

    # 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)

    print("Downloading content for offline install")
    run(f".{os.sep}{latest_bin} --prepare-offline")

    # Checking version from file
    version = get_version_from_binary(latest_bin)

    control.set_software_version(version.split('+')[0])
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)

    # Validating update-package-sources
    return package_updated

ace6b3b5be51cd952d79f070ee538c1209b23cadc849d23c25393d203ded6edb : 0install.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
31c79a21f794d52bedfe1c314c1979c5893e978905eeb8e12e4ee3a11822e23d : WAPT/control
4f7616d8b7e04ca1e372a0a124529ae5e1e3f4012a5d2bd9a5aaf23ac3a3744c : WAPT/icon.png
18281a2905e809b3cd69c53dda8c81b796a2bf3e0e9a121e83dc131a181a0299 : content/59AA3927C24E4E1E.gpg
590aa48729256367d82a512c707d612d29fd7b4512a8b8dd1adae80dd3c73508 : content/https%3a%2f%2fapps.0install.net%2f0install%2f0install-win.xml
c4ea56868b7371fc26dd74ea2551a028b7fbc4cbb8096d2cae01bdcc38796c5b : content/https%3a%2f%2fapps.0install.net%2f0install%2f0install.ico
be73a0715d8ce77e8e8c403a8511f9e9706dcddc84a3cde8cac9e9847b101563 : content/https%3a%2f%2fapps.0install.net%2f0install%2f0install.png
1a31ca3036c8d5819d166e6943cad2d014ca73f4c47cf7357208d534fc59f40b : content/sha256new_7AMEJEQARRK3P6MIKSX5P46VSMBZ2DO73DBXNOKGTRTG6NG25HPA.tgz
98c889daafccb1679d0b714f7bdbbc2a0ff48897331fdfe30bfb8484d34ffbf9 : import.cmd
352e9eb8caf16ef8b83c796c3b737b0b08a2c2d79b7ed3648d5d2d48b31514ce : luti.json
1778a4b06e8557b13e82be5cb0b89eec3412c744368ca279f0f294a490c5d1fb : setup.py
6742505dabeb5ce00f1bb172b7f33278ed974a9640b569ed70ef20151ec3989b : update_package.py