tis-dolt icon

Dolt

Silent install package for Dolt

1.57.0-1

  • package: tis-dolt
  • name: Dolt
  • version: 1.57.0-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: 40.65 Mo
  • installed_size: 101.28 Mo
  • homepage : https://www.dolthub.com/

package           : tis-dolt
version           : 1.57.0-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      : 004605c5-f4dc-4b1d-890f-299d009fab93
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-07-22T09:04:03.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         : X7XtgMYQyoeGxI//Ii6+2PZs3Kv7LYp1XysZU9mr/VbAjQeD6tfygBjCfbWtw+qqAuxdPJmHTiX3/rgsoB9c5l4LRihjp7VPhlza4gPp1Ka8IiwULJBLIegqfoqJcWJq+e8KVNQvOCLTVgrjV7nSPw2a/cdxcr0A8x+tj9rbFGIDVh98kM9LZBjcAWUcRMOF0gBUVACo0sH6oG881vEDBLa3n32JyzdnOCFli7kvzGHw05Wg/PfzNc9mbWtydGJNFpcbraWxMZw7akUpPl14ejSEB/jID38ExlhMbExc/ZQec9kC3wT0WJVcxPxLsXh1WOeNqLkQGm82fYALTlpUmg==

# -*- 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
8346cd043054ea87b336f7cdae9dfca224d17d7cb425023f35ce5cce874da57f : WAPT/control
11fadef9b21e09b5d061ab989b96c4d095cf11f1731d883c53c91f7129f28fb3 : WAPT/icon.png
b9fb64e232b468ee4e7c3d1a2ff09a9fc87f99c997836d3c52e0d774fe08410a : dolt-windows-amd64.msi
995cbbf1d4d985a4b556d7d4114a5c33a4f3a322940328f67a1fb01efb8155fd : luti.json
cc79fa54cde57df18aa7091074bd54dcd75b1792a9ef4f28d9c2c49c33129a83 : setup.py
2d4bc63e94777f01fe0c4ea339e687bcb04067c3d44ea6762810a95b29fdc879 : update_package.py