- package: tis-quarto
- name: Quarto
- version: 1.7.33-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 129.26 Mo
- homepage : https://quarto.org/
package : tis-quarto
version : 1.7.33-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 : PROD
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 : f66e6818-ae7a-420a-84a1-c5504e9d6514
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-11T18:02:21.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 : iLGBt20dJks4d/KcqPs7SebzDYb45m2ygaj/La2uFekFjb2rB9/SPVI0eucWdbzo8mNzG0wFEgXD6KQySm3IegUSreJB7rvhchk8j1QK8aYaIwmQMQRxAii+03WcqgOmAAXvXkBHo7fH8MUVFKetUYm2veTzbprV5bYN8dR0V5cyWI1LLn3pqcF6IbLdfpjN41b7HjUGtj6AQNuBsPMWHcoPR5izq3b4KwWq91P7g39VpJI1qOQEm/3W+EcBRiirU2HnFECDTryzWUTxUzdSIy/2ym4bUvS6ybDNmRc9i1o1684DpZVyS1txWa5zg6M0+A9xCiH98G3hxD57VtModA==
# -*- 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()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
463d9055afb8bb31e14b0e1b61b2ecf02e1665875ce41d958c49a3ac9c1d5a8d : WAPT/control
25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94 : WAPT/icon.png
fe94eacc8467bbbd429f57797c59911fdc170e51ab95bfb03cef1a4065f16165 : luti.json
993bcf6dbf0344039287ba2a0e0a1cef352d3d512f61828fb1b07fe830f4d221 : quarto-1.7.33-win.msi
f1a3d6f57430513dfcfb296e9b92ea9d77b3e1e74a1c3600725850bfb5307dc8 : setup.py
ab18c3db26343507a8b8acdfb8bb81da3afd420e024f23e9241c2a973df93f3e : update_package.py