tis-lazarus icon

Lazarus

Paquet d’installation silencieuse pour Lazarus

4.2-10

  • package: tis-lazarus
  • name: Lazarus
  • version: 4.2-10
  • categories: Development,Education
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Simon FONTENEAU
  • editor: Lazarus and Free Pascal Team
  • licence: GNU
  • locale: all
  • target_os: darwin
  • impacted_process: lazarus,startlazarus,lazres,lazbuild,LazGDeBugControl
  • architecture: arm
  • signature_date:
  • size: 362.31 Mo
  • installed_size: 1.69 Go
  • homepage : https://www.lazarus-ide.org/

package           : tis-lazarus
version           : 4.2-10
architecture      : arm
section           : base
priority          : optional
name              : Lazarus
categories        : Development,Education
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Simon FONTENEAU
description       : Lazarus is a multiplatform RAD / EDI developed in Free Pascal for Free Pascal. Its goal is to provide Object Pascal programmers with an easy-to-use development environment that is as close to Delphi as possible
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.0
sources           : https://sourceforge.net/projects/lazarus/files/
installed_size    : 1693990912
impacted_process  : lazarus,startlazarus,lazres,lazbuild,LazGDeBugControl
description_fr    : Lazarus est un RAD/EDI multiplateforme développé en Free Pascal pour Free Pascal. Son objectif est de fournir aux programmeurs Pascal Objet un environnement de développement facile à utiliser s’approchant le plus possible de Delphi
description_pl    : Lazarus to wieloplatformowy RAD / EDI opracowany w Free Pascal dla Free Pascal. Jego celem jest zapewnienie programistom Object Pascal łatwego w użyciu środowiska programistycznego możliwie najbliższego Delphi
description_de    : Lazarus ist eine Multiplattform-RAD / EDI, die in Free Pascal für Free Pascal entwickelt wurde. Ziel ist es, Object Pascal-Programmierern eine benutzerfreundliche Entwicklungsumgebung zur Verfügung zu stellen, die Delphi so nahe wie möglich kommt
description_es    : Lazarus es un RAD / EDI multiplataforma desarrollado en Free Pascal para Free Pascal. Su objetivo es proporcionar a los programadores de Object Pascal un entorno de desarrollo fácil de usar que esté lo más cerca posible de Delphi
description_pt    : Lazarus é um RAD / EDI multiplataforma desenvolvido em Free Pascal for Free Pascal. O seu objectivo é fornecer aos programadores do Object Pascal um ambiente de desenvolvimento fácil de usar que seja o mais próximo possível da Delphi
description_it    : Lazarus è un RAD / EDI multipiattaforma sviluppato in Free Pascal per Free Pascal. Il suo obiettivo è fornire ai programmatori Object Pascal un ambiente di sviluppo facile da usare e il più possibile simile a Delphi
description_nl    : Lazarus is een multiplatform RAD / EDI ontwikkeld in Free Pascal voor Free Pascal
description_ru    : Lazarus - это многоплатформенный RAD / EDI, разработанный на Free Pascal для Free Pascal. Его цель - предоставить программистам на Object Pascal простую в использовании среду разработки, максимально приближенную к Delphi
audit_schedule    : 
editor            : Lazarus and Free Pascal Team
keywords          : 
licence           : GNU
homepage          : https://www.lazarus-ide.org/
package_uuid      : 59b0e00d-6b57-4707-a993-c5d52ab22c86
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://wiki.freepascal.org/Special:RecentChanges
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 55af2ce1692f2d63199717fcb1c98deabdf583cd250852e9989857938cafd2c3
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-25T15:02:13.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         : putGW5dXDeZsTgTyTGy2rIGaIWAXcd6/8xVRdBSzAfN3ZKqDmcv6CnLy/S7wnYL90GN5UOaAbD9wve4r4MhRwMQIEF9da0KM7Ceu7ZwA0bp3u5njHIVFQmjTUFYGursAwv+fLDS1AgsRqbJiQcZxRF4QG3Od12rzP76NuF92A/jTDjCIYYFonICXdEKFwE6b1IZkd4m4ghXaqwyJH4FN//2tLMUpdnXtNKM3e17aJBczTjKk+bmXtCDCcif85nuExw2SBLG2wkSnJixcNAFT+vwq6XykvPfGB8R9LibRa6ypyS2PYUFlFh1kEbt5xBpQsMOXlm5grtaGk9UH/+lTVg==

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


