tis-ilspy icon

ilspy

Paquet d’installation silencieuse pour ilspy

9.1.0.7988-1

  • package: tis-ilspy
  • name: ilspy
  • version: 9.1.0.7988-1
  • maintainer: Amel FRADJ
  • licence: Copyright © SharpDevelop Team
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 3.98 Mo
  • homepage : https://github.com/icsharpcode/ILSpy

package           : tis-ilspy
version           : 9.1.0.7988-1
architecture      : x64
section           : base
priority          : optional
name              : ilspy
categories        : 
maintainer        : Amel FRADJ
description       : ILSpy is the open-source .NET assembly browser and decompiler
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : ILSpy est un navigateur et un décompilateur d'assemblages .NET à code source ouvert
description_pl    : ILSpy to open-source'owa przeglądarka i dekompilator asemblerów .NET
description_de    : ILSpy ist der quelloffene .NET-Assembly-Browser und -Decompiler
description_es    : ILSpy es el navegador y descompilador de ensamblados .NET de código abierto
description_pt    : O ILSpy é o navegador e descompilador de assemblagem .NET de código aberto
description_it    : ILSpy è un browser e un decompilatore di assembly .NET open source
description_nl    : ILSpy is de open-source .NET assembly-browser en decompiler
description_ru    : ILSpy - это браузер и декомпилятор сборок .NET с открытым исходным кодом
audit_schedule    : 
editor            : 
keywords          : 
licence           : Copyright © SharpDevelop Team
homepage          : https://github.com/icsharpcode/ILSpy
package_uuid      : 83b2f7e3-bc14-4e44-8928-667ff6cda47e
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9e4ba94158c2736ffcf8c45ee6e808fa7f500b094bdcdb3dcfb18bcf995adf6d
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-04-27T09:08:20.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         : MIhzH5uKtZpS8ttxg2EnTJ2kLyZH5QQVFPiB+J0C0yoOB7AwvnE9Tl9Yio9ec+8ws24ukrTXuSiH4AAV3M8vtUsSJpSBDrWE7+htdqd2CGsriM5PZeEtCl06UwrbHvucPsoO7tw5SJdGHFHcNkdX/TCS1b3DLzcUrDCFYxNWOx6Mpr2Tqnm2MMS6NpPMv2Fpg8CrHIMOvN0YXQ9akYoG8NtMHUBlJ3oumqd5yql8qG4iZMWcVbB2YfqsV0SW7bnM27Vi0FqGNfezN1bxJwS+a9/kzgxcEzaXG7TV8fkCssCLqBYYGNW2Kuuh6dqSUFU/7z7pQZ8m3Bl3vSDA0Nam8Q==

# -*- 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('*.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()
    dict_arch = {
        "x64":"x64.msi",
        } 
    if not proxies:
        proxies = get_proxies_from_wapt_console()
   
    git_repo = "icsharpcode/ILSpy"
    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') and dict_arch[control.architecture] in download["browser_download_url"] :
            url_dl = download["browser_download_url"]
            filename = download["name"]
            version = download["name"].split("_")[-1].split("-")[0]

            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()

b35f8fb2729829389ad31e753afcf8f60fad6e1ad689e1df28c61cc2c193ca4e : ILSpy_Installer_9.1.0.7988-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
0acfc8491fcc76a357fc51de9900c03366d4fb8f751551a674313a2e60396c53 : WAPT/control
9e4ba94158c2736ffcf8c45ee6e808fa7f500b094bdcdb3dcfb18bcf995adf6d : WAPT/icon.png
b942f55e4d95a4efe9ac18163d7b42570e4c8d9ec190a1fbcfe6f1ff9d9c6ab9 : luti.json
e03fa958ac1c73e81b628adda8707fb9be997b4f939ee802b3371e88e4463676 : setup.py
23c7a8d453070f7a93cc98bd134f9d303e4fda32e88032f55dcfcf268046400d : update_package.py