tis-keepassxc icon

KeePassXC

Silent install package for KeePassXC

2.7.7-0

  • package: tis-keepassxc
  • name: KeePassXC
  • version: 2.7.7-0
  • categories: Utilities
  • maintainer: Bertrand Lemoigne,Tranquil IT
  • editor: Community driven
  • licence: GPL-3
  • target_os: darwin
  • architecture: arm
  • signature_date:
  • size: 31.39 Mo
  • homepage : https://keepassxc.org/

package           : tis-keepassxc
version           : 2.7.7-0
architecture      : arm
section           : base
priority          : optional
name              : KeePassXC
categories        : Utilities
maintainer        : Bertrand Lemoigne,Tranquil IT
description       : KeePassXC is a modern, secure and open source password manager
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : darwin
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : KeePassXC est un gestionnaire de mots de passe moderne, sécurisé et open source
description_pl    : KeePassXC to nowoczesny, bezpieczny i otwarty menedżer haseł.
description_de    : KeePassXC ist ein moderner, sicherer und Open-Source-Passwortmanager
description_es    : KeePassXC es un gestor de contraseñas moderno, seguro y de código abierto
description_pt    : KeePassXC é um gestor de senhas moderno, seguro e de código aberto
description_it    : KeePassXC è un gestore di password moderno, sicuro e open source
description_nl    : KeePassXC is een moderne, veilige en open source wachtwoordmanager
description_ru    : KeePassXC - это современный, безопасный менеджер паролей с открытым исходным кодом
audit_schedule    : 
editor            : Community driven
keywords          : Keepass
licence           : GPL-3
homepage          : https://keepassxc.org/
package_uuid      : 77c5c757-ada6-4ae5-84f5-ffbee45cb1a5
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 4b1b02a3f0711c464775bf23ab74a2d6f1427878c01569afeca0af5966888074
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : kbuHxQyLNHgFIZ1mp7eIaqkDgajllw2/92QCS+K03degWZGBj6OnBZz7zhM3yXyXZBUiqAmma/nrkOQXrTCMZBwl2QXcrnyPK8GKDZctpOAUyOm/GsnhYvWdBCDRusE1XzDNaD5aYwEFERMsCOjN0hECBv0NkWiRVJst4OfQme6oBuakfwCfcEwGMAP8C9i3aent1lDL3vYuSocevT2Z7RXXau4gPcvEEff8HCSchK+BrZFEviSl1MAhfjPx26KYt94o48jxdER586H//SoEa2Vw/QYh1J+vSe75pLDU2PpYUZLxvqcMjb5LkRMk2aPINEwDM03bL8/iOZh7JqzBLw==
signature_date    : 2024-03-16T00:00:33.785153
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

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


def install():
    install_dmg(
        glob.glob("KeePassXC*.dmg")[0],
        key="/Applications/KeePassXC.app",
        min_version=control.get_software_version(),
    )



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


def update_package():
    bin_contains = "-arm64.dmg"
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    api_url = "https://api.github.com/repos/keepassxreboot/keepassxc/releases/latest"

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for download in json_load["assets"]:
        if bin_contains in download["name"]:
            download_url = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            break

    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return result

5977a11072793193faad7d2a54549dc136890b9378043c629b6858739ed57b6e : setup.py
8681540627d03f70f683dc5acd79af8f42bba21425ffaf352c79eb5c31fb9712 : KeePassXC-2.7.7-arm64.dmg
6cfb6ce85fc365b6f86c4bb35b54920bdc9c0263075b8dccb3cc4421bb48857e : update_package.py
4b1b02a3f0711c464775bf23ab74a2d6f1427878c01569afeca0af5966888074 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
07a2ccd335b5dc699a46c70a3b7772f49bdeec8dbaf3c580d5c99b0361518b9a : luti.json
695d3f17202c21461c68272737a0b8fa1ccaa1bd40b7938292dec619a27cd38f : WAPT/control