[renpy] 03/04: Refreshed patches
Markus Koschany
apo-guest at moszumanska.debian.org
Tue Jan 12 19:42:27 UTC 2016
This is an automated email from the git hooks/post-receive script.
apo-guest pushed a commit to annotated tag debian/6.7.1
in repository renpy.
commit a56a5d718748f4a4a93f9341a3f439cc5242dd2a
Author: Miriam Ruiz <miriam at debian.org>
Date: Thu Nov 13 10:59:25 2008 +0000
Refreshed patches
---
debian/changelog | 21 +++++++++++++++++++++
debian/patches/00_module_setup.patch | 7 ++++---
debian/patches/01_abspaths.patch | 17 +++++++++++------
debian/patches/02_traceback.patch | 10 +++++-----
debian/patches/03_checkdir.patch | 6 +++---
5 files changed, 44 insertions(+), 17 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 4dc0c58..1c64410 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,24 @@
+renpy (6.7.1-1) UNRELEASED; urgency=low
+
+ [ Miriam Ruiz ]
+ * New Upstream Release.
+ * Upstream tarball is shipped clean now. Removed unneccesary stuff from rules.
+ * Bumped Standards Version from 3.7.3 to 3.8.0
+ * Refreshed patches
+
+ -- Miriam Ruiz <little_miry at yahoo.es> Thu, 13 Nov 2008 11:47:33 +0100
+
+renpy (6.6.3.dfsg1-1) unstable; urgency=low
+
+ [ Miriam Ruiz ]
+ * New Upstream Release
+ * Compile the module for all python versions
+ * Upgraded Standards-Version to 3.8.0
+ * Build-depend on debhelper >= 7
+ * Changed docs section from Apps/Programming to Programming/Python
+
+ -- Miriam Ruiz <little_miry at yahoo.es> Sat, 16 Aug 2008 00:29:23 +0200
+
renpy (6.6.2.dfsg1-1) unstable; urgency=low
[ Miriam Ruiz ]
diff --git a/debian/patches/00_module_setup.patch b/debian/patches/00_module_setup.patch
index 3123219..90f30da 100644
--- a/debian/patches/00_module_setup.patch
+++ b/debian/patches/00_module_setup.patch
@@ -1,6 +1,7 @@
-diff -ruN renpy-6.3.0.orig/module/setup.py renpy-6.3.0/module/setup.py
---- renpy-6.3.0.orig/module/setup.py 2007-05-08 21:58:48.000000000 +0000
-+++ renpy-6.3.0/module/setup.py 2007-06-26 15:29:57.000000000 +0000
+Index: renpy-6.7.1/module/setup.py
+===================================================================
+--- renpy-6.7.1.orig/module/setup.py 2008-11-13 12:02:21.000000000 +0100
++++ renpy-6.7.1/module/setup.py 2008-11-13 12:02:35.000000000 +0100
@@ -12,25 +12,10 @@
except:
pass
diff --git a/debian/patches/01_abspaths.patch b/debian/patches/01_abspaths.patch
index 2f1a80d..39ece63 100644
--- a/debian/patches/01_abspaths.patch
+++ b/debian/patches/01_abspaths.patch
@@ -1,17 +1,22 @@
---- renpy-5.6.2.orig/renpy.py
-+++ renpy-5.6.2/renpy.py
-@@ -35,12 +35,18 @@
- # Given a directory holding a Ren'Py game, this is expected to return
- # the path to a directory that will hold save files.
+Index: renpy-6.7.1/renpy.py
+===================================================================
+--- renpy-6.7.1.orig/renpy.py 2008-11-13 12:02:21.000000000 +0100
++++ renpy-6.7.1/renpy.py 2008-11-13 12:02:35.000000000 +0100
+@@ -38,6 +38,13 @@
def path_to_saves(gamedir):
+ import renpy
+
+ 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"
- return gamedir + "/saves"
++
+ if not renpy.config.save_directory:
+ return gamedir + "/saves"
+@@ -58,7 +65,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 679ec4c..4752d33 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -1,8 +1,8 @@
-Index: renpy-6.6.2/renpy/bootstrap.py
+Index: renpy-6.7.1/renpy/bootstrap.py
===================================================================
---- renpy-6.6.2.orig/renpy/bootstrap.py 2008-05-15 14:36:33.000000000 +0000
-+++ renpy-6.6.2/renpy/bootstrap.py 2008-05-15 14:37:49.000000000 +0000
-@@ -288,10 +288,24 @@
+--- renpy-6.7.1.orig/renpy/bootstrap.py 2008-09-26 05:02:47.000000000 +0200
++++ renpy-6.7.1/renpy/bootstrap.py 2008-11-13 12:02:35.000000000 +0100
+@@ -321,10 +321,24 @@
print renpy.game.exception_info
report_tb(sys.stdout, tb)
@@ -28,7 +28,7 @@ Index: renpy-6.6.2/renpy/bootstrap.py
f.write(codecs.BOM_UTF8)
-@@ -323,10 +337,18 @@
+@@ -356,10 +370,18 @@
f.close()
try:
diff --git a/debian/patches/03_checkdir.patch b/debian/patches/03_checkdir.patch
index 9d53801..697b3c4 100644
--- a/debian/patches/03_checkdir.patch
+++ b/debian/patches/03_checkdir.patch
@@ -1,7 +1,7 @@
-Index: renpy-6.6.2/renpy/main.py
+Index: renpy-6.7.1/renpy/main.py
===================================================================
---- renpy-6.6.2.orig/renpy/main.py 2008-05-15 14:30:20.000000000 +0000
-+++ renpy-6.6.2/renpy/main.py 2008-05-15 14:30:22.000000000 +0000
+--- renpy-6.7.1.orig/renpy/main.py 2008-09-26 05:08:50.000000000 +0200
++++ renpy-6.7.1/renpy/main.py 2008-11-13 12:02:35.000000000 +0100
@@ -124,6 +124,10 @@
# Init the config after load.
renpy.config.init()
--
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