
Tilt
Paquet d’installation silencieuse pour Tilt
0.34.2-1
- package: tis-tilt-portable
- name: Tilt
- version: 0.34.2-1
- maintainer: Amel FRADJ
- licence: Apache-2.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 32.95 Mo
- homepage : tilt.dev/
package : tis-tilt-portable
version : 0.34.2-1
architecture : x64
section : base
priority : optional
name : Tilt
categories :
maintainer : Amel FRADJ
description : Tilt optimizes the development of microservices and makes sure they work properly! Run tilt upp to work in a complete development environment configured for your team
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Tilt optimise le développement de microservices et s'assure qu'ils fonctionnent correctement ! Exécutez tilt uppour travailler dans un environnement de développement complet configuré pour votre équipe
description_pl : Tilt optymalizuje rozwój mikrousług i zapewnia ich prawidłowe działanie! Uruchom tilt upp, aby pracować w kompletnym środowisku programistycznym skonfigurowanym dla Twojego zespołu
description_de : Tilt optimiert die Entwicklung von Microservices und sorgt dafür, dass sie richtig funktionieren! Führen Sie Tilt uaus, um in einer vollständigen, für Ihr Team konfigurierten Entwicklungsumgebung zu arbeiten
description_es : Tilt optimiza el desarrollo de microservicios y garantiza su correcto funcionamiento. Ejecute tilt upp para trabajar en un entorno de desarrollo completo configurado para su equipo
description_pt : O Tilt optimiza o desenvolvimento de microsserviços e garante o seu bom funcionamento! Execute o tilt upp para trabalhar num ambiente de desenvolvimento completo configurado para a sua equipa
description_it : Tilt ottimizza lo sviluppo di microservizi e ne garantisce il corretto funzionamento! Eseguite tilt upp per lavorare in un ambiente di sviluppo completo e configurato per il vostro team
description_nl : Tilt optimaliseert de ontwikkeling van microservices en zorgt ervoor dat ze goed werken! Draai tilt upp om in een complete ontwikkelomgeving te werken die is geconfigureerd voor je team
description_ru : Tilt оптимизирует разработку микросервисов и обеспечивает их правильную работу! Запустите tilt upp, чтобы работать в полной среде разработки, настроенной для вашей команды
audit_schedule :
editor :
keywords :
licence : Apache-2.0 license
homepage : tilt.dev/
package_uuid : 27cbe949-988b-4a20-8093-0fa5765e421e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 838eb33d8898605624b92db38f30190f26783cd1d7503467a83ed2b90f03415a
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-16T22:20:31.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 : S7sVF9DkFhTMeMviqfWGmwMxtUpGMS3KDL4ckPyzt5cVF+d50q3GVWscx6Uc/a49npzOQAyYqhvmyZff2E63Zo6XaxARUyLNWMMuj3nOJZRvbYh/HQpVIZ6hlX3oLxI05gxXvRJVlqtGclB63unrorzATRgCxLvabyKt1TxXfFrDRDNbI+bEQmNs7ZZ0vBjtlUvorTBEfq2rKhNbYDe8vVx3oMxj41ZNFFYn8fchJCKnGpYLjAPlqTFEEWZBTvrTS1l6Nq5NTc/X20jCIBUcuxs3vnAjx7ws+OMZvXDSoqhIKhalCn36ZBAmwgWNB15gH5bn7pKWJSIIJLQFn7EPnw==
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
"""
app_name = "tilt "
editor_dir = makepath(programfiles, "tilt")
app_dir = makepath(editor_dir, "tilt")
app_path = makepath(app_dir, "tilt.exe")
audit_version = False
def get_installed_version(app_path):
return get_file_properties(app_path).get("FileVersion", "")
def install():
# Declaring local variables
zip_name = glob.glob(f"tilt.*.zip")[0]
unzipped_dir = "tilt"
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
print("Extracting: %s to: %s" % (zip_name, unzipped_dir))
unzip(zip_name, unzipped_dir)
print('Copy tilt to %s' % app_dir)
copytree2(unzipped_dir, app_dir, onreplace=default_overwrite)
add_to_system_path(app_dir)
def audit():
# Auditing software
audit_status = "OK"
installed_version = get_installed_version(app_path)
if Version(installed_version) < Version(control.get_software_version()) and audit_version:
print("%s is installed in version (%s) instead of (%s)" % (app_name, installed_version, control.get_software_version()))
audit_status = "WARNING"
elif isdir(app_dir) and not dir_is_empty(app_dir):
print("%s (%s) is installed" % (app_name, installed_version))
audit_status = "OK"
else:
print("%s is not installed" % app_name)
audit_status = "ERROR"
return audit_status
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
if dir_is_empty(editor_dir):
remove_tree(editor_dir)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
dict_arch = {
"x64" :"windows.x86_64.zip"
}
git_repo = "tilt-dev/tilt"
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(".zip") and dict_arch[control.architecture] in download["browser_download_url"] :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
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("*.zip"):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
c84d88fe69f0e7a6e49f48dbacf3cec670f3f61bada58ccc5ca5c239aa52d8b4 : WAPT/control
838eb33d8898605624b92db38f30190f26783cd1d7503467a83ed2b90f03415a : WAPT/icon.png
7767792bd254a65e2acd399934201cf0f00ec9bacc08ecc55f3c4700b7d6e5cf : luti.json
9655689607e14fb4c2609b29c2dc5527da4dfcd2bc12fb67e1a7e649ccf4eb91 : setup.py
d5e1cfca50a3da56deb43f4eec15a5f94f710e00e7cd2f1d43538c2fb145b3c3 : tilt.0.34.2.windows.x86_64.zip
408f3166f742d1f8816272ad252ee30ffaad65f39818af51d687de4da6006202 : update_package.py