tis-jasp icon

JASP

Silent install package for JASP

0.95.2-4

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-jasp
  • name: JASP
  • version: 0.95.2-4
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
  • editor: Universiteit van Amsterdam
  • licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: Jasp
  • architecture: x64
  • signature_date:
  • size: 1.06 Go
  • installed_size: 2.03 Go

package           : tis-jasp
version           : 0.95.2-4
architecture      : x64
section           : base
priority          : optional
name              : JASP
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT
description       : JASP is a program for statistical analysis
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 2030284800
impacted_process  : Jasp
description_fr    : JASP est un programme d'analyse statistique
description_pl    : JASP to program do analizy statystycznej
description_de    : JASP ist ein Programm zur statistischen Analyse
description_es    : JASP es un programa de análisis estadístico
description_pt    : JASP é um programa de análise estatística
description_it    : JASP è un programma per l'analisi statistica
description_nl    : JASP is een programma voor statistische analyse
description_ru    : JASP - программа для статистического анализа
audit_schedule    : 
editor            : Universiteit van Amsterdam
keywords          : statistics
licence           : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage          : 
package_uuid      : 07389e33-81f7-408d-b0a7-1a55b7895634
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : e9d937f848a07770c101a880f1ac1c2209da2add443a156d79cec14f5bf00653
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-09-17T08:02:43.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         : Vfo4CWo7AQvrRPtM/1hqOYkwV/TszWPINapFGFdmDvQ6G8Nx5MeuknL3x7YoK/UkILpL3Is6aqQ+24Sn1DQBnip1HzgZ0sZzIkW1Q0eb0nkV7H+LzsLZAPjJBV1JHy3zdriwEHJhqFGMPBv8giZGiELxnhB7II+y41CzUrOVA5hw+pQyWf+PVYQkUhzFbI7IGRdB5EBvfPxboyLHLqJjP29keAhT+8Wfy9pITSJvdi4OWng72hA1srTGMqNSgqdTFpNZvysS1bLVMlCdbS5v/9tcMJl4Y3LH3DKl7gvvPhe0keSU7t6jiA6mRUTOH2u9p3vcvJNy/PSrhyU9O5qKuw==

# -*- coding: utf-8 -*-
from setuphelpers import *
import time

app_name = "JASP"
app_dir = makepath(programfiles, app_name)
app_path = makepath(app_dir, f"{app_name}.exe")

def install():
    # Declaring local variables
    zip_name = glob.glob('JASP-*-Windows.zip')[0]
    mkdirs(app_dir)
    unzip(zip_name, app_dir)
    create_programs_menu_shortcut(app_name, app_path)


def uninstall():
    #Uninstalling software
    killalltasks(ensure_list(control.impacted_process))
    time.sleep(2)
    if isdir(app_dir):
        remove_tree(app_dir)
    
    remove_programs_menu_shortcut(app_name)
   

# -*- coding: utf-8 -*-
from setuphelpers import *
import re


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    update_dict = {"windows": ".zip", "macos": "x86_64.dmg"}
    api_url = "https://api.github.com/repos/jasp-stats/jasp-desktop/releases/latest"

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    zip_found = False  # Flag pour indiquer la découverte d'un fichier .zip
    for release in releases_dict:
        if zip_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".zip") and update_dict[control.target_os] in asset["browser_download_url"]:
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["tag_name"].replace("v","")
                zip_found = True  # Mettre à jour le flag pour indiquer qu'un zip a été trouvé
                break

    # Deleting binaries
    for f in glob.glob("*.zip"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_download)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_download, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    control.set_software_version(version)
    control.save_control_to_wapt()

f1d0b2574a14532f4494d9efd046f438b39aa59fe396276bfc82aa1d31b791bf : JASP-0.95.2.0-Windows.zip
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
f1fc73157fd3b8053c18fd5bb24fadd11b2ebb3db5f902e98aceb359c2065f85 : WAPT/control
e9d937f848a07770c101a880f1ac1c2209da2add443a156d79cec14f5bf00653 : WAPT/icon.png
2ba08883a85cca5c9558a7a03f76dcaab4b1827c0668265d14b507b52d0101dd : luti.json
74b2ee2490fcf1d4d0f4a8fe504190a8cfa2e19bcc90c82b2a5f8785ff64291a : setup.py
43a536c00f5c97b42c6cb7d967e22e9013c51ff4cbabc37939cf5ec10467cd71 : update_package.py