tis-quarto icon

Quarto

Paquet d’installation silencieuse pour Quarto

1.6.43-1

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

package           : tis-quarto
version           : 1.6.43-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      : 7230fc66-3f6e-4e1e-a561-30dc00a7f920
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-04-09T16:06:39.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         : ugvnxTQDmQntA37RWz2fDTg8dZrIq3PG90/v5/g8o59oeRKHYXpwsRJIXLlW/lcrTtaRSJ5sstKHeJWPDCON4+J/rByJMOyluo5qB1dccAEVevLVYj7sByLDVGiPe3NicvuKVhxn2BKnbAYaX0kch7wbEsLjvL88hcKfE5eIBm+3rDaFCPaXO4XyFkkh2n1r9GtHauEzWRQ6z5FS4JX/WNGmbIDP7Ge2aYwF3WTp8LaLQHP/lF3Wh+nTEjVHwwHjuup04uggI6YgFhqmN0Rcn4PdNSi8qFsx8Zawx0bqLaH3r69SKD/QdbBabu12iOPfxz+KGbqbRJgtkUZY3Bx1TQ==

# -*- 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
4696ea7a8e636eccf004f6ae80c0b4872542f781ef04226cded02f0d1808b542 : WAPT/control
25387bda615f92fb5ddf1f5f3a7e3405a74a86daf0e6fa7254b335c6e8824b94 : WAPT/icon.png
afd0065082633ac30b634e996df69ec39a966de284494104615e61664d7e39ea : luti.json
9604c1346b8558f72821803ab18c30b64458f918881bf94e91f147a40aafe432 : quarto-1.6.43-win.msi
f1a3d6f57430513dfcfb296e9b92ea9d77b3e1e74a1c3600725850bfb5307dc8 : setup.py
ab18c3db26343507a8b8acdfb8bb81da3afd420e024f23e9241c2a973df93f3e : update_package.py