Gittyup
Silent install package for Gittyup
1.4.0-2
- package: tis-gittyup
- name: Gittyup
- version: 1.4.0-2
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: MIT license
- target_os: windows
- architecture: x64
- signature_date:
- size: 28.61 Mo
- homepage : murmele.github.io/Gittyup
package : tis-gittyup
version : 1.4.0-2
architecture : x64
section : base
priority : optional
name : Gittyup
categories :
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Gittyup is a graphical Git client designed to help you understand and manage your source code history. Gittyup is a continuation of the GitAhead client
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Gittyup est un client Git graphique conçu pour vous aider à comprendre et à gérer l'historique de votre code source. Gittyup est une continuation du client GitAhead
description_pl : Gittyup to graficzny klient Git zaprojektowany, aby pomóc zrozumieć i zarządzać historią kodu źródłowego. Gittyup jest kontynuacją klienta GitAhead
description_de : Gittyup ist ein grafischer Git-Client, der Ihnen helfen soll, Ihren Quellcodeverlauf zu verstehen und zu verwalten. Gittyup ist eine Weiterführung des GitAhead-Clients
description_es : Gittyup es un cliente Git gráfico diseñado para ayudarte a entender y gestionar tu historial de código fuente. Gittyup es una continuación del cliente GitAhead
description_pt : O Gittyup é um cliente Git gráfico concebido para o ajudar a compreender e gerir o histórico do seu código fonte. O Gittyup é uma continuação do cliente GitAhead
description_it : Gittyup è un client Git grafico progettato per aiutare a comprendere e gestire la cronologia del codice sorgente. Gittyup è la continuazione del client GitAhead
description_nl : Gittyup is een grafische Git client ontworpen om je te helpen bij het begrijpen en beheren van je broncode geschiedenis. Gittyup is een voortzetting van de GitAhead-client
description_ru : Gittyup - это графический Git-клиент, созданный для того, чтобы помочь вам понять и управлять историей вашего исходного кода. Gittyup является продолжением клиента GitAhead
audit_schedule :
editor :
keywords :
licence : MIT license
homepage : murmele.github.io/Gittyup
package_uuid : 950f42a6-b1af-4189-b451-fe3021e3af89
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-07-25T10:20: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 : UY6EMVZDQq41jQcmvomiN/+60YbOGVqqL/95TY4pz8LgkQRnvsiV+D0JDSDawSVfnS1svE4U44QhJn+gwL03LDKsz1JW590uNCF4Bm2CZpNy62OwdJFnSy04xZqi2Lq8T9JjuWnYU9HvINbLBHqTL5xVJ0q2SwQR1+ztqzog3nIpuDEweSZG32nznmg846LI04O/I9aqIcbtthBX5vXRZuiz6Dlm+SiMkMDLlibBAn+Fl0AY4a33Oiu4kTCn1AhR46aqD4e7rJVjyhOPBZaGJMVQ52CtwTvDaEJxgaLIOL5+E9DVIAQ8DjxerDFL9S+HXCedfJjC1ZCbRU6R1uKviA==
# -*- 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('Gittyup-*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S',
key='Gittyup',
min_version=control.get_software_version()
)
# -*- 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()
dict_arch = {
"x64" :"Gittyup-win64",
"x86" : 'Gittyup-win86'
}
git_repo = "Murmele/Gittyup"
url_api = "https://api.github.com/repos/Murmele/Gittyup/releases/tags/gittyup_v1.4.0"
# 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('.exe') and dict_arch[control.architecture] in download["browser_download_url"]:
url_dl = download["browser_download_url"]
version = json_load["name"].split(" ")[-1]
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('*.exe'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
ab86d29dffd131718d2c2d0149ce90e6ad46e624e205e4feead011a800cd9302 : Gittyup-win64-1.4.0.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
20a85565e187ac471d7f2d4a18b9b8b250380807fd4d1cc21d06b42918f33856 : WAPT/control
55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a : WAPT/icon.png
ef770092d5b5cdb30a3d685707d404512d2e23929d2119748bd699a1da11a0ef : luti.json
3ba42c44699e0cab13e5a38a22e3043f1b2addfd518ad6a77cc67d1ee3a5b848 : setup.py
3cc7e58533d95a67c222223674db02ad8ad8c4032a6a115df80c146ffed4cc1a : update_package.py