[renpy] 96/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 4596f49e458d54f336c6fc557201267853fb1319
Author: Miriam Ruiz <miriam at debian.org>
Date:   Wed Feb 19 00:19:23 2014 +0000

    New upstream release
---
 debian/changelog                  |  9 +++++++++
 debian/control                    |  2 +-
 debian/patches/01_abspaths.patch  | 12 ++++++------
 debian/patches/02_traceback.patch | 14 ++++++--------
 debian/patches/03_checkdir.patch  | 12 ++++++------
 debian/patches/04_typo.patch      | 16 ++++++++--------
 debian/rules                      |  2 +-
 7 files changed, 37 insertions(+), 30 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8771a73..949e0fb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+renpy (6.16.5-1) UNRELEASED; urgency=medium
+
+  [ Miriam Ruiz ]
+  * New Upstream Release.
+    - CLoses: #732375 (Ren'Py fails to build due to freetype2 detection error)
+  * Upgraded Standards-Version from 3.9.4 to 3.9.5
+
+ -- Miriam Ruiz <miriam at debian.org>  Wed, 19 Feb 2014 00:42:22 +0100
+
 renpy (6.15.7-1) unstable; urgency=low
 
   [ Evgeni Golov ]
diff --git a/debian/control b/debian/control
index adbab5d..59f4d50 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 9), 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.4
+Standards-Version: 3.9.5
 Homepage: http://www.renpy.org/
 XS-Python-Version: >= 2.6
 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/renpy/
diff --git a/debian/patches/01_abspaths.patch b/debian/patches/01_abspaths.patch
index b924fa0..76a155a 100644
--- a/debian/patches/01_abspaths.patch
+++ b/debian/patches/01_abspaths.patch
@@ -1,18 +1,18 @@
-Index: renpy-6.15.7-source/renpy.py
+Index: renpy-6.16.5-source/renpy.py
 ===================================================================
---- renpy-6.15.7-source.orig/renpy.py	2013-08-30 22:12:41.277200859 +0200
-+++ renpy-6.15.7-source/renpy.py	2013-08-30 22:14:56.765200683 +0200
+--- renpy-6.16.5-source.orig/renpy.py	2014-02-19 00:49:23.114460913 +0100
++++ renpy-6.16.5-source/renpy.py	2014-02-19 00:50:41.202649634 +0100
 @@ -59,6 +59,12 @@
-                     
+ 
          return rv
-     
+ 
 +    if gamedir.startswith("/usr/share/games/renpy"):
 +        # The gamename is the final component of the path to the gamedir
 +        gamename = gamedir[len("/usr/share/games/renpy"):]
 +        if gamename.endswith("/game") or gamename.endswith("/data"):
 +            gamename = gamename[:-5]
 +        return os.path.expanduser("~/.renpy/") + gamename + "/saves"
-     
+ 
      # No save directory given.
      if not renpy.config.save_directory:
 @@ -97,7 +103,7 @@
diff --git a/debian/patches/02_traceback.patch b/debian/patches/02_traceback.patch
index e9b4629..b2f5f76 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -1,13 +1,11 @@
-Index: renpy-6.15.7-source/renpy/bootstrap.py
+Index: renpy-6.16.5-source/renpy/bootstrap.py
 ===================================================================
---- renpy-6.15.7-source.orig/renpy/bootstrap.py	2013-08-30 22:15:17.141200657 +0200
-+++ renpy-6.15.7-source/renpy/bootstrap.py	2013-08-30 22:15:17.133200657 +0200
-@@ -455,11 +455,25 @@
-     
+--- renpy-6.16.5-source.orig/renpy/bootstrap.py	2014-02-19 00:51:20.242743907 +0100
++++ renpy-6.16.5-source/renpy/bootstrap.py	2014-02-19 00:52:57.758979165 +0100
+@@ -454,10 +454,24 @@
      simple = simple.getvalue()
      full = full.getvalue()
-- 
-+
+ 
 +    try:
 +        if not os.path.isdir(os.path.expanduser("~/.renpy")):
 +            os.makedirs(os.path.expanduser("~/.renpy"))
@@ -18,7 +16,7 @@ Index: renpy-6.15.7-source/renpy/bootstrap.py
      try:
 +        tbdir = renpy.config.savedir
 +        if tbdir[-1] == '/':
-+            tbdir = tbdir[:-1]
++           tbdir = tbdir[:-1]
 +        tbdir = os.path.dirname(tbdir) + "/"
 +        try:
 +            os.makedirs(tbdir)
