[renpy] 81/146: New Upstream Release

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:09 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 3c8a985ebdf15eef5bcedd64f774c78e97d02ec7
Author: Miriam Ruiz <miriam at debian.org>
Date:   Thu Jun 23 20:38:38 2011 +0000

    New Upstream Release
---
 debian/changelog                     |  8 ++++++
 debian/patches/00_module_setup.patch | 10 +++----
 debian/patches/01_abspaths.patch     | 10 +++----
 debian/patches/02_traceback.patch    | 55 +++++++++++++++++++-----------------
 debian/patches/03_checkdir.patch     | 10 +++----
 debian/patches/04_editor.patch       |  6 ++--
 6 files changed, 55 insertions(+), 44 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d6e64f3..957040b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+renpy (6.12.1-1) unstable; urgency=low
+
+  [ Miriam Ruiz ]
+  * New Upstream Release
+  * Refreshed patches
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Thu, 23 Jun 2011 22:28:07 +0200
+
 renpy (6.12.0-1) unstable; urgency=low
 
   [ Miriam Ruiz ]
diff --git a/debian/patches/00_module_setup.patch b/debian/patches/00_module_setup.patch
index 2dc897d..689a986 100644
--- a/debian/patches/00_module_setup.patch
+++ b/debian/patches/00_module_setup.patch
@@ -1,11 +1,11 @@
---- renpy-6.12.0.orig/module/setup.py
-+++ renpy-6.12.0/module/setup.py
-@@ -7,7 +7,7 @@
- import subprocess
+--- renpy-6.12.1.orig/module/setup.py
++++ renpy-6.12.1/module/setup.py
+@@ -5,7 +5,7 @@
+ import sys
  
  # These control the level of optimization versus debugging.
 -extra_compile_args = [ "-O3", "-Wno-unused-function" ]
 +extra_compile_args = [ "-O2", "-Wno-unused-function" ]
- # extra_compile_args = [ "-O3", "-funroll-loops", "-ggdb" ]
  # extra_compile_args = [ "-O0", "-ggdb" ]
  # extra_compile_args = [ "-O0", "-gstabs" ]
+ extra_link_args = [ ]
diff --git a/debian/patches/01_abspaths.patch b/debian/patches/01_abspaths.patch
index 87f2341..2d0fddc 100644
--- a/debian/patches/01_abspaths.patch
+++ b/debian/patches/01_abspaths.patch
@@ -1,9 +1,9 @@
---- renpy-6.12.0.orig/renpy.py
-+++ renpy-6.12.0/renpy.py
-@@ -40,7 +40,14 @@
+--- renpy-6.12.1.orig/renpy.py
++++ renpy-6.12.1/renpy.py
+@@ -39,7 +39,14 @@
  # the path to a directory that will hold save files.
  def path_to_saves(gamedir):
-     import renpy
+     import renpy #@UnresolvedImport
 -    
 +
 +    if gamedir.startswith("/usr/share/games/renpy"):
@@ -16,7 +16,7 @@
      if not renpy.config.save_directory:
          return gamedir + "/saves"
  
-@@ -80,7 +87,7 @@
+@@ -79,7 +86,7 @@
  # Returns the path to the Ren'Py base directory (containing common and
  # the launcher, usually.)
  def path_to_renpy_base():
diff --git a/debian/patches/02_traceback.patch b/debian/patches/02_traceback.patch
index ea05717..8ddf9fe 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -1,19 +1,22 @@
---- renpy-6.12.0.orig/renpy/bootstrap.py
-+++ renpy-6.12.0/renpy/bootstrap.py
-@@ -383,10 +383,24 @@
-     print renpy.game.exception_info
-     report_tb(sys.stdout, tb)
+--- renpy-6.12.1.orig/renpy/bootstrap.py
++++ renpy-6.12.1/renpy/bootstrap.py
+@@ -408,12 +408,25 @@
      
-+    try:
+     simple = simple.getvalue()
+     full = full.getvalue()
+- 
+-    # Inside of the file, which may not be openable.
++
+     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")
++    # Inside of the file, which may not be openable.
++    try:
+ 
 +        tbdir = renpy.config.savedir
 +        if tbdir[-1] == '/':
 +            tbdir = tbdir[:-1]
@@ -23,27 +26,27 @@
 +        except:
 +            pass
 +        f = file(tbdir + "traceback.txt", "w")
- 
          f.write(codecs.BOM_UTF8)
  
-@@ -420,10 +434,18 @@
-         renpy.log.info_exception()
+         print >>f, "I'm sorry, but an uncaught exception occurred."
+@@ -430,10 +443,18 @@
          
          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, transient=1)
-+                renpy.exports.launch_editor([ tbdir + 'traceback.txt' ], 1, transient=1)
-             else:
--                os.startfile('traceback.txt')
-+                os.startfile( tbdir + 'traceback.txt' )
+             if editor:
++                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, transient=1)
++                    renpy.exports.launch_editor([ tbdir + 'traceback.txt' ], 1, transient=1)
+                 else:
+-                    os.startfile('traceback.txt') #@UndefinedVariable
++                    os.startfile( tbdir + 'traceback.txt' )
          except:
              pass
  
diff --git a/debian/patches/03_checkdir.patch b/debian/patches/03_checkdir.patch
index 83631fd..e647cf2 100644
--- a/debian/patches/03_checkdir.patch
+++ b/debian/patches/03_checkdir.patch
@@ -1,8 +1,8 @@
---- renpy-6.12.0.orig/renpy/main.py
-+++ renpy-6.12.0/renpy/main.py
-@@ -130,6 +130,10 @@
-     if "RENPY_VARIANT" in os.environ:
-         renpy.config.variants = list(os.environ["RENPY_VARIANT"].split(",")) + [ None ]
+--- renpy-6.12.1.orig/renpy/main.py
++++ renpy-6.12.1/renpy/main.py
+@@ -159,6 +159,10 @@
+     # Set up variants.
+     choose_variants()
      
 +    # Check if the game directory exists and is a directory
 +    if not os.path.isdir(renpy.config.gamedir):
diff --git a/debian/patches/04_editor.patch b/debian/patches/04_editor.patch
index 333396c..ff871b2 100644
--- a/debian/patches/04_editor.patch
+++ b/debian/patches/04_editor.patch
@@ -1,5 +1,5 @@
 --- /dev/null
-+++ renpy-6.12.0/launcher/Debian.editor.py
++++ renpy-6.12.1/launcher/Debian.editor.py
 @@ -0,0 +1,6 @@
 +# Name: Debian
 +# Version: 1
@@ -7,8 +7,8 @@
 +
 +config.editor = '/usr/bin/editor'
 +config.editor_transient = '/usr/bin/editor'
---- renpy-6.12.0.orig/launcher/editor.rpy
-+++ renpy-6.12.0/launcher/editor.rpy
+--- renpy-6.12.1.orig/launcher/editor.rpy
++++ renpy-6.12.1/launcher/editor.rpy
 @@ -11,7 +11,7 @@
      
      # The default name for the editor.

-- 
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