- package: tis-cloudquery-portable
- name: cloudquery
- version: 6.26.3-1
- categories: dev
- maintainer: Amel FRADJ
- licence: MPL-2.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 12.43 Mo
- homepage : cloudquery.io
package : tis-cloudquery-portable
version : 6.26.3-1
architecture : x64
section : base
priority : optional
name : cloudquery
categories : dev
maintainer : Amel FRADJ
description : CloudQuery is a high-performance, open-source data integration framework designed for developers
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : CloudQuery est un framework d'intégration de données open source et hautes performances conçu pour les développeurs
description_pl : CloudQuery to wysokowydajny framework integracji danych typu open source przeznaczony dla programistów
description_de : CloudQuery ist ein hochleistungsfähiges Open-Source-Framework für die Datenintegration, das für Entwickler entwickelt wurde
description_es : CloudQuery es un marco de integración de datos de código abierto de alto rendimiento diseñado para desarrolladores
description_pt : O CloudQuery é uma estrutura de integração de dados de código aberto de alto desempenho concebida para programadores
description_it : CloudQuery è un framework di integrazione dati open source ad alte prestazioni progettato per gli sviluppatori
description_nl : CloudQuery is een krachtig open source raamwerk voor gegevensintegratie, ontworpen voor ontwikkelaars
description_ru : CloudQuery - это высокопроизводительный фреймворк для интеграции данных с открытым исходным кодом, предназначенный для разработчиков
audit_schedule :
editor :
keywords :
licence : MPL-2.0 license
homepage : cloudquery.io
package_uuid : 4bbc86a7-0a21-4d45-bc3a-2c7a000f22e3
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 22ebd871ccfeb9b7b93a5beb07b615ce32a35ab1fbdf3e146cedbd145f61b58e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-10T14:06:11.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 : AuxzahwhD1zgQVZaY+775t8sn+iPeuorADULprmmUS5sTq30vUlXhqXTHKUG2WGHBWf7OeSXXChM4mBR5kgDbCeRNN3tHOanFaAK9z1bTWg3FEa3EOzewaWx5ZM9n+aHIzjB0xBzTA/i2ac4caD0PgXXwAFTMIJysVYiNJuljf00x8cSfa1uyqf8MHcl34bltsX2bPBAXnO+7refseYmrQfeizm0T/ddZinVnKD4QI0v4O0dG+ccCj7Uau9qKfOohICCUDL7qQr4n5M3qyOupMrtb/+6luSVlxLcE+8LesUm/upjlVbCtzC4cgtzFkd0DDye3gXEWgBV4pc4LOdf3g==
# -*- coding: utf-8 -*-
from setuphelpers import *
import glob
app_name = "cloudquery"
app_dir = makepath(programfiles, app_name)
def install():
bin_name = glob.glob('*.exe')[0]
app_path = makepath(app_dir, bin_name)
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
filecopyto(bin_name, app_path)
add_to_system_path(app_dir)
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
for uninstall in installed_softwares('cloudquery'):
uninstall_string = uninstall.get("uninstall_string", "")
print(f"Uninstalling cloudquery: {uninstall_string}")
run(f"{uninstall_string} --uninstall --uninstall -s")
wait_uninstallkey_absent(uninstall['key'],max_loop=600)
if isdir(app_dir):
remove_tree(app_dir)
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
import re
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "cloudquery/cloudquery"
url_api = f"https://api.github.com/repos/{git_repo}/releases?per_page=10000"
# Getting latest version information from official sources
print(f"API used is: {url_api}")
json_load = json.loads(wgets(url_api, proxies=proxies))
url_dl = None
filename = None
version = None
for release in json_load:
for download in release["assets"]:
if download["browser_download_url"].endswith(".exe"):
url_dl = download["browser_download_url"]
version = release["tag_name"].split("-")[-1].replace("v", "")
filename = download["name"]
break
if url_dl:
break
if not url_dl or not filename or not version:
raise Exception("No .exe file found in the latest release")
if not isfile(filename):
package_updated = True
wget(url_dl, filename, proxies=proxies)
# Clean up old .exe files
for f in glob.glob("*.exe"):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
104e3dfc0454d0d80225431989fa6f025cf5f1b536307d6bb78b7b47be3b1ac9 : WAPT/control
22ebd871ccfeb9b7b93a5beb07b615ce32a35ab1fbdf3e146cedbd145f61b58e : WAPT/icon.png
d1d86bf1cc9e2f82c93e21ccdaf88ff495adcc73605c620c7831ce268064f87e : cloudquery_windows_amd64.exe
8b12a347b4117e8fc31c19fd9bb60f991ba05a848dd72ca2485bfdba3f7d0214 : luti.json
4186deb4b32995387f73edfd8aae7d34b8107b6640d1d40e526b26b0135b2798 : setup.py
fdb2bcaad2666ea07546eb41a82d59eff3c7aa1d4e23bdfa61537a1e3ee7b203 : update_package.py