
pulumi
Paquet d’installation silencieuse pour pulumi
3.181.0-1
- package: tis-pulumi-portable
- name: pulumi
- version: 3.181.0-1
- maintainer: Amel FRADJ
- licence: Apache-2.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 91.00 Mo
package : tis-pulumi-portable
version : 3.181.0-1
architecture : x64
section : base
priority : optional
name : pulumi
categories :
maintainer : Amel FRADJ
description : Declare cloud infrastructure using real languages. Enable developers and operators to work better together
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Déclarez l'infrastructure cloud en utilisant des langages réels. Permettez aux développeurs et aux opérateurs de mieux travailler ensemble
description_pl : Deklarowanie infrastruktury chmury przy użyciu rzeczywistych języków. Umożliwienie programistom i operatorom lepszej współpracy
description_de : Melden Sie die Cloud-Infrastruktur mithilfe realer Sprachen an. Ermöglichen Sie es Entwicklern und Betreibern, besser zusammenzuarbeiten
description_es : Declare la infraestructura de la nube utilizando lenguajes reales. Permitir que desarrolladores y operadores trabajen mejor juntos
description_pt : Declare a infraestrutura de nuvem usando linguagens reais. Permitir que os programadores e os operadores trabalhem melhor em conjunto
description_it : Dichiarare l'infrastruttura cloud utilizzando linguaggi reali. Consentire a sviluppatori e operatori di lavorare meglio insieme
description_nl : Cloudinfrastructuur declareren met echte talen. Ontwikkelaars en operators beter laten samenwerken
description_ru : Объявляйте облачную инфраструктуру, используя реальные языки. Обеспечьте разработчикам и операторам более эффективную совместную работу
audit_schedule :
editor :
keywords : https://www.pulumi.com/
licence : Apache-2.0 license
homepage :
package_uuid : 45bc4689-1b24-40e2-8575-dcb817f3cfab
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : c5f70177371a8e5ca87f0536fc12509178aad885bf1a5ff59ad13c48f8b116aa
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-07-02T13:07:25.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 : fBjPzauUl8bQgxTP5l/e/1Bae8SOiCR3ne6ilzwICyDJWMytGDw01egsYKnnoJaCYlOiqIEbFkt+0/GgQIctPqO5iICBu8HXIyh7ca7hVemQy51F3Lw7v01HWUJPYZFcMUSCJMxSzjcNzS0FaSwLAcoXYF4h6mVkRsSSiQARW71Al+YFz7sjc0N8DynwFJ55Ekl2EE2LqmsKV1VPt/oWlGORoVQShY/stfZS7m8UIfHfAFkKkKCfbjrw7DoC6ZxODfxtBmOtOPIXUTOtfYIZTysAthEx/8dP59ONqm4RIiXVJl9tUMnHHTLeRMTcx5gfu27OlmLFyosZR+YruFjKyw==
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
"""
app_name = "pulumi "
editor_dir = makepath(programfiles, "pulumi")
app_dir = makepath(editor_dir, "pulumi")
app_path = makepath(app_dir,"pulumi","bin" "pulumi.exe")
#icon_path = makepath(app_dir, "resources", "app", "build", "crushee.ico") #tis-crushee\windows\crushee\resources\resources\build
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"pulumi-*.zip")[0]
unzipped_dir = "pulumi"
# 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 cx cli 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()
git_repo = "pulumi/pulumi"
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("x64.zip") :
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
5813ba79e8a6bfb6fcb933ab249a810bba58f1f9224b60aabe3917826262ff98 : WAPT/control
c5f70177371a8e5ca87f0536fc12509178aad885bf1a5ff59ad13c48f8b116aa : WAPT/icon.png
a34ac105bca8af042984676c0f358ff3653f3f6f6b4715cc513dc1ffb93418de : luti.json
abfa266215f1b339c8727dc345449fbb0ede529de87df5f6398a19b3286a73be : pulumi-v3.181.0-windows-x64.zip
110e24afe37a8b51189c9141faf727fd2f5b3657ad5ac07c17cd9a52fff42353 : setup.py
ec971d7c9fe32275cf8b5d03a55ca2419ad9e1fa3b548a2fa59479835552305f : update_package.py