tis-freemind
1.0.1-1
FreeMind can create mind maps or map of ideas (mind map in English). These are diagrams that help organize ideas
4576 downloads

Description
- package : tis-freemind
- version : 1.0.1-1
- architecture : all
- categories :
- maintainer : Simon Fonteneau
- description : FreeMind can create mind maps or map of ideas (mind map in English). These are diagrams that help organize ideas
- locale :
- target_os : darwin
- min_wapt_version :
- sources :
- installed_size :
- impacted_process : FreeMind.exe
- description_fr : FreeMind peut créer des cartes mentales ou une carte d’idées (carte en anglais). Ce sont des diagrammes qui aident à organiser les idées
- description_pl : FreeMind może tworzyć mapy myśli lub mapę pomysłów (mapa myśli w języku angielskim). Są to diagramy, które pomagają organizować pomysły
- description_de : FreeMind kann Mind Maps oder Map of Ideas (Mind Map auf Englisch) erstellen. Dies sind Diagramme, die beim Organisieren von Ideen helfen
- description_es : FreeMind puede crear mapas mentales o mapas de ideas (mapa mental en inglés). Estos son diagramas que ayudan a organizar ideas.
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Joerg Mueller, Daniel Polansky, Petr Novak, Christian Foltin et.al.
- licence : GNU GPL V2+
- signature_date : 2021-12-20T11:57:20.457994
- Homepage : http://freemind.sourceforge.net/wiki/index.php/Main_Page
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import shutil
uninstallkey = []
def install():
print('installing freemind')
install_dmg('FreeMind_%s.dmg' % control.version.split('-')[0])
def uninstall():
shutil.rmtree('/Applications/FreeMind.app')
def update_package():
proxies = {}
if isfile(makepath(user_local_appdata(),'waptconsole','waptconsole.ini')):
proxywapt = inifile_readstring(makepath(user_local_appdata(),'waptconsole','waptconsole.ini'),'global','http_proxy')
if proxywapt :
proxies = {'http':proxywapt,'https':proxywapt}
import json
json_data = json.loads( wgets('https://sourceforge.net/projects/freemind/best_release.json',proxies=proxies))['platform_releases']['mac']
filename = json_data['filename'].split('/')[-1]
url = json_data['url'].split('?ts=')[0].replace('http://downloads.','https://deac-ams.dl.')
for exe in glob.glob('*.dmg'):
if exe != filename:
remove_file(exe)
if not isfile(filename):
wget(url,filename,proxies=proxies)
version = filename.split('_')[1].strip('.dmg')
control.version = '%s-0' %(version)
control.save_control_to_wapt()