tis-mzmine icon

mzmine

Silent install package for mzmine

4.2.0-1

  • package: tis-mzmine
  • name: mzmine
  • version: 4.2.0-1
  • maintainer: AdministratorWAPT Team,Tranquil IT,Amel FRADJ
  • licence: MIT, MIT licenses found
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 285.83 Mo
  • homepage : https://mzmine.github.io/mzmine_documentation/

package           : tis-mzmine
version           : 4.2.0-1
architecture      : x64
section           : base
priority          : optional
name              : mzmine
categories        : 
maintainer        : AdministratorWAPT Team,Tranquil IT,Amel FRADJ
description       : mzmine is an open-source project delivering a graphical, interactive software for mass-spectrometry data processing
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : mzmine est un projet open-source qui propose un logiciel graphique et interactif pour le traitement des données de spectrométrie de masse
description_pl    : mzmine to projekt open-source dostarczający graficzne, interaktywne oprogramowanie do przetwarzania danych spektrometrii masowej
description_de    : mzmine ist ein Open-Source-Projekt, das eine grafische, interaktive Software für die Verarbeitung von Massenspektrometriedaten bereitstellt
description_es    : mzmine es un proyecto de código abierto que ofrece un software gráfico e interactivo para el tratamiento de datos de espectrometría de masas
description_pt    : O mzmine é um projeto de código aberto que oferece um software gráfico e interativo para o processamento de dados de espetrometria de massa
description_it    : mzmine è un progetto open-source che fornisce un software grafico e interattivo per l'elaborazione dei dati di spettrometria di massa
description_nl    : mzmine is een open-source project dat grafische, interactieve software levert voor de verwerking van massaspectrometrische gegevens
description_ru    : mzmine - это проект с открытым исходным кодом, представляющий собой графическое интерактивное программное обеспечение для обработки данных масс-спектрометрии
audit_schedule    : 
editor            : 
keywords          : 
licence           : MIT, MIT licenses found
homepage          : https://mzmine.github.io/mzmine_documentation/
package_uuid      : d32b9937-af1f-42f0-96c2-c5930640e782
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : c96a02d7fcd86c71fc0653b4bab02e8888c02b043d502036ff6f8e59656deb47
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : BkvgBuqQz3DJJ+KNhZBiUgjg+geaMe6Ri+GdgRG+SkZfUDTkZKLM+UOD6uNnJT42hQt40neu2u7fM45Jw1YEZTWy/bMEMdmDrlpJGvaxw7lDqxM5Yxi4F3rPHL9/6AXsKR6bHsNGBbsII4cDUd0WbcPsslE3dRy8P/V542d5fIGmfcqjRp3pk7j7VYwRtUq7Jzzv/XPsveTwKVmUnesGHC+MyyF9ejuXCAVBufQ6iMD6vTFTOYKZ+srB4ycN2bT3kw9/7wtg7dAgQU4C7QRnVOkZMJ28jkw0wG9NRzZV+m7M8GaJOE5s3RMd/LQbYm3xZyy5ZPx2YffvIc9b96FCuQ==
signature_date    : 2024-08-25T14:00:44.526740
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

# -*- 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('mzmine_Windows_installer-*.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 = "mzmine/mzmine"
    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)

    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

f5c74665bcc872f505323d3d57b2d2e2d0effbe64ea353d62216bf92b2100b69 : setup.py
23baa0c1c4f3b928d370be3272e6a372bfdc225558bd6f69ea0ef20a0eef0e81 : update_package.py
c96a02d7fcd86c71fc0653b4bab02e8888c02b043d502036ff6f8e59656deb47 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
e1c9f8e30025d3a79445fa296fd11e43a116c2464a589791f2f9d917af03ad5c : luti.json
86942518def2a4e2e64ff0e9cf2060cdd2420f612845c6a00d2f0efbc49b99f3 : mzmine_Windows_installer-4.2.0.msi
4185286412e936d2f7d3c40af9f0cdc97c0e1478417092b681805f179f08f28b : WAPT/control