Git Extensions
Silent install package for Git Extensions
7.0.1.86-4
Development
Utilities
Development
Utilities
- package: tis-gitextensions
- name: Git Extensions
- version: 7.0.1.86-4
- categories: Development,Utilities
- maintainer: WAPT Team,Tranquil IT, Flavien Schelfaut
- locale: all
- target_os: windows
- impacted_process: GitExtensions.exe
- architecture: x64
- signature_date:
- size: 24.05 Mo
- installed_size: 50.33 Mo
- depends:
package : tis-gitextensions
version : 7.0.1.86-4
architecture : x64
section : base
priority : optional
name : Git Extensions
categories : Development,Utilities
maintainer : WAPT Team,Tranquil IT, Flavien Schelfaut
description : Git Extensions is a standalone UI tool for managing git repositories
depends : tis-dotnet9, tis-git
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://github.com/gitextensions/gitextensions
installed_size : 50331648
impacted_process : GitExtensions.exe
description_fr : Git Extensions est un outil d'interface utilisateur autonome pour la gestion des dépôts git
description_pl : Git Extensions to samodzielne narzędzie interfejsu użytkownika do zarządzania repozytoriami git
description_de : Git Extensions ist ein eigenständiges UI-Tool zur Verwaltung von Git-Repositories
description_es : Git Extensions es una herramienta de interfaz de usuario independiente para la gestión de repositorios git
description_pt : Git Extensions é uma ferramenta de IU autónoma para gerir repositórios git
description_it : Git Extensions è uno strumento UI indipendente per la gestione dei repository git
description_nl : Git Extensions is een standalone UI tool voor het beheren van git repositories
description_ru : Git Extensions - это отдельный UI-инструмент для управления репозиториями git
audit_schedule :
editor :
keywords : git,project,projects,version,control,system
licence :
homepage :
package_uuid : aa63dd91-6fa7-4c95-94f9-e728f7ca7035
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 2f6632bd61fe8328b5d73ab1f46fba99d8cf1a627413953fa9d821b35bf22925
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-06-19T13:02:54.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 : FGXWYs4Dmpu4+36xFAHSgqZ3A5Vvt8owPlkxusMHRid4UDWqvlPf420Ng90UC9bwqwHv90utkDMF+HuuhXuNwQKYGh68oaMpVGMHtB06rF3rcIIAevTY/UXJJawPLh4ukcK+iq92T6Uc1O2zawdTsCUCnUxI+zs3fMe3uQeGeDdu30ap3fQptkBdirfYZpSSOMRiD6JPbKx316ids+yi/SBmfOzWHKY6XKbm2yCjRkNnE3ESsk+DC12u3eE3I36GTsoD7q1kf3k8LEXMzV/IhF6D7V72t1vql1FdutkHLDch5sViI8KGnzavTroo7xUAWApIi5pgsp5kFIG+AfX9uw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Initializing variables
bin_name = glob.glob("GitExtensions*.msi")[0]
install_msi_if_needed(
bin_name,
min_version=control.get_software_version()
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
app_name = control.name
api_url = "https://api.github.com/repos/gitextensions/gitextensions/releases/latest"
# Getting latest version information from official sources
print(f"API used is: {api_url}")
json_load = wgets(api_url, proxies=proxies, as_json=True)
version = json_load["tag_name"].replace("v", "")
for to_download in json_load["assets"]:
if to_download["name"].startswith('GitExtensions-x64') and to_download["name"].endswith('.msi'):
download_url = to_download["browser_download_url"]
latest_bin = to_download["name"]
break
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Deleting outdated binaries
for f in glob.glob('*.msi'):
if Version(get_version_from_binary(f)) < Version(version):
remove_file(f)
# Free Code Signing for Open Source software : https://signpath.org/
expected_issuer = 'SignPath Foundation'
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error(f'Bad issuer {sign_name} != {expected_issuer} ')
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {version})")
package_updated = True
else:
print(f"Software version up-to-date ({version})")
control.set_software_version(get_version_from_binary(latest_bin))
control.save_control_to_wapt()
# Validating update-package-sources
return package_updated
53792d2bf39e0949319ca711a189120e41d53b60d7b74d6a11d66120cd0725ed : GitExtensions-x64-7.0.1.86-c119a52.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1cbef8fbd97a63c1c3eca908105b2d9f3ce693152282c453b4ea6d7fa39a9693 : WAPT/control
2f6632bd61fe8328b5d73ab1f46fba99d8cf1a627413953fa9d821b35bf22925 : WAPT/icon.png
78fe6707518fe48a1ec5211320f1d498c303d0d7f0c02ba72226921418bb0106 : luti.json
46723896915049135f2fb378e0b6201ac2e0cd51230b1a926492cb4dd5c22138 : setup.py
f9ddbfe3de61e4af1a1feec7d4d36f982436c0c7ca06267df5054e4208bdea2f : update_package.py