[renpy] 103/146: New upstream release
Markus Koschany
apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:12 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 90f923775f225a149ff6107a1b9f0fbfbab40bb8
Author: Miriam Ruiz <miriam at debian.org>
Date: Mon Jun 30 20:00:53 2014 +0000
New upstream release
---
debian/changelog | 7 +++++--
debian/control | 2 +-
debian/patches/01_abspaths.patch | 10 +++++-----
debian/patches/02_traceback.patch | 8 ++++----
debian/patches/03_checkdir.patch | 10 +++++-----
debian/patches/04_typo.patch | 16 ++++++++--------
debian/patches/05_pxi_files.patch | 16 ++++++++++++----
debian/rules | 9 +++++++--
8 files changed, 47 insertions(+), 31 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index f18041c..49aafc0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,12 @@
-renpy (6.17.2-1) UNRELEASED; urgency=medium
+renpy (6.17.6-1) UNRELEASED; urgency=medium
[ Miriam Ruiz ]
* New Upstream Release.
+ * Added libavresample-dev to Build-Depends. Closes: #732333
+ Thanks to Gregor Riepl.
+ * Refreshed patches.
- -- Miriam Ruiz <miriam at debian.org> Sun, 02 Mar 2014 01:55:36 +0100
+ -- Miriam Ruiz <miriam at debian.org> Mon, 30 Jun 2014 20:15:52 +0200
renpy (6.16.5-1) unstable; urgency=medium
diff --git a/debian/control b/debian/control
index 59f4d50..d882121 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.13.19), quilt,
libsdl-sound1.2-dev, libsdl-ttf2.0-dev, libmodplug-dev, libspeex-dev,
libavutil-dev, libavformat-dev, libavcodec-dev, libswscale-dev,
libfribidi-dev, libglew1.5-dev, zlib1g-dev, libfreetype6-dev,
- libpng12-dev
+ libpng12-dev, libavresample-dev
Standards-Version: 3.9.5
Homepage: http://www.renpy.org/
XS-Python-Version: >= 2.6
diff --git a/debian/patches/01_abspaths.patch b/debian/patches/01_abspaths.patch
index 80cbd55..1b2fd99 100644
--- a/debian/patches/01_abspaths.patch
+++ b/debian/patches/01_abspaths.patch
@@ -1,8 +1,8 @@
-Index: renpy-6.17.2-source/renpy.py
+Index: renpy-6.17.6-source/renpy.py
===================================================================
---- renpy-6.17.2-source.orig/renpy.py 2014-01-28 04:53:02.000000000 +0100
-+++ renpy-6.17.2-source/renpy.py 2014-03-02 02:13:36.000000000 +0100
-@@ -59,6 +59,12 @@
+--- renpy-6.17.6-source.orig/renpy.py
++++ renpy-6.17.6-source/renpy.py
+@@ -59,6 +59,12 @@ def path_to_saves(gamedir):
return rv
@@ -15,7 +15,7 @@ Index: renpy-6.17.2-source/renpy.py
# No save directory given.
if not renpy.config.save_directory:
-@@ -97,7 +103,7 @@
+@@ -97,7 +103,7 @@ def path_to_saves(gamedir):
# 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 25c75ce..598b895 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -1,8 +1,8 @@
-Index: renpy-6.17.2-source/renpy/bootstrap.py
+Index: renpy-6.17.6-source/renpy/error.py
===================================================================
---- renpy-6.17.2-source.orig/renpy/bootstrap.py 2014-01-28 04:53:02.000000000 +0100
-+++ renpy-6.17.2-source/renpy/bootstrap.py 2014-03-02 02:13:36.000000000 +0100
-@@ -478,10 +478,24 @@
+--- renpy-6.17.6-source.orig/renpy/error.py
++++ renpy-6.17.6-source/renpy/error.py
+@@ -197,10 +197,24 @@ def report_exception(e, editor=True):
simple = simple.getvalue()
full = full.getvalue()
diff --git a/debian/patches/03_checkdir.patch b/debian/patches/03_checkdir.patch
index 55d6259..6e99d90 100644
--- a/debian/patches/03_checkdir.patch
+++ b/debian/patches/03_checkdir.patch
@@ -1,11 +1,11 @@
-Index: renpy-6.17.2-source/renpy/main.py
+Index: renpy-6.17.6-source/renpy/main.py
===================================================================
---- renpy-6.17.2-source.orig/renpy/main.py 2014-03-02 02:13:47.816595095 +0100
-+++ renpy-6.17.2-source/renpy/main.py 2014-03-02 02:13:47.816595095 +0100
-@@ -162,6 +162,10 @@
+--- renpy-6.17.6-source.orig/renpy/main.py
++++ renpy-6.17.6-source/renpy/main.py
+@@ -181,6 +181,10 @@ def main():
+ choose_variants()
renpy.display.touch = "touch" in renpy.config.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)
diff --git a/debian/patches/04_typo.patch b/debian/patches/04_typo.patch
index 20323b9..03ada77 100644
--- a/debian/patches/04_typo.patch
+++ b/debian/patches/04_typo.patch
@@ -1,8 +1,8 @@
-Index: renpy-6.17.2-source/module/gen/renpy.angle.gldraw.c
+Index: renpy-6.17.6-source/module/gen/renpy.angle.gldraw.c
===================================================================
---- renpy-6.17.2-source.orig/module/gen/renpy.angle.gldraw.c 2014-03-02 02:13:47.832595139 +0100
-+++ renpy-6.17.2-source/module/gen/renpy.angle.gldraw.c 2014-03-02 02:13:47.828595129 +0100
-@@ -2119,7 +2119,7 @@
+--- renpy-6.17.6-source.orig/module/gen/renpy.angle.gldraw.c
++++ renpy-6.17.6-source/module/gen/renpy.angle.gldraw.c
+@@ -2129,7 +2129,7 @@ static int __pyx_pf_5renpy_5angle_6gldra
/* Python wrapper */
static PyObject *__pyx_pw_5renpy_5angle_6gldraw_6GLDraw_3set_mode(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
@@ -11,11 +11,11 @@ Index: renpy-6.17.2-source/module/gen/renpy.angle.gldraw.c
static PyObject *__pyx_pw_5renpy_5angle_6gldraw_6GLDraw_3set_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.17.2-source/module/gen/renpy.gl.gldraw.c
+Index: renpy-6.17.6-source/module/gen/renpy.gl.gldraw.c
===================================================================
---- renpy-6.17.2-source.orig/module/gen/renpy.gl.gldraw.c 2014-03-02 02:13:47.832595139 +0100
-+++ renpy-6.17.2-source/module/gen/renpy.gl.gldraw.c 2014-03-02 02:13:47.832595139 +0100
-@@ -2137,7 +2137,7 @@
+--- renpy-6.17.6-source.orig/module/gen/renpy.gl.gldraw.c
++++ renpy-6.17.6-source/module/gen/renpy.gl.gldraw.c
+@@ -2129,7 +2129,7 @@ static int __pyx_pf_5renpy_2gl_6gldraw_6
/* Python wrapper */
static PyObject *__pyx_pw_5renpy_2gl_6gldraw_6GLDraw_3set_mode(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
diff --git a/debian/patches/05_pxi_files.patch b/debian/patches/05_pxi_files.patch
index 4c36f58..05e3804 100644
--- a/debian/patches/05_pxi_files.patch
+++ b/debian/patches/05_pxi_files.patch
@@ -1,5 +1,7 @@
+Index: renpy-6.17.6-source/module/gen/styleconstants.pxi
+===================================================================
--- /dev/null
-+++ renpy-6.17.2/module/gen/styleconstants.pxi
++++ renpy-6.17.6-source/module/gen/styleconstants.pxi
@@ -0,0 +1,92 @@
+DEF PRIORITY_LEVELS = 4
+DEF PREFIX_COUNT = 6
@@ -93,8 +95,10 @@
+DEF OUTLINES_INDEX = 80
+DEF SLOW_ABORTABLE_INDEX = 81
+DEF JUSTIFY_INDEX = 82
+Index: renpy-6.17.6-source/module/gen/styleproperties.pxi
+===================================================================
--- /dev/null
-+++ renpy-6.17.2/module/gen/styleproperties.pxi
++++ renpy-6.17.6-source/module/gen/styleproperties.pxi
@@ -0,0 +1,7008 @@
+cdef class Style(StyleCore):
+
@@ -7104,8 +7108,10 @@
+ def __del__(self):
+ self.delattr('selected_hover_anchor')
+
+Index: renpy-6.17.6-source/module/gen/stylepropertyfunctions.pxi
+===================================================================
--- /dev/null
-+++ renpy-6.17.2/module/gen/stylepropertyfunctions.pxi
++++ renpy-6.17.6-source/module/gen/stylepropertyfunctions.pxi
@@ -0,0 +1,11376 @@
+cdef int yanchor_property(PyObject **cache, int *cache_priorities, int priority, object value) except -1:
+ priority += 0
@@ -18483,8 +18489,10 @@
+
+register_property_function("selected_hover_anchor", selected_hover_anchor_property)
+
+Index: renpy-6.17.6-source/module/gen/stylesets.pxi
+===================================================================
--- /dev/null
-+++ renpy-6.17.2/module/gen/stylesets.pxi
++++ renpy-6.17.6-source/module/gen/stylesets.pxi
@@ -0,0 +1,7 @@
+# This file is generated by generate_styles.py.
+
diff --git a/debian/rules b/debian/rules
index e2524c8..9c48462 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,12 +46,17 @@ build-python%: configure-stamp
clean: configure
dh_testdir
dh_testroot
- rm -rf `find . -name "*.rpyc"`
+ rm -fv `find . -name "*.rpyc"`
+ rm -fv `find . -name "*.pyc"`
rm -f build-stamp configure-stamp
rm -f build-python* install-python*
-export RENPY_DEPS_INSTALL=$(RENPY_DEPS_INSTALL); cd module && python setup.py clean
rm -rf module/build/
+ rm -fv module/gen/renpy.style*.c
+ rm -fv module/gen/renpy.style*.html
+ rm -fv module/gen/style*.html
+
rm -rfv renpy.app lib jedit
rm -fv `find . -name "*.exe"`
rm -fv `find . -name "*.dll"`
@@ -60,7 +65,7 @@ clean: configure
rm -fv `find . -name "*.rpyc"`
rm -fv `find . -name "*.rpymc"`
rm -fv `find . -name "*.pyo"`
- rm -fv `find . -name "*.so"`z
+ rm -fv `find . -name "*.so"`
$(MAKE) -f /usr/share/quilt/quilt.make unpatch
dh_clean
--
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