Dolt
Paquet d’installation silencieuse pour Dolt
								
								1.76.3-1
								
							
							
                                   
                                       
                                           Utilities
                                       
                                   
                                
								
							
                               
                                   
                                       Utilities
                                   
                               
							
							
						- package: tis-dolt
 - name: Dolt
 - version: 1.76.3-1
 - categories: Utilities
 - maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
 - editor: DoltHub
 - licence: opensource_free,cpe:/a:apache:license_2.0,wapt_public
 - locale: all
 - target_os: windows
 - impacted_process: dolt
 - architecture: x64
 - signature_date:
 - size: 44.31 Mo
 - installed_size: 101.28 Mo
 - homepage : https://www.dolthub.com/
 
package           : tis-dolt
version           : 1.76.3-1
architecture      : x64
section           : base
priority          : optional
name              : Dolt
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT
description       : Dolt provides tools such as hosting, permissions, query interface, to facilitate data collaboration
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 101281280
impacted_process  : dolt
description_fr    : Dolt fournit des outils tels que l'hébergement, les autorisations, l'interface d'interrogation, afin de faciliter la collaboration en matière de données
description_pl    : Dolt zapewnia narzędzia, takie jak hosting, uprawnienia, interfejs zapytań, aby ułatwić współpracę w zakresie danych
description_de    : Dolt bietet Tools wie Hosting, Berechtigungen, Abfrage-Interface, um die Zusammenarbeit von Daten zu erleichtern
description_es    : Dolt proporciona herramientas como alojamiento, permisos, interfaz de consulta, para facilitar la colaboración de datos
description_pt    : Dolt fornece ferramentas como alojamento, permissões, interface de consulta, para facilitar a colaboração de dados
description_it    : Dolt fornisce strumenti come hosting, permessi, interfaccia di interrogazione, per facilitare la collaborazione sui dati
description_nl    : Dolt biedt tools zoals hosting, permissies, query-interface om samenwerking tussen gegevens te vergemakkelijken
description_ru    : Dolt предоставляет такие инструменты, как хостинг, разрешения, интерфейс запросов, для облегчения совместной работы с данными
audit_schedule    : 
editor            : DoltHub
keywords          : database,sql,git
licence           : opensource_free,cpe:/a:apache:license_2.0,wapt_public
homepage          : https://www.dolthub.com/
package_uuid      : 86af0eb5-82e5-451d-91d8-27b29822f3f2
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 11fadef9b21e09b5d061ab989b96c4d095cf11f1731d883c53c91f7129f28fb3
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-11-02T00:03:16.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         : XqyAlEb6Yx3+i8XVsQICcYb2SuEYjxsyFsfWC8xaNr4fLIVHwxoN6w2s7ZfyQc26jnDtam8xMBI6AAdF7WFYuMw3v5qGCyzvgz8ceWN/AoJZyPa6dg8PnQ2SSfMblxhGwoFWIgt67L4ZU0SFcztx8FxTrg/uJp2DvaPYmOA30zIpQnHrMaNLwkV3mpSyT6rUh04mItPffi0wZv10kq/I0pywhGzr2/s0JdVpGFZg1um3wvsu/eDyKD+XsTpBdT4JHDAwrZu6mZVhF/D0K5KHmdvO2fy7hbfi/u++x43wXsFYVnYOkPyUV6rVQdIN8P5Oevv5DaGcDsERApJu0xohNA==
                        # -*- coding: utf-8 -*-
from setuphelpers import *
def install():
    bin_name = glob.glob("dolt-windows-amd64.msi")[0]
    install_msi_if_needed(bin_name)
                            # -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import re
def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    api_url = "https://api.github.com/repos/dolthub/dolt/releases/latest"
    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    msi_found = False  # Flag pour indiquer la découverte d'un fichier .msi
    for release in releases_dict:
        if msi_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".msi"):
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["tag_name"].replace("v", "")
                msi_found = True  # Mettre à jour le flag pour indiquer qu'un msi a été trouvé
                break
    if not isfile(latest_bin):
        package_updated = True
        wget(url_download, latest_bin, proxies=proxies)
    # Deleting binaries
    for f in glob.glob("*.msi"):
        if f != latest_bin:
            remove_file(f)
    version = get_version_from_binary(latest_bin)
    control.set_software_version(version)
    control.save_control_to_wapt()
    return package_updated
                            38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
553e88e3b95eabad528e76759c17b61fc3982689274565c9de181463d1f1274f : WAPT/control
11fadef9b21e09b5d061ab989b96c4d095cf11f1731d883c53c91f7129f28fb3 : WAPT/icon.png
4cba64435b8c0d2068b4f2c88ba38a735742c8090749090783eca8567ab5ff07 : dolt-windows-amd64.msi
64e47111f8ae96a6182fd9ea6c13916277644678d0f8e78c5d229a8180aa741d : luti.json
cc79fa54cde57df18aa7091074bd54dcd75b1792a9ef4f28d9c2c49c33129a83 : setup.py
2d4bc63e94777f01fe0c4ea339e687bcb04067c3d44ea6762810a95b29fdc879 : update_package.py