- package: tis-kopiaui
- name: KopiaUI
- version: 0.18.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: windows
- impacted_process: KopiaUI
- architecture: x64
- signature_date:
- size: 94.03 Mo
- installed_size: 307.64 Mo
- homepage : https://kopia.io/
package : tis-kopiaui
version : 0.18.1-2
architecture : x64
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 : windows
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 : 0b74623e-e76b-414f-85c7-1ad4781b461c
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 : 2024-11-22T20:06:57.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 : VfsPQq7Tt2TQRLtS9VlQ6QZMU8rwDaqAa4stFV0L1/jMlh4Ik3pKAjankKLemeQ3T/FTLOsPYjl41kjMmFPdcui9y9BA7tglJOJ1rP4u2J6EF2hMW6nXGNqOZDLQWEhbOigOv2IeAMX0VnhNNjrYhVkvDb6Za/SvMjPc/WG4wYlVWVzvAjLPAfosLhnGu6Bf03muyZuzqkeFaPbbxhA0aKGF5sc2jmqkG5cHdLLD80smYWjbLSo3FeX2bSQ9HBkrkF2DyVztayvSFrLpRpTCbP8p0IBwh8DO69snM4Qo9V9RVSinaaevo5P6X5zmqHxC/mfysWehDSSj+Wy+Ipf7cQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("KopiaUI-Setup-*.exe")[0]
install_exe_if_needed(
bin_name,
key="7b332f95-7538-5e20-9252-40d703baa034",
silentflags="/S /allusers",
)
# -*- 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))
exe_found = False # Flag pour indiquer la découverte d'un fichier .exe
for release in releases_dict:
if exe_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".exe") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["tag_name"].replace("v","")
exe_found = True # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
break
# Deleting binaries
for f in glob.glob("*.exe"):
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)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
56a31f6aaed0189eac6edcf99a8a615222bef2921cb3bbf7f87679475e2c3248 : KopiaUI-Setup-0.18.1.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
010da841ab2deef1e263f36553d03ddcac866e2c6190ba2dbbb151f4bd6594ab : WAPT/control
5da6636074ac0769beb17089bcfc6f0f8201888e944a306938894994fcd8a4ff : WAPT/icon.png
6bae7967ccb1d114ba37c9e044935a98cbcbb3eb2975f25274141da74e1ee155 : luti.json
16a06788e20b46811aa9000b040cf46987f9746d6fdffd3901c0049f575b1020 : setup.py
80e253e676acceb640cc452237de45e77c8f75f691fd7da3569acce786d944ed : update_package.py