
Meson
Silent install package for Meson
1.8.1-4
- package: tis-meson
- name: Meson
- version: 1.8.1-4
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- target_os: windows
- architecture: x64
- signature_date:
- size: 14.12 Mo
package : tis-meson
version : 1.8.1-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 : 80571a9e-7ff9-4585-bda8-559f640b3f8e
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-05-31T07:00:12.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 : Dw9x5Xd1EUqKy6hRRd7brFb+R8mHRTKC99c7O9JQu5VscpVBq5ZKwJVODLkeGAFeWiUMHZvClMM5c52Rdq3ZN6UjAIgw6vyJunEVwAjA2pCWKHP2n6RrfMPiNEAsg0KNlPCLC9B6JNdXJa/tO05hgxMLaXtqzsZ9eOWdD5xiKc6AFBZZONYT71K1BMhkU2D9BfkeFrHtVyHYQXgWLIt13pQdt5SEBuuLdTx8LcfjFQ8nkM3eN2nKeQYVnXel2XOSH0Ud7ZsUfOz/ro3ZQ8sNN0zJvo6QHdqZU4HtvujpCQAduY3qmZlTOld7aB9pnlSx1kxgnuJ6sP9Btc6mhXFIgw==
# -*- 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
41e6880ee3617dbcc871ef92476feff2a1aa71e77bb64462aec1ae164540a045 : WAPT/control
915b257932a6f2565860be37cdc0ba66411fca06349a1d0bd38912f081f5b1f9 : WAPT/icon.png
b4a54f952f759a4ebb9d57c63b4fe7c973aa404d42ebe533915fb5f81c6a9ef1 : luti.json
a3cca7a5bb2bdd9b51388ff19833c54018719a33ed0d1298d9a9a0ce8f56fc2e : meson-1.8.1-64.msi
23756d322e7cb1ed41964e40cfa33a0ec7ecc213546983b136681d209c6eee44 : setup.py
def95f9d6a5e1d274bf974b31283e2ec615b337de761864f0d48aa960873d12d : update_package.py