Zeal
Silent install package for Zeal
0.8.0-2
Development
Development
- package: tis-zeal
- name: Zeal
- version: 0.8.0-2
- categories: Development
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT,Amel FRADJ
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
- locale: all
- target_os: windows
- impacted_process: zeal
- architecture: x64
- signature_date:
- size: 133.47 Mo
- installed_size: 232.09 Mo
- homepage : https://zealdocs.org/
package : tis-zeal
version : 0.8.0-2
architecture : x64
section : base
priority : optional
name : Zeal
categories : Development
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT,Amel FRADJ
description : Zeal is an offline documentation browser for software developers
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 232085335
impacted_process : zeal
description_fr : Zeal est un navigateur de documentation hors ligne pour les développeurs de logiciels
description_pl : Zeal to przeglądarka dokumentacji offline dla programistów
description_de : Zeal ist ein Offline-Dokumentationsbrowser für Softwareentwickler
description_es : Zeal es un navegador de documentación offline para desarrolladores de software
description_pt : O Zeal é um navegador de documentação offline para programadores de software
description_it : Zeal è un browser per la documentazione offline per gli sviluppatori di software
description_nl : Zeal is een offline documentatiebrowser voor softwareontwikkelaars
description_ru : Zeal - это автономный браузер документации для разработчиков программного обеспечения
audit_schedule :
editor :
keywords : documentation,development
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage : https://zealdocs.org/
package_uuid : 45c0671d-71d6-4b95-bc1c-31ea46e90b66
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/zealdocs/zeal/releases
min_os_version :
max_os_version :
icon_sha256sum : 0a0c6536b13cb856deff5a72d80c50952aa41bca4b04c944b75ea809493d4e5a
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-03-05T10:00:47.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 : V+vauJVh6UqmwBgLG8ylMw2/fJDi0yYRzGea/1lk5MgASUJMhObynOio4RbxfG/AEP4VBHVPcxHxIEbQc5+jYvzgEDSko4TZTP59JwaaT1QOFWNvgZXIV5/OuZeGcE+TUekvyhoDM4i6J7oi8NEK6WVugUOJyekZ1rcRRcLHhP6dQM1aW4F4zeoeiYsi2OgSIWC89IPmujYTL2RTnuSzeP5JdxPa6W9TYxOlkZE9duDCNMCNBj/qy6xAZDoNnbEimor6z5SjVL/Aa0XmUjK0lbOFymg/nqCpjhkBrGTj0Tbl62hOis8+Jlxh9iyaXr2WfCtpbLeT/pdN8IqrFs6qUQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("zeal-*-windows-x64.msi")[0]
install_msi_if_needed(
bin_name
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".msi"}
api_url = "https://api.github.com/repos/zealdocs/zeal/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
msi_found = False # Flag pour indiquer la découverte d'un fichier .msi
# version = json_loads["tag_name"].replace("v", "").replace(".windows", "")
for release in releases_dict:
if msi_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".msi") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["name"].replace("v", "")
msi_found = True # Mettre à jour le flag pour indiquer qu'un msi a été trouvé
break
# Deleting binaries
for f in glob.glob("*.msi"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6584bf6009267fc32e6d565cd696e400a2319e3fcc759aef299875e6d14a6d49 : WAPT/control
0a0c6536b13cb856deff5a72d80c50952aa41bca4b04c944b75ea809493d4e5a : WAPT/icon.png
a73145cccd3739be284fb987871a7960de4fb534e36bc9a60503efa49107270b : luti.json
908e4a15615c7e05b803289751806923faca1dd6a26df60e655ade1638473b9e : setup.py
de56d10cedb23b3f069ae9c130cfbca08cedffa7168ccb9fa233aa5ec97157b6 : update_package.py
ef52de58863c7a9817cbea826c3d656f4b88082268465068cd3c2af55446a74e : zeal-0.8.0-windows-x64.msi