tis-sigil-ebook icon

Sigil

Silent install package for Sigil

2.7.0-1

  • package: tis-sigil-ebook
  • name: Sigil
  • version: 2.7.0-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: GPL-3.0 license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 141.88 Mo
  • homepage : https://sigil-ebook.com/

package           : tis-sigil-ebook
version           : 2.7.0-1
architecture      : x64
section           : base
priority          : optional
name              : Sigil
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Sigil is a multi-platform EPUB ebook editor
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Sigil est un éditeur d'ebooks EPUB multiplateforme
description_pl    : Sigil to wieloplatformowy edytor ebooków EPUB
description_de    : Sigil ist ein plattformübergreifender EPUB-Ebook-Editor
description_es    : Sigil es un editor de libros electrónicos EPUB multiplataforma
description_pt    : Sigil é um editor de livros electrónicos EPUB multiplataforma
description_it    : Sigil è un editor di ebook EPUB multi-piattaforma
description_nl    : Sigil is een multiplatform EPUB-editor voor ebooks
description_ru    : Sigil - многоплатформенный редактор электронных книг в формате EPUB
audit_schedule    : 
editor            : 
keywords          : 
licence           : GPL-3.0 license
homepage          : https://sigil-ebook.com/
package_uuid      : b9e2d207-8796-4850-b548-9e5e30461874
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 98aaab2f9d69c7d31eaabe176ce4542979b72bf53c45a8756a29d90c09a3feed
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-12-06T20:00:24.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         : dh3dYOmBArGoDOSp8T283OKiJh7kSXWnrFE1ESWT+STev5oA46khR/hm+AlydKpaogw45mP6vH4nkxBSDtaAvcQJSRTYOcIbuLVQ26+gf+bIwFx6NrUhv73OBToDaGJ9fxDlsPB9jKhex1CGEE8EHQPiRY+s9m7S8Qakz5Fi6KE2JN4La/pC1XPfCfE4/tc7DhMhEq7BuwFIyBkWbGKILGttPtge/uL82uCAGzzTb8uQe9Q4GI+ezJpumJBUePk6Nl4dYWvxTOCxN/oHmb1Eto/cWT85YlXOK7GN2nRObj8brkAXeRBj0SL/c+VW/K4qRzO1DXwPytF/M9MptPpbAg==

# -*- 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
    bin_name = glob.glob('Sigil-*-Windows-x64-Setup.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-',
        key='Sigil_is1',
        min_version=control.get_software_version(),
    )



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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
   
    git_repo = "Sigil-Ebook/Sigil"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))
    for download in json_load["assets"]:
        if download["browser_download_url"].endswith(".exe") :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl, filename, proxies=proxies)

    # nettoyer les fichiers temporaires
    for f in glob.glob("*.exe"):
        if f != filename:
            remove_file(f)
    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

7af0d5a399f585a41176399a4091ae6f7f7bec271428d2431846f5cd7af53c62 : Sigil-2.7.0-Windows-x64-Setup.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e119ab458279e4a2cfa946ac6161a690df1a633022edb1e0d53eb83b61d0e9e1 : WAPT/control
98aaab2f9d69c7d31eaabe176ce4542979b72bf53c45a8756a29d90c09a3feed : WAPT/icon.png
25c42929612d804699ba5ac78d7b563a1d05a173ac7767035e9fb04fa9cb61c7 : luti.json
8cba82f1b622c39216b679203c82b2f0e2a893088ec8d0ab360e780dacb031aa : setup.py
aaaf3ea4cd4cd5e20c4efbfd3aa86e17218b17ba666416827f2cab69765deb21 : update_package.py