tis-gittyup icon

Gittyup

Silent install package for Gittyup

1.4.0-1

  • package: tis-gittyup
  • name: Gittyup
  • version: 1.4.0-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: MIT license
  • target_os: windows
  • architecture: x86
  • signature_date:
  • size: 26.48 Mo
  • homepage : murmele.github.io/Gittyup

package           : tis-gittyup
version           : 1.4.0-1
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      : 50c0fb8b-06bc-44a6-a335-fd3c50d60485
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : CP9ypLIreFRElRAAZ6oIAbgS+/iUsu7ufyb8bSBuLnNm6DAeYhNDETD2FKtZpbHKnsSmEWvk22+/32toR6e2GPlE6Litp5twsqSPD6B8pGjfmFTz5I1Fbp3HzOLOE6ECTEYcKSkqMmp7koKOI354ArwEhk3v6mxOohMItwDASR4F/GxFtlYTJXs47Oq8zmd+IRfdZ0/CfXqU6O3csSj44k0FxhIU2+WwOtMs1O8X2qAbFTWBIQduRW085nRqOQuX/pYGkOn8PsOmeHW/v948UHlTGcEGdPIG8kNjpdG6UY/WfOwy5qjl+TuoysrOg1SekueB4dTaQFac1sSQh41QgA==
signature_date    : 2024-09-01T13:00:14.086292
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

# -*- 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/%s/releases/latest" % git_repo   
    # 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()

3ba42c44699e0cab13e5a38a22e3043f1b2addfd518ad6a77cc67d1ee3a5b848 : setup.py
0b1076c7ec7141d1c5b989d36c00011cd61e0fde646f59be208c9fbabe5eb836 : Gittyup-win32-1.4.0.exe
df30487146e2ad701557ef9ecaf7e0bdfe6075f4450bdc1884835a0545e98e87 : update_package.py
55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
7cf4f6c8dd7cc21aef8be1cc9356c4115fcc93dc3ce08bc4bf6607c1652ee10d : luti.json
bbbfb20838ed51bed3f6761aab541d1f01edc6494d0120b1496f26da85fc0ad9 : WAPT/control