def install():
    # Declaring local variables
    zip_name = glob.glob("lazarus-darwin*.zip")[0]

    # Installing the software
    print(f"Running 'xattr -cr {zip_name}'")
    run(f"xattr -cr {zip_name}")

    print(f"Installing: {control.name}")

    unzip(zip_name)
    if isdir('/Applications/Lazarus'):
        remove_tree(f"/Applications/lazarus")

    os.rename(zip_name.rsplit('.', maxsplit=1)[0] + '/lazarus','/Applications/Lazarus')
    run(f"sed -i '' -e 's#/Developer/lazarus#/Applications/Lazarus#g' /Applications/Lazarus/config/environmentoptions.xml")


def uninstall():
    # Uninstalling the software
    uninstall_pkg("org.lazarus-ide.pkg.LazarusIDE")
    remove_tree(f"/Applications/lazarus")

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


def table_to_list(table):
  result = []
  for row in table.find_all('tr')[2:]:
    for col in row.find_all('td'):
        link = col.find('a')
        if not link:
            continue
        result.append(link.string.strip('/'))
  return result

def get_only_valid_version(all_folder_version):
    version_dict = []
    for folder in all_folder_version:
        version_str = folder.split()[-1]
        if any(c.isalpha() for c in version_str):
            continue 
        version_dict.append({'version': version_str, 'folder': folder})
    return version_dict

def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    
    base_url = "https://download.lazarus-ide.org"
    
    folder_arch_download_dict = {
        'windows-x64': 'Lazarus Windows 64 bits',
        'windows-x86': 'Lazarus Windows 32 bits',
        'debian_based-x64': 'Lazarus Linux amd64 DEB',
        'debian_based-arm': 'Lazarus Linux arm64 DEB',
        'darwin-x64': 'Lazarus macOS x86-64',
        'darwin-arm': 'Lazarus macOS aarch64'
    }

    os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
    os_type_download_folder_url = f"{base_url}/{folder_arch_download_dict[os_type]}"
    
    all_folder_version = table_to_list(bs_find(os_type_download_folder_url, 'table', proxies=proxies))
    version_dict = get_only_valid_version(all_folder_version)
    latest_version_dict = sorted(version_dict, key=lambda x: Version(x['version']), reverse=True)[0]
    
    folder_files_url = f"{os_type_download_folder_url}/{latest_version_dict['folder']}"
    files = table_to_list(bs_find(folder_files_url, 'table', proxies=proxies))
    
    latest_bin = next((file for file in files if file.startswith('lazarus-')), None)
    latest_bin_extension = latest_bin.rsplit(".", 1)[-1]
    version = latest_version_dict['version']
    download_url = f"{folder_files_url}/{latest_bin}"

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
        package_updated = True
    else:
        print(f"Software version up-to-date ({Version(version)})")

    for f in glob.glob(f'*.{latest_bin_extension}'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7401e7592c3d47f60f132b58e6cd66cdedaacfb075ae9712f8e5f007bb7e0c24 : WAPT/changelog.txt
ff39fc39381bec46056b0ffb0e1c13788c2111b6004dc463e5c4553b1e9e67d5 : WAPT/control
55af2ce1692f2d63199717fcb1c98deabdf583cd250852e9989857938cafd2c3 : WAPT/icon.png
5bde40a73b869766d7177522555a7158e805a7c36ce4e154f86e094aaa437135 : lazarus-darwin-aarch64-4.2.zip
d753046a7b155bc7b37c54d0c0d3162d01ffaff3ef3b1a4f8f8192d7697100e3 : luti.json
954d65a3ef3339fc97ce13896d4baa749d044f28f086bf80e537afb2cc4a205b : setup.py
25da3819852738b010e1469440b240e9ecf265278c8f5d951e63b14de7887760 : update_package.py

https://wiki.freepascal.org/Special:RecentChanges
2.2.0
===
Split update-package