diff --git a/debian/patches/03_checkdir.patch b/debian/patches/03_checkdir.patch
index 89aa56d..84ccb73 100644
--- a/debian/patches/03_checkdir.patch
+++ b/debian/patches/03_checkdir.patch
@@ -1,15 +1,15 @@
-Index: renpy-6.15.7-source/renpy/main.py
+Index: renpy-6.16.5-source/renpy/main.py
 ===================================================================
---- renpy-6.15.7-source.orig/renpy/main.py	2013-08-30 22:15:23.549200649 +0200
-+++ renpy-6.15.7-source/renpy/main.py	2013-08-30 22:15:23.541200649 +0200
-@@ -142,6 +142,10 @@
+--- renpy-6.16.5-source.orig/renpy/main.py	2014-02-19 00:55:25.495252488 +0100
++++ renpy-6.16.5-source/renpy/main.py	2014-02-19 00:57:03.751410784 +0100
+@@ -161,6 +161,10 @@
      # Set up variants.
      choose_variants()
-     
+ 
 +    # Check if the game directory exists and is a directory
 +    if not os.path.isdir(renpy.config.gamedir):
 +        raise Exception("The game directory '%s' doesn't exist" % renpy.config.gamedir)
-+    
++
      # Note the game directory.
      game.basepath = renpy.config.gamedir
      renpy.config.searchpath = [ renpy.config.gamedir ]
diff --git a/debian/patches/04_typo.patch b/debian/patches/04_typo.patch
index 830bc55..783406b 100644
--- a/debian/patches/04_typo.patch
+++ b/debian/patches/04_typo.patch
@@ -1,8 +1,8 @@
-Index: renpy-6.15.7-source/module/gen/renpy.angle.gldraw.c
+Index: renpy-6.16.5-source/module/gen/renpy.angle.gldraw.c
 ===================================================================
---- renpy-6.15.7-source.orig/module/gen/renpy.angle.gldraw.c	2013-08-31 06:42:58.505161225 +0200
-+++ renpy-6.15.7-source/module/gen/renpy.angle.gldraw.c	2013-08-31 06:42:58.497161225 +0200
-@@ -1836,7 +1836,7 @@
+--- renpy-6.16.5-source.orig/module/gen/renpy.angle.gldraw.c	2014-02-19 00:58:17.539530666 +0100
++++ renpy-6.16.5-source/module/gen/renpy.angle.gldraw.c	2014-02-19 00:58:17.535530660 +0100
+@@ -1832,7 +1832,7 @@
   */
  
  static PyObject *__pyx_pf_5renpy_5angle_6gldraw_6GLDraw_1set_mode(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
@@ -11,11 +11,11 @@ Index: renpy-6.15.7-source/module/gen/renpy.angle.gldraw.c
  static PyObject *__pyx_pf_5renpy_5angle_6gldraw_6GLDraw_1set_mode(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
    PyObject *__pyx_v_virtual_size = 0;
    PyObject *__pyx_v_physical_size = 0;
-Index: renpy-6.15.7-source/module/gen/renpy.gl.gldraw.c
+Index: renpy-6.16.5-source/module/gen/renpy.gl.gldraw.c
 ===================================================================
---- renpy-6.15.7-source.orig/module/gen/renpy.gl.gldraw.c	2013-06-17 04:11:50.000000000 +0200
-+++ renpy-6.15.7-source/module/gen/renpy.gl.gldraw.c	2013-08-31 06:43:32.729161180 +0200
-@@ -1850,7 +1850,7 @@
+--- renpy-6.16.5-source.orig/module/gen/renpy.gl.gldraw.c	2014-02-19 00:58:17.539530666 +0100
++++ renpy-6.16.5-source/module/gen/renpy.gl.gldraw.c	2014-02-19 00:58:17.535530660 +0100
+@@ -1846,7 +1846,7 @@
   */
  
  static PyObject *__pyx_pf_5renpy_2gl_6gldraw_6GLDraw_1set_mode(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
diff --git a/debian/rules b/debian/rules
index fa3f3bc..a75c8c3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -76,7 +76,7 @@ install-indep:
 	# data/ - Contains the data for the launcher.
 	dh_install -prenpy  launcher usr/share/games/renpy/
 	# Scripts that give additional features.
-	dh_install -prenpy  template usr/share/games/renpy/
+	dh_install -prenpy  templates usr/share/games/renpy/
 
 	dh_install -prenpy-demo tutorial/* usr/share/games/renpy/demo/
 	chmod +x debian/renpy-demo.sh

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