tis-wapt-python310-relocatable icon

tis-wapt-python310-relocatable

Silent install package for tis-wapt-python310-relocatable

3.10.19-39

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-wapt-python310-relocatable
  • version: 3.10.19-39
  • maintainer: sfonteneau
  • locale: all
  • target_os: macos
  • architecture: x64
  • signature_date:
  • size: 45.40 Mo

package           : tis-wapt-python310-relocatable
version           : 3.10.19-39
architecture      : x64
section           : base
priority          : optional
name              : 
categories        : 
maintainer        : sfonteneau
description       : Package for tis-python-3.10-tranquilit
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : macos
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      : d89ff7bb-653b-48fc-a290-3a8ff7a52d3b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : b55b23fa81945c6cd4c2f4f114188aa9f8f3d0c3cbb9fb353b2803ffbb67b43b
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-10-14T15:39:15.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         : rWbG+/n1q5zzJePqwXiItXhNKzxk+JgRpwIs6cMwRYe7lpim6jjmXdzzBq3e5tlm/LMWceNKJtdzLT8Bqo5bAOS2c8z/V9hKHWJKPnsCn4molJTO5Elin8h9c9vX5UEkoKsd+bsxzOyKkRev4XO1sTJnAL/Xb0LvbIOrllh2nH+Rms+qukaCiiDHm6tL+CeeJBCiJF3M7r/PZTn6X34+1NeNSSdwI7yS3ra7cAMRqFWDKWuze+TS9Mi2EK/4x5KFYYntRCRduUm762QtBQfy6RwzBsko9JtF2zLKiydouzLGwm213FC1/lsXYtTVrgsZ6+vVcAxsPVGCjtKL63asxw==

# -*- coding: utf-8 -*-
from setuphelpers import *
import tarfile
import  glob

def install():

    if params.get("running_as_luti", False):
        remove_tree('/opt/wapt')

        t = glob.glob('*.tar.gz')[0]

        with tarfile.open(t, "r:gz") as tar:
            tar.extractall('/opt/wapt')

# -*- coding: utf-8 -*-
from setupdevhelpers import *
from waptutils import CustomZipFile
from waptutils import create_recursive_zip
import os
import distro
import platform
import time

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'

    run("chmod a+x *.sh")
    run("bash step1_compile_python.sh %s %s" % (versionpython, openssl_version), timeout=1200)

    if os.system("bash step2_compile_python.sh %s %s" % (versionpython, openssl_version)) != 0:
        error('buildfailed')

    remove_file("step1_compile_python.sh")
    remove_file("step2_compile_python.sh")
    filecopyto('/tmp/python.tar.gz','python-%s.tar.gz' % python_name_file)
    commit_count = params.get("commit_count",0)
    control.version = "%s-%s" % (Version(versionpython), commit_count)
    control.save_control_to_wapt()

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e703158b6874d85f58d1627fb8e0fef2296c6720d7dd30b37fde1a939462b514 : WAPT/control
b55b23fa81945c6cd4c2f4f114188aa9f8f3d0c3cbb9fb353b2803ffbb67b43b : WAPT/icon.png
1efb925299509a2140e2a5889ab89682fb105026f340373cf03a0a60c8e12cb7 : luti.json
40a2043573d6b2a0f9c86302a63fd877350fb0180ae805b5337ff983f52ace93 : python-darwin_x86_64_darwin_21.tar.gz
0d1ea557fb46521f65bc8d0f23b72b798bb0c161fd29edaab8ead91d634a2dfd : setup.py
a8e94285a7be94007586345c06bc3eb1600908d73c1c3323f13a5efdef1eb845 : step1_compile_python.sh
e8787e51696fc0b6f84295b3f0bcb93459b0a32b1165d1cc3cab31cf34f9c54a : step2_compile_python.sh
ba7e4816f002939c088075829c3c894e53564f294dae7d3fa19f5fa52907b9ea : update_package.py