Parsec Cloud
Silent install package for Parsec Cloud
3.9.3-0
- package: tis-parsec-cloud
- name: Parsec Cloud
- version: 3.9.3-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: x64
- signature_date:
- size: 146.45 Mo
- homepage : https://parsec.cloud/
package : tis-parsec-cloud
version : 3.9.3-0
architecture : x64
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 : 56d614ad-756e-4245-961f-c0f83a985508
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-29T13:09:39.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 : G67SdNHrixQof7VTb28u4gvSliEXw/TDtYJPyXA3QpjPgC/2XJYLQfr5Jw1G0tn3AD/y9+rlRwrfpbmvKHsKvYTcos3XpGAngtBCEvhb2RM2wwtRkQcVYilaAT0Uk6m6ax5+F+kOQNl4jU+t5DPP5yOVVF6iS3NZlPJhE73EM8rDhl4W7l9dLZo0yHsfxdsgRb9L7lgDtxT+pZYNjNiwEta4Q0+kP7bacKkhD6J8/JvqK48aSaerQyMdtXlc2fJZyQPGcsZNHbMA/z4wCdvpf/X1PNvKxdhPSNoiJfOXJ3Xo54WeGSZAxhxMibCvbDdfRRcWglxJnnIYMrdMJFAz4g==
# -*- 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
8afc90144731fe130d6ec4cfb1f43fbe1f28e0e0413d18e1964e167f8f6c44a0 : Parsec_3.9.3_mac_x86_64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e26ea579655b20bb44c9c2b69d675644ca58d9f3d3eb20e66c54b8ef1a80942d : WAPT/control
61645566ccd18125cb5c086d5d67834d31144cf9cd7cd98ded08f502b74bf92a : WAPT/icon.png
99e99fc39abbbf59f1755c48842d9645e7f6676984b3bbb807e1ce37562fb37d : luti.json
f81d0f625fc2d7f10acc8cad1daa45d31c8644c5d7417314859eb1570742711a : setup.py
2d28bb4b5f45fe8fc88651d1c8dd086ab090617bd8f1f762c8d1810011d8d0aa : update_package.py