commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r8643 - trunk/gnue-common/packaging/win32


From: johannes
Subject: [gnue] r8643 - trunk/gnue-common/packaging/win32
Date: Wed, 30 Aug 2006 04:48:30 -0500 (CDT)

Author: johannes
Date: 2006-08-30 04:48:29 -0500 (Wed, 30 Aug 2006)
New Revision: 8643

Modified:
   trunk/gnue-common/packaging/win32/README
   trunk/gnue-common/packaging/win32/setup.py
Log:
First set of improvements


Modified: trunk/gnue-common/packaging/win32/README
===================================================================
--- trunk/gnue-common/packaging/win32/README    2006-08-29 14:45:53 UTC (rev 
8642)
+++ trunk/gnue-common/packaging/win32/README    2006-08-30 09:48:29 UTC (rev 
8643)
@@ -1,4 +1,4 @@
-For all software install i use default locations, like c:\python23.
+For all software install i use default locations, like c:\python23.
 The setup.cmd uses c:\gnue as default dir.
 
 Install gnue as described on wiki:
@@ -19,57 +19,57 @@
 
 In gnue.conf remove "#" before DefaultUI = win32
 
-Make sure to add the new release- and versionnumbers to the GNUe*.iss files !
-
-Run inno with GNUe*.iss
-
-
-----------------------------------------------------------------------------
-Links for GNUe-Runtime-Environment:
-
-http://python.org
-
-https://sourceforge.net/projects/pywin32/
-
-http://wxpython.org/
-
-http://www.egenix.com/files/python/eGenix-mx-Extensions.html#Download-mxBASE
-
-http://adodbapi.sourceforge.net/
-
-http://sourceforge.net/projects/mysql-python
-
-http://pypgsql.sourceforge.net/
-
-http://stickpeople.com/projects/python/win-psycopg/
-
-http://kinterbasdb.sourceforge.net/
-
-http://www.mysql.com/products/maxdb/sapdbapi.html
-
-http://sourceforge.net/projects/reportlab/
-
-http://users.skynet.be/sbi/libxml-python/
-
-http://www.pythonware.com/products/pil/
-
-http://pyxml.sourceforge.net
-
-http://initd.org/tracker/pysqlite
-
----------------------------------------
-Links for packaging:
-
-http://sourceforge.net/projects/py2exe/
-
-http://www.jrsoftware.org/isinfo.php
-
-
----------------------------------------
-Other links (for future):
-
-http://sourceforge.net/projects/cx-oracle/
-
-http://pymssql.sourceforge.net/
-
-http://www.pcpm.ucl.ac.be/~gustin/win32_ports/pygtk.html
+Make sure to add the new release- and versionnumbers to the GNUe*.iss files !
+
+Run inno with GNUe*.iss
+
+
+----------------------------------------------------------------------------
+Links for GNUe-Runtime-Environment:
+
+http://python.org
+
+https://sourceforge.net/projects/pywin32/
+
+http://wxpython.org/
+
+http://www.egenix.com/files/python/eGenix-mx-Extensions.html#Download-mxBASE
+
+http://adodbapi.sourceforge.net/
+
+http://sourceforge.net/projects/mysql-python
+
+http://pypgsql.sourceforge.net/
+
+http://stickpeople.com/projects/python/win-psycopg/
+
+http://kinterbasdb.sourceforge.net/
+
+http://www.mysql.com/products/maxdb/sapdbapi.html
+
+http://sourceforge.net/projects/reportlab/
+
+http://users.skynet.be/sbi/libxml-python/
+
+http://www.pythonware.com/products/pil/
+
+http://pyxml.sourceforge.net
+
+http://initd.org/tracker/pysqlite
+
+---------------------------------------
+Links for packaging:
+
+http://sourceforge.net/projects/py2exe/
+
+http://www.jrsoftware.org/isinfo.php
+
+
+---------------------------------------
+Other links (for future):
+
+http://sourceforge.net/projects/cx-oracle/
+
+http://pymssql.sourceforge.net/
+
+http://www.pcpm.ucl.ac.be/~gustin/win32_ports/pygtk.html

Modified: trunk/gnue-common/packaging/win32/setup.py
===================================================================
--- trunk/gnue-common/packaging/win32/setup.py  2006-08-29 14:45:53 UTC (rev 
8642)
+++ trunk/gnue-common/packaging/win32/setup.py  2006-08-30 09:48:29 UTC (rev 
8643)
@@ -5,7 +5,7 @@
 import os
 import sys
 
-import py2exe 
+import py2exe
 from distutils.core import setup
 
 # The manifest will be inserted as resource into .exe files.  This
@@ -39,25 +39,24 @@
 
 
 scripts = \
-  ["gnue-appserver",
-   {"script" : "gnue-navigator", "other_resources" : [(RT_MANIFEST, 1, 
manifest)]},
+  [{"script" : "gnue-navigator", "other_resources" : [(RT_MANIFEST, 1, 
manifest)]},
    {"script" : "gnue-designer",  "other_resources" : [(RT_MANIFEST, 1, 
manifest)]},
-   {"script" : "gnue-forms",     "other_resources" : [(RT_MANIFEST, 1, 
manifest)]},
-   "gnue-gsdgen",
-   "gnue-readgcd",
-   "gnue-readgld",
-   "gnue-reports",
-   "gnue-reports-server",
-   "gnue-schema"]
+   {"script" : "gnue-forms",     "other_resources" : [(RT_MANIFEST, 1, 
manifest)]}]
 
-console = []
+console = ["gnue-appserver",
+           "gnue-gsdgen",
+           "gnue-readgcd",
+           "gnue-readgld",
+           "gnue-reports",
+           "gnue-reports-server",
+           "gnue-schema"]
 windows = scripts
 
 # If run with arg "-k", build console apps.
 if len(sys.argv) == 4:
   if sys.argv[3] == "-k":
     print 'Building console apps.'
-    console = scripts
+    console.extend(scripts)
     windows = []
   del sys.argv[3]
 
@@ -74,7 +73,6 @@
     importlist.append(entry[:entry.find('.')])
 
   return importlist
-
 standardlib = getimports(os.path.join(sys.prefix,'Lib'))
 
 
@@ -127,4 +125,4 @@
                                        "tcl84.dll",
                                        "tk84.dll",
                                        "oci.dll"],
-                      "excludes": ["gnue"]}}) 
+                      "excludes": ["gnue"]}})





reply via email to

[Prev in Thread] Current Thread [Next in Thread]