- package: tis-kopiaui
- name: KopiaUI
- version: 0.21.1-2
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Kopia Authors
- licence: opensource_free,cpe:/a:apache:license_2.0,wapt_public
- locale: all
- target_os: macos
- impacted_process: KopiaUI
- architecture: all
- signature_date:
- size: 146.18 Mo
- installed_size: 307.64 Mo
- homepage : https://kopia.io/
package : tis-kopiaui
version : 0.21.1-2
architecture : all
section : base
priority : optional
name : KopiaUI
categories : System and network
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Kopia is a fast and secure open-source backup/restore tool that allows to create encrypted snapshots of your data and save the snapshots to remote or cloud storage of your choice, to network-attached storage or server, or locally on your machine
depends :
conflicts :
maturity : PROD
locale : all
target_os : macos
min_wapt_version : 2.3
sources :
installed_size : 307639663
impacted_process : KopiaUI
description_fr : Kopia est un outil de sauvegarde/restauration open-source rapide et sécurisé qui permet de créer des instantanés chiffrés de vos données et de les sauvegarder sur un espace de stockage distant ou dans le cloud de votre choix, sur un serveur ou un espace de stockage connecté au réseau, ou localement sur votre machine
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : Kopia Authors
keywords : backup,restore,security
licence : opensource_free,cpe:/a:apache:license_2.0,wapt_public
homepage : https://kopia.io/
package_uuid : 88a290c8-9f2a-49e9-a770-63fe5720572e
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/kopia/kopia/releases
min_os_version :
max_os_version :
icon_sha256sum : 5da6636074ac0769beb17089bcfc6f0f8201888e944a306938894994fcd8a4ff
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-07-27T04:05:24.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 : K9jUkC9eKsmccYbJE4c2KPvilOUvXyY4OpC228eiLi+fu6zdePAEJ7s4tWLXozA/nP377tAFuq1mrN5fuar293OFlgGTEIsqfXrcF/jhHtJg6cS6wRDTDhkpKY4EgZ+cNWoa9xF0iIrly5k7sgQ2xreTO7zosXOVpIL0aXw4WFZz3tMyp3P63+lMS0WAeU2ls7UsDX+v42gaRxnfhRJ0/UCUhp6D5kuSmxfHbVsCF5fOM9/+mLmuXlVCKlt9nZAzSeeYRwTWGQ7ZSQQ8aAkHj2u9MtvSAflPLYaLExNsavgK/LFZVyo5FWpsJynp0N6VDLguKyxIZu4qhUK/Wxq8Ag==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_dmg(glob.glob("KopiaUI-*.dmg")[0])
def uninstall():
remove_tree("/Applications/KopiaUI.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe", "macos": ".dmg"}
api_url = "https://api.github.com/repos/kopia/kopia/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
dmg_found = False # Flag pour indiquer la découverte d'un fichier .dmg
for release in releases_dict:
if dmg_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".dmg") and update_dict[control.target_os] in asset["browser_download_url"] and "arm64" not in asset["name"].lower():
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["tag_name"].replace("v","")
dmg_found = True # Mettre à jour le flag pour indiquer qu'un dmg a été trouvé
break
# Deleting binaries
for f in glob.glob("*.dmg"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
aafe3306b2c6fe35a30f7709d2762c71c97a3c25c4a174111fd8621620dc6e4b : KopiaUI-0.21.1.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a622c5453bcb99861f6b949784244bb0beec161e922a7139c0aedc4c7745cacc : WAPT/control
5da6636074ac0769beb17089bcfc6f0f8201888e944a306938894994fcd8a4ff : WAPT/icon.png
b832ada750c89a5f552949fe4f26c6765ad60a57958a276bfe74b2b6f0e5f544 : luti.json
3c0310a06ba212374db0afcba0080d8cfca27410d7920597641b9348244e282e : setup.py
33b65784e3fdba93ef16419a9930264d1b00c77dc152a537c594b3e0475c16b9 : update_package.py