tis-libreoffice-still icon

LibreOffice Still

Silent install package for LibreOffice Still

26.2.2-23
Office
Office

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

  • package: tis-libreoffice-still
  • name: LibreOffice Still
  • version: 26.2.2-23
  • 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: darwin
  • impacted_process: swriter,sweb,soffice,smath,simpress,sdraw,scalc,sbase
  • architecture: all
  • signature_date:
  • size: 297.13 Mo
  • installed_size: 980.25 Mo
  • homepage : https://www.libreoffice.org/
  • conflicts :

package           : tis-libreoffice-still
version           : 26.2.2-23
architecture      : all
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          : PREPROD
locale            : all
target_os         : darwin
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      : 9036ade9-5c74-410e-9197-5f402df996fb
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://wiki.documentfoundation.org/Category:ReleaseNotes
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-04-13T14:40:00.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         : PQRoqkc+80M/Q0lWZqAGi1pXdTkB4BMMdlxHm7iQFM1rl52yotKMqVPbOsZiL1tHe8seRvFfOEmrnTZd85RUqmJgh590ZxcNe4vvUdAEkkue1Z27jWY1LcScCnp/8vT2nxq/a6OfvE4boqZKVaR6iotgc8Sv5T5PTivsVJOxXfBa1uVyznb/c8E6zfnLThZR8LmAkXKSxaGX+MrvXchVrCQ14JH+V1RhHx9/sIR96ZvX5fSppnP1DGZThfAy428dfqP4nA09ZFszgPoP7FuIvrPp/hS2k3XoFmNOyfBgPfozy9X4mzXKOca7afFPXcMqLLaA6X9oUemCwB32nZ/BWQ==

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


def install():
    # Declaring local variables
    package_version = control.get_software_version()
    bin_name = glob.glob("LibreOffice_*_MacOS_*64.dmg")[0]
    install_dmg(bin_name)


def uninstall():
    shutil.rmtree("/Applications/LibreOffice.app")

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


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
    url = "https://www.libreoffice.org/download/download"
    bin_contains = "LibreOffice_"
    ends_bin_name = "64.dmg"
    # Getting latest version from official sources
    version = wgets('https://www.libreoffice.org/download/download-libreoffice/',proxies=proxies).split('The previous stable branch')[0].split('_Win_x86-64.msi')[-2].split('_')[-1]
    search_url = "https://download.documentfoundation.org/libreoffice/stable/%s/mac/x86_64/" % version
    for bs_search in bs_find_all(search_url, "a", proxies=proxies):
        if bin_contains in bs_search["href"] and ends_bin_name in bs_search["href"]:
            latest_bin = bs_search.string
            download_url = search_url + latest_bin
            break
    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    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) > Version(control.get_software_version()):
        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

3fd198d2af8d715a8f7def300f8882422332022babb96f97a4d59f99d07370c2 : LibreOffice_26.2.2_MacOS_x86-64.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
2cacb67dca826da9f64786d19c7ae370fde6b7a6571b046459cc519fb4e1a936 : WAPT/changelog.txt
20899324b89498d521e9f990dbea054dcf74818de34bfdd8468d277591d80279 : WAPT/control
9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87 : WAPT/icon.png
626510e7407570578a561478a93dc8ce0624f8242fbe36eaad375586bef14039 : luti.json
e010bdafda9d4e25e55e44b4cf4d03958ff739e8a6ab6e38e03545129152b31f : setup.py
e13a878334f3db9f72e62151133a2e030e061b05354ffb9260868d738fc5417a : update_package.py

https://wiki.documentfoundation.org/Category:ReleaseNotes
7.2.7-23
===
Translating missing languages description
improve code
slipt update package