GitUI
Paquet d’installation silencieuse pour GitUI
0.28.0-2
Development
Development
- package: tis-gitui
- name: GitUI
- version: 0.28.0-2
- categories: Development
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: extrawurst
- licence: opensource_free,cpe:/a:mit:x11_license,wapt_public
- locale: all
- target_os: windows
- impacted_process: gitui
- architecture: x64
- signature_date:
- size: 6.22 Mo
- installed_size: 6.66 Mo
package : tis-gitui
version : 0.28.0-2
architecture : x64
section : base
priority : optional
name : GitUI
categories : Development
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : GitUI is a git GUI that works in the terminal
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 6663168
impacted_process : gitui
description_fr : GitUI est une interface graphique git qui fonctionne dans le terminal
description_pl : GitUI to graficzny interfejs użytkownika git, który działa w terminalu
description_de : GitUI ist eine Git-GUI, die im Terminal funktioniert
description_es : GitUI es una GUI de git que funciona en el terminal
description_pt : GitUI é uma GUI do git que funciona no terminal
description_it : GitUI è una GUI di git che funziona nel terminale
description_nl : GitUI is een git GUI die in de terminal werkt
description_ru : GitUI - это графический интерфейс git, который работает в терминале
audit_schedule :
editor : extrawurst
keywords : git,terminal,interface
licence : opensource_free,cpe:/a:mit:x11_license,wapt_public
homepage :
package_uuid : 116b5bf9-0724-4ed2-826b-4e096b5fe5f7
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : cb274cdd0b059366eb59f4dc8f7a72f257d4a9fc490589a23cdc32f4c30b2f3b
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-12-20T06:02:41.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 : STIC3fbfgji6KL5CoYtKM22mEvdokhHLxgjYz98ObDw6suKbYumshrvVxfn3z0XTxyGL7QOYOGVMvBsEXnosk0TukiGt2mEHxyXQa6I5Tip9Z8gDBHSo6HHgQHAiMRtQs/eyrGErJJ5n7A4M71ngAenS6V3s9H/lFvF1HnLZLCVi8T+ss43MibY4S2SLix5diEolwgNgxoTR61A9s3ICstFh8s82nLJ6lKwuteuCsGKNeWBPTOvSdLYQTBTVg5jfyw5epXalBHm951yZcjpHO/EKIyJezdbqakrOAqUhAY1WDR/Bqjas42gxyyfiwTHuuuYxNtwW0szh+vwBr6dUuQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("gitui-win.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/extrawurst/gitui/releases/latest"
update_dict = {
"windows-x64": "-win.msi",
}
# 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 update_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in asset["browser_download_url"] and asset["browser_download_url"].endswith(".msi"):
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["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)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f920e41307d8a06633ab7089be4de1261633f84c565234d6a553ef71b0c52c18 : WAPT/control
cb274cdd0b059366eb59f4dc8f7a72f257d4a9fc490589a23cdc32f4c30b2f3b : WAPT/icon.png
338dfa002576acd8a55b864052310c62ab62e4cf7c2ecddc89b7de1d152ac365 : gitui-win.msi
5fd462f45e245bca7af37b18002e6f641a6174323b93495822b6b46460ebc600 : luti.json
d83f915b27083d9b236e9434f44bc97f9e91ed941dcb78b7c6ef1faedaf016cf : setup.py
bdd3d7ad1622f01ae0a411d93808038f77f3c561a0adfc34fc059d7844af351c : update_package.py