- package: tis-quarto
- name: Quarto
- version: 1.7.34-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 129.40 Mo
- homepage : https://quarto.org/
package : tis-quarto
version : 1.7.34-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 : e3d5349c-2bc2-40f9-93c3-2e03ca37f16a
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-09-04T00:09:48.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 : SMWpLeUz1iRZMTs/fxsFjVW7t6jlQx32FZnYC+7HdKheDoubviuGXRecPsp9+oFFt6RVwBAwUsdPSKWUxzj33pOYHWPt0hpqVmXCtugGeCewhDkAXmJ5L7FVRDKGbdY1c2S22ZhqobDfLLewXy1YxmGMKcSXhZ8H4BGoletXkw7k4aV2Fvtn/RQqrSRW4eGpNbbKK0pbNPRojycHWfmkxx8UMHKEV0bZEftTP1ZmlPYfNQFiMOeSN+Wbmv1ZKaJCpO60PyO/tbok8VYG1pCLl1auzCoKkSpdB2i2kindQfj03rWke0+xOnUxIl/D23hFIf6vPDtu61YWfaqdz2LFKw==
# -*- 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
802123c40b6d92e66b9d176e7db118ca2055cbedf6d665c0a3d3891f43168fab : WAPT/control
25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94 : WAPT/icon.png
9d34235d73f94efe5f272bb6e8d8ebe3a2e71504b79c8e00991e30e497eb35ee : luti.json
7744a916f542b8efb736b8c6be3617a9a4ab08470a423f9cb124877929442507 : quarto-1.7.34-win.msi
f1a3d6f57430513dfcfb296e9b92ea9d77b3e1e74a1c3600725850bfb5307dc8 : setup.py
ab18c3db26343507a8b8acdfb8bb81da3afd420e024f23e9241c2a973df93f3e : update_package.py