tis-jabref icon

JabRef

Paquet d’installation silencieuse pour JabRef

5.15-1

  • package: tis-jabref
  • name: JabRef
  • version: 5.15-1
  • maintainer: Jordan ARNAUD
  • licence: MIT licence
  • target_os: debian_based
  • architecture: x64
  • signature_date:
  • size: 205.75 Mo
  • homepage : devdocs.jabref.org

package           : tis-jabref
version           : 5.15-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         : debian_based
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      : e8b3f397-8cf0-4fbe-aacd-eccd92d1e068
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 022ff2f50e411fc8cd753e5a8c750a3dd078f9ba302b1f648ee356095ceb612f
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : azzeZ3eHIYUWLWEGY/FhPc4im/CMgrUhk64mj4uFC2wRz76ScM0hPR8cWGJW7H8xNZmHK7/yZfxKQA5nolGfSf/hylCEJpWeOQCH21R68fgPI5BVGfI5q6zS1iDJdbaiOa0sHgCxAQbdiYkXueR2noSgLwO+q9sF7NA1BaNmbXqhOgzb0IHFn/UiTxaaW2PzkfWWySZYP4CseSHk++j0TWrvkc8QY7ZRCTK7EbCHPcUoRrqhB2l4Y8DI8b2gWCgKYQQq7RmTjrrB0b/WxXKTgwfKSWRnPvxUZdoSc2u51WcuVgCyv2cFpQefflp2OlfJDPPZefWdMB4QTf24sCHPMw==
signature_date    : 2024-09-01T17:04:37.080074
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

# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    run('mkdir /usr/share/desktop-directories')
    run('apt install xdg-utils -y')
    #install_apt('xdg-utils')
    install_deb(glob.glob("jabref*.deb")[0])


def uninstall():
    uninstall_apt("jabref")

# -*- 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('.deb') :
            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('*.deb'):
        if f != filename:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

fa2ea1151a7b02a097d83e304f79f20517f8ea6cf599644496d4d7a3cffae60e : setup.py
1217c2669f668d83ba9e21f93aa2c3e4c90fd9a62242f6863d02e9a7983b4575 : jabref_5.15_amd64.deb
0aefee4b6f525fbf28e7a9467e28bdd81273fe45022624fbd54ff743d66f9b3c : update_package.py
022ff2f50e411fc8cd753e5a8c750a3dd078f9ba302b1f648ee356095ceb612f : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
46de799c7f11636439f47cb80be9338c499eed7ccad2b39fda9edbd5415aba98 : luti.json
ed104d3c7250a78f701d48248ea27bac1c957af4ac56f4327e67dfbd45cf7acb : WAPT/control