tis-meson icon

Meson

Paquet d’installation silencieuse pour Meson

1.7.0-4

  • package: tis-meson
  • name: Meson
  • version: 1.7.0-4
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 14.20 Mo

package           : tis-meson
version           : 1.7.0-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      : 991de78b-980c-4f3b-ac23-e22cde3c9043
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-02-15T10:04:04.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         : AMmj2pXYf8YdtISwkFMOgERJKPTHA/ik3lw5B5TJO1rWsAZ/qPnt6U4uHCJPeWQV+jMTp5o8tN2ibK2LJLBj6vT8bSp3WYeJiGCk8OIhe6wixF40Cgr2fNLvD5dey8gwn4jE5GkGbXzwOhxR4/T1yjgLgpI+J4H2vx6C4Xzf3Sk8xHR0bZF10rPMKQ9rATbrcZG89+Q3FwJIAYFvj0sL89QiNMR1ABxhRehF5IBW5sZ7IiDxJ1Mn1FrRY4nZmvKZiD+1LaHVbWVkMy5rw7pWfQhzrMBe7zF40eDejWJ7lRN2tHHtcB5Oo1EwMYkaaUDhNzqsYi/aPDVWs0SHi7XSeg==

# -*- 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
978039e68c6235800abb07bb2b955edecf8e0e3c133438209ca0d2489dad8e89 : WAPT/control
915b257932a6f2565860be37cdc0ba66411fca06349a1d0bd38912f081f5b1f9 : WAPT/icon.png
e5a0e3850370f45f9ecc0bc82e2af0bbdabb1a1fb4ae2e2a3beb7e29e90c954b : luti.json
e5c54bb6948d85c1cb4099b5928a87f43d6bd6eddfb4d548a7abcaf255e5b6ea : meson-1.7.0-64.msi
23756d322e7cb1ed41964e40cfa33a0ec7ecc213546983b136681d209c6eee44 : setup.py
def95f9d6a5e1d274bf974b31283e2ec615b337de761864f0d48aa960873d12d : update_package.py