tis-gittyup icon

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: x86
  • signature_date:
  • size: 26.51 Mo
  • homepage : murmele.github.io/Gittyup

package           : tis-gittyup
version           : 1.4.0-2
architecture      : x86
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      : e01cce18-9130-4a97-9703-4a557dedcbd1
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:09:22.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         : fB4JU1ZpbfWMo+hi8Pleo31I+xt+8xu4Rklp/UZyEKS0H2reERZLdK3ScAdMD4qz3w8C1Crc4FMZ2Cr6wiXAEknywG67MAmcpR9K/Rm4JhDoyKXPbHZuGJDgtByTZJNSZBEsvTzsvBviTVa5AnYt920bWjENPbU+fVsD3PWko1s6vlDA8q6jihyQ6c490Kp4QZQmgBV0rmqrU7EwtAjFLs9GA7y/MxkmQuyXne+00JknXLkspacZ75tfeyyhv4nyHP5zGc3uitwQQYeFayvDLW3p+0aND1wMBJZ7Idrhc022aFZOXP1tOJnMiwPc1+z4o+FGR0EcDOmJvgzYmGAqHw==

# -*- 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-win32'
    }
    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()

0b1076c7ec7141d1c5b989d36c00011cd61e0fde646f59be208c9fbabe5eb836 : Gittyup-win32-1.4.0.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b4c5ca77d16083a39d56528245b50197ad308ea9b4735e1555c5dc9a5c679632 : WAPT/control
55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a : WAPT/icon.png
65d1972664a2680157d46619d242b17d98a32c946f899f8f337acfb203afa036 : luti.json
3ba42c44699e0cab13e5a38a22e3043f1b2addfd518ad6a77cc67d1ee3a5b848 : setup.py
31326c3d1a607cca83780ad62955c1732e46b56676b71b420ffe82b7a9a0d81d : update_package.py