Parsec Cloud
Paquet d'installation silencieuse pour Parsec Cloud
3.9.0-0
- package: tis-parsec-cloud
- name: Parsec Cloud
- version: 3.9.0-0
- maintainer: WAPT Team,Tranquil IT, Gwenaël Adam
- licence: GNU Affero General Public License, Version 3 (AGPLv3) © 2016-2021 Scille SAS
- target_os: macos
- architecture: arm
- signature_date:
- size: 139.06 Mo
- homepage : https://parsec.cloud/
package : tis-parsec-cloud
version : 3.9.0-0
architecture : arm
section : base
priority : optional
name : Parsec Cloud
categories :
maintainer : WAPT Team,Tranquil IT, Gwenaël Adam
description : Open source Dropbox-like file sharing with full client encryption !
depends :
conflicts :
maturity : PROD
locale :
target_os : macos
min_wapt_version :
sources : https://github.com/Scille/parsec-cloud/releases
installed_size :
impacted_process :
description_fr : Partage de fichiers open source à la manière de Dropbox avec chiffrement client complet !
description_pl : Udostępnianie plików przypominające Dropboxa z otwartym oprogramowaniem z pełnym szyfrowaniem klienta!
description_de : Open-Source-Dropbox-ähnliche Dateifreigabe mit vollständiger Client-Verschlüsselung!
description_es : ¡Compartición de archivos de código abierto tipo Dropbox con cifrado completo del cliente!
description_pt : Partilha de ficheiros open source ao estilo Dropbox com encriptação total do cliente!
description_it : Condivisione di file open source simile a Dropbox con crittografia completa del client!
description_nl : Open source Dropbox-achtige bestandsdeling met volledige clientencryptie!
description_ru : Открытый исходный код для обмена файлами, похожими на Dropbox, с полным шифрованием клиента!
audit_schedule :
editor :
keywords :
licence : GNU Affero General Public License, Version 3 (AGPLv3) © 2016-2021 Scille SAS
homepage : https://parsec.cloud/
package_uuid : eaad635f-989a-4e81-ac49-69972275b1ef
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 61645566ccd18125cb5c086d5d67834d31144cf9cd7cd98ded08f502b74bf92a
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-06-09T12:18: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 : btAvQATNMnquPuv5Lq3r5onpB8XEUyx+L0Gt5Mz0ace1MCqHiiuaBe/9JYQfFK11B/VFQXRwZyHq6GU7ArTbnjOtpXN0W+1ZjWMx0hQNxD4XeGsDJmE6yAC1l3TwQ7srsm1WLpKg3lGoDvAFxHsRa/E3Oa9m6YAuW8QOEn3SL3+DuPO2UST+fD3agWwpWoBnyxPQ2/N6WyTApLSYgqkF2slfde5lzxUud6NoRZ2WK+segVMZ8osSq3xi43r9MpQhc6/hKk1NaWLMu6ph5QsXXHQKFiRfoBkgHeofYVJSbIYDdQUrsY9UQoH9Au5s3b+Pds5ULu3LRi2km2OeVZnUCg==
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def install():
# Declaring variables
bin_name = glob.glob("Parsec*.dmg")[0]
# Installing the software
install_dmg(
bin_name,
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
api_url = "https://api.github.com/repos/Scille/parsec-cloud/releases/latest"
download_dict = {
"windows-x64": "x86_64.exe",
"windows-x86": "x86_64.exe",
"linux": ".AppImage",
"macos-x64": "x86_64.dmg",
"macos-arm": "arm64.dmg",
}
# Getting latest version information from official sources
print(f"API used is: {api_url}")
json_load = wgets(api_url, proxies=proxies, as_json=True)
version = json_load["tag_name"].replace("v", "")
for to_download in json_load["assets"]:
if download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in to_download["name"]:
download_url = to_download["browser_download_url"]
latest_bin = to_download["name"]
break
# Downloading latest binaries
print(f"Latest {control.name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Deleting outdated binaries
remove_outdated_binaries(latest_bin)
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Validating update-package-sources
return package_updated
da8f639e934edeaef80c0636ea520e5340324b21c7d1bc84d3adfac44ab2b245 : Parsec_3.9.0_mac_arm64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8e0c80017c8d902c9605971cefd17368eea6c1d18bfd25ca56324b4bee3dab7b : WAPT/control
61645566ccd18125cb5c086d5d67834d31144cf9cd7cd98ded08f502b74bf92a : WAPT/icon.png
319a5fedb565dcc1052bd2dfaec42a56d4566f811090316ec4b319961504289a : luti.json
f81d0f625fc2d7f10acc8cad1daa45d31c8644c5d7417314859eb1570742711a : setup.py
2d28bb4b5f45fe8fc88651d1c8dd086ab090617bd8f1f762c8d1810011d8d0aa : update_package.py