
- package: tis-alacritty
- name: Alacritty
- version: 0.13.2-0
- categories: Utilities,System and network
- maintainer: WAPT Team,Tranquil IT
- editor: Joe Wilm
- licence: Apache-2.0 license
- locale: all
- target_os: windows
- impacted_process: alacritty
- architecture: x64
- signature_date:
- size: 1.91 Mo
- installed_size: 6.48 Ko
- homepage : https://alacritty.org/
- depends:
package : tis-alacritty
version : 0.13.2-0
architecture : x64
section : base
priority : optional
name : Alacritty
categories : Utilities,System and network
maintainer : WAPT Team,Tranquil IT
description : Alacritty is a free and open-source GPU-accelerated terminal emulator focused on performance and simplicity.
depends : tis-vcredist2015-2022
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://github.com/alacritty/alacritty
installed_size : 6480
impacted_process : alacritty
description_fr : Alacritty est un émulateur de terminal gratuit et open-source accéléré par GPU, axé sur les performances et la simplicité.
description_pl : Alacritty to darmowy i open-source'owy emulator terminala przyspieszany przez GPU, skupiający się na wydajności i prostocie.
description_de : Alacritty ist ein kostenloser und quelloffener GPU-beschleunigter Terminalemulator, der auf Leistung und Einfachheit ausgerichtet ist.
description_es : Alacritty es un emulador de terminal gratuito y de código abierto acelerado por GPU, centrado en el rendimiento y la simplicidad.
description_pt : Alacritty é um emulador de terminal gratuito e de código aberto acelerado por GPU, focado em desempenho e simplicidade.
description_it : Alacritty è un emulatore di terminale gratuito e open source accelerato da GPU, focalizzato su prestazioni e semplicità.
description_nl : Alacritty is een gratis en open-source terminal emulator met GPU-acceleratie, gericht op prestaties en eenvoud.
description_ru : Alacritty - это бесплатный и открытый эмулятор терминала с аппаратным ускорением GPU, ориентированный на производительность и простоту.
audit_schedule :
editor : Joe Wilm
keywords : console
licence : Apache-2.0 license
homepage : https://alacritty.org/
package_uuid : d591b214-cb66-4487-9774-eade635f1a47
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 624c76655d1b0f4cf5bdfefc0b62803a2cca0497742c1906c29f13b4297e7a40
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : jomUQJuIRD87N6RfHSqxYxAgfiYO2OHE4tl7reQH778cqg3sG+xm9n8/uOYSArH6LivadEPcGd/NApt0KGQih/RCIzeWmJsQ3dVbh5hc5TQ+4A6jRu5S4N0mJ63Lt8SxvAPF5qP0jul/L7pG7ed/Ul/iV2PNUMQK7Be9WW3GUmKbmyNPbKjVBzdRkudDuFKbWJ0Bfu5Wxz5ekM9op9WDBZb99CoiSEzvdKFQ9L7jtlQaiP8WLy/ApiBPszhXqaUzbLpl9+ph6Ebhka3jEucU6iDX10qY+u9CENPiYKHF5fZl9wSKWKY85pGTLq9Iwpo2xqGtC6R64rYlg1P09gD5aA==
signature_date : 2024-05-26T22:00:47.820026
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 *
def install():
# Declaring local variables
bin_name = glob.glob("*.msi")[0]
# Installing the package
print("Installing: %s" % bin_name)
install_msi_if_needed(
bin_name
)
# -*- 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()
git_repo = "alacritty/alacritty"
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["name"].endswith('.msi') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v", "")
latest_bin = download["name"]
break
for f in glob.glob('*.msi'):
if get_version_from_binary(f) < version :
remove_file(f)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Checking version from file
version = get_version_from_binary(latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(Version(version))
control.save_control_to_wapt()
# Validating update-package-sources
return result
bee8bb0ba1d17193dc459d4548aad0edace569f723baf88262bd7edc7f7f4dc9 : setup.py
f54aab7dd827097702092422cb377d8c0842e61431b24b8a0834f85c9efa6592 : Alacritty-v0.13.2-installer.msi
5b90efe1f9e53352c3c23a478199418b5a3e5fd950dfc2a92c7d1962275a001b : update_package.py
624c76655d1b0f4cf5bdfefc0b62803a2cca0497742c1906c29f13b4297e7a40 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
97e1facff8598e862db8c94111b9745e498ad72798218be6f5c4f6f7b47d5612 : luti.json
08c6f08d3a6d65fc54ed186b9cb779012c9c706930d7e16929aa51e77b5493dc : WAPT/control