[gnue] r9707 - trunk/gnue-forms/packaging/win32
[email protected] Tue, 12 Jun 2007 07:49:01 -0500 (CDT)
Newsgroups
gmane.comp.cms.gnue.cvs
Message-ID
<[email protected] >
Author: johannes
Date: 2007-06-12 07:49:01 -0500 (Tue, 12 Jun 2007)
New Revision: 9707
Removed:
trunk/gnue-forms/packaging/win32/gnue.url
Modified:
trunk/gnue-forms/packaging/win32/setup.cmd
trunk/gnue-forms/packaging/win32/setup.py
Log:
Removed obsolete stuff from py2exe's setup.py
Deleted: trunk/gnue-forms/packaging/win32/gnue.url
===================================================================
--- trunk/gnue-forms/packaging/win32/gnue.url 2007-06-12 12:33:26 UTC (rev 9706)
+++ trunk/gnue-forms/packaging/win32/gnue.url 2007-06-12 12:49:01 UTC (rev 9707)
@@ -1,2 +0,0 @@
-[InternetShortcut]
-URL=http://www.gnuenterprise.org
Modified: trunk/gnue-forms/packaging/win32/setup.cmd
===================================================================
--- trunk/gnue-forms/packaging/win32/setup.cmd 2007-06-12 12:33:26 UTC (rev 9706)
+++ trunk/gnue-forms/packaging/win32/setup.cmd 2007-06-12 12:49:01 UTC (rev 9707)
@@ -18,9 +18,8 @@
MKDIR %GNUE_PATH%
MKDIR %GNUE_PATH%\Scripts
-COPY gnue.url %GNUE_PATH%
COPY setup.py %GNUE_PATH%\Scripts
-COPY *.ico %GNUE_PATH%\Scripts
+COPY gnue-32x32.ico %GNUE_PATH%\Scripts
COPY gnue-forms.iss %GNUE_PATH%\Scripts
REM ---------------------------------------------------------------------------
Modified: trunk/gnue-forms/packaging/win32/setup.py
===================================================================
--- trunk/gnue-forms/packaging/win32/setup.py 2007-06-12 12:33:26 UTC (rev 9706)
+++ trunk/gnue-forms/packaging/win32/setup.py 2007-06-12 12:49:01 UTC (rev 9707)
@@ -106,36 +106,13 @@
"icon_resources": [(1, "gnue-32x32.ico")],
"other_resources": [(RT_MANIFEST, 1, manifest)]}],
options = {"py2exe":
- {"typelibs": [('{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}',0,1,1)],
- "packages": ["encodings",
- "mx",
- "_xmlplus"],
- "includes": getimports(os.path.join(sys.prefix, 'Lib')) +
- ["libxml2",
- "libxslt",
- "win32gui",
- "win32ui",
- "win32api",
- "win32con",
- "afxres",
- "commctrl",
- "win32clipboard",
- "win32print",
- "win32com.client",
- "pywin.mfc.activex",
- "pywin.mfc.window",
- "ImageWin",
- "BmpImagePlugin",
- "GifImagePlugin",
- "JpegImagePlugin",
- "PpmImagePlugin",
- "PngImagePlugin",
- "TiffImagePlugin"],
+ # TODO: Check wether the following typelibrary is needed or not
+ {"typelibs": [('{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}',0,1,1)]
"dll_excludes": ["msvcp60.dll",
"tcl84.dll",
"tk84.dll",
"oci.dll"],
- "excludes": ["gnue", "wx", "PIL"]
+ "excludes": ["gnue.forms", "wx", "mx", "PIL"]
}
}
)