
StackQL
Silent install package for StackQL
0.7.131-1
- package: tis-stackql
- name: StackQL
- version: 0.7.131-1
- maintainer: Amel FRADJ
- licence: MIT license
- target_os: windows
- architecture: x64
- signature_date:
- size: 22.77 Mo
- homepage : https://releases.stackql.io/stackql/
package : tis-stackql
version : 0.7.131-1
architecture : x64
section : base
priority : optional
name : StackQL
categories :
maintainer : Amel FRADJ
description : StackQL is a multi-cloud XOps development tool that lets you query and interact with cloud and SaaS resources using SQL. StackQL can be used for compliance, assurance, IaC, SysOps and much more
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : StackQL est un outil de développement XOps multicloud qui vous permet d'interroger et d'interagir avec des ressources cloud et SaaS à l'aide de SQL. StackQL peut être utilisé pour la conformité, l'assurance, l'IaC, les SysOps et bien plus encore
description_pl : StackQL to narzędzie programistyczne XOps dla wielu chmur, które umożliwia wysyłanie zapytań i interakcję z zasobami w chmurze i SaaS za pomocą SQL. StackQL może być używany do zapewniania zgodności, bezpieczeństwa, IaC, SysOps i wielu innych
description_de : StackQL ist ein XOps-Multi-Cloud-Entwicklungswerkzeug, das es Ihnen ermöglicht, Cloud- und SaaS-Ressourcen mithilfe von SQL abzufragen und mit ihnen zu interagieren. StackQL kann für Compliance, Versicherung, IaC, SysOps und vieles mehr verwendet werden
description_es : StackQL es una herramienta de desarrollo XOps multi-nube que le permite consultar e interactuar con la nube y los recursos SaaS utilizando SQL. StackQL se puede utilizar para el cumplimiento, aseguramiento, IaC, SysOps y mucho más
description_pt : O StackQL é uma ferramenta de desenvolvimento XOps multi-nuvem que permite consultar e interagir com recursos de nuvem e SaaS usando SQL. O StackQL pode ser usado para conformidade, garantia, IaC, SysOps e muito mais
description_it : StackQL è uno strumento di sviluppo XOps multi-cloud che consente di interrogare e interagire con risorse cloud e SaaS utilizzando SQL. StackQL può essere utilizzato per la conformità, l'assicurazione, l'IaC, il SysOps e molto altro ancora
description_nl : StackQL is een multi-cloud XOps-ontwikkeltool waarmee je query's kunt uitvoeren en kunt communiceren met cloud- en SaaS-resources met behulp van SQL. StackQL kan worden gebruikt voor compliance, assurance, IaC, SysOps en nog veel meer
description_ru : StackQL - это мультиоблачный инструмент разработки XOps, который позволяет запрашивать и взаимодействовать с облачными и SaaS-ресурсами с помощью SQL. StackQL можно использовать для обеспечения соответствия, гарантии, IaC, SysOps и многого другого
audit_schedule :
editor :
keywords :
licence : MIT license
homepage : https://releases.stackql.io/stackql/
package_uuid : eb8ecb5f-4ed4-42c4-940d-d9a835ca2e39
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b2c04168f94561c443fb0862fc02849931bad5c9e0acf1d787b8b7eb02bd569a
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-03-29T09:01:20.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 : fbysDd5x9MhfhwLPOOSfGNHeCWQwgbwNwN2CQtNA7DDfP5rGS/Zxqe125nkxK8tDce1M/dcrCqrqXfgGCD9Gqnd8SLHxfxvAfV5a7GSRpvSvf71o9+xcVl2ExQ+5Ii8OdQkeO3uVrFhIO3An+1sK/sKz+Vxk+LKSjBBLiYnv9Vy8tVh7RQlztpydiWvXvJ2cvupN6/LWtHTFTHpWxa4OrXt5YhxqrD2ySfFLQl1E6KrIS7d2yBH7xBtZsREUMsfAMOgbuM1ANgN4n+NFVL4T1m/McNLUdoZvKT0/WOIvH5eWK9KuzB/EBryLV6P+s5mywraQ1rjHr9WUURCT9Dmj1Q==
# -*- 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
# Installing the software
install_msi_if_needed('stackql_windows_amd64.msi')
# -*- 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 = "stackql/stackql"
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(".msi") :
url_dl = download["browser_download_url"]
version = json_load["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("*.msi"):
if f != filename:
remove_file(f)
version =get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5b6a8be06ca4b497d1b18b9e341335f21a681b548dcf5385c583dc2ae6a6064e : WAPT/control
b2c04168f94561c443fb0862fc02849931bad5c9e0acf1d787b8b7eb02bd569a : WAPT/icon.png
5982557db5c8d3e774a5e85d879f550ec66c76732932afd0ee4605a8e67f3320 : luti.json
df75e3e6fc3a232f562536b874729fbb4ed80d9aa0dc7df4eb437de12dbb8a0c : setup.py
70fb753fa8acc51b79785d3549bb96124cc61e41e5ebc99bc19b92718c7f431d : stackql_windows_amd64.msi
c940cdde9a802aaee07f84714aa4667db33d6817e8c0c56beb49644d6443f0e1 : update_package.py