
- package: tis-directx
- name: DirectX
- version: 9.29.1974.1-5
- 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.29.1974.1-5
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 : 250a8bfd-f088-4539-b046-4117c6f7d8db
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b1436c2f6b0208a4a0c9eba48be98722224a97e13f6332b7f494dfbf8298967b
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : Ymw8++3nL1s7YlWhm+cVkbdmwytZSQGpc0YbbVIqWrvXy7spoEualvWTxAp9lchufICH/+hhhGbUvBznMGHP39Ys5N2pnXf+8jLDF+upcky5cI+A9kb0nLtFBfJXKTYx7PdVs0y8TYZVxU+41MWs+KMNJ4QnatxpqbCsJBTujab4uob442X6QEVz70FzrygZz/SfAlNk6ow4zuyl9YbN0BWiy7Bioa3f5HfY8B+jLrp9v6evuy2InMHl61TPzoOSd7FnKtS8IpXu2ENtuYk6akvrNXl+JGWGSJosR+Z+qyUON84BTZ+Bm2SPwLUjfDzkFFDn9nwLvhcxU8vkSZFjkA==
signature_date : 2024-03-17T16:01:33.321128
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.29.1974.1"
# 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
d1d76f61c564a07ca28315103cb610fada70b6f0f1e22fe99e7eeb6da9c33512 : update_package.py
b1436c2f6b0208a4a0c9eba48be98722224a97e13f6332b7f494dfbf8298967b : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
e4a887927797156540bf048afe38f411b101fe2db67840e21bed702e6afa68eb : luti.json
053f76dcbb28802e23341b6a787e3b0791c0fa5c8d4d011b1044172dbf89c73b : directx_Jun2010_redist.exe
f0fb15ffab6e0cd83c48c5e26174f53ee70d16130760f420081cc3ee659f9051 : WAPT/control