[renpy] 89/146: New Upstream Release

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:10 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 f22d68410c252db2d8098ae9c0959dd87dc170a5
Author: Miriam Ruiz <miriam at debian.org>
Date:   Fri Jun 1 23:17:22 2012 +0000

    New Upstream Release
---
 debian/changelog                  |  5 +++--
 debian/control                    |  2 +-
 debian/patches/01_abspaths.patch  |  8 +++----
 debian/patches/02_traceback.patch | 45 ++++++++++-----------------------------
 debian/patches/03_checkdir.patch  |  6 +++---
 debian/patches/04_editor.patch    | 10 ++++-----
 6 files changed, 27 insertions(+), 49 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7f1dd38..05bf515 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,11 @@
-renpy (6.13.7-1) UNRELEASED; urgency=low
+renpy (6.13.12-1) UNRELEASED; urgency=low
 
   [ Miriam Ruiz ]
   * New Upstream Release
   * Refreshed patches
+  * Upgraded Standards-Version from 3.9.2 to 3.9.3
 
- -- Miriam Ruiz <little_miry at yahoo.es>  Wed, 16 Nov 2011 18:05:38 +0100
+ -- Miriam Ruiz <little_miry at yahoo.es>  Sat, 02 Jun 2012 01:07:45 +0200
 
 renpy (6.12.2-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 8d177e5..e498c1e 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 7), dpkg-dev (>= 1.13.19), quilt,
  libavutil-dev, libavformat-dev, libavcodec-dev, libswscale-dev,
  libfribidi-dev, libglew1.5-dev, zlib1g-dev, libfreetype6-dev,
  libpng12-dev
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: http://www.renpy.org/
 XS-Python-Version: >= 2.6
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/renpy/
diff --git a/debian/patches/01_abspaths.patch b/debian/patches/01_abspaths.patch
index 4440b18..d7b331d 100644
--- a/debian/patches/01_abspaths.patch
+++ b/debian/patches/01_abspaths.patch
@@ -1,6 +1,6 @@
---- renpy-6.13.7.orig/renpy.py
-+++ renpy-6.13.7/renpy.py
-@@ -37,7 +37,14 @@
+--- renpy-6.13.12.orig/renpy.py
++++ renpy-6.13.12/renpy.py
+@@ -36,7 +36,14 @@
  # the path to a directory that will hold save files.
  def path_to_saves(gamedir):
      import renpy #@UnresolvedImport
@@ -16,7 +16,7 @@
      if not renpy.config.save_directory:
          return gamedir + "/saves"
  
-@@ -77,7 +84,7 @@
+@@ -76,7 +83,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 e7e09ce..a731b58 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -1,22 +1,19 @@
---- renpy-6.13.7.orig/renpy/bootstrap.py
-+++ renpy-6.13.7/renpy/bootstrap.py
-@@ -410,12 +410,25 @@
+--- renpy-6.13.12.orig/renpy/bootstrap.py
++++ renpy-6.13.12/renpy/bootstrap.py
+@@ -481,11 +481,25 @@
      
      simple = simple.getvalue()
      full = full.getvalue()
 - 
--    # Inside of the file, which may not be openable.
 +
-     try:
++    try:
 +        if not os.path.isdir(os.path.expanduser("~/.renpy")):
 +            os.makedirs(os.path.expanduser("~/.renpy"))
 +    except:
 +        pass
- 
--        f = file("traceback.txt", "w")
-+    # Inside of the file, which may not be openable.
-+    try:
- 
++
+     # Inside of the file, which may not be openable.
+     try:
 +        tbdir = renpy.config.savedir
 +        if tbdir[-1] == '/':
 +            tbdir = tbdir[:-1]
@@ -25,29 +22,9 @@
 +            os.makedirs(tbdir)
 +        except:
 +            pass
-+        f = file(tbdir + "traceback.txt", "w")
-         f.write(codecs.BOM_UTF8)
  
-         print >>f, "I'm sorry, but an uncaught exception occurred."
-@@ -432,11 +445,19 @@
-         
-         try:
-             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:
-                     if hasattr(os, 'startfile'):
--                        os.startfile('traceback.txt') #@UndefinedVariable
-+                        os.startfile( tbdir + 'traceback.txt' )
-         except:
-             pass
+-        f, traceback_fn = open_error_file("traceback.txt", "w")
++        f, traceback_fn = open_error_file(tbdir + "traceback.txt", "w")
+ 
+         f.write(codecs.BOM_UTF8)
  
diff --git a/debian/patches/03_checkdir.patch b/debian/patches/03_checkdir.patch
index 6c0492b..e864d7c 100644
--- a/debian/patches/03_checkdir.patch
+++ b/debian/patches/03_checkdir.patch
@@ -1,6 +1,6 @@
---- renpy-6.13.7.orig/renpy/main.py
-+++ renpy-6.13.7/renpy/main.py
-@@ -161,6 +161,10 @@
+--- renpy-6.13.12.orig/renpy/main.py
++++ renpy-6.13.12/renpy/main.py
+@@ -164,6 +164,10 @@
      # Set up variants.
      choose_variants()
      
diff --git a/debian/patches/04_editor.patch b/debian/patches/04_editor.patch
index 750f771..d61ab84 100644
--- a/debian/patches/04_editor.patch
+++ b/debian/patches/04_editor.patch
@@ -1,5 +1,5 @@
 --- /dev/null
-+++ renpy-6.13.7/launcher/Debian.editor.py
++++ renpy-6.13.12/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.13.7.orig/launcher/editor.rpy
-+++ renpy-6.13.7/launcher/editor.rpy
+--- renpy-6.13.12.orig/launcher/editor.rpy
++++ renpy-6.13.12/launcher/editor.rpy
 @@ -11,7 +11,7 @@
      
      # The default name for the editor.
@@ -16,5 +16,5 @@
 -        persistent.editor = "jEdit"
 +        persistent.editor = "Debian"
      
-     # A map from editor name to the file containing information about
-     # that editor.
+     # Should we set up the editor?
+     set_editor = "RENPY_EDIT_PY" not in os.environ

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