The branch, master has been updated
via cd90c185ad996237d8d9579d41ed9679cd58261d (commit)
from b51e10faab3657f08ef900b26a6c27ab97db72d5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit cd90c185ad996237d8d9579d41ed9679cd58261d
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 22:07:28 2012 +0200
add basic bbfreeze setup
-----------------------------------------------------------------------
Summary of changes:
bb_setup.py | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
create mode 100644 bb_setup.py
The diff of changes is:
diff --git a/bb_setup.py b/bb_setup.py
new file mode 100644
index 0000000..8dfa7d3
--- /dev/null
+++ b/bb_setup.py
@@ -0,0 +1,15 @@
+# bb_setup2.py
+from bbfreeze import Freezer
+
+includes = []
+excludes = ['_gtkagg', '_tkagg', 'bsddb', 'curses', 'email', 'pywin.debugger',
+ 'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
+ 'Tkconstants', 'Tkinter']
+
+bbFreeze_Class = Freezer('dist', includes=includes, excludes=excludes)
+
+bbFreeze_Class.addScript("pyhoca-gui", gui_only=True)
+
+bbFreeze_Class.use_compression = 0
+bbFreeze_Class.include_py = True
+bbFreeze_Class()
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via b51e10faab3657f08ef900b26a6c27ab97db72d5 (commit)
from 65bfa51a7d23aeba4c6517d6a5b11dfa5a8ecdad (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b51e10faab3657f08ef900b26a6c27ab97db72d5
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 13:20:07 2012 +0200
fix stdout and stderr for Windows
-----------------------------------------------------------------------
Summary of changes:
pyhoca-gui | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/pyhoca-gui b/pyhoca-gui
index b053624..007ffae 100755
--- a/pyhoca-gui
+++ b/pyhoca-gui
@@ -60,8 +60,8 @@ if app.startswith('./') or os.path.dirname(PROG_NAME).endswith('trunk'):
print '### PyHoca-GUI running in development mode ###'
else:
if _X2GOCLIENT_OS == 'Windows':
- sys.stdout = open(os.path.join(os.environ['TEMP'], '%s_stdout.log' % PROG_NAME), 'w')
- sys.stderr = open(os.path.join(os.environ['TEMP'], '%s_stderr.log' % PROG_NAME), 'w')
+ sys.stdout = os.path.join(os.environ[u'appdata'], PROG_NAME)
+ sys.stderr = os.path.join(os.environ[u'appdata'], PROG_NAME)
from pyhoca.wxgui.basepath import locale_basepath
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via 65bfa51a7d23aeba4c6517d6a5b11dfa5a8ecdad (commit)
from 37ad86afa0b4aba68d66e2399d364d7c0987d5ba (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 65bfa51a7d23aeba4c6517d6a5b11dfa5a8ecdad
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 13:05:32 2012 +0200
improve file bundling
-----------------------------------------------------------------------
Summary of changes:
setup.py | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index 044c2a0..6b8234e 100755
--- a/setup.py
+++ b/setup.py
@@ -42,19 +42,21 @@ import pyhoca.wxgui
cmd_class = {}
data_files = []
-def filelist(basepath):
- fileList = []
- for root, subFolders, files in os.walk(basepath):
- for file in files:
- fileList.append(os.path.join(root,file))
- return fileList
+def datafilelist(installbase, sourcebase):
+ datafileList = []
+ for root, subFolders, files in os.walk(sourcebase):
+ fileList = []
+ for f in files:
+ fileList.append(os.path.join(root, f))
+ datafileList.append((root.replace(sourcebase, installbase), fileList))
+ return datafileList
if platform.system() == 'Windows':
# building from trunk
dll_data_files = [("Microsoft.VC90.CRT", glob(r'..\\pyhoca-contrib\\mswin\\ms-vc-runtime\\*.*'))]
nxproxy_files = [("nxproxy", glob(r'..\\pyhoca-contrib\\mswin\\nxproxy-mswin\\nxproxy-3.0.4-2\\*.*'))]
pulseaudio_files = [("pulseaudio", glob(r'..\\pyhoca-contrib\\mswin\\pulseaudio-mswin\\pulseaudio-1.0dev-1090.4\\*.*'))]
- xserver_files = [("vcxsrv", filelist(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0'))]
+ xserver_files = [datafilelist('vcxsrv', r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0'))]
icon_files = [
("icons\\PyHoca\\16x16", glob(r'icons\\PyHoca\\16x16\\*.*')),
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via a833d370a341939f525e798412092c290bc8368c (commit)
from 409d9911a685e084e3430bdb312ad174e6a8802a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a833d370a341939f525e798412092c290bc8368c
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:48:16 2012 +0200
fix path of NSIS includes
-----------------------------------------------------------------------
Summary of changes:
win32-dist/include/languages.nsi | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/win32-dist/include/languages.nsi b/win32-dist/include/languages.nsi
index 4836453..25b7510 100644
--- a/win32-dist/include/languages.nsi
+++ b/win32-dist/include/languages.nsi
@@ -3,7 +3,7 @@
;--------------------------------
-!include ${NSISDIR}\Include\LogicLib.nsh
+!include ${PROGRAMFILES}\NSIS\Include\LogicLib.nsh
var LC_MESSAGES
hooks/post-receive
--
pyhoca-contrib.git (PyHoca-GUI / Python X2Go contributive Software)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-contrib.git" (PyHoca-GUI / Python X2Go contributive Software).
[View Less]
The branch, master has been updated
via 409d9911a685e084e3430bdb312ad174e6a8802a (commit)
from 78a8e6f9060871845331e27fe562159f91026961 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 409d9911a685e084e3430bdb312ad174e6a8802a
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:39:41 2012 +0200
add packaging for PyHoca-GUI_0.1.2.0
-----------------------------------------------------------------------
Summary of changes:
...Hoca-GUI_0.1.0.8.nsi => PyHoca-GUI_0.1.2.0.nsi} | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
copy win32-dist/{PyHoca-GUI_0.1.0.8.nsi => PyHoca-GUI_0.1.2.0.nsi} (99%)
The diff of changes is:
diff --git a/win32-dist/PyHoca-GUI_0.1.0.8.nsi b/win32-dist/PyHoca-GUI_0.1.2.0.nsi
similarity index 99%
copy from win32-dist/PyHoca-GUI_0.1.0.8.nsi
copy to win32-dist/PyHoca-GUI_0.1.2.0.nsi
index 361de38..75dd990 100644
--- a/win32-dist/PyHoca-GUI_0.1.0.8.nsi
+++ b/win32-dist/PyHoca-GUI_0.1.2.0.nsi
@@ -1,7 +1,7 @@
; PyHoca-GUI.nsi
;
-!define VERSION "0.1.0.8"
+!define VERSION "0.1.2.0"
;--------------------------------
hooks/post-receive
--
pyhoca-contrib.git (PyHoca-GUI / Python X2Go contributive Software)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-contrib.git" (PyHoca-GUI / Python X2Go contributive Software).
[View Less]
The branch, master has been updated
via 37ad86afa0b4aba68d66e2399d364d7c0987d5ba (commit)
from 3d5158efbe73b01cc98483e82ce87949abfcf1eb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 37ad86afa0b4aba68d66e2399d364d7c0987d5ba
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:37:35 2012 +0200
minor code fix
-----------------------------------------------------------------------
Summary of changes:
setup.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index ebf8603..044c2a0 100755
--- a/setup.py
+++ b/setup.py
@@ -43,6 +43,7 @@ cmd_class = {}
data_files = []
def filelist(basepath):
+ fileList = []
for root, subFolders, files in os.walk(basepath):
for file in files:
fileList.append(os.path.join(root,file))
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via 3d5158efbe73b01cc98483e82ce87949abfcf1eb (commit)
from 153a57fe55d6e1fd5583ae6b1a26e2fa3280e8f2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3d5158efbe73b01cc98483e82ce87949abfcf1eb
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:35:49 2012 +0200
render our own filelist (instead of using glob)
-----------------------------------------------------------------------
Summary of changes:
setup.py | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index 0092b3e..ebf8603 100755
--- a/setup.py
+++ b/setup.py
@@ -42,17 +42,18 @@ import pyhoca.wxgui
cmd_class = {}
data_files = []
+def filelist(basepath):
+ for root, subFolders, files in os.walk(basepath):
+ for file in files:
+ fileList.append(os.path.join(root,file))
+ return fileList
+
if platform.system() == 'Windows':
# building from trunk
dll_data_files = [("Microsoft.VC90.CRT", glob(r'..\\pyhoca-contrib\\mswin\\ms-vc-runtime\\*.*'))]
nxproxy_files = [("nxproxy", glob(r'..\\pyhoca-contrib\\mswin\\nxproxy-mswin\\nxproxy-3.0.4-2\\*.*'))]
pulseaudio_files = [("pulseaudio", glob(r'..\\pyhoca-contrib\\mswin\\pulseaudio-mswin\\pulseaudio-1.0dev-1090.4\\*.*'))]
- xserver_files = [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\*'))] + \
- [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\.Xdefaults'))] + \
- [("vcxsrv\\locale", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\locale\\*'))] + \
- [("vcxsrv\\locale", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\locale\\*\\*'))] + \
- [("vcxsrv\\xkbdata", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\xkbdata\\*'))] + \
- [("vcxsrv\\xkbdata", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\xkbdata\\*\\*'))]
+ xserver_files = [("vcxsrv", filelist(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0'))]
icon_files = [
("icons\\PyHoca\\16x16", glob(r'icons\\PyHoca\\16x16\\*.*')),
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via 153a57fe55d6e1fd5583ae6b1a26e2fa3280e8f2 (commit)
from 63cb99f90198e4f2d6dc74a4e39a0454d1a5b05e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 153a57fe55d6e1fd5583ae6b1a26e2fa3280e8f2
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:28:00 2012 +0200
more fixes for xserver bundling
-----------------------------------------------------------------------
Summary of changes:
setup.py | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index 0d53a9b..0092b3e 100755
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,11 @@ if platform.system() == 'Windows':
nxproxy_files = [("nxproxy", glob(r'..\\pyhoca-contrib\\mswin\\nxproxy-mswin\\nxproxy-3.0.4-2\\*.*'))]
pulseaudio_files = [("pulseaudio", glob(r'..\\pyhoca-contrib\\mswin\\pulseaudio-mswin\\pulseaudio-1.0dev-1090.4\\*.*'))]
xserver_files = [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\*'))] + \
- [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\.Xdefaults'))]
+ [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\.Xdefaults'))] + \
+ [("vcxsrv\\locale", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\locale\\*'))] + \
+ [("vcxsrv\\locale", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\locale\\*\\*'))] + \
+ [("vcxsrv\\xkbdata", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\xkbdata\\*'))] + \
+ [("vcxsrv\\xkbdata", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\xkbdata\\*\\*'))]
icon_files = [
("icons\\PyHoca\\16x16", glob(r'icons\\PyHoca\\16x16\\*.*')),
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via 63cb99f90198e4f2d6dc74a4e39a0454d1a5b05e (commit)
from 73911fefada2e340b0c8444d7f2632f6f44f8ac0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 63cb99f90198e4f2d6dc74a4e39a0454d1a5b05e
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:12:04 2012 +0200
typo fix
-----------------------------------------------------------------------
Summary of changes:
setup.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index 15ea1a9..0d53a9b 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ if platform.system() == 'Windows':
dll_data_files = [("Microsoft.VC90.CRT", glob(r'..\\pyhoca-contrib\\mswin\\ms-vc-runtime\\*.*'))]
nxproxy_files = [("nxproxy", glob(r'..\\pyhoca-contrib\\mswin\\nxproxy-mswin\\nxproxy-3.0.4-2\\*.*'))]
pulseaudio_files = [("pulseaudio", glob(r'..\\pyhoca-contrib\\mswin\\pulseaudio-mswin\\pulseaudio-1.0dev-1090.4\\*.*'))]
- xserver_files = [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\*'))] +
+ xserver_files = [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\*'))] + \
[("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\.Xdefaults'))]
icon_files = [
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, master has been updated
via 73911fefada2e340b0c8444d7f2632f6f44f8ac0 (commit)
from 062d9b0951363b32bb66a254d4d296542d950e9c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 73911fefada2e340b0c8444d7f2632f6f44f8ac0
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Thu Mar 29 12:11:26 2012 +0200
correct file list for VcXsrv bundling
-----------------------------------------------------------------------
Summary of changes:
setup.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index be8a32d..15ea1a9 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,8 @@ if platform.system() == 'Windows':
dll_data_files = [("Microsoft.VC90.CRT", glob(r'..\\pyhoca-contrib\\mswin\\ms-vc-runtime\\*.*'))]
nxproxy_files = [("nxproxy", glob(r'..\\pyhoca-contrib\\mswin\\nxproxy-mswin\\nxproxy-3.0.4-2\\*.*'))]
pulseaudio_files = [("pulseaudio", glob(r'..\\pyhoca-contrib\\mswin\\pulseaudio-mswin\\pulseaudio-1.0dev-1090.4\\*.*'))]
- xserver_files = [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\*.*'))]
+ xserver_files = [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\*'))] +
+ [("vcxsrv", glob(r'..\\pyhoca-contrib\\mswin\\vcxsrv-mswin\\vcxsrv-1.11.4.0\\.Xdefaults'))]
icon_files = [
("icons\\PyHoca\\16x16", glob(r'icons\\PyHoca\\16x16\\*.*')),
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]