tis-ganttproject icon

GanttProject

Silent install package for GanttProject

3.3.3312-19
Office
Office

  • package: tis-ganttproject
  • name: GanttProject
  • version: 3.3.3312-19
  • categories: Office
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT,Jordan Arnaud
  • editor: BarD Software
  • licence: GPLV3
  • locale: all
  • target_os: darwin
  • impacted_process: ganttproject
  • architecture: arm
  • signature_date:
  • size: 143.24 Mo
  • installed_size: 181.71 Mo
  • homepage : https://www.ganttproject.biz/

package           : tis-ganttproject
version           : 3.3.3312-19
architecture      : arm
section           : base
priority          : optional
name              : GanttProject
categories        : Office
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ,Gaëtan SEGAT,Jordan Arnaud
description       : GanttProject is GPL-licensed Java based, project management software
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.3
sources           : https://www.ganttproject.biz/download
installed_size    : 181714944
impacted_process  : ganttproject
description_fr    : GanttProject est un logiciel libre de gestion de projet écrit en Java
description_pl    : GanttProject jest oprogramowaniem do zarządzania projektami opartym na licencji GPL w języku Java
description_de    : GanttProject ist eine GPL-lizensierte, Java-basierte Projektmanagement-Software
description_es    : GanttProject es un software de gestión de proyectos basado en Java con licencia GPL
description_pt    : GanttProject é um software de gestão de projectos baseado em Java e licenciado por GPL
description_it    : GanttProject è un software di gestione dei progetti basato su Java con licenza GPL
description_nl    : GanttProject is GPL-gelicenseerde, op Java gebaseerde, project management software
description_ru    : GanttProject - это программное обеспечение для управления проектами на базе Java с лицензией GPL
audit_schedule    : 
editor            : BarD Software
keywords          : project,management,gant,gantt,diagram,chart
licence           : GPLV3
homepage          : https://www.ganttproject.biz/
package_uuid      : 3e80b193-3244-4b79-9ed7-b2ad2c0d57a6
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/bardsoftware/ganttproject/releases
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : d3842b5345c775bd107a1926011e14f2e55b0aba1c88b9656767fd4cd793da2a
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-10-15T09:01:03.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         : IVtjUyJBdHwTgZOgfUQcgKgQvyvGpvf0hiEOvtHcutvu+fJQP3QfCYoxfpq5MB2HKcq9Kd5/Kf34kw89JRqu7tumQiYC/bNrCccw58FFp8j9YJnmmTIB2MnKd8z0aUng5tgJF4RCQnSkq21OIkV7z9eQafdGp1BR2n0nABKFQPhvU+ZgUaOX6DROR2xSzkeohC6O90qT5kfWtWyBu0sYet6jKyKTp0H8GHKjFOYMW2eT6laiVmeJIaLPZmYFsKLbi3F/tt1sXv1kBQDaWd9Ypv3jv0yC4AIzkDh5n7kocN0o57MeVeyxZRK0UDegGdNLIo13eYPfiycmLnNhaOrXKQ==

# -*- 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("ganttproject-*-silicon.dmg")[0])


def uninstall():
    remove_tree("/Applications/GanttProject.app")

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

def update_package():
    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    url_api = "https://api.github.com/repos/bardsoftware/ganttproject/releases/latest"
    # Getting latest version 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["name"].endswith(".dmg"):
            url_dl = download["browser_download_url"]
            version = download["browser_download_url"].split('-')[-2]
            break
    # Use of the binary name because the git repository does not return the last release
    #version = url_dl.split("ganttproject-")[-1].split(".dmg")[0]
    latest_bin = "ganttproject-%s-silicon.dmg" % version
    print("Latest %s version is: %s" % (control.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.set_software_version(version)
        control.save_control_to_wapt()
        print("Changing package version to: %s in WAPT\\control" % control.version)
    # Deleting outdated binaries
    remove_outdated_binaries(version)

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
cc805599c7e61b65be7d8886ff9583e2e9b85d8d41229b93228eb2b40e5ef17a : WAPT/control
d3842b5345c775bd107a1926011e14f2e55b0aba1c88b9656767fd4cd793da2a : WAPT/icon.png
ec40dc0bf04333b5b0830404534995bc3f480abf69849c0eb194251fc8637e49 : ganttproject-3.3.3312-silicon.dmg
c628d2648ac586f36465adc534a21fdb2e83efbc839f871e84619cb0ad02e27c : luti.json
7cdc146ff0cbed768f8fd0c5260cad3e071467684a06bad2d406d757c59bd514 : setup.py
b21c6f2b98a140211e9b285b087e51a5a8b46ae86da3363af6be1aeba35aa4ba : update_package.py