
tis-wapt-python310-relocatable
Paquet d’installation silencieuse pour tis-wapt-python310-relocatable
3.10.18-38
- package: tis-wapt-python310-relocatable
- version: 3.10.18-38
- maintainer: sfonteneau
- locale: all
- target_os: windows
- architecture: x64
- signature_date:
- size: 9.79 Mo
package : tis-wapt-python310-relocatable
version : 3.10.18-38
architecture : x64
section : base
priority : optional
name :
categories :
maintainer : sfonteneau
description : Package for tis-python-3.10-tranquilit
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources :
installed_size :
impacted_process :
description_fr : Paquet pour tis-python-3.10-tranquilit
description_pl : Pakiet dla tis-python-3.10-tranquilit
description_de : Paket für tis-python-3.10-tranquilit
description_es : Paquete para tis-python-3.10-tranquilit
description_pt : Pacote para tis-python-3.10-tranquilit
description_it : Pacchetto per tis-python-3.10-tranquilit
description_nl : Pakket voor tis-python-3.10-tranquilit
description_ru : Пакет для tis-python-3.10-tranquilit
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : f54333fd-a449-4e70-a994-6b87d11f122a
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b55b23fa81945c6cd4c2f4f114188aa9f8f3d0c3cbb9fb353b2803ffbb67b43b
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-07-27T11:00:14.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 : h6x8cHi8U0S4dsTyrETWQI4ZAgiJ3fEzBsvyZigOJMxap6x4WKKSX7iDVPvK/6Kld0lQbnmm5ZBKjVSXLrYsC/WonsRetkXnMqGB8pCKycYXhGdJckNfU5l9er2rNS6sGT21VWlERPfZYNscvlbsjwhsv3Xpa1mQ36nc8TDDWQmmh+qwEW7TdMtkN+37y4Qesd2JrzTtb0svEG3nxOtfBU7sg2sq5TaygLZchJrl39/BC14Y+hGRB6rU+shKk26NAvSlIdfxGWZa233R9WUYU9L5v7v0S328AO37la1Oxq0BltAZJEDS4kMiCe+oQJdpD/U4/wUlzVqABQVuo/SlXQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
unzip('Python-windows_amd64-x64.zip',r'c:\pythonwapt-x64')
def uninstall():
pass
# -*- coding: utf-8 -*-
from setupdevhelpers import *
import os
import shutil
import os
import glob
import distro
import platform
python_name_file = str(platform.system().lower() + '_' + platform.machine().lower() + '_' + '_'.join([u.split('.')[0] for u in distro.linux_distribution(False) if u][:2])).strip('_')
def update_package():
colum1 = bs_find_all('https://www.python.org/downloads/source/','div','class',"column")[0].findAll('li')
versionpython = None
for entry in colum1:
if versionpython:
continue
if not hasattr(entry,'contents'):
continue
for i in entry.contents :
if not hasattr(i,'contents'):
continue
v = [t for t in i.contents if str(t).startswith('Python 3.10')]
if v:
versionpython = v[0].split(' ')[1]
break
openssl_version = '3.5.1'
#Download and extract python source
wget(f'https://www.python.org/ftp/python/{versionpython}/Python-{versionpython}.tgz',f'Python-{versionpython}.tgz')
unzip_with_7zip(f'Python-{versionpython}.tgz',f'Python-{versionpython}-tar')
unzip_with_7zip(rf'Python-{versionpython}-tar\Python-{versionpython}.tar','.')
remove_tree(f'Python-{versionpython}-tar')
remove_file(f'Python-{versionpython}.tgz')
#Download and extract openssl source
wget(rf'https://github.com/openssl/openssl/releases/download/openssl-{openssl_version}/openssl-{openssl_version}.tar.gz',rf'openssl-{openssl_version}.tar.gz')
unzip_with_7zip(rf'openssl-{openssl_version}.tar.gz',rf'openssl-{openssl_version}-tar')
unzip_with_7zip(rf'openssl-{openssl_version}-tar\openssl-{openssl_version}.tar','.')
remove_tree(rf'openssl-{openssl_version}-tar')
remove_file(rf'openssl-{openssl_version}.tar.gz')
if not isfile(r'C:\Program Files\NASM\nasm.exe'):
error(r'C:\Program Files\NASM\nasm.exe not found')
run(rf'Python-{versionpython}\PCbuild\get_externals.bat',timeout=5000)
with open(rf'openssl-{openssl_version}\Configurations\60-custom.conf','w') as f:
f.write(data_custom)
add_to_system_path(r'C:\Program Files\NASM')
run(rf'cd openssl-{openssl_version} & set path=C:\Program Files\NASM;%path% &"C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat" &"C:\Strawberry\perl\bin\perl.exe" configure VC-WIN64A-rtt & nmake',timeout=5000)
#run(rf'cd openssl-{openssl_version} & set path=C:\Program Files\NASM;%path% &"C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars32.bat" &"C:\Strawberry\perl\bin\perl.exe" configure VC-WIN32-rtt & nmake',timeout=1200)
name_openssl_folder = glob.glob(rf'Python-{versionpython}\externals\openssl-bin-*')[0].split('\\')[-1]
shutil.move(rf'Python-{versionpython}\externals\{name_openssl_folder}\amd64',rf'Python-{versionpython}\externals\{name_openssl_folder}\amd64old')
shutil.move(rf'openssl-{openssl_version}',rf'Python-{versionpython}\externals\{name_openssl_folder}\amd64')
filecopyto(rf'Python-{versionpython}\externals\{name_openssl_folder}\amd64old\include\applink.c',rf'Python-{versionpython}\externals\{name_openssl_folder}\amd64\include\applink.c')
with open(makepath(f'Python-{versionpython}','PCbuild','openssl.props'), 'r') as f:
data=f.read()
data = data.replace(r"<_DLLSuffix>-1_1</_DLLSuffix>",r"<_DLLSuffix>-3-x64</_DLLSuffix>")
with open(makepath(f'Python-{versionpython}','PCbuild','openssl.props'), 'w') as f:
f.write(data)
run(rf'Python-{versionpython}\PCbuild\build.bat -t Rebuild',timeout=5000)
run(rf'"C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\msbuild.exe" "%s\Python-{versionpython}\Tools\msi\make_zip.proj" /t:Build /p:Platform=x64 /p:OutputPath="%s"' % (basedir,basedir))
name_generate = glob.glob('*.zip')[0]
os.rename(name_generate,'Python-%s-x64.zip' % python_name_file)
remove_tree(f'Python-{versionpython}')
control.version = "%s-%s" % (Version(versionpython), control.version.split("-", 1)[-1])
control.save_control_to_wapt()
data_custom = r"""## -*- mode: perl; -*-
## Personal configuration targets
my %targets = (
"VC-WIN32-rtt" => {
inherit_from => [ "VC-WIN32" ],
cflags => sub{my $v=pop; $v=~ s/\/MD/\/MT/ig; return $v},
lflags => "/nologo /release",
},
"VC-WIN64A-rtt" => {
inherit_from => [ "VC-WIN64A" ],
cflags => sub{my $v=pop; $v=~ s/\/MD/\/MT/ig; return $v},
lflags => "/nologo /release",
},
);"""
d852b8b8ee8107ac19b98db9b0586824cdcd13da8f6f7d6ab8bd7e4789b4956e : Python-windows_amd64-x64.zip
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
61b3c333c7df4be5fe68d8dd1d0dc2d4e368febda03aeeeb09075920b0708e14 : WAPT/control
b55b23fa81945c6cd4c2f4f114188aa9f8f3d0c3cbb9fb353b2803ffbb67b43b : WAPT/icon.png
d480311210712825ccc1a7bf92bef4bdb32c12d5fbaec0396d632950508cb2f6 : luti.json
a439471cd713b1c143ca7ebad066cd4fa4db4c0ee793b62aa84e085100b05d6f : setup.py
c18869f3a0b1abc459ee50e15fb01eb167a0c491b1c886d5d27a4138cc28a7db : update_package.py