tis-beekeeper-studio icon

Beekeeper-Studio

Silent install package for Beekeeper-Studio

5.6.4-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.4-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Jordan ARNAUD
  • editor: Beekeeper Studio Team
  • licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
  • locale: all
  • target_os: darwin
  • impacted_process: Beekeeper-Studio-4.3.4-portable
  • architecture: all
  • signature_date:
  • size: 352.53 Mo
  • installed_size: 72.44 Mo
  • homepage : https://docs.beekeeperstudio.io/

package           : tis-beekeeper-studio
version           : 5.6.4-1
architecture      : all
section           : base
priority          : optional
name              : Beekeeper-Studio
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Jordan ARNAUD
description       : Beekeeper Studio is a cross-platform database manager and SQL GUI
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : darwin
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      : 97404164-5cb9-47bb-9d5d-d9faf5c2f901
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-31T18:36:33.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         : jedHRP0O1Cx8+FsgECkaLHE7CiYGbML+CknoERD9ZJwMImHhppt3r3J9QCgIr/eYDzU3jlqfQtRrOevsWLnmoC6HrfY8tD4pWqtMQxjMjDgpAx1z+hmnN4kQu33BeYCDMyplA5NLz3iB3wWo05SnAvv6rna7g5tM5b0ulZ+qtSBOh/efrXJ8sip3wmB3k0xzlftcetWfvjKhSH7EgbHBjSPLlO+Yv27+iPKB+65gvtFyPBDlbLXnhMN7FkO0yJAnKwH/U8+6myZnaDHX7Kp/7BN9N0YGoujpLkxg2F6AmwxZMJjTa4iH1r87fUtciwDVgK0QhnK6XBIFzW3cByCejQ==

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    install_dmg(glob.glob("Beekeeper-Studio*.dmg")[0])


def uninstall():
    remove_tree("/Applications/Beekeeper Studio.app")

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
   
    url_api = "https://api.github.com/repos/beekeeper-studio/beekeeper-studio/releases/latest"  
    # 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('.dmg') and not "arm64" in download["browser_download_url"]:
            url_dl = download["browser_download_url"]
            version = download["name"].split("-")[-1].replace(".dmg", "")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        print(f'Downloading ' + filename)
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.dmg'):
        if f != filename:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

a10a88926a5985a09636254856a0f1d442df00c217fa34904e2fc8f50090c1d3 : Beekeeper-Studio-5.6.4.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
259ac46560801eb62f29e36f61691501c2e7794ea6f9b5066cc28364019ccc76 : WAPT/control
302b4832f45fffe0e15f649aa08e00deb1111aa2960c413b097402a954626581 : WAPT/icon.png
f206abaca4d8dd41c36729f3df292bba051ac758e2f89269db6f78b60e664ce2 : luti.json
3959940f80f6c27cf6f09eb1c7c3ad30a88f25a980f072f192f5662909f1a7fb : setup.py
d0d1540bbb9ccc8062ab1022c5d2a7f63108a7bbfbf2aa3b1f37a1f54e4a9fa9 : update_package.py