tis-directx icon

DirectX

Paquet d’installation silencieuse pour DirectX

9.0.8112.16421-4

  • package: tis-directx
  • name: DirectX
  • version: 9.0.8112.16421-4
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Gaëtan SEGAT,Ingrid TALBOT,Jimmy PELÉ
  • editor: Microsoft
  • licence: proprietary_free,wapt_public
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 100.25 Mo

package           : tis-directx
version           : 9.0.8112.16421-4
architecture      : all
section           : base
priority          : optional
name              : DirectX
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Gaëtan SEGAT,Ingrid TALBOT,Jimmy PELÉ
description       : Microsoft DirectX End-User Runtime installs a number of runtime libraries from the legacy DirectX SDK for some games that use D3DX9, D3DX10 or D3DX11
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : https://www.microsoft.com/download/details.aspx?id=35
installed_size    : 
impacted_process  : 
description_fr    : Microsoft DirectX End-User Runtime installe plusieurs bibliothèques de runtime du kit SDK DirectX existant pour certains jeux qui utilisent D3DX9, D3DX10 ou D3DX11
description_pl    : Microsoft DirectX End-User Runtime instaluje kilka bibliotek uruchomieniowych z istniejącego zestawu DirectX SDK dla niektórych gier korzystających z D3DX9, D3DX10 lub D3DX11
description_de    : Microsoft DirectX End-User Runtime installiert mehrere Laufzeitbibliotheken aus dem bestehenden DirectX SDK für einige Spiele, die D3DX9, D3DX10 oder D3DX11 verwenden
description_es    : Microsoft DirectX End-User Runtime instala varias bibliotecas de tiempo de ejecución del SDK de DirectX existente para determinados juegos que utilizan D3DX9, D3DX10 o D3DX11
description_pt    : O Microsoft DirectX End-User Runtime instala várias bibliotecas de tempo de execução a partir do DirectX SDK existente para determinados jogos que utilizam D3DX9, D3DX10 ou D3DX11
description_it    : Microsoft DirectX End-User Runtime installa diverse librerie di runtime dall'SDK DirectX esistente per alcuni giochi che utilizzano D3DX9, D3DX10 o D3DX11
description_nl    : Microsoft DirectX End-User Runtime installeert verschillende runtimebibliotheken van de bestaande DirectX SDK voor bepaalde games die D3DX9, D3DX10 of D3DX11 gebruiken
description_ru    : Microsoft DirectX End-User Runtime устанавливает несколько библиотек времени выполнения из существующего DirectX SDK для некоторых игр, использующих D3DX9, D3DX10 или D3DX11
audit_schedule    : 
editor            : Microsoft
keywords          : runtime,library,libraries,legacy,directx,sdk,game,games
licence           : proprietary_free,wapt_public
homepage          : 
package_uuid      : f6cd6c27-8d19-4302-a107-3c7e33b032e9
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : b1436c2f6b0208a4a0c9eba48be98722224a97e13f6332b7f494dfbf8298967b
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : RexCbABw80Q0s3KbWPP/WLgnh+Rs7iKS2YjXNCNNJel9Liifc7IFw8MniD0NpLPlD4EkLEDDfrRgwpobN8X3GT6tICsirCx89nUhbDFakNA/APf/FEHue2xu3UfKIWIv050mTI5JpKr7kAfFFEJTti48Cj0tlR0CVS3oyMK05j3MML9UJG2779gi4FDBY4R81MEm3Oz+lJbohPu/Q1y+yWhbivtJVItZEFgJiHdN3jjyDwsvrE811yMX5auWht9RD0iFZwmFyfCK9o8IlhWD5gCZ2hygnBfrYIbiqkgjDDXddGxfB0b/akiPt7EQTOyCTFbr9eIeP8mtTuSgvSWY2g==
signature_date    : 2024-03-17T16:04:32.209665
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 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    bin_name = "directx_Jun2010_redist.exe"
    unzipped_dir = "directx"
    unzipped_dir_path = makepath(basedir, unzipped_dir)
    if isdir(unzipped_dir):
        remove_tree(unzipped_dir)
    run(f'"{bin_name}" /Q /T:"{unzipped_dir_path}" /C')
    bin_path = makepath(unzipped_dir, "DXSETUP.exe")
    run([bin_path, "/silent"], timeout=900)

    # TODO audit FeatureLevels with xmltodict.py

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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    # Providing fixed version information
    download_url = "https://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe"
    latest_bin = download_url.split("/")[-1]
    version = "9.0.8112.16421"

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

    # Checking version from file
    if get_os_name() == "Windows" and "windows" in control.target_os.lower():
        version_from_file = get_version_from_binary(latest_bin)
        if Version(version_from_file, 4) == Version(version, 4):
            print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
        else:
            error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        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()

    # Validating update-package-sources
    return package_updated

    # # Changing version of the package and validating update-package-sources
    # return complete_control_version(control, version)

955bd721b054db209afe0db99ef6a0724f3f9e1a9829737b09151ffc55074126 : setup.py
7b75913e9575bdf35bf2c424e39a11afc38f906007f0724f77d389b6e2aa93fd : update_package.py
b1436c2f6b0208a4a0c9eba48be98722224a97e13f6332b7f494dfbf8298967b : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
0622a293f6273623ec0a8783861f18ca0e54956a15f61245f79bce5e90a2ca38 : luti.json
053f76dcbb28802e23341b6a787e3b0791c0fa5c8d4d011b1044172dbf89c73b : directx_Jun2010_redist.exe
c98d77735c900957f56402a7e0df80b9792613028ba235dfc8dbd4300ee8c0c8 : WAPT/control