tis-quarto icon

Quarto

Paquet d’installation silencieuse pour Quarto

1.8.26-1
Utilities
Utilities

  • package: tis-quarto
  • name: Quarto
  • version: 1.8.26-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: opensource_free,wapt_public
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 129.25 Mo
  • homepage : https://quarto.org/

package           : tis-quarto
version           : 1.8.26-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      : d9105eaa-ef01-4375-93a0-14599c81b12e
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-11-17T15:07:28.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         : cfQFJjbxmlZEQ7mdh5+cs9aoLUn4dVAYSNMY3nPi6jLIqtxMcIhwh3RNsy7+xdNDvRJ/3gZlkGpp+2L9sGy+ye0hV+uAoOLIcZ9hFMjQ8tB7goPg9zaMb5sxeb+5MXmV+roxl2E+b/lSOLDSjBSynIyTfaz4Qcw1mOsIOkfdyfhi/EsDipctYcSi6etJRbMmwU0Mm35vLzR84eDnhLXAtWSv8wHQdt/o4Q9pylSQSf6xBkVMKNYWaFFRx7eOhiYhv04kQFIkaYdvKeD/HcOrwxaPtyw2F/HvGSlk7EBviEWU6sYw5G8Uj15qDFvGgYyaypaoLy53OAMOJ5Ce5janqg==

# -*- 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
9015aafebb8ba9da297917ca636585648bae11c7b811b24abcef3ca52b8e6731 : WAPT/control
25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94 : WAPT/icon.png
356392ec68b87754f54051fc69e2eb0a4aa7f8f301f65cdff7157461c6061e53 : luti.json
b8af5a53ab726f9ae756fcfe417178665cf33e7536784e30d7eba47fd0010e5c : quarto-1.8.26-win.msi
f1a3d6f57430513dfcfb296e9b92ea9d77b3e1e74a1c3600725850bfb5307dc8 : setup.py
ab18c3db26343507a8b8acdfb8bb81da3afd420e024f23e9241c2a973df93f3e : update_package.py