Parsec Cloud
Paquet d’installation silencieuse pour Parsec Cloud
3.7.1-0
- package: tis-parsec-cloud
- name: Parsec Cloud
- version: 3.7.1-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: 149.44 Mo
- homepage : https://parsec.cloud/
package : tis-parsec-cloud
version : 3.7.1-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 :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor :
keywords :
licence : GNU Affero General Public License, Version 3 (AGPLv3) © 2016-2021 Scille SAS
homepage : https://parsec.cloud/
package_uuid : 1a5bd647-8db4-47bf-85bd-9deb32c55043
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-02-07T13:08:16.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 : vDkyP1xAZvXq3+Erk/1hBd2hKJsBKMHuc69O/CKA05TfBM6NM6ZPFm/ReaGGZe3d5GqAUBnrNzugGDo7VmNQXbX3YRH7r8lm/Y5P0rUv3NRt7Nn8F8j/YbdaScxjuhd8IgsDBJYmWmsxa+gSStk9L1gFutqaRSA3i0JDetMxHlE4pIkf9DrtK9CIo5tYuHkaPCL+jnqRE5Ge2Kw2mthFvEA+pqJuXONsgSgf9aFCLhKA14ATPTK0CoiwLZbUNnmhMcdz2Gqyq75TBZSPPNfj19Kgu6URCRN21DghGr0opGGFnuj9KSYpBWsA8XyF8mBEUYByMnyXYfVJPBBvv7i0yQ==
# -*- 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
b2e2e42245c6044d96fc985c51b1f83861803b45910acde22ec8405153f08470 : Parsec_3.7.1_mac_arm64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a927753bff53a9c69cd268d72559958c110a7e0777b37f4bcbf0d7a65419c4e6 : WAPT/control
61645566ccd18125cb5c086d5d67834d31144cf9cd7cd98ded08f502b74bf92a : WAPT/icon.png
c2d9d87087a4f2a45fcb32fc702eb1f41f94a8db9979c173f23c47d44735d7c2 : luti.json
f81d0f625fc2d7f10acc8cad1daa45d31c8644c5d7417314859eb1570742711a : setup.py
2d28bb4b5f45fe8fc88651d1c8dd086ab090617bd8f1f762c8d1810011d8d0aa : update_package.py