tis-softmaker-freeoffice-2024

24.0.6104-1
FreeOffice est une suite bureautique complète comprenant un traitement de texte, un tableur et un programme de présentation, tous compatibles avec leurs homologues de Microsoft Office
2 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal
tis-softmaker-freeoffice-2024 icon
  • package : tis-softmaker-freeoffice-2024
  • name : SoftMaker Office 2024
  • version : 24.0.6104-1
  • categories :
  • maintainer : WAPT Team,Tranquil IT,Amel FRADJ
  • editor :
  • licence : proprietary_restricted,wapt_private
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : x86
  • signature_date : 2024-11-30 10:04
  • size : 398.68 Mo
  • homepage : https://www.softmaker.com/en/
package           : tis-softmaker-freeoffice-2024
version           : 24.0.6104-1
architecture      : x86
section           : base
priority          : optional
name              : SoftMaker Office 2024
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : FreeOffice is a complete office suite comprising a word processor, spreadsheet and presentation program, all compatible with their Microsoft Office counterparts
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : FreeOffice est une suite bureautique complète comprenant un traitement de texte, un tableur et un programme de présentation, tous compatibles avec leurs homologues de Microsoft Office
description_pl    : FreeOffice to kompletny pakiet biurowy składający się z edytora tekstu, arkusza kalkulacyjnego i programu do prezentacji, wszystkie kompatybilne z ich odpowiednikami Microsoft Office
description_de    : FreeOffice ist ein komplettes Office-Paket, das aus einer Textverarbeitung, einer Tabellenkalkulation und einem Präsentationsprogramm besteht, die alle mit ihren Pendants in Microsoft Office kompatibel sind
description_es    : LibreOffice es una completa suite ofimática que incluye un procesador de textos, una hoja de cálculo y un programa de presentaciones, todos ellos compatibles con sus homólogos de Microsoft Office
description_pt    : O FreeOffice é uma suite de escritório completa que inclui um processador de texto, uma folha de cálculo e um programa de apresentação, todos compatíveis com os seus equivalentes do Microsoft Office
description_it    : FreeOffice è una suite per ufficio completa che comprende un elaboratore di testi, un foglio elettronico e un programma di presentazione, tutti compatibili con le loro controparti di Microsoft Office
description_nl    : FreeOffice is een compleet kantoorpakket bestaande uit een tekstverwerker, een spreadsheet en een presentatieprogramma, allemaal compatibel met hun Microsoft Office tegenhangers
description_ru    : FreeOffice - это полноценный офисный пакет, включающий текстовый процессор, электронную таблицу и программу для создания презентаций, совместимые с аналогами Microsoft Office
audit_schedule    : 
editor            : 
keywords          : 
licence           : proprietary_restricted,wapt_private
homepage          : https://www.softmaker.com/en/
package_uuid      : 900b8ac0-19cf-436a-8c61-6d6ddb0bc30c
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : b9053a598c461d1f85a627bb2c6f4317e63b36af1109b9fb4b7e21fd68866dd8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-11-30T10:04:03.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         : gdu8wL12Y0hz0pvf59PkqIB9QGUP/JWbO7xnMnq3gBwuBWNMbxgw2bwqf6G06BY8DBsvxFVGUmDHPaEtuJIoBwj66asb57/zl3nYZBpoiKuS+o+jjwYES+ZQOzrdbRUulWLp5XmJCPtBZxB4fNqfD9dRAPw1aM0HcQ+n7abIM2wPADQyQpw+X3JSEUpweGtUBsWJd4HzMniH/WttHSjZoJoFV4GgoYNWq3x3tOoKlq7g01NaBA0zbz1M4XTqqb8u+jZ2JfVRqLT1YRzgAkizn7UGai42bvyOlQgp1e66zx7P64w50Q32ruH/gZJy2pzrAwD3KrG6dRjjeQWGekG79A==
# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    for software in installed_softwares('SoftMaker Office'):
        if Version(software['version']) < Version(control.get_software_version()):
            quiet_uninstall_string = software["uninstall_string"].replace("/I","/X") + " /qn"
            print("Uninstalling old Docker Desktop version (%s): %s" % (software['version'], quiet_uninstall_string))
            run(quiet_uninstall_string)
            wait_uninstallkey_absent(software["key"])
    # Installing the software
    
    install_msi_if_needed("softmaker-office-2024-32.msi",min_version=control.get_software_version(),name="^SoftMaker Office")




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



def update_package():
    # Declaring local variables
    package_updated = False
    
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()

    
    
    download_url = "https://www.softmaker.net/down/softmaker-office-2024-32.msi"
    latest_bin = download_url.split("/")[-1]
    

    # Downloading latest binaries
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)


    # Deleting outdated binaries
    for f in glob.glob('*.msi'):
        if f != latest_bin:
            remove_file(f)

           
    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
15b5d24de64b8fe127d89212a1acaccb4edbb5645cc1a2dc8f42c89eafcab87b : WAPT/control
b9053a598c461d1f85a627bb2c6f4317e63b36af1109b9fb4b7e21fd68866dd8 : WAPT/icon.png
4aa39e3a5eb3f7ae40c8fb242c678b6a5601188afac8ed3a99b7b6e4ce678fc9 : luti.json
3f867dbb1e2583ab12562e50c35e869e11cbe3731ab659a5e2ffbdd3f9010b29 : setup.py
c22dc884f0445c089c6a3ec0f8633db14dd8308d51d9a9e6385451945b4685e5 : softmaker-office-2024-32.msi
cdc113ba590c85729aeb4abd783cf652e30341faa8d67962f0ff4974064040e9 : update_package.py