
JabRef
Silent install package for JabRef
6.0-1
- package: tis-jabref
- name: JabRef
- version: 6.0-1
- maintainer: Jordan ARNAUD
- licence: MIT licence
- target_os: darwin
- architecture: x64
- signature_date:
- size: 323.32 Mo
- homepage : devdocs.jabref.org
package : tis-jabref
version : 6.0-1
architecture : x64
section : base
priority : optional
name : JabRef
categories :
maintainer : Jordan ARNAUD
description : JabRef is a graphical Java application for editing BibTeX and Biblatex databases
depends :
conflicts :
maturity : PROD
locale :
target_os : darwin
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : JabRef est une application graphique Java pour l'édition des bases de données BibTeX et Biblatex
description_pl : JabRef to graficzna aplikacja Java do edycji baz danych BibTeX i Biblatex
description_de : JabRef ist eine grafische Java-Anwendung zur Bearbeitung von BibTeX- und Biblatex-Datenbanken
description_es : JabRef es una aplicación gráfica Java para editar bases de datos BibTeX y Biblatex
description_pt : JabRef é uma aplicação gráfica Java para editar bases de dados BibTeX e Biblatex
description_it : JabRef è un'applicazione grafica in Java per la modifica dei database BibTeX e Biblatex
description_nl : JabRef is een grafische Java-toepassing voor het bewerken van BibTeX- en Biblatex-databases
description_ru : JabRef - это графическое Java-приложение для редактирования баз данных BibTeX и Biblatex
audit_schedule :
editor :
keywords :
licence : MIT licence
homepage : devdocs.jabref.org
package_uuid : b4049499-b16d-4f18-8e00-fd19a5a973f9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 022ff2f50e411fc8cd753e5a8c750a3dd078f9ba302b1f648ee356095ceb612f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-12-28T23:01:05.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 : bSuAKvVqcHbeRyMc82vyTGTkbIGH8U9B2PtdSPbu9n3Rg2crxihQUdWdwPVttUl/PmvYb/XHi9y9NdlCoOq3kNj+DLoPfnsGswomFXUIG4P8lmwEV2j3JSvYd62ftNErQT2hJ4oAltl+OvvMoHjTq/HpvWxEn8FCtjAuTBQUT4blxs1j2xdMU8xq29l4uSfBlTf0rjI5KuWXvWj9caH67DsR9MuXhN+afsyzbDndy34rOCly9JMNnZvHBgfApEUwI74K3nmJkPDp4xWPdWra0z04r3PCaWNCXvBH/tHDu65nxpiHo73sSpqsbw4H8Aa/exvyW6q7GmVZI04mrIIzzw==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
install_dmg(glob.glob("JabRef*.dmg")[0])
def uninstall():
remove_tree("/Applications/JabRef.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "JabRef/jabref"
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('.dmg') :
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('*.dmg'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
1577e786d8755d13d67c66b20b56e7453adf3185f7ccdf2f628ff85e1125b457 : JabRef-6.0-arm64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
829a25a1cd2be0d5393b606074bb39f2bec72da9ac8184d3921676dfa2c2eb7f : WAPT/control
022ff2f50e411fc8cd753e5a8c750a3dd078f9ba302b1f648ee356095ceb612f : WAPT/icon.png
fd88cffec446909ef2f99ef486ef2adc9cf4ff7022fefe20838a830941c73750 : luti.json
e11a28851aa04a650f6881432b90630d6300d2ef3a5e8cee93f394df084e613e : setup.py
89839eb2c7d78d95eda36abd58340a3efe21305b2e5f1be40eca896468f88267 : update_package.py