- package: tis-xca
- name: XCA
- version: 2.9.0-14
- categories: Security,Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELE
- editor: Christian Hohnstädt
- licence: BSD
- locale: all
- target_os: windows
- architecture: x64
- signature_date:
- size: 26.97 Mo
- homepage : https://hohnstaedt.de/xca/index.php
package : tis-xca
version : 2.9.0-14
architecture : x64
section : base
priority : optional
name : XCA
categories : Security,Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELE
description : X - Certificate and Key management
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://github.com/chris2511/xca/releases
installed_size :
impacted_process :
description_fr : X - Gestion des certificats et des clés
description_pl : X - Zarządzanie certyfikatami i kluczami
description_de : X - Zertifikats- und Schlüsselverwaltung
description_es : X - Gestión de certificados y claves
description_pt : X - Gestão de certificados e chaves
description_it : X - Gestione dei certificati e delle chiavi
description_nl : X - Certificaat- en sleutelbeheer
description_ru : X - Управление сертификатами и ключами
audit_schedule :
editor : Christian Hohnstädt
keywords : xca,x,key,certificate,management
licence : BSD
homepage : https://hohnstaedt.de/xca/index.php
package_uuid : 15df14ea-1cd8-451e-97e5-2411150767c0
valid_from :
valid_until :
forced_install_on :
changelog : https://www.hohnstaedt.de/xca/index.php/software/changelog
min_os_version : 6.1
max_os_version :
icon_sha256sum : de32b5a6354a3a0fd2642264ee42150182a96917f5ffd577618d799ece8c792d
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-02T22:14:38.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 : Z6gZUhHpnf5+IqpyWrp9CN8fn0mvAI4uhBjdf5h/QErGRawG12dVWX0rm7lNhBNbqREmQ/25DkM9mhb+7XePTM3l+qBUl5Zet0o0AD2/57AbRkHs8YzVqdF5OvYCEz6NByePp9SaPahQumO9WOBPph8i+iGlTEci6kleHu0RlriQvo341MmuJ9GjCXNonvsonR9jbtT/bdYTfPyKItJ34rGnVPyeH9Nk9pWgKbduz/A9gRcNx8kwnMbk/OpFzQIF2tHehgpgVoSxKeiGRv1cVgBUWonxqpPvtmHGJKCU3BaOLD3b39eTBMNcJJ65F9XEhwRq7Szg6Jtsi78ecy5bvQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
# Declaring specific app values (TO CHANGE)
bin_name_string = "xca-%s-win64.msi"
def install():
# Specific app values
package_version = control.version.split("-")[0]
bin_name = bin_name_string % package_version
# Installing the package
install_msi_if_needed(bin_name, min_version=package_version)
# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
import json
bin_name_string = "xca-%s-win64.msi"
def update_package():
print("Download/Update package content from upstream binary sources")
# Getting proxy informations from WAPT settings
proxy = {}
if platform.system() == "Windows" and isfile(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")):
proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
if proxywapt:
proxy = {"http": proxywapt, "https": proxywapt}
# Specific app values
app_name = control.name
git_repo = "chris2511/xca"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
bin_end = bin_name_string.split("%s")[-1]
# Getting latest version from official website
json_load = json.loads(wgets(url_api, proxies=proxy))
for download in json_load["assets"]:
if download["name"].endswith(bin_end):
url_dl = download["browser_download_url"]
latest_bin = download["name"]
break
version = json_load["tag_name"].replace("RELEASE.", "")
print("Latest " + app_name + " version is: " + version)
print("Download url is: " + url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: " + latest_bin)
wget(url_dl, latest_bin, proxies=proxy)
# Checking version from file
version_from_file = get_msi_properties(latest_bin)["ProductVersion"]
if version != version_from_file and version_from_file != "":
version = version_from_file
old_latest_bin = latest_bin
latest_bin = bin_name_string % version
if isfile(latest_bin):
remove_file(latest_bin)
os.rename(old_latest_bin, latest_bin)
# Changing version of the package
control.version = "%s-%s" % (version, int(control.version.split("-", 1)[1]) + 1)
control.save_control_to_wapt(".")
print("Changing version to " + control.version + " in WAPT\\control")
print("Update package done. You can now build-upload your package")
else:
print("This package is already up-to-date")
# Deleting outdated binaries
for bin_in_dir in glob.glob("*.exe") or glob.glob("*.msi") or glob.glob("*.zip"):
if bin_in_dir != latest_bin:
print("Outdated binary: " + bin_in_dir + " Deleted")
remove_file(bin_in_dir)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
25cec14ca0380022e6e78bcde14f008daffc5effdb792d5f8e719067ffa53790 : WAPT/control
de32b5a6354a3a0fd2642264ee42150182a96917f5ffd577618d799ece8c792d : WAPT/icon.png
89c42881ebdbe0cc0dcbcf187cb5a0c93db5341a4942c616a57b76df0a289ed5 : luti.json
1d63bf63ee2a4bd09a883578ff511c3a7aa5f880fbdd3f2cf7b1fc9bfc92d071 : setup.py
844b6952c588daff1f33df04907bee6a0f2707de04238803cc2a0823a9151407 : update_package.py
b26886cffb0170c4246a09c5e64965fad9da601c9a83e6b24ad2ee1b5f173638 : xca-2.9.0-win64.msi