tis-libreoffice-still icon

LibreOffice Still

Silent install package for LibreOffice Still

26.2.4-17
Office
Office

  • package: tis-libreoffice-still
  • name: LibreOffice Still
  • version: 26.2.4-17
  • categories: Office
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: The Document Foundation
  • licence: MPLv2.0 (secondary license GPL, LGPLv3+ or Apache License 2.0)
  • locale: all
  • target_os: debian_based
  • impacted_process: swriter,sweb,soffice,smath,simpress,sdraw,scalc,sbase
  • architecture: x64
  • signature_date:
  • size: 217.99 Mo
  • installed_size: 980.25 Mo
  • homepage : https://www.libreoffice.org/
  • conflicts :

package           : tis-libreoffice-still
version           : 26.2.4-17
architecture      : x64
section           : base
priority          : optional
name              : LibreOffice Still
categories        : Office
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : LibreOffice (Still Branch) is a free and open-source office suite
depends           : 
conflicts         : tis-libreoffice-fresh
maturity          : PROD
locale            : all
target_os         : debian_based
min_wapt_version  : 1.8
sources           : https://www.libreoffice.org/download/download
installed_size    : 980246528
impacted_process  : swriter,sweb,soffice,smath,simpress,sdraw,scalc,sbase
description_fr    : LibreOffice (Branche Stable) est une suite bureautique libre et gratuite
description_pl    : LibreOffice (Still Branch) to darmowy i open-source'owy pakiet biurowy
description_de    : LibreOffice (Still Branch) ist ein freies und quelloffenes Office-Paket
description_es    : LibreOffice (Still Branch) es una suite ofimática gratuita y de código abierto
description_pt    : O LibreOffice (filial Still) é uma suite de escritório gratuita e de código aberto
description_it    : LibreOffice (Still Branch) è una suite per ufficio libera e open-source
description_nl    : LibreOffice (Still Branch) is een gratis en open-source kantoorpakket
description_ru    : LibreOffice (Still Branch) - это бесплатный офисный пакет с открытым исходным кодом
audit_schedule    : 
editor            : The Document Foundation
keywords          : bureautique,office,suite
licence           : MPLv2.0 (secondary license GPL, LGPLv3+ or Apache License 2.0)
homepage          : https://www.libreoffice.org/
package_uuid      : 98290e10-25f2-4ac8-af69-f928739d76aa
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://wiki.documentfoundation.org/Category:ReleaseNotes
min_os_version    : 9
max_os_version    : 
icon_sha256sum    : 9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-07-29T14:06:25.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         : FGt9bXTf4ulez087KRDNhbh7qHD9O5tUTe7R2SnHZum/0KzaPW4lORriP9h6B9N2PtrB7PXzF6cLnFCS6fN7imbHw45rpY4lpynSus2axZmuzvbz1CqaTCyvu1/oZe8Op/iQGl/MOqJIDpKcORHK5sibgy7JV2Z8DnPDeIBz++BBa/gLLFZU1yovTzG+2IwmvBNsLEGr2B2klk1CL6CrEYPcPCdd6bGJicX+hYua2KZoB22dyFOgIGNcFDEW9SFf4Rk1XFml1sfCa3mZLzGS7ciB55uP39NNws8n5ebrye6bkLa5hGumr1t441RIUpHVmfsEbPkXS3OuvGYOJw3TmA==

# -*- coding: utf-8 -*-
from setuphelpers import *
import tarfile
from typing import List, Optional


def install():
    isapt = True
    try:
        run("apt --version")
    except:
        isapt = False

    version_soft = control.get_software_version()

    if isapt:
        uninstall()
        extract_tar("LibreOffice_%s_Linux_x86-64_deb.tar.gz" % version_soft)
        run("dpkg -i */DEBS/*.deb")
    else:
        extract_tar("LibreOffice_%s_Linux_x86-64_rpm.tar.gz" % version_soft)
        run("yum install RPMS/*.rpm -y")


def uninstall():
    run_notfatal("LANG=C DEBIAN_FRONTEND=noninteractive apt-get remove -y *libobasis*")
    run_notfatal("LANG=C DEBIAN_FRONTEND=noninteractive apt-get remove -y *libreoffice*")

def extract_tar(
    tar_path: str,
    extract_path: str = ".",
    exclude_list: Optional[List[str]] = None,
    include_list: Optional[List[str]] = None
) -> None:
    """
    Extracts a tar archive to the given directory, with optional inclusion or exclusion filtering.

    :param tar_path: Path to the .tar (or .tar.gz, .tar.bz2, etc.) archive.
    :param extract_path: Directory where files should be extracted.
    :param exclude_list: List of path prefixes to exclude from extraction.
    :param include_list: List of path prefixes to include exclusively. Overrides exclude_list if provided.
    """
    with tarfile.open(tar_path, 'r:*') as tar:
        all_members = tar.getmembers()

        if include_list:
            include_set = set(include_list)
            members = [
                m for m in all_members
                if any(m.name.startswith(inc) for inc in include_set)
            ]
        elif exclude_list:
            exclude_set = set(exclude_list)
            members = [
                m for m in all_members
                if not any(m.name.startswith(exc) for exc in exclude_set)
            ]
        else:
            members = all_members

        tar.extractall(path=extract_path, members=members)

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

def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36"
    url = "https://download.documentfoundation.org/libreoffice/stable/"

    versions_list = []

    # Getting version before latest (=still) and latest (=fresh) from official website
    for bs_search in bs_find_all(url,'td', 'valign', 'top', proxies=proxies, user_agent=user_agent):
        versions_list.append(bs_search.next_sibling.next_element['href'])
    still_version = versions_list[-2].replace('/', '')
    fresh_version = versions_list[-1].replace('/', '')

    print(f"Still version is : {still_version}")
    print(f"Fresh version is : {fresh_version}")

    #Building download url, latest_bin and version
    arch_dict = {
        "x86" : "x86",
        "x64" : "x86_64",
        "arm64" : "aarch64",
        "arm" : "aarch64"
    }

    arch_dict_tiret = {
        "x86" : "x86",
        "x64" : "x86-64",
        "arm64" : "aarch64",
        "arm" : "aarch64"
    }

    download_url = url + still_version + '/deb/' + arch_dict[control.architecture] + rf'/LibreOffice_{still_version}_Linux_{arch_dict_tiret[control.architecture]}_deb.tar.gz'
    latest_bin = download_url.split('/')[-1]
    version = still_version

    # Downloading latest binaries
    print(f"Latest {control.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
    version = ".".join(version.split(".")[:3])
    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()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating or not update-package-sources
    return package_updated
    

810ef197e190d7804a60e0016052c46ff33792303a200fddda9d5216a64b9900 : LibreOffice_26.2.4_Linux_x86-64_deb.tar.gz
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
3c943a9ff714701c4bac37acc8ae3d5b871ccf353bf9eb2a7b95133fe3107cfb : WAPT/control
9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87 : WAPT/icon.png
7ac2861efe9eeca4527cd1e07913ce216128b1070c88aa2cca537d4d6df853ff : luti.json
1c228a474759664bb056d32b3baea16400b859ae40a0f0da972c9a63f384f20c : setup.py
931d69c1018c30e6e006f555592e57e22dc48ab87d711d6898428662a6d197a1 : update_package.py