tis-libreoffice-still icon

LibreOffice Still

Silent install package for LibreOffice Still

25.2.6-23

  • package: tis-libreoffice-still
  • name: LibreOffice Still
  • version: 25.2.6-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: 293.95 Mo
  • installed_size: 980.25 Mo
  • homepage : https://www.libreoffice.org/
  • conflicts :

package           : tis-libreoffice-still
version           : 25.2.6-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          : PROD
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      : 78c2188b-5449-4be9-9b5b-825244809635
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://wiki.documentfoundation.org/Category:ReleaseNotes
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-09-13T12:03:19.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         : oolUsrfZL4Aej2jDJ5/jG2jXHzZwYh0Oz+4IXkIEAp38SOAV8WfQoGfMm4cNVZ8zmqVK+qmz/u+hvj4KikOrCuzFgbd9Els00ii+71iLqdjNWJeD4aozSm9TF27PUvdfgTvKtK5kVjknOGpQJ0ASMfOKkYOiRc9SbIl4q7b7QKg+xOwaKRy0WrVc74wXcNdwy1H87qvyh43d1wJdBM++QsnKM0PqpSnedsFcServWhpR6v+Is+8r39S1yWhFhoeoxG4SmD1t9pElmip8LgcHxSVzTVCom6FxW/YM1MYOmgwGFYFA+ZFEBS3BEwgccT8jadak5DczGEX44q/NAsFJOQ==

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


def install():
    # Declaring local variables
    package_version = control.get_software_version()
    install_dmg("LibreOffice_%s_MacOS_x86-64.dmg" % package_version)


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 = "_MacOS_x86-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.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

98cf9a9b72ef805e336f5d0f9b1b3e37fbcfcb62bb5b1e8eb5fd114ae10f2256 : LibreOffice_25.2.6_MacOS_x86-64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2cacb67dca826da9f64786d19c7ae370fde6b7a6571b046459cc519fb4e1a936 : WAPT/changelog.txt
e42a5927fb7f263b881dc148f215017d9063f3fb0080e51160a357676ee5aadc : WAPT/control
9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87 : WAPT/icon.png
5ee35aac9fd2a0d4f6f71215e3f828defd3409cb709d811979dff96080a2d9d8 : luti.json
830cad7a9bc9abfc7ee16fa7ed34dd601b81ab987767aec5636048fb469ec33e : setup.py
609f5947a59c65df73e081afdc2d92e7e74f70aa3f2c431379ea279930da9343 : update_package.py

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