KeePassXC
Paquet d’installation silencieuse pour KeePassXC
2.7.11-0
Utilities
Utilities
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-keepassxc
- name: KeePassXC
- version: 2.7.11-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Morgan HINESTROSA,Pierre COSSON
- editor: Community driven
- licence: GPL-3
- locale: all
- target_os: darwin
- impacted_process: KeePassXC
- architecture: x64
- signature_date:
- size: 35.44 Mo
- installed_size: 107.02 Mo
- homepage : https://keepassxc.org/
package : tis-keepassxc
version : 2.7.11-0
architecture : x64
section : base
priority : optional
name : KeePassXC
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Morgan HINESTROSA,Pierre COSSON
description : KeePassXC is a modern, secure and open source password manager
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : darwin
min_wapt_version : 2.2.2
sources : https://github.com/keepassxreboot/keepassxc
installed_size : 107024384
impacted_process : KeePassXC
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 : f9b17827-f09e-4f15-ae45-e40e318dd46f
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-24T01:00:29.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 : dpYpPZ5v875ZExfSTEqpJaE2aAMn4zH77Clh7f9HwcHbL3ogR/a79eusK3aZvKTwSZz4+7vDZVS8+PLZ+U65gVXl19kBonZy4blbCiN8BUP2Hy9L10yLLfPgPUspzmdBwuzj58HLPWAfaJsrobZ0OXhSShtJpVWfHRT0cMCJGa0hcNSMdydiq1LD55VAOsdYiWswgjU+d1/cHw58Yk4QF2YuX25w4laW2TiZyelHMPaRpEGNaYWvoC6kEhasSecdi0PI0r3myWqsyPZYoLoslT0928Vnb2j/h3JkO5GSkPr9Wz6o1fsWbIouuO4Nl/2+IWSEtHcOPtqzozqj9M7i5Q==
# -*- 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 = "-x86_64.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
ee4cf677246d696e9ad80fd21e65f137e38512cdc39720c10ed165c82fa95250 : KeePassXC-2.7.11-x86_64.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
73ebcae58673a48c772412f13ed3bc7ca6b1f2c6b11a1cb5be574f4dfa24c937 : WAPT/control
4b1b02a3f0711c464775bf23ab74a2d6f1427878c01569afeca0af5966888074 : WAPT/icon.png
94fa0753033d492e374fe08adc6d4e6ab3d978422761b009e105b17eb852a5d1 : luti.json
ad8e81a1640ec065f5e6d2fd8effcd8b7c35d5aa6cfea2989d9e157b5e865d98 : setup.py
0679937c2bd953c2f33e5e8743b1f57a79f17eb817d54dd31bedc6ebf9c9dbad : update_package.py