r8404 - in packages/tags/renpy/6.7.1/debian: . patches

Miriam Ruiz miriam at alioth.debian.org
Thu Nov 13 10:59:25 UTC 2008


Author: miriam
Date: 2008-11-13 10:59:25 +0000 (Thu, 13 Nov 2008)
New Revision: 8404

Modified:
   packages/tags/renpy/6.7.1/debian/changelog
   packages/tags/renpy/6.7.1/debian/patches/00_module_setup.patch
   packages/tags/renpy/6.7.1/debian/patches/01_abspaths.patch
   packages/tags/renpy/6.7.1/debian/patches/02_traceback.patch
   packages/tags/renpy/6.7.1/debian/patches/03_checkdir.patch
Log:
Refreshed patches



Modified: packages/tags/renpy/6.7.1/debian/changelog
===================================================================
--- packages/tags/renpy/6.7.1/debian/changelog	2008-11-13 10:54:00 UTC (rev 8403)
+++ packages/tags/renpy/6.7.1/debian/changelog	2008-11-13 10:59:25 UTC (rev 8404)
@@ -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 ]

Modified: packages/tags/renpy/6.7.1/debian/patches/00_module_setup.patch
===================================================================
--- packages/tags/renpy/6.7.1/debian/patches/00_module_setup.patch	2008-11-13 10:54:00 UTC (rev 8403)
+++ packages/tags/renpy/6.7.1/debian/patches/00_module_setup.patch	2008-11-13 10:59:25 UTC (rev 8404)
@@ -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

Modified: packages/tags/renpy/6.7.1/debian/patches/01_abspaths.patch
===================================================================
--- packages/tags/renpy/6.7.1/debian/patches/01_abspaths.patch	2008-11-13 10:54:00 UTC (rev 8403)
+++ packages/tags/renpy/6.7.1/debian/patches/01_abspaths.patch	2008-11-13 10:59:25 UTC (rev 8404)
@@ -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():

Modified: packages/tags/renpy/6.7.1/debian/patches/02_traceback.patch
===================================================================
--- packages/tags/renpy/6.7.1/debian/patches/02_traceback.patch	2008-11-13 10:54:00 UTC (rev 8403)
+++ packages/tags/renpy/6.7.1/debian/patches/02_traceback.patch	2008-11-13 10:59:25 UTC (rev 8404)
@@ -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 @@
  
          f.write(codecs.BOM_UTF8)
  
-@@ -323,10 +337,18 @@
+@@ -356,10 +370,18 @@
          f.close()
  
          try:

Modified: packages/tags/renpy/6.7.1/debian/patches/03_checkdir.patch
===================================================================
--- packages/tags/renpy/6.7.1/debian/patches/03_checkdir.patch	2008-11-13 10:54:00 UTC (rev 8403)
+++ packages/tags/renpy/6.7.1/debian/patches/03_checkdir.patch	2008-11-13 10:59:25 UTC (rev 8404)
@@ -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()




More information about the Pkg-games-commits mailing list