Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-jasp
- name: JASP
- version: 0.95.2-1
- 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: macos
- architecture: x64
- signature_date:
- size: 1.17 Go
- installed_size: 2.03 Go
package : tis-jasp
version : 0.95.2-1
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 : macos
min_wapt_version : 2.3
sources :
installed_size : 2030284800
impacted_process :
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 : e452a39d-6cff-4696-bd97-5fc20f7586d5
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:10:50.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 : fPLMGsh3DeitK8VwBex+frDjwIXzhJMYi86XA4e3wAdQYGKaoJiGs7DJCsC/xaSkkmx9GKkbyB7sajsClnoNrXA7pY8ISfMyhXLpg8btGT1sLLOfG/BpAmoGD76Ry7tv6vsjVUmVt8ixf9+Rd79N7pfG5ctIjewdi7BAR3i+Gm/5P6093WR0Xf1L88u3Al4J68JoYxEgY6OtX5i/x9yFbgJLnc2hWGylVzgWxJ/fmo6VUBU+nq4Ub47cyJxUy+cI2Fj9e8WZiyv8CRcOMsYnaSnJurTVfyE+yAn/2uyYoMr4mNlVL46jbIBxXkOzk8/DkhoSVINkhzPngDA4/6VmAg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("JASP-*-MacOS-x86_64.dmg")[0]
install_dmg(bin_name, min_version=control.get_software_version())
def uninstall():
remove_tree("/Applications/jasp.app")
# -*- 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": ".msi","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))
dmg_found = False # Flag pour indiquer la découverte d'un fichier .dmg
for release in releases_dict:
if dmg_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".dmg") 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", "")
dmg_found = True # Mettre à jour le flag pour indiquer qu'un dmg a été trouvé
break
# Deleting binaries
for f in glob.glob("*.dmg"):
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()
6093eca0845f8cc0292f5197c1797e0d5aeb2af624263c3e8ce857ff9d6e5c2d : JASP-0.95.2.0-MacOS-x86_64.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
f7607a4bc1d6414290e8be3638a57d2df5a3ba459aeca99027e8863335f7c053 : WAPT/control
e9d937f848a07770c101a880f1ac1c2209da2add443a156d79cec14f5bf00653 : WAPT/icon.png
1dd2cc32d0b580196ee342a4fb36e6abc547e2032ef9ca14d087c3eefe6a747c : luti.json
dcb301e784f8215c88d6464e1d962b6247cd528634f972d9ae34357eef96455b : setup.py
95304d78832c4a6fbd4e80d3c217a38236cb79cf266ee21356ec139000dfdd92 : update_package.py