
Meson
Silent install package for Meson
1.8.2-4
- package: tis-meson
- name: Meson
- version: 1.8.2-4
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- target_os: windows
- architecture: x64
- signature_date:
- size: 14.00 Mo
package : tis-meson
version : 1.8.2-4
architecture : x64
section : base
priority : optional
name : Meson
categories :
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Meson is an open source build system meant to be both extremely fast, and, even more importantly, as user friendly as possible
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Meson est un système de construction open source conçu pour être à la fois extrêmement rapide et, plus important encore, aussi convivial que possible
description_pl : Meson to system kompilacji typu open source, który ma być zarówno niezwykle szybki, jak i, co ważniejsze, tak przyjazny dla użytkownika, jak to tylko możliwe
description_de : Meson ist ein Open-Source-Build-System, das sowohl extrem schnell als auch - was noch wichtiger ist - so benutzerfreundlich wie möglich sein soll
description_es : Meson es un sistema de compilación de código abierto pensado para ser extremadamente rápido y, lo que es más importante, lo más fácil de usar posible
description_pt : O Meson é um sistema de compilação de código aberto destinado a ser extremamente rápido e, ainda mais importante, tão fácil de utilizar quanto possível
description_it : Meson è un sistema di compilazione open source pensato per essere estremamente veloce e, cosa ancora più importante, il più semplice possibile per l'utente
description_nl : Meson is een open source buildsysteem dat bedoeld is om zowel extreem snel als, nog belangrijker, zo gebruiksvriendelijk mogelijk te zijn
description_ru : Meson - это система сборки с открытым исходным кодом, которая должна быть чрезвычайно быстрой и, что еще важнее, максимально удобной для пользователя
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : 5a9a4fd9-8971-4299-8c0d-2676d644719e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 915b257932a6f2565860be37cdc0ba66411fca06349a1d0bd38912f081f5b1f9
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-23T13:01:08.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 : ToAFU9UKFRRxpVz5G+fIIZjH6hMOW1JacivaCaXHlAD6oWcrzU7pw8hYu75Y79eMg2M6pd0IaUcoRmLbCTlBVPP3uMQEJt5znDurGKmuXpMN0ofOiXX7S57TFK+ytVpnLZLD+SdJh78mME76TWGDUr5EOnyuID+levcU9VIhnjw0dy/fwcwPxcFMNTyomsaXq/bfXnFZsitBuOFkKSKSh5E+VTjejq+hd/FbhNcdvkz0ts09MubL4ZFjuPaeaBgwgvgBKRRE+IH37t/WxolrajiwdgOShuw+vsFciwahcwlydIft7cR1zZXvsRofZ96LUJ10Zzmj8x43fKYsknXsmA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('meson-*.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "mesonbuild/meson"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.msi') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"]
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.msi'):
if f != filename:
remove_file(f)
get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
884446d2b48ca2d16f026e271ecfd733707e0c6c5ba4fe6b7359129c43f0fa1a : WAPT/control
915b257932a6f2565860be37cdc0ba66411fca06349a1d0bd38912f081f5b1f9 : WAPT/icon.png
6889849eef5a8ccd79a06885de8f534c9526169db8907d9fb8aa2d1d32f5aea5 : luti.json
073aa91e3f716cd49f1f37adbc767cad5a62ff4f3780c07838054aa93a23363f : meson-1.8.2-64.msi
23756d322e7cb1ed41964e40cfa33a0ec7ecc213546983b136681d209c6eee44 : setup.py
def95f9d6a5e1d274bf974b31283e2ec615b337de761864f0d48aa960873d12d : update_package.py