tis-installshield-extractor icon

ISx

Paquet d’installation silencieuse pour ISx

0.3.11-15

  • package: tis-installshield-extractor
  • name: ISx
  • version: 0.3.11-15
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
  • licence: MIT License,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: ISx
  • architecture: all
  • signature_date:
  • size: 24.30 Ko
  • homepage : https://github.com/lifenjoiner/ISx
  • depends:

package           : tis-installshield-extractor
version           : 0.3.11-15
architecture      : all
section           : base
priority          : optional
name              : ISx
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Joffrey Le Piquet
description       : ISx is an InstallShield installer extractor.
depends           : tis-7zip
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.1
sources           : https://github.com/lifenjoiner/ISx
installed_size    : 
impacted_process  : ISx
description_fr    : ISx est un extracteur d'installateur InstallShield.
description_pl    : ISx to ekstraktor instalatora InstallShield.
description_de    : ISx ist ein InstallShield-Installer-Extraktor.
description_es    : ISx es un extractor del instalador InstallShield.
description_pt    : ISx é um extrator de instaladores InstallShield.
description_it    : ISx è un estrattore del programma di installazione di InstallShield.
description_nl    : ISx is een InstallShield-installer-extractor.
description_ru    : ISx - это экстрактор установщика InstallShield.
audit_schedule    : 
editor            : 
keywords          : 
licence           : MIT License,wapt_public
homepage          : https://github.com/lifenjoiner/ISx
package_uuid      : 6012d675-1785-4a10-aece-6ff86e703970
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/lifenjoiner/ISx/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : c4f55a6e503cc47001e82ff434e36df368800a908cc94e45671a1eb17c913b7d
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-07T13:11: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         : rnji115dcbY3m0d+izPhhwiJOzVvCVRQofpkJZTvPX0VDGTfQG4MjOflZ1utm17fbp5yJuY/OO2m9Du+s+U9xsYD20kfQWPn4he5RCniJGfRjL6ojtq7NyAlTynCnxTTwTnQBAu0q4VYC1d8+ZnHd26BE7h+lyBH9xUO3I6NWxEBU/JUYCMMXakWmlV88HJlDxhjmAUwabqrtbdUaZdLAAQLWfPmWRLfIJeQLemnCUQcwy3RB9aYTuITSQsJwJl8OtBJgI9YUDlXltqlXUtjweTav1EecG+5u1b2FQpMAN4Xkl5sDqpWqjXp4cLoczdwPsOq1unnVnrPZuweLOzCcQ==

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *

install_folder = makepath(programfiles,"InstallShield Extractor")

def install():
    # Initializing variables
    bin_name = glob.glob("ISx*.7z")[0]
    unzip_with_7zip(bin_name,install_folder)

def audit():
    if isfile(makepath(install_folder,"ISx.exe")):
        return "OK"
    else:
        return "ERROR"

def uninstall():
    if isdir(install_folder):
        remove_tree(install_folder)

# -*- coding: utf-8 -*-
from setuphelpers import *
import json


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    api_url = "https://api.github.com/repos/lifenjoiner/ISx/releases/latest"

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for download in json_load["assets"]:
        if download["name"].endswith(".7z"):
            download_url = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin).split("-")[0]
    # if not version_from_file.startswith(version) and version_from_file != '':
    if Version(version_from_file) != Version(version) and version_from_file != "":
        print("Changing version to the version number of the binary")
        os.rename(latest_bin, latest_bin.replace(version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return package_updated

145c254a8e656a2f1df9a384759700a2e686ca5e760fea1103224e3a2b818417 : ISx-v0.3.11.7z
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9e1f883fcdb893c144ec523c4169dc74f44d9319823889f42eee876aaa0c06af : WAPT/control
c4f55a6e503cc47001e82ff434e36df368800a908cc94e45671a1eb17c913b7d : WAPT/icon.png
bdcf974438a3bd867487b17221a6f5e3d502ee4e2cb995c34dcc99b8cd18f024 : luti.json
4f64651cc97122944f190fc18dc05109d6e3f9b0a88c0d4c85614dd6846a9947 : setup.py
670b477066a090e2b44db7e35bde8cb6df5ef62d994e78481dba49575c6dba43 : update_package.py