tis-beekeeper-studio icon

Beekeeper-Studio

Silent install package for Beekeeper-Studio

5.5.6-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.5.6-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: 251.07 Mo
  • installed_size: 72.44 Mo
  • homepage : https://docs.beekeeperstudio.io/

package           : tis-beekeeper-studio
version           : 5.5.6-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      : 4784f311-2d2b-48a7-8e8e-63a6617d9c57
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-01-31T20:34:58.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         : piKYkyEAu7cW6bFje1e7fhk6to7bBTz0BBB0CRdtg1S3POTbb84RV4jrxWvhJo1dIMrBpTNAaG03wRkYDz8Wz55AfltojdggXkSmh6SVIAKFXjvoYAN1vamXPTeVvFZRvbGEsw9bV9ZzeA3m4fYTZA782R9XimDjOeDsme7c0cfgKXiD5Z1MI9R6Ts/6fn3ZYlrZYBXNZDbSfqiA97XvLhEYYdxcDlIzLykGnAuHkg11Tzcg0qM0TRlwbao9GXS7TwtlQwYMv4E6B6G3r22f7xTZNVB8behe+ffbAagl39KYi2OJkZsIhoNKqwqgm7oxF1mQAiwTeLxaPW8y575bdQ==

# -*- 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()

9b5209d3a7e0541231b071bb9640d0a024e566b04a58baf8365cb6e77ecd7a4e : Beekeeper-Studio-5.5.6.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
35677514205afa41982ebd0b46ff026053c0d128326dd2093f7bda2c21eeb9fa : WAPT/control
302b4832f45fffe0e15f649aa08e00deb1111aa2960c413b097402a954626581 : WAPT/icon.png
1e5f47ec20176ca2a2ed675ef2e42fb40758a39fe5d6d2cc79ef79538fb59683 : luti.json
3959940f80f6c27cf6f09eb1c7c3ad30a88f25a980f072f192f5662909f1a7fb : setup.py
d0d1540bbb9ccc8062ab1022c5d2a7f63108a7bbfbf2aa3b1f37a1f54e4a9fa9 : update_package.py