Quarto
Paquet d'installation silencieuse pour Quarto
1.10.18-1
Utilities
Utilities
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-quarto
- name: Quarto
- version: 1.10.18-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 148.06 Mo
- homepage : https://quarto.org/
package : tis-quarto
version : 1.10.18-1
architecture : x64
section : base
priority : optional
name : Quarto
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Open-source scientific and technical publishing system built on Pandoc
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Système de publication scientifique et technique à source ouverte basé sur Pandoc
description_pl : System publikacji naukowych i technicznych typu open-source oparty na Pandoc
description_de : Open-Source-System für wissenschaftliches und technisches Publizieren auf Basis von Pandoc
description_es : Sistema de publicación científica y técnica de código abierto basado en Pandoc
description_pt : Sistema de publicação científica e técnica de código aberto baseado em Pandoc
description_it : Sistema di pubblicazione scientifica e tecnica open-source basato su Pandoc
description_nl : Open-source wetenschappelijk en technisch publicatiesysteem gebouwd op Pandoc
description_ru : Научно-техническая издательская система с открытым исходным кодом, построенная на базе Pandoc
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://quarto.org/
package_uuid : e7d91dd9-b007-4fbc-a1ee-49e17d94df81
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-07-24T15:54:15.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 : nN/OzuodWCLFzKYMjytQ7JYVHLVZvXy03msBloGFJjirYO+P1gu1iByC1IB/IJfqyEtidt/3Z4u4XQUhJ9CeRjzZ5OdS3kZ/aYY2GLY04SSyxZmg0Dcz2Sbe3TEKMuIwGb0FLj9JQnTuWahv4ytCoGwAYygmO/nZQBx+5IUcR19KK8qhq1sRUeXmy5EByM7bCTNqFxYqYYkOPg3t+dZnzi7F9h7J4oVZX0HIPvqsA047vMOpb0zRXd/CnRh89SUH6RqGzkPzczu2ULLafeV89fYVVzB0FAZMYXxovmCNGoyvwwybj3uXTS1JszEIA93XnBB3pSRHDunnasFzzPibxQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name= glob.glob('quarto-*-win.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "quarto-dev/quarto-cli"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.msi') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.msi'):
if f != filename:
remove_file(f)
version =get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
d4b6dc991a132bd2839eb17423728f04433d74c35af3cc360964353fdde12417 : WAPT/control
25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94 : WAPT/icon.png
7668ba2b7521c12f28191408eaa7cc1536d78debb64e2c7d75a7673cd5518a23 : luti.json
8b98a10b429b1a70e949df31d0171e7ba9c1808470d6c84a46f659315ab67e31 : quarto-1.10.18-win.msi
f1a3d6f57430513dfcfb296e9b92ea9d77b3e1e74a1c3600725850bfb5307dc8 : setup.py
ab18c3db26343507a8b8acdfb8bb81da3afd420e024f23e9241c2a973df93f3e : update_package.py