tis-python38-tranquilit icon

tis-python38-tranquilit

Silent install package for tis-python38-tranquilit

3.8.20-172

  • package: tis-python38-tranquilit
  • version: 3.8.20-172
  • maintainer: sfonteneau
  • locale: all
  • target_os: linux
  • architecture: arm
  • signature_date:
  • size: 44.73 Mo

package           : tis-python38-tranquilit
version           : 3.8.20-172
architecture      : arm
section           : base
priority          : optional
name              : 
categories        : 
maintainer        : sfonteneau
description       : Package for tis-python-3.8-tranquilit
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : linux
min_wapt_version  : 2.0
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Paquet pour tis-python-3.8-tranquilit
description_pl    : Pakiet dla tis-python-3.8-tranquilit
description_de    : Paket für tis-python-3.8-tranquilit
description_es    : Paquete para tis-python-3.8-tranquilit
description_pt    : Pacote para tis-python-3.8-tranquilit
description_it    : Pacchetto per tis-python-3.8-tranquilit
description_nl    : Pakket voor tis-python-3.8-tranquilit
description_ru    : Пакет для tis-python-3.8-tranquilit
audit_schedule    : 
editor            : 
keywords          : 
licence           : 
homepage          : 
package_uuid      : 764584e1-c627-4772-b229-c770e6b05c44
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-10-21T11:25:10.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         : owR6l40Fcqqr2G9dnegdSUd5z7xqo92wiwJ44S5bgmom+O28XcEqZUY+F1r8u2wDtANtCJ3fr2TstlY3kAIwJmrDfJocQu2jZqXQ6k6fJTXig8CPHFJMUIZTTFwhdGk14XM6ZXxgvzuPiSfmJdRaumNzzbJprV3Ys5+XFPayoyV8gMP8MUt/SOo8i/kXqMRPhunSufBDLDKJtVbNkc8kfuXstZkHlXYreq+e7B9IOlbnxQsZaHfbHVrDj2Zlvx6269gLTZqDirJyt/6HgIuE2JsD2ohmrP/9JLDUpMtMTKWRCujpOPsnnlg11tXI//oh+8YOuPgpGbddEmVhANAmXA==

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

def install():
    mkdirs('/opt/python38/')
    f= glob.glob('*.tar.gz')[0]
    python_version = control.get_software_version()
    
    # ensure tar is installed
    if type_debian():
        install_apt('tar')
    if type_redhat():
        install_yum('tar')
    
    run('cd /opt/python38/ ; tar -xzf %s' % makepath(basedir,f))

def audit():
    python_version = run('/opt/python38/bin/python3 -V').split(' ')[1].strip()

    if Version(python_version) != control.get_software_version():
        print('version install : %s' % python_version)
        return "ERROR"
    else:
        return "OK"

# -*- coding: utf-8 -*-
from setupdevhelpers import *
from waptutils import CustomZipFile
from waptutils import create_recursive_zip

import distro
import platform

python_name_file = str(platform.system().lower() + '_' + platform.machine().lower() + '_' .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.8')]
            if v:
                versionpython = v[0].split(' ')[1]
                break

    openssl_version = '3.1.6'

    run("chmod a+x *.sh")
    run("bash step1_compile_python_create_debootstrap.sh %s %s" % (versionpython,openssl_version), timeout=9200)
    remove_file("step1_compile_python_create_debootstrap.sh")
    remove_file("step2_compile_python_in_debootstrap.sh")

    run('tar -zcf %s/python-%s.tar.gz -C /root/python_builddir/opt/python38/ .' % (basedir,python_name_file))



    commit_count = params.get("commit_count",0)
    control.version = "%s-%s" % (Version(versionpython),commit_count)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6347b9c9adb1285c5b9273cd34b5961929ae4e70a06d061bc9a3b0c30bb7ac49 : WAPT/control
b55b23fa81945c6cd4c2f4f114188aa9f8f3d0c3cbb9fb353b2803ffbb67b43b : WAPT/icon.png
3a530bfb65de32d4b992ebd74af35b786e4994fc25e7242970c1390728f9b07d : luti.json
3047158fb237097c4f7a3d44044b44a29795cbf331aa12d9f6793185d29ff41b : python-linux_armv7l.tar.gz
457cf63fb79cba95405edb7d5aea89e30182aaad9d3bc5963cd5ac5a55b446b0 : setup.py
ec4be35b95c09a3803ae448893e75cabc2731eec0a41787f81f24c37caf078a0 : step1_compile_python_create_debootstrap.sh
5f5bbc055c91edc714ff85dc5c550ce30594bac1fd6ec4585f6355abec4b1a1c : step2_compile_python_in_debootstrap.sh
f69e6e804b481442da487afa233b2d0a4d8c0c20fc7b5f77c3c1341257f19131 : update_package.py