tis-ganttproject
2.8.11-14
GanttProject is GPL-licensed (free software) Java based, project management software
3804 downloads

Description
- package : tis-ganttproject
- version : 2.8.11-14
- architecture : all
- categories : Office
- maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
- description : GanttProject is GPL-licensed (free software) Java based, project management software
- locale : all
- target_os : windows
- min_os_version : 5.1
- max_os_version :
- min_wapt_version : 1.7
- sources : https://www.ganttproject.biz/download
- installed_size :
- impacted_process : ganttproject
- description_fr : GanttProject est un logiciel libre de gestion de projet écrit en Java
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Dmitry Barashev
- licence : GPL
- signature_date : 2020-11-26T15:12:44.740361
- Homepage : https://www.ganttproject.biz/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
import json
uninstallkey = []
# Defining variables
bin_name_string = 'ganttproject-%s.exe'
silent_args = '/S'
app_uninstallkey = 'GanttProject'
def install():
# Initializing variables
package_version = control.version.split('-',1)[0]
bin_name = bin_name_string % package_version
app_version_path = makepath(programfiles32,'GanttProject-%s.%s' % (package_version.split('.')[0],package_version.split('.')[1]),'plugins','VERSION')
def get_app_version(version):
if isfile(app_version_path):
return open(app_version_path, 'r').read()
else:
return '0.0.0'
# Installing the package
print('Installing: %s' % bin_name)
install_exe_if_needed(bin_name,
silentflags=silent_args,
key=app_uninstallkey,
min_version=package_version,
get_version=get_app_version)
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = 'bardsoftware/ganttproject'
url_api = 'https://api.github.com/repos/%s/releases/latest' % git_repo
bin_end = bin_name_string.split('.')[-1]
# Getting latest version from official sources
print('API used is: ' + url_api)
json_load = json.loads(wgets(url_api,proxies=proxies))
for download in json_load['assets']:
if download['name'].endswith(bin_end):
url_dl = download['browser_download_url']
break
version = json_load['tag_name'].split('-')[-1]
latest_bin = bin_name_string % version
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,int(control.version.split('-')[-1])+1)
control.save_control_to_wapt()
print('Changing package version to: %s in WAPT\\control' % control.version)
# Deleting outdated binaries
remove_outdated_binaries(version)
def get_proxies():
if platform.python_version_tuple()[0] == '3':
from urllib.request import getproxies
else:
from urllib import getproxies
return getproxies()
def get_proxies_from_wapt_console():
proxies = {}
if platform.system() == 'Windows':
waptconsole_ini_path = makepath(user_local_appdata(), 'waptconsole', 'waptconsole.ini')
else:
waptconsole_ini_path = makepath(user_home_directory(), '.config', 'waptconsole', 'waptconsole.ini')
if isfile(waptconsole_ini_path):
proxy_wapt = inifile_readstring(waptconsole_ini_path, 'global', 'http_proxy')
if proxy_wapt:
proxies = {'http': proxy_wapt, 'https': proxy_wapt}
return proxies
def get_version_from_binary(filename):
if filename.endswith('.msi'):
return get_msi_properties(filename)['ProductVersion']
else:
return get_file_properties(filename)['ProductVersion']
def remove_outdated_binaries(version, list_extensions=['exe','msi','deb','rpm','dmg','pkg'], list_filename_contain=None):
if type(list_extensions) != list:
list_extensions = [list_extensions]
if list_filename_contain:
if type(list_filename_contain) != list:
list_filename_contain = [list_filename_contain]
list_extensions = ['.' + ext for ext in list_extensions if ext[0] != '.']
for file_ext in list_extensions:
for bin_in_dir in glob.glob('*%s' % file_ext):
if not version in bin_in_dir:
remove_file(bin_in_dir)
if list_filename_contain:
for filename_contain in list_filename_contain:
if not filename_contain in bin_in_dir:
remove_file(bin_in_dir)
def bs_find_all(url, element, attribute=None, value=None, headers=None, proxies=None, features='html.parser', **kwargs):
""""You may need to use a header for some websites. For example: headers={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0'}
"""
import requests
page = requests.get(url, proxies=proxies, headers=headers, **kwargs).text
try:
import bs4 as BeautifulSoup
soup = BeautifulSoup.BeautifulSoup(page, features=features)
except:
import BeautifulSoup
soup = BeautifulSoup.BeautifulSoup(page)
if value:
return soup.findAll(element,{attribute:value})
else:
return soup.findAll(element)
Changelog
Changelog software url : https://github.com/bardsoftware/ganttproject/releases
No changelog
[["ganttproject-2.8.11.exe","50d325732bbaafde312ae27e99bca50a1a82a1afe19e5765640c59800e6a2ce2"],["setup.py","c21022de241ad6cfc1435e1fecf0412ffbb5e16eb44c7c65a8f250d8ec22d2f7"],["WAPT/icon.png","15a9d984120037427561572c3b1856e57dff76845e80c9fb5012772ddac5b838"],["WAPT/certificate.crt","a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf"],["WAPT/control","158d9f7b71108f3524cee6a2aa520c8b69995be1dc4853e4cf64e7ce2011180f"]]