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

package           : tis-gittyup
version           : 1.4.0-1
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      : 2ee18078-6d9b-45d3-b1e3-9915d55bdd7a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : RJu/rLIh4xeQgUlS2/5ZiReQGTkOPnd399UIta7D/iiAxI+Vrepeuq47/2ZbBkIrBH9bNcIkFjM5SAx/WckhLYWQ5TAB+pQdCLreuPjtfD1UHo0wIzCi7doyBJwmpWChJEB1r2MvKfu1lWrmkWGQ4lIbOYS5lhqu4GIuApE0pLhAQJGJibVCiWeBujyngvOFF3wAgJkGJgoPp09LzKYK3tuKUqLfDP0DKIOWfacMlBEef4UHEqtdVrS777vt8PnIEgr4cSHwUm0H6dPVKuMetrOKHAMecz3RiPJ7BnNhhGISy7aArzgQLXO6QEnZOobW7cnoOcLS9XmozKexdaXtYw==
signature_date    : 2024-09-01T13:02:52.387191
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-win86'
    }
    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
06e4644841a329a95a4e614e9b8490e118ea38ab6bf64c6cc4b215e8abd8e459 : update_package.py
ab86d29dffd131718d2c2d0149ce90e6ad46e624e205e4feead011a800cd9302 : Gittyup-win64-1.4.0.exe
55147d94262eb29c3f016428831da2f4957d3b3c1ea911a8429d783a69c8255a : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
831ca45cae4cd2a1283920b6509bd603a64d56c8f26bb4dc5adf1d4245e8a766 : luti.json
3637c7028f7532e2ba862f4bf4c3ed3dea661021cbe5d81c63c463f9c6e82f20 : WAPT/control