tis-xming
6.9.0.31-1
Xming is a Windows porting of the open X window system of Unix, Linux and BSD systems. It allows to redirect the display to Windows of a graphical application running on a remote machine, under another system supported by X.org.
663 downloads

Description
- package : tis-xming
- version : 6.9.0.31-1
- architecture : all
- categories : Utilities, System and network
- maintainer : Simon FONTENEAU, Tranquil IT
- description : Xming is a Windows porting of the open X window system of Unix, Linux and BSD systems. It allows to redirect the display to Windows of a graphical application running on a remote machine, under another system supported by X.org.
- locale :
- target_os : windows
- min_wapt_version :
- sources : https://sourceforge.net/projects/xming/
- installed_size :
- impacted_process : Xming.exe
- description_fr : Xming est un portage sous Windows du système de fenêtrage X ouvert des systèmes Unix, Linux et BSD. Il permet ainsi de rediriger l'affichage vers Windows d'une application graphique tournant sur une machine distante, sous un autre système supporté par X.org.
- description_pl : Xming to portowanie w systemie Windows otwartego systemu okien X systemów Unix, Linux i BSD. Umożliwia przekierowanie wyświetlacza do systemu Windows aplikacji graficznej działającej na zdalnym komputerze, pod innym systemem obsługiwanym przez X.org.
- description_de : Xming ist eine Windows-Portierung des offenen X-Window-Systems von Unix-, Linux- und BSD-Systemen. Es ermöglicht die Umleitung der Anzeige einer grafischen Anwendung, die auf einem entfernten Computer läuft, auf Windows unter einem anderen von X.org unterstützten System.
- description_es : Xming es una adaptación a Windows del sistema abierto X window de los sistemas Unix, Linux y BSD. Permite redirigir la visualización a Windows de una aplicación gráfica que se ejecuta en una máquina remota, bajo otro sistema soportado por X.org.
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Colin Harrison
- licence : MIT License
- signature_date : 2021-12-20T12:41:05.027329
- Homepage : http://www.straightrunning.com/XmingNotes/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
def install():
print('installing Xming')
versionsoft = control['version'].split('-',1)[0]
versionsoftfile = versionsoft.replace('.','-')
install_exe_if_needed("Xming-%s-setup.exe" % versionsoftfile,'/VERYSILENT /SUPPRESSMSGBOXES /NORESTART',key='Xming_is1',min_version=versionsoft)
def update_package():
proxies = {}
if isfile(makepath(application_data(),'waptconsole','waptconsole.ini')):
proxywapt = inifile_readstring(makepath(user_local_appdata(),'waptconsole','waptconsole.ini'),'global','http_proxy')
if proxywapt :
proxies = {'http':proxywapt,'https':proxywapt}
import requests
for line in wgets('https://sourceforge.net/projects/xming/files/Xming/',proxies=proxies,timeout=30).splitlines() :
if ' <tr title="' in line:
version = line.replace(' <tr title="','').replace('" class="folder ">','')
versionsoftfile = version.replace('.','-')
break
exes = glob.glob('*.exe')
for fn in exes:
if fn != 'Xming-' + versionsoftfile + '-setup.exe':
remove_file(fn)
if not isfile('Xming-' + versionsoftfile + '-setup.exe'):
wget('https://sourceforge.net/projects/xming/files/Xming/%s/Xming-%s-setup.exe/download' % (version,versionsoftfile),'Xming-' + versionsoftfile + '-setup.exe',proxies=proxies,connect_timeout=30)
else:
print('Already up to date, skipped')
pe = PackageEntry()
pe.load_control_from_wapt(os.getcwd())
pe.version = version + '-0'
pe.save_control_to_wapt(os.getcwd())
if __name__ == '__main__':
update_package()