Beekeeper-Studio
Silent install package for Beekeeper-Studio
5.6.0-1
Utilities
Utilities
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-beekeeper-studio
- name: Beekeeper-Studio
- version: 5.6.0-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Beekeeper Studio Team
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
- locale: all
- target_os: windows
- impacted_process: Beekeeper-Studio-4.3.4-portable
- architecture: all
- signature_date:
- size: 238.99 Mo
- installed_size: 72.44 Mo
- homepage : https://docs.beekeeperstudio.io/
package : tis-beekeeper-studio
version : 5.6.0-1
architecture : all
section : base
priority : optional
name : Beekeeper-Studio
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Beekeeper Studio is a cross-platform database manager and SQL GUI
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 72438272
impacted_process : Beekeeper-Studio-4.3.4-portable
description_fr : Beekeeper Studio est un gestionnaire de base de données multiplateforme et une interface graphique SQL
description_pl : Beekeeper Studio to wieloplatformowy menedżer baz danych i graficzny interfejs użytkownika SQL
description_de : Beekeeper Studio ist ein plattformübergreifender Datenbankmanager und SQL-GUI
description_es : Beekeeper Studio es un gestor de bases de datos multiplataforma y una interfaz gráfica de usuario SQL
description_pt : O Beekeeper Studio é um gestor de bases de dados multiplataforma e uma GUI SQL
description_it : Beekeeper Studio è un gestore di database multipiattaforma e un'interfaccia grafica SQL
description_nl : Beekeeper Studio is een cross-platform databasebeheerder en SQL GUI
description_ru : Beekeeper Studio - это кроссплатформенный менеджер баз данных и графический интерфейс SQL
audit_schedule :
editor : Beekeeper Studio Team
keywords : database,sql,gui
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage : https://docs.beekeeperstudio.io/
package_uuid : 8506685b-b7f4-44e5-a9c3-d12775a954c7
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/beekeeper-studio/beekeeper-studio/releases
min_os_version :
max_os_version :
icon_sha256sum : 302b4832f45fffe0e15f649aa08e00deb1111aa2960c413b097402a954626581
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-05T08:06:10.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 : HNs7IgcNC/l/1ovMG9Ag8QKTrXoTVaW13B0eT9mh7NGnSvLJyT9gmbI2Hsq635L1aIpNr3uwv4HwQIPLvQKSTVj/dYNBjCZXMA6PARWrSyy++yFIH1j38eoBtmNNX3bLCcp7Wh6l9S/UY/O5nvdzSFVOorctXg1u/2E3R/K7t9pN/TsqAOH76glmLB3zZ10bKHGOA2A0TEfo3bko8s+Xfaw7WgmyLvp46+USTMa5vtWSPtjQzFAIeUs961Jo/aZde4xH/Xd4lxgyYYbhtSQ9o9SNPEs5GDUsL8b1GXoO3dOF0H3wkp6/urkCvkFwkY7zGCK/V2FuYLUKVpmQ2lyEug==
# -*- coding: utf-8 -*-
from setuphelpers import *
app_name = "Beekeeper-Studio"
app_dir = makepath(programfiles, app_name)
def install():
bin_name = glob.glob("Beekeeper-Studio-*-portable.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)
# Creating shortcuts
create_programs_menu_shortcut(app_name, target=app_path)
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
# Removing shortcuts
remove_programs_menu_shortcut(app_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
api_url = "https://api.github.com/repos/beekeeper-studio/beekeeper-studio/releases/latest"
update_dict = {
"windows": ".exe",
}
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
exe_found = False # Flag pour indiquer la découverte d'un fichier .exe
for release in releases_dict:
if exe_found:
break
for asset in releases_dict["assets"]:
if (
("portable") in asset["browser_download_url"]
and asset["browser_download_url"].endswith(".exe")
and update_dict[control.target_os] in asset["browser_download_url"]
):
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["tag_name"].replace("v", "")
exe_found = True # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
break
if not isfile(latest_bin):
package_updated = True
wget(url_download, latest_bin, proxies=proxies)
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
79b94bbda483f5aa186622ecba043742eb8793940ca39640540083b4504ba811 : Beekeeper-Studio-5.6.0-portable.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
be119edba27cf00ba4362ef288fc3458cf068defcb963e9c64a02a08e9e2c9af : WAPT/control
302b4832f45fffe0e15f649aa08e00deb1111aa2960c413b097402a954626581 : WAPT/icon.png
46429b45008a2ac95c3823407fd9bda5c42c7002ff11495b3ae350c03785b21c : luti.json
4c67499da963637d7d9f49b604aaca22cb82325d6b76a33e7d214f7e6682d6d3 : setup.py
1e22d44f7c9fd10ea6d8ac4ff081687d0347023dc54eb145efaa11497923d451 : update_package.py