[renpy] 18/146: Updates to version 6.2.0

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:01 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a commit to branch experimental
in repository renpy.

commit 1b39eb145e385740b92b04604b5078729dc5a766
Author: Miriam Ruiz <little_miry at yahoo.es>
Date:   Tue May 1 19:56:40 2007 +0000

    Updates to version 6.2.0
---
 debian/changelog                  |  8 ++++-
 debian/patches/02_traceback.patch | 72 +++++++++++++++++++--------------------
 debian/rules                      |  2 +-
 3 files changed, 44 insertions(+), 38 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 615dd1a..287a368 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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
diff --git a/debian/patches/02_traceback.patch b/debian/patches/02_traceback.patch
index a8a3b50..ce8b750 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -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.
-         try:
++        f = file(tbdir + "traceback.txt", "w")
+ 
+         f.write(codecs.BOM_UTF8)
  
--            f = file("traceback.txt", "wU")
+@@ -310,10 +324,18 @@
+         f.close()
+ 
+         try:
 +            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")
- 
-             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
+             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
  
diff --git a/debian/rules b/debian/rules
index 920b838..4090c07 100755
--- a/debian/rules
+++ b/debian/rules
@@ -110,7 +110,7 @@ binary-arch: build install-arch
 	dh_md5sums -a
 	dh_builddeb -a
 
-RENPY_VERSION = 5.6.4
+RENPY_VERSION = 6.2.0
 get-orig-source:
 	dh_testdir
 	dh_testroot

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/renpy.git



More information about the Pkg-games-commits mailing list