Parsec Cloud
Paquet d'installation silencieuse pour Parsec Cloud
3.9.2-0
- package: tis-parsec-cloud
- name: Parsec Cloud
- version: 3.9.2-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.05 Mo
- homepage : https://parsec.cloud/
package : tis-parsec-cloud
version : 3.9.2-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 : 174059ce-f4bd-4bc6-853e-96e8b6433a13
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-07-01T13:37:28.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 : GpY3JY/bLNxqNbdCs/m5XC+6RJ1NTTwXU6QStNbx5xDsO0QvkJD5zmb6i5E369pMOEiAHeN1r5BZ947a0ahlNas9F8pIMXu1UM00fFWkgJHSuL/u8e+S0TYbWY/JuMzmtsz20IecBpHuZxtoRRYDDCvVEa+lc/0pBGcR2F9xnnmGBuRlCrqJMvfcR8FBGm70Gs2N7g/MPXY2EDqlecIhW1ZybzdX2+Wv+/xSRCDVksoWFQilgF/IC5D7fcipF5BaNtId8dpTu1XxJu+mloBKW5e+zL1VgkagUQz3eoERRfu344sHLBCFu4jtSqcXQ3k/yNTvkt414LDj/4Ct5w9V4Q==
# -*- 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
d01830ec2a846ce326b6edbe54e4b51e1aaf5a1e10d3b1c2c6ffffa7a03e8e38 : Parsec_3.9.2_mac_arm64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
278ddee632c5db23a38c3cae039baf8f2f708260aada8531fd8d8ef8aa383f67 : WAPT/control
61645566ccd18125cb5c086d5d67834d31144cf9cd7cd98ded08f502b74bf92a : WAPT/icon.png
da540dd2e82dc857c59ff40ad6cbe840768105b9ad440adc1c9e15eb13165a8f : luti.json
f81d0f625fc2d7f10acc8cad1daa45d31c8644c5d7417314859eb1570742711a : setup.py
2d28bb4b5f45fe8fc88651d1c8dd086ab090617bd8f1f762c8d1810011d8d0aa : update_package.py