[Inteproxy-commits] r4 - trunk
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Nov 1 11:49:30 CET 2006
Author: jan
Date: 2006-11-01 11:49:30 +0100 (Wed, 01 Nov 2006)
New Revision: 4
Added:
trunk/inteproxy.iss
trunk/setup.py
Modified:
trunk/ChangeLog
Log:
* setup.py: New. Setup rule for py2exe.
* inteproxy.iss: New. InnoSetup setup file for InteProxy.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-10-31 13:42:27 UTC (rev 3)
+++ trunk/ChangeLog 2006-11-01 10:49:30 UTC (rev 4)
@@ -1,3 +1,9 @@
+2006-11-01 Jan-Oliver Wagner <jan-oliver.wagner at intevation.de>
+
+ * setup.py: New. Setup rule for py2exe.
+
+ * inteproxy.iss: New. InnoSetup setup file for InteProxy.
+
2006-10-31 Jan-Oliver Wagner <jan-oliver.wagner at intevation.de>
* InteProxy.py (InteProxyHTTPRequestHandler.convert_url): Added mandatory
Added: trunk/inteproxy.iss
===================================================================
--- trunk/inteproxy.iss 2006-10-31 13:42:27 UTC (rev 3)
+++ trunk/inteproxy.iss 2006-11-01 10:49:30 UTC (rev 4)
@@ -0,0 +1,18 @@
+[Setup]
+AppName=InteProxy
+AppVerName=InteProxy SVN 20061101
+DefaultDirName={pf}\InteProxy
+DefaultGroupName=InteProxy
+Compression=lzma
+SolidCompression=yes
+OutputBaseFilename=InteProxy-SVN-20061101-setup
+OutputDir=.
+
+[Languages]
+Name: "de"; MessagesFile: "German-2-5.1.0.isl"
+
+[Files]
+Source: "dist\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs
+
+[Icons]
+Name: "{group}\InteProxy"; Filename: "{app}\InteProxy.exe"
Added: trunk/setup.py
===================================================================
--- trunk/setup.py 2006-10-31 13:42:27 UTC (rev 3)
+++ trunk/setup.py 2006-11-01 10:49:30 UTC (rev 4)
@@ -0,0 +1,20 @@
+#! /usr/bin/python
+# Copyright (C) 2006 by Intevation GmbH
+# Authors:
+# Jan-Oliver Wagner <jan-oliver.wagner at intevation.de>
+#
+# This program is free software under the GPL (>=v2)
+# Read the file COPYING coming with the software for details.
+
+"""The Setup rules for InteProxy
+
+Usage:
+
+python setup.py py2exe
+ This obviously makes only sense on a Windows platform.
+"""
+
+from distutils.core import setup
+import py2exe
+
+setup(console=['InteProxy.py'])
More information about the Inteproxy-commits
mailing list