tis-sbcl icon

Steel Bank Common Lisp

Silent install package for Steel Bank Common Lisp

2.5.5-1

  • package: tis-sbcl
  • name: Steel Bank Common Lisp
  • version: 2.5.5-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: opensource_free,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 13.92 Mo

package           : tis-sbcl
version           : 2.5.5-1
architecture      : x64
section           : base
priority          : optional
name              : Steel Bank Common Lisp
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : is a high-performance Common Lisp compiler. It is open source / free, with a permissive license
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : est un compilateur Common Lisp hautes performances. Il s'agit d'un logiciel open source / gratuit, avec une licence permissive
description_pl    : to wysokowydajny kompilator języka Common Lisp. Jest open source / darmowy, z licencją permisywną
description_de    : ist ein hochleistungsfähiger Common-Lisp-Compiler. Es handelt sich um Open Source / Freeware mit einer permissiven Lizenz
description_es    : es un compilador Common Lisp de alto rendimiento. Es de código abierto / software libre, con una licencia permisiva
description_pt    : é um compilador Common Lisp de alto desempenho. É de código aberto / livre, com uma licença permissiva
description_it    : è un compilatore Common Lisp ad alte prestazioni. È open source / gratuito, con una licenza permissiva
description_nl    : is een krachtige Common Lisp compiler. Het is open source / vrije software, met een permissieve licentie
description_ru    : это высокопроизводительный компилятор Common Lisp. Это свободное программное обеспечение с открытым исходным кодом и разрешительной лицензией
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_private
homepage          : 
package_uuid      : d4739650-3598-45a0-af00-00691f21dd60
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : cbe65a9637a0160f2ff11fa12224c27c851562a87905d63a2c900bd1fcae0178
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-06-07T07:00:12.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         : gtj8LTHqbKfHN9FAcmyasrHvSbtgtuoAcscxvAmKELe9DGz1A9cJo/LTry4yjbi6ySxNIk28y32bp2Fi0LWbiDyFfqfY7oJNoQo1LUqTBjwmjyfLh7sAsxjaGG6Qni/eEugyciNjExTDBMwdJxVRAWS1vCYCm6eEwKcKZYdJXc63Za61zPgzsD1rXAblN0qgZzGTq/5GC7hCeTji2N5bTZzIgafippNdClPwS3kNv0ymsS15A9GM2gSoOvf1l+5d91486FNfOYYYuUNzWR5jHlhEdoOG7tsH9BFlQFWNdgyWFIEY/I93m4J+Tv/h+V8J5QJdFXiMjJnS26bILqa34g==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob("sbcl-*.msi")[0]
    # Installing the software

    install_msi_if_needed(bin_name)

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


def update_package():
    # Déclaration des variables locales
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    arch_dict = {
        "x64": "-x86-64-windows-binary.msi",
    }

    url = "https://sourceforge.net/projects/sbcl/files/sbcl/"
    response = requests.get(url)
    headers = bs_find_all(url, "th", "headers")

    if headers:
        first_header = headers[0]
        a_tag = first_header.find("a")
        if a_tag:
            first_link = a_tag["href"]
            version = first_link.split("/")[-2]
            print(f"First version found: {version}")

    # Trouver tous les éléments <tr> avec la classe file et le titre correspondant à la version
    requet = requests.get(url + version).text
    rows = bs_find_all(requet, "tr", class_name="file")
    target_title = f"sbcl-{version}.{arch_dict[control.architecture]}"

    # Correction du nom du fichier en évitant un point supplémentaire
    target_title = f"sbcl-{version}{arch_dict[control.architecture]}"

    download_url = f"https://sourceforge.net/projects/sbcl/files/sbcl/{version}/{target_title}"
    latest_bin = target_title
    # 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, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # 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

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8dd7235d41571ebbb90dedf04c3f6067a64cab824ed922beb4805300f24981d6 : WAPT/control
cbe65a9637a0160f2ff11fa12224c27c851562a87905d63a2c900bd1fcae0178 : WAPT/icon.png
f0dd3b303a2399b2f52960c9fcbef7153bcacd68da80fe9c1448e1a61bde4705 : luti.json
fd571d1deddf8d421c55203c554e9a40edefb2b1a408a784736a23165ecc7664 : sbcl-2.5.5-x86-64-windows-binary.msi
d32054f7277a20a886991869cfcbf972f9d1cf0c221d869d412d8b0d32af9835 : setup.py
37adc19ea61cb7c5bcd130660998e719323556b541f5628b38af7785ce1d59c3 : update_package.py