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-nextcloud
- name: Nextcloud
- version: 3.17.2-1
- categories: Storage
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Nextcloud GmbH
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale: all
- target_os: darwin
- impacted_process: nextcloud,nextcloudcmd
- architecture: all
- signature_date:
- size: 372.43 Mo
- installed_size: 238.19 Mo
- homepage : https://nextcloud.com
package : tis-nextcloud
version : 3.17.2-1
architecture : all
section : base
priority : optional
name : Nextcloud
categories : Storage
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Nextcloud is a suite of client-server software for creating and using file hosting services
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : darwin
min_wapt_version : 2.1
sources : https://nextcloud.com/install/#install-clients
installed_size : 238194476
impacted_process : nextcloud,nextcloudcmd
description_fr : Nextcloud est une suite de logiciels client-serveur permettant de créer et d'utiliser des services d'hébergement de fichiers
description_pl : Nextcloud to pakiet oprogramowania klient-serwer do tworzenia i korzystania z usług hostingu plików
description_de : Nextcloud ist eine Suite von Client-Server-Software für die Erstellung und Nutzung von Filehosting-Diensten
description_es : Nextcloud es un paquete de software cliente-servidor para crear y utilizar servicios de alojamiento de archivos
description_pt : Nextcloud é um conjunto de software cliente-servidor para a criação e utilização de serviços de alojamento de ficheiros
description_it : Nextcloud è una suite di software client-server per la creazione e l'utilizzo di servizi di file hosting
description_nl : Nextcloud is een suite van client-server software voor het creëren en gebruiken van file hosting diensten
description_ru : Nextcloud - это набор клиент-серверного программного обеспечения для создания и использования услуг хостинга файлов
audit_schedule :
editor : Nextcloud GmbH
keywords : cloud
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage : https://nextcloud.com
package_uuid : abb7131f-a0fb-44e4-ae35-179d816cc703
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/nextcloud/desktop/releases
min_os_version : 12
max_os_version :
icon_sha256sum : 1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-16T14:10:01.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 : bNCEDHzsZ48z/rGGV+EAfwfb2vp1t0C2tp2IR/daFGYl3h/SfPvi4mT8IARvLVkLZ4SrvxG/fSyLAhwcipbdlzFPps70mVxXscjrJC4wDSiX1L/oa3ib1Jx8+lsxhMRr6PFVoOZVlL6ntU9NDtP3lYzSGCTEeMU3xLcdReoguIGx/MHIfGqCkXAXJY6sJpTB6zhf94q6xpL/swkEDNRYbKXoz5bZCRFInEIKMZtSqYT8lz5ZHYQPFosxWXQ6L2uN4PURUTaGMYVUK8hykM8Xd0syaemsJT6ip/yfA36BLWGjcdqzzMLzoz4g8HN2hNibFlX9mEtcZ3Zd1pVePTyEOg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("Nextcloud-*.pkg")[0]
install_pkg(
bin_name,
key="pkgid:com.nextcloud.desktopclient",
min_version=control.get_software_version(),
)
def uninstall():
uninstall_pkg("com.nextcloud.desktopclient")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
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/nextcloud-releases/desktop/releases/latest"
download_dict = {
"windows": "x64.msi",
"linux": "x86_64.AppImage",
"darwin": ".pkg",
}
releases_dict = wgets(api_url, proxies=proxies, as_json=True)
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(download_dict[control.target_os]):
download_url = asset["browser_download_url"]
latest_bin = download_url.rsplit('/')[-1]
version = releases_dict["tag_name"][1:]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
8c774418e18677b4b870035ce549b03cd8a082aaea99c085305acaebf14d0e91 : Nextcloud-3.17.2-macOS-vfs.pkg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
a255a5782249ad46a006842e91e4aaf2d88520234a03c39188f8913ba71566b4 : WAPT/control
1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d : WAPT/icon.png
25c7c01cf8fade1dd6fff6a7991b190f29e9ab11214d141be5d53efb9a0820f7 : luti.json
a090904be0ddb600927e93699900fa01fd4ff1dc76268266a6dfed8e421d2572 : setup.py
505a5bb95b962f6200907e7e6956ce7627a72b25b2dce866a2b2863189ee91b4 : update_package.py