- package: tis-calibre
- name: calibre
- version: 8.10.0-15
- categories: Office,Utilities,Media
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Kovid Goyal
- licence: GPLv3
- locale: all
- target_os: darwin
- impacted_process: calibre,ebook-viewer,lrfviewer
- architecture: all
- signature_date:
- size: 311.23 Mo
- homepage : https://calibre-ebook.com
package : tis-calibre
version : 8.10.0-15
architecture : all
section : base
priority : optional
name : calibre
categories : Office,Utilities,Media
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Calibre (stylised calibre) is a cross-platform open-source suite of e-book software
depends :
conflicts :
maturity : PROD
locale : all
target_os : darwin
min_wapt_version : 2.0
sources :
installed_size :
impacted_process : calibre,ebook-viewer,lrfviewer
description_fr : calibre est un gestionnaire de bibliothèques numériques permettant la visualisation, la conversion, le catalogage et l’édition de livres numériques
description_pl : Calibre (stylizowany na calibre) to wieloplatformowy, open-source’owy pakiet oprogramowania do obsługi książek elektronicznych
description_de : Calibre (stilisiert als Calibre) ist eine plattformübergreifende Open-Source-Software für E-Books
description_es : Calibre (estilizado como calibre) es una suite de software de libros electrónicos de código abierto y multiplataforma
description_pt : Calibre (calibre estilizado) é um conjunto de software de código-fonte aberto de código aberto para várias plataformas de livros electrónicos
description_it : Calibre (stilizzato calibre) è una suite open-source multipiattaforma di software per libri elettronici
description_nl : Calibre (gestileerd calibre) is een cross-platform open-source suite van e-boek software
description_ru : Calibre (стилизованный calibre) - это кроссплатформенный пакет программного обеспечения для электронных книг с открытым исходным кодом
audit_schedule :
editor : Kovid Goyal
keywords : e-book,ebook,book,reader,word,processor,calibre,e-readers,ereaders,epub,azw3,mobi
licence : GPLv3
homepage : https://calibre-ebook.com
package_uuid : 468dfd0e-6785-46f8-874f-34c6348b0ec9
valid_from :
valid_until :
forced_install_on :
changelog : https://calibre-ebook.com/whats-new
min_os_version : 11
max_os_version :
icon_sha256sum : 4152db2fde14eb9f3015e05bfe41ddf78ce34b91a57b2e41b38f022033df4e86
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-10T03:19:37.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 : aIymNtxGUhbywRf8XRjCgWIoGmGXx784SgcRUy2cyU1GPgxFw4MwtIanNbQEPHkBRVO3B6JGht/xdN+W6xKybghdcgjkKA42KeAhX1AvjlDI5jHeX9UajWgjF0bTH8KCo6BzYesMHclzbGXTThLSkuIPfHSQKP3x1wRvk/h7Bm69oJgIxsmHi3bU34fMSQ3x7X4RlfOjs1byr9cbGGq4L2zvqZtqcK3/3OtbTv/JvnvuIKURV1rcFnK+nkUOO+E3gsICtxcC00s/QEEAq1W7AQtG+HBdT0/e7gquQuFV83MLVR1fej9elPfduCXHJMcT/3OeeC7d1lDyzSINGXcrtw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variable
bin_name = glob.glob("*calibre-*.dmg")[0]
# Installing the software
install_dmg(bin_name)
def uninstall():
# Uninstalling the software
uninstall_app("calibre")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = "kovidgoyal/calibre"
api_url = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
version = json_load["tag_name"].replace("v", "")
latest_bin = "calibre-%s.dmg" % version
for download in json_load["assets"]:
if latest_bin in download["name"]:
download_url = download["browser_download_url"]
break
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return result
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e8975970fb369a935604e9342800f6ddb0bec2886213d95f319f751f6d5042ba : WAPT/changelog.txt
c980bc1d10eece52862130830215779cef962b02b9e2bc698756ed5e2fc7613f : WAPT/control
4152db2fde14eb9f3015e05bfe41ddf78ce34b91a57b2e41b38f022033df4e86 : WAPT/icon.png
473c0e7b35b6ba113b80350a1876bf869b81139c2a6cf06648f7f7d429d956ad : calibre-8.10.0.dmg
36decb51f8313b402814d0e8eea8a7f558ebf64301ea497d5f12a8ce2dbb5380 : luti.json
acc963318b5217c81b49bacf75c4573b854e7eeb454e890617a20128f9cc2cc3 : setup.py
b311ca35c3cf5b5ac440ad1d6b793ea48c07542773a59678fb8e4701f3824625 : update_package.py
https://calibre-ebook.com/whats-new
6.3.0
===
improve code