tis-projectlibre icon

ProjectLibre

Paquet d’installation silencieuse pour ProjectLibre

1.9.3-6

  • package: tis-projectlibre
  • name: ProjectLibre
  • version: 1.9.3-6
  • categories: Office
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ, Jordan ARNAUD
  • licence: CPAL
  • locale: all
  • target_os: debian_based
  • impacted_process: ProjectLibre
  • architecture: x64
  • signature_date:
  • size: 17.87 Mo
  • installed_size: 223.85 Mo
  • homepage : http://www.projectlibre.com/

package           : tis-projectlibre
version           : 1.9.3-6
architecture      : x64
section           : base
priority          : optional
name              : ProjectLibre
categories        : Office
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ, Jordan ARNAUD
description       : ProjectLibre is a free and open-source project management software
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : debian_based
min_wapt_version  : 2.3
sources           : https://sourceforge.net/projects/projectlibre/files/
installed_size    : 223854592
impacted_process  : ProjectLibre
description_fr    : ProjectLibre est un outil open source de planification de projet
description_pl    : ProjectLibre to darmowe i open-source'owe oprogramowanie do zarządzania projektami
description_de    : ProjectLibre ist eine freie und quelloffene Projektmanagementsoftware
description_es    : ProjectLibre es un software de gestión de proyectos gratuito y de código abierto
description_pt    : ProjectLibre é um software de gestão de projectos gratuito e de código aberto
description_it    : ProjectLibre è un software di gestione dei progetti gratuito e open-source
description_nl    : ProjectLibre is een gratis en open-source project management software
description_ru    : ProjectLibre - это бесплатное программное обеспечение для управления проектами с открытым исходным кодом
audit_schedule    : 
editor            : 
keywords          : 
licence           : CPAL
homepage          : http://www.projectlibre.com/
package_uuid      : dff3344c-de46-47ae-9519-a58551859e44
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d9a499823d03ac8c653f0eb6f2ef1dfcdaf6aeca2834e2ee8d63da12f05c52a3
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : aZx90UKixWlj+cLG884z7Ipa2OFBIIwWMBopAjqjRI/A6jWoODjGqbCWvEs9h+sDlbOG1bk8djnDY9U2UHY/w8o9YiiIsYXL90f/eimCPYGh19HrbS4clbe4COltKx6bO5nwykBKIO3xgpAcU9jyG1mPnVRhOYVQY6tmQu/UFL3q5hflFvr68p78UBCHxySAezz4aS/SDwuH12OfYnRMkiaWwZDODJ1fn5Qne7U5b88Ld9h0eTLPYJclMtbveXVlpwbeWt5hanO34U3q/D1hUTXT+AWfvV1V7jx9RRr3qzqnV4FNi+eQXbdbxVK3QcHXkSiquIGE0WdcxCW45+j6gA==
signature_date    : 2024-08-31T13:04:53.557014
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():
    install_deb(glob.glob("projectlibre*.deb")[0])


def uninstall():
    uninstall_apt("projectlibre")

# -*- coding: utf-8 -*-
from setuphelpers import *
import json

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "projectlibre"


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    api_url = "https://sourceforge.net/projects/projectlibre/best_release.json"

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for download in json_load["platform_releases"]:
        if bin_contains in json_load["platform_releases"][download]["filename"] and ".deb" in json_load["platform_releases"][download]["filename"]:
            download_url = json_load["platform_releases"][download]["url"]
            version = json_load["platform_releases"][download]["filename"].split("/")[-2]
            latest_bin = json_load["platform_releases"][download]["filename"].split("/")[-1]
            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,connect_timeout=60, proxies=proxies)

    control.set_software_version(version)
    control.save_control_to_wapt()


    # Validating update-package-sources
    return result

bb1c92cd4b3bf76ea48efa5c3054c94be1708fc2f6f5e727443479cefe9e9cba : setup.py
1062cf87dc7df9d23ebfcde505cde5d3de894f606e916534cccb9b591e5cec5e : update_package.py
17db8c178db78f1ac3935c19b6e5cad9d02c48109dd559426f35158376c1eba7 : projectlibre_1.9.3-1.deb
d9a499823d03ac8c653f0eb6f2ef1dfcdaf6aeca2834e2ee8d63da12f05c52a3 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
75d3dd3091ae1be2502ccd2c2c4acddef73c40eaef11dfcaba141d4349e971f6 : luti.json
5284c73a23b7f91bfcfb9e51a752fdc803894e619a1568031cac3ae58e57ce23 : WAPT/control