LibreOffice fresh
Silent install package for LibreOffice fresh
26.2.3-23
Office
Office
- package: tis-libreoffice-fresh
- name: LibreOffice fresh
- version: 26.2.3-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: x64
- signature_date:
- size: 297.54 Mo
- installed_size: 980.25 Mo
- homepage : https://www.libreoffice.org/
- conflicts :
package : tis-libreoffice-fresh
version : 26.2.3-23
architecture : x64
section : base
priority : optional
name : LibreOffice fresh
categories : Office
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : LibreOffice (fresh Branch) is a free and open-source office suite
depends :
conflicts : tis-libreoffice-still
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 fresh) est une suite bureautique libre et gratuite
description_pl : LibreOffice (fresh Branch) to darmowy i open-source'owy pakiet biurowy
description_de : LibreOffice (fresh Branch) ist ein freies und quelloffenes Office-Paket
description_es : LibreOffice (fresh Branch) es una suite ofimática gratuita y de código abierto
description_pt : O LibreOffice (filial fresh) é uma suite de escritório gratuita e de código aberto
description_it : LibreOffice (fresh Branch) è una suite per ufficio libera e open-source
description_nl : LibreOffice (fresh Branch) is een gratis en open-source kantoorpakket
description_ru : LibreOffice (fresh 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 : c3fc5502-c916-4036-b3c8-f99b3602eba6
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 : 2026-06-08T00:38:07.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 : q3v3caXuwYSKe7eyMTSmWUFlccm0lAVtRzdLA/Ykg0pTgJX3Z0IJ91tlhnzgooPuPk2pxp2CPZL2/BXP+AfjFBEeU6tyVA45YwnSveOByGIpeYNnTxlSJp1z9VmuJ4BGKQzcl0qu3golwZ1HHE0sH3ze5fkl7tBB7JRJ8tI30r4Ca9w2D/lYko9NxC//dDdLhcQpqMiP1Rt0No+2mRsk6s6PWBRw1O4Y1uynBWD/Geo2P0BSidyOX180GmWm4xTmMz825GXQR6ErGrSk+vhDL05gg7bbpf77Sy7b9x28OdycA1bb66WFwi8uEUyibs189N4D7ePM2r0mCv5i+noJoQ==
# -*- 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 *
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()
url = "https://www.libreoffice.org/download"
arch_dict = {
"x86" : "choice_x86_64",
"x64" : "choice_x86_64",
"arm64" : "choice_aarch64",
"arm" : "choice_aarch64"
}
os_dict_choice = {
"windows" : f"choice_win {arch_dict[control.architecture]}",
"darwin" : f"choice_mac {arch_dict[control.architecture]}",
"debian_based" : f"choice_linux {arch_dict[control.architecture]} choice_deb",
}
os_dict_ext = {
"windows" : ".msi",
"darwin" : ".dmg",
"debian_based" : "_deb.tar.gz",
}
os_choice = os_dict_choice[control.target_os]
os_extension = os_dict_ext[control.target_os]
# Getting latest version from official website
for bs_search in bs_find_all(url,'a', 'class', f'button choice choice_latest {os_choice}', proxies=proxies):
if bs_search['href'].endswith(os_extension):
download_url = bs_search['href']
latest_bin = download_url.split("/")[-1]
version = latest_bin.split("_")[1]
# 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
534cefb965b2d1c566c1e675f4ae2e9b0dcfdcd42861044fb0360c2b7a9eace3 : LibreOffice_26.2.3_MacOS_x86-64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
212fc04f15f535681f5161b80b6468f3869d9bb68ee538bd7d5dff8534392166 : WAPT/control
9c51eebe7a7aa8b0066cc11588899f1add0a10f4b80fcee271d6eca64be46a87 : WAPT/icon.png
ef3bd0afa7ac72ecb686cc3f3543d9633ad2c8fe1c49bfca6486e433fc4a8809 : luti.json
e010bdafda9d4e25e55e44b4cf4d03958ff739e8a6ab6e38e03545129152b31f : setup.py
d9fbf88468ee549491188a7390063fa2e3d9d00d982044d575845cfb2b930024 : update_package.py