tis-sigil-ebook icon

Sigil

Silent install package for Sigil

2.6.2-1

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

package           : tis-sigil-ebook
version           : 2.6.2-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      : 708a3509-206a-41d7-842a-6d0078a47a05
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-09-18T02:01:12.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         : AkUeC3y3J4DP12DSA805ltvfxEszWEe5AdyPp6O0qq54rUlM6pLtgwLvuH0ahubN6d7bbQOAIqGJVnIuvZylrJO+oJAivGS6h7MkFgrkwhRo+kR+h6vG/YpQIdZTtnILVAVloTmsxtiwxe0U4SsBx2NgaYPSGIoDe2Xajz8A+o5yU1/En1uPeXMg32kjyyHPeSCB5dF/jG6TCYZwHIiqufbm51eHgUQqCHNqHeYR94fL74TsHBBZaynrR8o+kRabFGYLdRLmHtbdCy1FR3LrnmskoF7yhJbZsEFwMuwh7QIm4bqzpsDJVZRkKwL0aJYbhARXl8bc9Pu9AqdA+7tf9A==

# -*- 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()

7761dc54a4f100abff116c30e4aeb3ffbd2ad30277e65a1a5c0107e5cd11707e : Sigil-2.6.2-Windows-x64-Setup.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2cb35aedeb9b118d312837e267494fff15b0c5751aa8b2aa114ec0ac36b885ed : WAPT/control
98aaab2f9d69c7d31eaabe176ce4542979b72bf53c45a8756a29d90c09a3feed : WAPT/icon.png
0ad50a7304fa503cc398572f53f615d7f1a7700869a1a79b19361353dcaedf2d : luti.json
8cba82f1b622c39216b679203c82b2f0e2a893088ec8d0ab360e780dacb031aa : setup.py
aaaf3ea4cd4cd5e20c4efbfd3aa86e17218b17ba666416827f2cab69765deb21 : update_package.py