tis-0install icon

Zero Install

Silent install package for Zero Install

2.27.5-1

  • package: tis-0install
  • name: Zero Install
  • version: 2.27.5-1
  • 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.15 Mo
  • installed_size: 32.73 Mo
  • homepage : https://0install.net/
  • depends:

package           : tis-0install
version           : 2.27.5-1
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      : 4781a506-10a2-49f1-85ed-a5e0432c11d0
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10
max_os_version    : 
icon_sha256sum    : 4f7616d8b7e04ca1e372a0a124529ae5e1e3f4012a5d2bd9a5aaf23ac3a3744c
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-24T09:10:04.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         : JaCsXIwMAUvlHA29oid8CTNvG8Z0DSzj/zd3s4R6mpxzT2en+SErN241QIXGW6K1MBeXtvuIZjvIbeEPkTDnxVZgia5y6rN7se+runbroFDkdYO2uIhe+0BG7VGiGvahb48V0cFvNimJMkzjLbVPxkPAEE9eT1X0frRHQ4Hin8XfrIz8pAu55Ci3+ffoodYcQqv/eS5J46EirWJl5MmpKOExebGm0R9PNjG7nUZuXIB6psrx4tHRz4ilNaDs2VoGMq/CmqIOiakl7KwZZTAWisawggWy+JZHCOmuaxAW0Ts8xmza6NSKU5ICWeNNaGg29KacO6CRaIZSnrhzffIJFQ==

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

5003cff7308d635d849fd3acee6c067e976fccb766c10ed9a941013dca11395e : 0install.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5522a724fd54d1420a7b3ad800785ae8e1c704303116dfbb558860fe71db7e5c : WAPT/control
4f7616d8b7e04ca1e372a0a124529ae5e1e3f4012a5d2bd9a5aaf23ac3a3744c : WAPT/icon.png
18281a2905e809b3cd69c53dda8c81b796a2bf3e0e9a121e83dc131a181a0299 : content/59AA3927C24E4E1E.gpg
fead50c15fb591e2024b4956746f94ca8baf7f7b0954f6c4c4604b9d0b296802 : 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
236b9ecd139bcf21c13a6b3975ddf1eaa9422c127ae253ab8b7331a9f19bda1a : content/sha256new_ZXQAQQHR5E7R44HZVWE6IZMVXQ7IPDDSKRIK6EWNEX5OYF6Y5VRA.tgz
98c889daafccb1679d0b714f7bdbbc2a0ff48897331fdfe30bfb8484d34ffbf9 : import.cmd
fe8bd243b4afc9d17d4bdf3ffc42a0f63ec408f064c06005802d9719b5aa2a75 : luti.json
1778a4b06e8557b13e82be5cb0b89eec3412c744368ca279f0f294a490c5d1fb : setup.py
6742505dabeb5ce00f1bb172b7f33278ed974a9640b569ed70ef20151ec3989b : update_package.py