tis-keepassxc icon

KeePassXC

Silent install package for KeePassXC

2.7.11-0
Utilities
Utilities

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

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

package           : tis-keepassxc
version           : 2.7.11-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          : PREPROD
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      : 8778cdd0-6b1d-465d-8d66-230dfbfc280c
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 4b1b02a3f0711c464775bf23ab74a2d6f1427878c01569afeca0af5966888074
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-24T00:59:53.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         : b8atR9M29GAOdaNOoZhrmlrNSHLScccCELuM8jKu0SX7XvtFe9/MnJ+1NZDjPlTTdCxdjaAaWMg7cT1Sm4IqnAeZnYCz8WtY0xYlX7ze6ICC8tfzmh3EOLW5ovfrjmaIx4shyY1ToAbSc51HUlZmMD/XrGYp/chpmj4MWdIhFWCjUMt78qOLfsijokblYf8cHCqKr4oXbGZ+WUqcx065Zz/RotrwXPqzjkAX/H1otM1PHBPz1s4DAVD+yMW2TEadfw5rr/fHPnTXK8aZfjFJrcTv7xGLom+6P3x42q5kI+cKwbi5n4lVeUEJZo9zfPNMOw6G2P8DpBIFiig9LRsNCA==

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

eac316a1dce12c0b1f3bfec957ca58d828fa1cd2b1eebfcd4ff9361926675b37 : KeePassXC-2.7.11-arm64.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
2fa7fed953157e90ce47cdef1235fd87eb80ec19b2e9a40d7c52cdd4104b1440 : WAPT/control
4b1b02a3f0711c464775bf23ab74a2d6f1427878c01569afeca0af5966888074 : WAPT/icon.png
3355b0fad704f8ce1b3777eeaa8cf9400a16bd142b5fe909ee9096489bcfa67b : luti.json
5977a11072793193faad7d2a54549dc136890b9378043c629b6858739ed57b6e : setup.py
6cfb6ce85fc365b6f86c4bb35b54920bdc9c0263075b8dccb3cc4421bb48857e : update_package.py