tis-onlyoffice-desktop icon

ONLYOFFICE Desktop Editors

Silent install package for ONLYOFFICE Desktop Editors

9.4.0-5
Office
Office

  • package: tis-onlyoffice-desktop
  • name: ONLYOFFICE Desktop Editors
  • version: 9.4.0-5
  • categories: Office
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau
  • editor: Ascensio System SIA
  • licence: GPLv3
  • locale: all
  • target_os: debian_based
  • impacted_process: DesktopEditors,editors,editors_helper
  • architecture: arm64
  • signature_date:
  • size: 354.11 Mo
  • homepage : https://www.onlyoffice.com/

package           : tis-onlyoffice-desktop
version           : 9.4.0-5
architecture      : arm64
section           : base
priority          : optional
name              : ONLYOFFICE Desktop Editors
categories        : Office
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Simon Fonteneau
description       : ONLYOFFICE (formerly TeamLab) is an open source office suite
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : debian_based
min_wapt_version  : 2.1
sources           : https://www.onlyoffice.com/download-desktop.aspx
installed_size    : 
impacted_process  : DesktopEditors,editors,editors_helper
description_fr    : ONLYOFFICE (anciennement Teamlab Office) est une suite bureautique libre
description_pl    : ONLYOFFICE (dawniej TeamLab) to pakiet biurowy typu open source
description_de    : ONLYOFFICE (ehemals TeamLab) ist eine Open-Source-Office-Suite
description_es    : ONLYOFFICE (antes TeamLab) es una suite ofimática de código abierto
description_pt    : ONLYOFFICE (antigo TeamLab) é uma suite de escritório de código aberto
description_it    : ONLYOFFICE (ex TeamLab) è una suite per ufficio open source
description_nl    : ONLYOFFICE (voorheen TeamLab) is een open source kantoorpakket
description_ru    : ONLYOFFICE (ранее TeamLab) - офисный пакет с открытым исходным кодом
audit_schedule    : 
editor            : Ascensio System SIA
keywords          : only,onlyoffice,office,suite,word,spreadsheet,sheet,excel,presentation,doc,docx,xls,xlsx,ppt,pptx
licence           : GPLv3
homepage          : https://www.onlyoffice.com/
package_uuid      : c8445e3b-d4c3-4339-b881-b2cd67d47eba
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://helpcenter.onlyoffice.com/server/document/changelog.aspx
min_os_version    : 
max_os_version    : 
icon_sha256sum    : fcaa0478b4159a05634ae213c29643b6138b39e067c19210b2553a9746c4dad3
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-07-25T15:07:01.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         : M1Iw8BQyvcmcAjZYNQlTaOjw5YkFNtTGmG6bLEhtwMMX7O0sWl/8pKmzskn4pT1lomhjFmsY1UHB307PPGEx+PxHRsYK+szILhEkGJgBM6IfzWelu2SOoqbDYKbvf3r8LyX9PhzBg9umK2rY7J118EgMURxB2EsB3ja0WL6cOuqNdDfyZWv6VojljY238i6dc+DKYh+Ki021SmwTwxJu8XjgXY+2vOGThOC2VkW6dCquz9UyPcBGhWG9tFL0KntKXnVbQ3nMMt8Jvbsi2JkeueEmMLtr04o5xh9rU/X5t74I9mQC7aN9YWnWR6xM0QOMvZ89Y4Br6q69aYwUz1w1tg==

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


def install():
    install_apt('xdg-utils')
    install_apt('desktop-file-utils')

    install_deb("onlyoffice-desktopeditors_arm64.deb")

def uninstall():
    uninstall_apt("onlyoffice-desktopeditors")

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


def update_package():
    # Declaration of local variables
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    api_url = "https://api.github.com/repos/ONLYOFFICE/DesktopEditors/releases/latest"
    os_dict = {
        "x64": "amd64",
        "arm64": "arm64",
    }

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    for asset in releases_dict["assets"]:
        if asset["browser_download_url"].endswith(".deb") and os_dict[control.architecture] in asset["browser_download_url"]:
            url_download = asset["browser_download_url"]
            latest_bin = url_download.split("/")[-1]
            version = releases_dict["tag_name"].replace("v", "")
            break

    # Deleting binaries
    for f in glob.glob("*.deb"):
        if f != latest_bin:
            remove_file(f)

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

    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
51b8cc5765f9b76670e85aad6239b7e5a7f855b404aad3144dfbfd548f8eefef : WAPT/control
fcaa0478b4159a05634ae213c29643b6138b39e067c19210b2553a9746c4dad3 : WAPT/icon.png
34bd6b84b43f851a870661b3e59797c0ff1bd2bfdb1b1dbe99d66ae1bc36cd5b : luti.json
ce141a103051e220a89839dd5dc8511172ae5b989e8de9bda0e07c34b0b7702c : onlyoffice-desktopeditors_arm64.deb
fa38d13858c961c29d3ec98532329a2f60cccc9d238d8d0ecab6306e863622a5 : setup.py
7e052f503c2b9f08ff4e3326e2a48cbb5729aeb547c5cfb0d7ae25230c5b15bb : update_package.py