[Inteproxy-commits] r101 - in trunk: . doc

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri May 18 13:20:11 CEST 2007


Author: jan
Date: 2007-05-18 13:20:11 +0200 (Fri, 18 May 2007)
New Revision: 101

Modified:
   trunk/ChangeLog
   trunk/HowTo-Release.txt
   trunk/doc/InteProxy-de.odt
   trunk/doc/InteProxy-en.odt
   trunk/setup.py
Log:
Release 0.2.0.

* HowTo-Release.txt: Various additional steps for
Windows Installer creation.

* setup.py: extend setup rules to consider some Windows specific
issues.

*  doc/InteProxy-de.odt, doc/InteProxy-en.odt: Finally the
real date of release.


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-05-18 10:58:18 UTC (rev 100)
+++ trunk/ChangeLog	2007-05-18 11:20:11 UTC (rev 101)
@@ -1,3 +1,16 @@
+2007-05-18  Jan-Oliver Wagner  <jan-oliver.wagner at intevation.de>
+
+	Release 0.2.0.
+
+	* HowTo-Release.txt: Various additional steps for
+	Windows Installer creation.
+
+	* setup.py: extend setup rules to consider some Windows specific
+	issues.
+
+	*  doc/InteProxy-de.odt, doc/InteProxy-en.odt: Finally the
+	real date of release.
+
 2007-05-18  Bernhard Herzog  <bh at intevation.de>
 
 	* inteproxy/main.py (setup_language): New function to set locale

Modified: trunk/HowTo-Release.txt
===================================================================
--- trunk/HowTo-Release.txt	2007-05-18 10:58:18 UTC (rev 100)
+++ trunk/HowTo-Release.txt	2007-05-18 11:20:11 UTC (rev 101)
@@ -45,6 +45,7 @@
 2. cd InteProxy-0.2.0
    python setup.py py2exe
      (You can ignore the warning about gdk and ltihooks)
+   copy demo.cfg dist\inteproxy.cfg
    cd dist
    mkdir doc
 
@@ -54,13 +55,16 @@
    only the locales you need for GTK+. Same thing for
    share\themes
 
-4. Copy InteProxy-de-0.2.0.pdf and InteProxy-en-0.2.0.pdf into this
+4. Create the translation files "inteproxy.mo" (on Linux) and
+   place them into dist\share\locale\<lang>\LC_MESSAGES
+
+5. Copy InteProxy-de-0.2.0.pdf and InteProxy-en-0.2.0.pdf into this
    newly created directory "doc".
 
-5. Copy "_elementpath.pyc" to the directory "dist"
+6. Copy "_elementpath.pyc" to the directory "dist"
 
-4. Run InnoSetup with inteproxy.iss, once for "de" and once for "en"
+7. Run InnoSetup with inteproxy.iss, once for "de" and once for "en"
    (i.e. (un)comment the respective two lines)
 
-5. Add resulting InteProxy-0.2.0-en-setup.exe and InteProxy-0.2.0-de-setup.exe
+8. Add resulting InteProxy-0.2.0-en-setup.exe and InteProxy-0.2.0-de-setup.exe
    to Release at GForge.

Modified: trunk/doc/InteProxy-de.odt
===================================================================
(Binary files differ)

Modified: trunk/doc/InteProxy-en.odt
===================================================================
(Binary files differ)

Modified: trunk/setup.py
===================================================================
--- trunk/setup.py	2007-05-18 10:58:18 UTC (rev 100)
+++ trunk/setup.py	2007-05-18 11:20:11 UTC (rev 101)
@@ -17,4 +17,18 @@
 from distutils.core import setup
 import py2exe
 
-setup(console=['InteProxy.py'])
+setup(console=['InteProxy.py'],
+	windows = [
+		{
+			'script': 'InteProxy.py',
+			#'icon_resources': [(1, "inteproxy.ico")],
+		}
+		],
+	options= {
+	"py2exe": {
+		"includes": "cairo, pango, pangocairo, atk, gobject"
+		}
+	},
+	data_files=[("share/images", ["share/images/InteProxy-icon.png",
+				      "share/images/InteProxy-logo.png"])],
+	)



More information about the Inteproxy-commits mailing list