tis-stackql icon

StackQL

Silent install package for StackQL

0.8.141-1

  • package: tis-stackql
  • name: StackQL
  • version: 0.8.141-1
  • maintainer: Amel FRADJ
  • licence: MIT license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 22.94 Mo
  • homepage : https://releases.stackql.io/stackql/

package           : tis-stackql
version           : 0.8.141-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      : a17471f9-14e8-4bd4-a72e-16186cad01e5
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-04-30T23:03:43.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         : ig0bkphgULLdNjI4e7v7fMpuqEZh7k2pGoNG/Uqam6hMDVz9P1LbJM11AQaBbCOO2WJf63h9Mvg9/bRQdVqvpogm4t7XG5WflfKDyuVdfLqylcurYx0VE0KICEn9dSG1WllT5ae8Nh+R6mcix384rGsu1ZxouW9vlNJHbN2U+Tpb2HXmFsxITJQLssVmuN0T3ggmBpEjcCE4Fap0pMucbT4frpDOz2+N7aQSAIndoeyqhlUZKzHbpAtxVy/xC6VP2q0WgA4+gsgAX0+rDz2YTWIz5hDqYY1IaXvG3hakleVcUBewPh+Xs1mUZursDIYl8CoVEoTY7X3LmLIrRHI9kA==

# -*- 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
5f69fd7f9104a7c50492f05f798c1cefa9bfff31c5424b89ae9405339111a7d4 : WAPT/control
b2c04168f94561c443fb0862fc02849931bad5c9e0acf1d787b8b7eb02bd569a : WAPT/icon.png
f097fef9811fe0f4009955f63f94db054d475b4f7d96b4dd56e0933d84063082 : luti.json
df75e3e6fc3a232f562536b874729fbb4ed80d9aa0dc7df4eb437de12dbb8a0c : setup.py
16aeabc073008e0beaccde70e339588667974af425149b6558a62f95063aba9c : stackql_windows_amd64.msi
c940cdde9a802aaee07f84714aa4667db33d6817e8c0c56beb49644d6443f0e1 : update_package.py