tis-parsec-cloud icon

Parsec Cloud

Silent install package for 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: x64
  • signature_date:
  • size: 156.52 Mo
  • homepage : https://parsec.cloud/

package           : tis-parsec-cloud
version           : 3.7.1-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    : 
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      : c68fe843-4b17-47a2-a272-510be96d7fbc
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:02:21.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         : Zb26nsy2mGpS0cs9ejxXRtH5BOucBCBH1+wm8ZZg7S+RAM1pStbUxsk0mC9G4+mofcVU4wSeoJ27YjXntQ3+rXVBDRfLgvxz0hKCZdI34mqv8GFvlIJ5PWlyaUCqKZPnfVUcI/fqGmie8gCM/VNHGzifAWwTFdmOrf6wcDkO9Ow7xn0dco7I1ioWP3l6lgsquM4PKKDdJLl8Pd4TUHoZjxBswzcuJX0PD7y1H9pQVK5yAUraFakFrpXwEPA7+8PP507ZfnuNps2W6hSqvx2idlolKs3KR4yAa3KnunL+y3aGkws1uoGK7sgM/x4mcQ96N93S6vbv+MPWaZhBnFNrtQ==

# -*- 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

2658b588a3563da548a5ccea452764e895c95b94249418be725b397b0c740bde : Parsec_3.7.1_mac_x86_64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d02a42671bdf56201557d9e05cc6274030421998eec4ee908e351390adb7439c : WAPT/control
61645566ccd18125cb5c086d5d67834d31144cf9cd7cd98ded08f502b74bf92a : WAPT/icon.png
3c4110c2b55f1b424e1f78b8fd3ab50812b254ee006e59cfe5f5bd58f30e5d7a : luti.json
f81d0f625fc2d7f10acc8cad1daa45d31c8644c5d7417314859eb1570742711a : setup.py
2d28bb4b5f45fe8fc88651d1c8dd086ab090617bd8f1f762c8d1810011d8d0aa : update_package.py