- package: tis-zotero
- name: Zotero
- version: 7.0.22-11
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT,Jordan Arnaud
- editor: Corporation for Digital Scholarship
- licence: AGPL
- locale: all
- target_os: ubuntu(<=20), debian
- impacted_process: zotero
- architecture: x64
- signature_date:
- size: 109.60 Mo
- installed_size: 116.42 Mo
- homepage : https://www.zotero.org/
package : tis-zotero
version : 7.0.22-11
architecture : x64
section : base
priority : optional
name : Zotero
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT,Jordan Arnaud
description : Zotero is a free and open-source reference management software to manage bibliographic data and related research materials
depends :
conflicts :
maturity : PROD
locale : all
target_os : ubuntu(<=20), debian
min_wapt_version : 2.3
sources : https://www.zotero.org/download/
installed_size : 116416512
impacted_process : zotero
description_fr : Zotero est un logiciel de gestion de références gratuit, libre et open source, il permet de gérer des données bibliographiques et des documents de recherche
description_pl : Zotero jest wolnym i otwartym oprogramowaniem do zarządzania referencjami, służącym do zarządzania danymi bibliograficznymi i powiązanymi materiałami badawczymi
description_de : Zotero ist eine kostenlose und quelloffene Literaturverwaltungssoftware zur Verwaltung bibliographischer Daten und verwandter Forschungsmaterialien
description_es : Zotero es un software de gestión de referencias gratuito y de código abierto para gestionar los datos bibliográficos y los materiales de investigación relacionados
description_pt : Zotero é um software de gestão de referências gratuito e de código aberto para gerir dados bibliográficos e materiais de investigação relacionados
description_it : Zotero è un software di reference management gratuito e open-source per la gestione dei dati bibliografici e dei relativi materiali di ricerca
description_nl : Zotero is een gratis en open-source referentiebeheersoftware om bibliografische gegevens en verwant onderzoeksmateriaal te beheren
description_ru : Zotero - это бесплатное программное обеспечение с открытым исходным кодом для управления библиографическими данными и сопутствующими исследовательскими материалами
audit_schedule :
editor : Corporation for Digital Scholarship
keywords :
licence : AGPL
homepage : https://www.zotero.org/
package_uuid : ebd95983-e025-4dbd-be30-9fba252bcc2e
valid_from :
valid_until :
forced_install_on :
changelog : https://www.zotero.org/support/changelog
min_os_version :
max_os_version :
icon_sha256sum : 499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-07-30T13:00:58.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 : qDv4gw8CPr6554dNaelCcpfnC/GXhYmRhaFakQ7RCjbJel1yUSq3PIEk9CefIxlaElazO5a+aj57P2CVrIXtqPSa7GN+8buRWJCNkxyP6ZfQ6/Ta1kDn9aU2Af1H1dN2MO5nWMLa4EiMApizz5PSDy1BNAHJwdPUnBbQZjoAld7sMW3+hBRBrTjpaySmTYy60YQ2yoW5YwyO4cqZVNHRMJWXLt7tlkgnI+eZpp88+jOPPCENtDZ2YcoWcVbqpdanrU9y1EZlGFB9G24BgFUREIVomX84tvYMDlG0Zbkp++GfYT9F/AHwi0/9N8tCnBSu8df+c28ZbIf44oCNl9wwdA==
# -*- coding: utf-8 -*-
from setuphelpers import *
# -*- coding: utf-8 -*-
from setuphelpers import *
bin_path = makepath("/", "usr", "local", "bin")
app_path = "/opt/zotero"
def install():
# Extraction and copying to /opt/zotero
extract_path = glob.glob("*.tar.bz2")[0]
run(f"tar -xjvf {extract_path}")
extract_path = 'Zotero_linux-x86_64'
bin_name = glob.glob(extract_path)[0]
print(f"copying zotero to {app_path}")
if not isdir(app_path):
mkdirs(app_path)
copytree2(bin_name, app_path)
# Creation of symlink
if not isfile(f"{bin_path}/zotero"):
print("create zotero alias in path")
os.symlink(f"{app_path}/zotero", f"{bin_path}/zotero")
if isdir(extract_path):
remove_tree(extract_path)
def uninstall():
# Removing of symlink
if isfile(f"{bin_path}/zotero"):
remove_file(f"{bin_path}/zotero")
# Removing of the software
if isdir(app_path):
remove_tree(app_path)
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
import requests
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
url = "https://www.zotero.org/download/"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "script", "type", "text/javascript", proxies=proxies):
temp_str = str(bs_search)
if "linux-x86_64" in temp_str:
dict_version = json.loads(temp_str.split(":", 1)[-1].split("\n", 1)[0].split("}")[0] + "}")
version = dict_version["linux-x86_64"]
url_dl = requests.head(
"https://www.zotero.org/download/client/dl?channel=release&platform=linux-x86_64&version=%s" % version, proxies=proxies
).headers["Location"]
latest_bin = url_dl.split("/")[-1]
break
print("Latest %s version is: %s" % (app_name, version))
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Changing version of the package
control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
control.save_control_to_wapt()
for f in glob.glob("*.tar.bz2"):
if f != latest_bin:
remove_file()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
68f5f452922a5b3b323da086281b76dd72608978a7a690736d213cd6b85c7a91 : WAPT/control
499ad46227d2de56044d89085ff174a347b8ccca7b2e59823cdca9eaca6090f7 : WAPT/icon.png
16e997c1b0a09c30ec9e5ef5cda37dab1e10706b815b6f413ea0155a6e0ba5a6 : Zotero-7.0.22_linux-x86_64.tar.bz2
c5a3b4068633a30bd697994a110f7ca9543800c6a070da5a028966e6ed844ec5 : luti.json
e8188f4bea9e53d4ab4e9bdeedb0fd1faff2571c1b0e8d224b519333dccd097e : setup.py
97225338828a77e2bf6694b06edda2ca19bbca8f6287b6b66ce460073f53131f : update_package.py