
Dolt
Paquet d’installation silencieuse pour Dolt
1.59.18-1
Utilities
Utilities
- package: tis-dolt
- name: Dolt
- version: 1.59.18-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.29 Mo
- installed_size: 101.28 Mo
- homepage : https://www.dolthub.com/
package : tis-dolt
version : 1.59.18-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 : 1d3a5ce2-c1e5-4328-a6d8-0506cbde7eeb
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-10-12T20:02:17.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 : r7YhW2/VGoRtz+70SF5J3hKhrTEG4qW5fp0XPA624MrMQCMc6v+zlb7VU9xriWBg/kdPtHBy/jEBUnQjb8glwPj86y4q4iRIVyZDwveGa9Y9m1kXKudbh4e2zQIoVimUiqRc64hS4Yj7JjDTYoZApsUih9ZFYjW9KR/rfzNOhtRrusbWF2SFJheBvJCHGsJrkH9Kvi6KAQwKwWp9XNyGgkp0+uLL/dNDJY1hFPAsLUd67A+a00NvHrZsC9P8Epj6oi/zly3mY6x3DE5vs7M/Qg3mz/KIeO6eyeqZT1qEotO23c+ITVsNzei6TVPHovPcx/rfzFd3OgnEUKty+T3GOw==
# -*- 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
f9ab3ed45f57ccd3f4a62c0bdbebb96b2e97f4964bdfa63f8dc748a47abd1e80 : WAPT/control
11fadef9b21e09b5d061ab989b96c4d095cf11f1731d883c53c91f7129f28fb3 : WAPT/icon.png
09bfe9288e176e8e99280e690c58efdc5b154d94fa213eca1b9a86c296843a31 : dolt-windows-amd64.msi
97d5147e36c7a5ae5fd55f6f1a6291e1cd8d85f8ebdc06677ac5771cc1cacf79 : luti.json
cc79fa54cde57df18aa7091074bd54dcd75b1792a9ef4f28d9c2c49c33129a83 : setup.py
2d4bc63e94777f01fe0c4ea339e687bcb04067c3d44ea6762810a95b29fdc879 : update_package.py