r2626 - in packages/trunk/renpy/debian: . patches
Miriam Ruiz
baby-guest at alioth.debian.org
Tue May 1 19:56:41 UTC 2007
Author: baby-guest
Date: 2007-05-01 19:56:40 +0000 (Tue, 01 May 2007)
New Revision: 2626
Modified:
packages/trunk/renpy/debian/changelog
packages/trunk/renpy/debian/patches/02_traceback.patch
packages/trunk/renpy/debian/rules
Log:
Updates to version 6.2.0
Modified: packages/trunk/renpy/debian/changelog
===================================================================
--- packages/trunk/renpy/debian/changelog 2007-05-01 14:49:07 UTC (rev 2625)
+++ packages/trunk/renpy/debian/changelog 2007-05-01 19:56:40 UTC (rev 2626)
@@ -1,6 +1,12 @@
+renpy (6.2.0.ds1-1) unstable; urgency=low
+
+ * New Upstream Release. First upload to Debian archive.
+
+ -- Miriam Ruiz <little_miry at yahoo.es> Tue, 01 May 2007 21:40:44 +0200
+
renpy (5.6.4.ds1-1) unstable; urgency=low
- * New Upstream Release. First upload to Debian archive.
+ * New Upstream Release.
[ Gonéri Le Bouder ]
* call dh_desktop to run update-desktop-database
Modified: packages/trunk/renpy/debian/patches/02_traceback.patch
===================================================================
--- packages/trunk/renpy/debian/patches/02_traceback.patch 2007-05-01 14:49:07 UTC (rev 2625)
+++ packages/trunk/renpy/debian/patches/02_traceback.patch 2007-05-01 19:56:40 UTC (rev 2626)
@@ -1,20 +1,36 @@
---- renpy-5.6.2.orig/renpy/bootstrap.py
-+++ renpy-5.6.2/renpy/bootstrap.py
-@@ -189,10 +189,25 @@
- print
- print renpy.game.exception_info
+diff -ruN renpy-6.2.0.orig/renpy/bootstrap.py renpy-6.2.0/renpy/bootstrap.py
+--- renpy-6.2.0.orig/renpy/bootstrap.py 2007-04-21 06:29:31.000000000 +0200
++++ renpy-6.2.0/renpy/bootstrap.py 2007-05-01 21:54:27.000000000 +0200
+@@ -275,10 +275,24 @@
+ print renpy.game.exception_info
+ report_tb(sys.stdout, tb)
+
++ try:
++ if not os.path.isdir(os.path.expanduser("~/.renpy")):
++ os.makedirs(os.path.expanduser("~/.renpy"))
++ except:
++ pass
++
+ # Inside of the file, which may not be openable.
+ try:
-+
+- f = file("traceback.txt", "w")
++ tbdir = renpy.config.savedir
++ if tbdir[-1] == '/':
++ tbdir = tbdir[:-1]
++ tbdir = os.path.dirname(tbdir) + "/"
+ try:
-+ if not os.path.isdir(os.path.expanduser("~/.renpy")):
-+ os.makedirs(os.path.expanduser("~/.renpy"))
++ os.makedirs(tbdir)
+ except:
+ pass
-+
- # Inside of the file, which may not be openable.
++ f = file(tbdir + "traceback.txt", "w")
+
+ f.write(codecs.BOM_UTF8)
+
+@@ -310,10 +324,18 @@
+ f.close()
+
try:
-
-- f = file("traceback.txt", "wU")
+ tbdir = renpy.config.savedir
+ if tbdir[-1] == '/':
+ tbdir = tbdir[:-1]
@@ -23,28 +39,12 @@
+ os.makedirs(tbdir)
+ except:
+ pass
-+ f = file(tbdir + "traceback.txt", "wU")
+ if renpy.config.editor:
+- renpy.exports.launch_editor([ 'traceback.txt' ], 1)
++ renpy.exports.launch_editor([ tbdir + "traceback.txt" ], 1)
+ else:
+- os.startfile('traceback.txt')
++ os.startfile(tbdir + "traceback.txt")
+ except:
+ pass
- f.write(codecs.BOM_UTF8)
-
-@@ -223,10 +238,18 @@
- f.close()
-
- try:
-+ tbdir = renpy.config.savedir
-+ if tbdir[-1] == '/':
-+ tbdir = tbdir[:-1]
-+ tbdir = os.path.dirname(tbdir) + "/"
-+ try:
-+ os.makedirs(tbdir)
-+ except:
-+ pass
- if renpy.config.editor:
-- renpy.exports.launch_editor([ 'traceback.txt' ], 1)
-+ renpy.exports.launch_editor([ tbdir + "traceback.txt" ], 1)
- else:
-- os.startfile('traceback.txt')
-+ os.startfile(tbdir + "traceback.txt")
- except:
- pass
-
Modified: packages/trunk/renpy/debian/rules
===================================================================
--- packages/trunk/renpy/debian/rules 2007-05-01 14:49:07 UTC (rev 2625)
+++ packages/trunk/renpy/debian/rules 2007-05-01 19:56:40 UTC (rev 2626)
@@ -110,7 +110,7 @@
dh_md5sums -a
dh_builddeb -a
-RENPY_VERSION = 5.6.4
+RENPY_VERSION = 6.2.0
get-orig-source:
dh_testdir
dh_testroot
More information about the Pkg-games-commits
mailing list