[renpy] 03/146: Load newtrunk into packages/renpy/trunk.

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:39:59 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 771551c69433428915843e55d164583d29844653
Author: Miriam Ruiz <little_miry at yahoo.es>
Date:   Sun Oct 15 22:22:07 2006 +0000

    Load newtrunk into packages/renpy/trunk.
---
 debian/changelog                     |  41 ++
 debian/compat                        |   1 +
 debian/control                       |  58 +++
 debian/copyright                     | 133 ++++++
 debian/dirs                          |   5 +
 debian/docs                          |   1 +
 debian/patches/00_module_setup.patch |  32 ++
 debian/patches/01_abspaths.patch     |  22 +
 debian/patches/02_traceback.patch    |  50 ++
 debian/patches/03_checkdir.patch     |  13 +
 debian/patches/series                |   4 +
 debian/pycompat                      |   1 +
 debian/renpy-demo.desktop            |  11 +
 debian/renpy-demo.menu               |   3 +
 debian/renpy-demo.xpm                | 893 +++++++++++++++++++++++++++++++++++
 debian/renpy.desktop                 |  11 +
 debian/renpy.menu                    |   3 +
 debian/renpy.xpm                     | 658 ++++++++++++++++++++++++++
 debian/rules                         | 142 ++++++
 19 files changed, 2082 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5cad798
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,41 @@
+renpy (5.6.2.ds1-1) UNRELEASED; urgency=low
+
+  * New Upstream Release.
+  * Modified building system for using quilt.
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Fri, 13 Oct 2006 03:14:27 +0200
+
+renpy (5.6.0-1) unstable; urgency=low
+
+  * New Upstream Release.
+  * Upgraded version dependency for debhelper from >= 4.0.0 to >= 5.0.37.2
+    for dh_python compatibility level 2.
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Mon, 11 Sep 2006 16:09:40 +0200
+
+renpy (5.5.4-1) unstable; urgency=low
+
+  * New Upstream Release.
+  * Adapted for the python transition.
+  * Updated Standards-Version to 3.7.2 (no changes needed).
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Fri, 18 Aug 2006 21:35:19 +0200
+
+renpy (5.5.2b-1) unstable; urgency=low
+
+  * New Upstream Release.
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Thu, 29 Jun 2006 23:05:22 +0200
+
+renpy (5.5.2a-1) unstable; urgency=low
+
+  * New Upstream Release.
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Wed,  7 Jun 2006 23:04:53 +0200
+
+renpy (5.4.3-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Fri, 17 Mar 2006 16:57:21 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..bad160e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,58 @@
+Source: renpy
+Section: games
+Priority: optional
+Maintainer: Miriam Ruiz <little_miry at yahoo.es>
+Build-Depends: debhelper (>= 5.0.37.2), dpkg-dev (>= 1.13.19), quilt, python-dev, python-support (>= 0.4), python-pygame, libsdl1.2-dev, libsdl-image1.2-dev, libsdl-sound1.2-dev, libsdl-ttf2.0-dev, libmodplug-dev, libspeex-dev
+Standards-Version: 3.7.2
+
+Package: renpy
+Architecture: all
+Depends: python-pygame, renpy-module, ttf-dejavu, ${python:Depends}, ${misc:Depends}
+Recommends: python-ctypes
+Description: framework for developing visual-novel type games
+ Ren'Py is a programming language and runtime, intended to ease the creation
+ of visual-novel type games. It contains features that make it easy to
+ display thoughts, dialogue, and menus; to display images to the user; to
+ write game logic; and to support the saving and loading of games.
+ .
+ Ren'Py tries to be like an executable script, allowing you to get a working
+ game without much more effort than is required to type the game script into
+ the computer.
+ .
+ Ren'Py is implemented on top of python, and that python heritage shows
+ through in many places. Many Ren'Py statements allow python expressions
+ to be used, and there are also Ren'Py statements that allow for the
+ execution of arbitrary python code. Many of the less-used features of
+ Ren'Py are exposed to the user by way of python. By only requiring use of
+ the simplest features of python, it's hoped that Ren'Py will be usable by
+ all game authors.
+ .
+  Homepage: http://www.bishoujo.us/renpy/
+
+Package: renpy-module
+Architecture: any
+Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
+Description: framework for developing visual-novel type games
+ Ren'Py is a programming language and runtime, intended to ease the creation
+ of visual-novel type games. It contains features that make it easy to
+ display thoughts, dialogue, and menus; to display images to the user; to
+ write game logic; and to support the saving and loading of games.
+ .
+ This package includes a full playable example showing the features of the
+ framework.
+ .
+  Homepage: http://www.bishoujo.us/renpy/
+
+Package: renpy-demo
+Architecture: all
+Depends: renpy (= ${source:Version}), ${python:Depends}, ${misc:Depends}
+Description: framework for developing visual-novel type games
+ Ren'Py is a programming language and runtime, intended to ease the creation
+ of visual-novel type games. It contains features that make it easy to
+ display thoughts, dialogue, and menus; to display images to the user; to
+ write game logic; and to support the saving and loading of games.
+ .
+ This package includes a full playable example showing the features of the
+ framework.
+ .
+  Homepage: http://www.bishoujo.us/renpy/
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..240b5d3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,133 @@
+This package was debianized by Miriam Ruiz <little_miry at yahoo.es> on
+Fri, 17 Mar 2006 16:57:21 +0100.
+
+It was downloaded from http://www.bishoujo.us/renpy/
+
+Copyright 2004-2006 PyTom <pytom at bishoujo.us>
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation files
+(the "Software"), to deal in the Software without restriction,
+including without limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of the Software,
+and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+----------------------------------------------------------------------
+
+Demo:
+
+This script and the artwork associated with it, is in the
+public domain. Feel free to use it as the basis for your own
+game.
+
+----------------------------------------------------------------------
+
+Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
+Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below)
+
+Bitstream Vera Fonts Copyright
+------------------------------
+
+Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
+a trademark of Bitstream, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of the fonts accompanying this license ("Fonts") and associated
+documentation files (the "Font Software"), to reproduce and distribute the
+Font Software, including without limitation the rights to use, copy, merge,
+publish, distribute, and/or sell copies of the Font Software, and to permit
+persons to whom the Font Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright and trademark notices and this permission notice shall
+be included in all copies of one or more of the Font Software typefaces.
+
+The Font Software may be modified, altered, or added to, and in particular
+the designs of glyphs or characters in the Fonts may be modified and
+additional glyphs or characters may be added to the Fonts, only if the fonts
+are renamed to names not containing either the words "Bitstream" or the word
+"Vera".
+
+This License becomes null and void to the extent applicable to Fonts or Font
+Software that has been modified and is distributed under the "Bitstream
+Vera" names.
+
+The Font Software may be sold as part of a larger software package but no
+copy of one or more of the Font Software typefaces may be sold by itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
+TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
+FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
+ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
+FONT SOFTWARE.
+
+Except as contained in this notice, the names of Gnome, the Gnome
+Foundation, and Bitstream Inc., shall not be used in advertising or
+otherwise to promote the sale, use or other dealings in this Font Software
+without prior written authorization from the Gnome Foundation or Bitstream
+Inc., respectively. For further information, contact: fonts at gnome dot
+org. 
+
+Arev Fonts Copyright
+------------------------------
+
+Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the fonts accompanying this license ("Fonts") and
+associated documentation files (the "Font Software"), to reproduce
+and distribute the modifications to the Bitstream Vera Font Software,
+including without limitation the rights to use, copy, merge, publish,
+distribute, and/or sell copies of the Font Software, and to permit
+persons to whom the Font Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright and trademark notices and this permission notice
+shall be included in all copies of one or more of the Font Software
+typefaces.
+
+The Font Software may be modified, altered, or added to, and in
+particular the designs of glyphs or characters in the Fonts may be
+modified and additional glyphs or characters may be added to the
+Fonts, only if the fonts are renamed to names not containing either
+the words "Tavmjong Bah" or the word "Arev".
+
+This License becomes null and void to the extent applicable to Fonts
+or Font Software that has been modified and is distributed under the 
+"Tavmjong Bah Arev" names.
+
+The Font Software may be sold as part of a larger software package but
+no copy of one or more of the Font Software typefaces may be sold by
+itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
+TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
+
+Except as contained in this notice, the name of Tavmjong Bah shall not
+be used in advertising or otherwise to promote the sale, use or other
+dealings in this Font Software without prior written authorization
+from Tavmjong Bah. For further information, contact: tavmjong @ free
+. fr.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..e45f719
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,5 @@
+usr/games
+usr/share/games/renpy
+usr/lib/renpy
+usr/share/pixmaps
+usr/share/applications
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..0a36901
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+CHANGELOG.txt
diff --git a/debian/patches/00_module_setup.patch b/debian/patches/00_module_setup.patch
new file mode 100644
index 0000000..15a598f
--- /dev/null
+++ b/debian/patches/00_module_setup.patch
@@ -0,0 +1,32 @@
+diff -ruN renpy-5.5.4-orig/module/setup.py renpy-5.5.4/module/setup.py
+--- renpy-5.5.4-orig/module/setup.py	2006-07-23 11:08:28.000000000 +0200
++++ renpy-5.5.4/module/setup.py	2006-08-18 21:23:16.702523250 +0200
+@@ -12,25 +12,10 @@
+ except:
+     pass
+ 
+-# This environment variable should have the full path to the installed
+-# Ren'Py dependencies.
+-install = os.environ.get("RENPY_DEPS_INSTALL", "/home/tom/ab/deps/install")
+-
+-# Check to see if that's the case.
+-if not os.path.isdir(install):
+-    print "The Ren'Py dependencies install directory:"
+-    print
+-    print install
+-    print
+-    print "does not exist. Please set RENPY_DEPS_INSTALL to the correct"
+-    print "location of the Ren'Py dependencies install directory, and "
+-    print "re-run this script."
+-    sys.exit(-1)
+-
+ # Default compile arguements for everybody.
+-include_dirs = [ install + "/include", install + "/include/SDL" ]
+-library_dirs = [ install + "/lib" ]
+-extra_compile_args = [ "-O3", "-funroll-loops" ]
++include_dirs = [ "/usr/include", "/usr/include/SDL" ]
++library_dirs = [ "/usr/lib" ]
++extra_compile_args = [ "-O2", "-funroll-loops" ]
+ extra_link_args = [ ]
+ png_libraries = [ 'png', "z" ]
+ sdl_libraries = [ 'SDL' ]
diff --git a/debian/patches/01_abspaths.patch b/debian/patches/01_abspaths.patch
new file mode 100644
index 0000000..2f1a80d
--- /dev/null
+++ b/debian/patches/01_abspaths.patch
@@ -0,0 +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.
+ def path_to_saves(gamedir):
++    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"
+ 
+ # Returns the path to the Ren'Py base directory (containing common and
+ # the launcher, usually.)
+ def path_to_renpy_base():
+-    renpy_base = os.path.dirname(sys.argv[0])
++    renpy_base = "/usr/share/games/renpy"
+     renpy_base = os.environ.get('RENPY_BASE', renpy_base)
+     renpy_base = os.path.abspath(renpy_base)
+ 
diff --git a/debian/patches/02_traceback.patch b/debian/patches/02_traceback.patch
new file mode 100644
index 0000000..a8a3b50
--- /dev/null
+++ b/debian/patches/02_traceback.patch
@@ -0,0 +1,50 @@
+--- renpy-5.6.2.orig/renpy/bootstrap.py
++++ renpy-5.6.2/renpy/bootstrap.py
+@@ -189,10 +189,25 @@
+         print
+         print renpy.game.exception_info
+ 
++
++        try:
++            if not os.path.isdir(os.path.expanduser("~/.renpy")):
++                os.makedirs(os.path.expanduser("~/.renpy"))
++        except:
++            pass
++
+         # Inside of the file, which may not be openable.
+         try:
+ 
+-            f = file("traceback.txt", "wU")
++            tbdir = renpy.config.savedir
++            if tbdir[-1] == '/':
++                tbdir = tbdir[:-1]
++            tbdir = os.path.dirname(tbdir) + "/"
++            try:
++                os.makedirs(tbdir)
++            except:
++                pass
++            f = file(tbdir + "traceback.txt", "wU")
+ 
+             f.write(codecs.BOM_UTF8)
+ 
+@@ -223,10 +238,18 @@
+             f.close()
+ 
+             try:
++                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)
++                    renpy.exports.launch_editor([ tbdir + "traceback.txt" ], 1)
+                 else:
+-                    os.startfile('traceback.txt')
++                    os.startfile(tbdir + "traceback.txt")
+             except:
+                 pass
+ 
diff --git a/debian/patches/03_checkdir.patch b/debian/patches/03_checkdir.patch
new file mode 100644
index 0000000..34e3a62
--- /dev/null
+++ b/debian/patches/03_checkdir.patch
@@ -0,0 +1,13 @@
+--- renpy-5.6.2.orig/renpy/main.py
++++ renpy-5.6.2/renpy/main.py
+@@ -115,6 +115,10 @@
+     # Init the config after load.
+     renpy.config.init()
+ 
++    # 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/series b/debian/patches/series
new file mode 100644
index 0000000..1a0534d
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,4 @@
+00_module_setup.patch
+01_abspaths.patch
+02_traceback.patch
+03_checkdir.patch
diff --git a/debian/pycompat b/debian/pycompat
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/debian/pycompat
@@ -0,0 +1 @@
+2
diff --git a/debian/renpy-demo.desktop b/debian/renpy-demo.desktop
new file mode 100644
index 0000000..8b56d55
--- /dev/null
+++ b/debian/renpy-demo.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=Ren'Py Demo
+GenericName=renpy-demo
+Comment=visual-novel game demo with Ren'Py
+Comment[es]=demo de juego de novela grafica con Ren'Py
+Icon=renpy-demo
+Exec=renpy /usr/share/games/renpy/demo
+Terminal=false
+Categories=Application;Game;
diff --git a/debian/renpy-demo.menu b/debian/renpy-demo.menu
new file mode 100644
index 0000000..6fe897a
--- /dev/null
+++ b/debian/renpy-demo.menu
@@ -0,0 +1,3 @@
+?package(renpy):needs="x11" section="Games/Adventure" \
+	title="Ren'Py Demo" command="/usr/games/renpy /usr/share/games/renpy/demo" \
+	icon="/usr/share/pixmaps/renpy-demo.xpm"
diff --git a/debian/renpy-demo.xpm b/debian/renpy-demo.xpm
new file mode 100644
index 0000000..d02c807
--- /dev/null
+++ b/debian/renpy-demo.xpm
@@ -0,0 +1,893 @@
+/* XPM */
+static char *renpy[]={
+"32 32 858 2",
+"Qt c #1b1b5e",
+".# c #1c1c5e",
+".a c #1d1d60",
+".b c #1f1f61",
+"gy c #1f274a",
+".c c #202062",
+".A c #212062",
+".R c #212162",
+".d c #222263",
+"gF c #222b54",
+".e c #242464",
+"f5 c #242e58",
+".f c #252565",
+".S c #252666",
+"#a c #262666",
+".T c #272767",
+".g c #282867",
+"#b c #292968",
+".U c #2a2968",
+"#u c #2a2a68",
+"#v c #2b2b69",
+"#c c #2c2b69",
+".B c #2d2b68",
+"#w c #2d2d6a",
+"#R c #2d2d6b",
+".h c #2f2c68",
+"#S c #2f2f6c",
+"ah c #31316d",
+"#T c #32316d",
+"gd c #323b65",
+"ai c #33336e",
+"aK c #33336f",
+".V c #342f6a",
+"aL c #343470",
+"be c #363671",
+"#x c #37336d",
+"aM c #373671",
+"bf c #383872",
+"gx c #383e5d",
+"#d c #3a326c",
+"bD c #3a3a73",
+"bE c #3b3b75",
+"ge c #3b3f5b",
+"b9 c #3d3d76",
+"aj c #3e3971",
+"bg c #3f3c73",
+"c. c #3f3f77",
+"fz c #403f55",
+".r c #414178",
+"cD c #424279",
+".s c #42427a",
+"f4 c #42496b",
+".t c #44447b",
+"bF c #464076",
+".u c #46467d",
+"gG c #464d6c",
+"g8 c #465070",
+"c5 c #47467c",
+".C c #48366c",
+".v c #48487e",
+".M c #4a497e",
+".w c #4a4a7f",
+".L c #4b487c",
+".x c #4b4b80",
+".q c #4c4377",
+"dw c #4c4b7f",
+".N c #4c4b80",
+".y c #4d4d81",
+"c# c #4e4578",
+".z c #4f4f82",
+".O c #4f4f83",
+"dZ c #504e81",
+".8 c #504f83",
+".P c #505084",
+".9 c #515184",
+".Q c #525285",
+"aN c #544476",
+"es c #545184",
+"#. c #545486",
+".i c #563c6c",
+"## c #565687",
+"#U c #574274",
+"#s c #575789",
+"cE c #594a7b",
+"eX c #595585",
+"#t c #59598a",
+".7 c #5a5081",
+"fU c #5a5a8a",
+"#P c #5b5b8b",
+"fp c #5c5888",
+"#Q c #5c5c8c",
+".K c #5d4b78",
+"ae c #5d5d8c",
+"go c #5d5d8d",
+"g1 c #5d667d",
+"fJ c #5e5b69",
+"af c #5f5f8d",
+"gE c #5f637c",
+"#O c #605a89",
+"fV c #605c8a",
+"fy c #605e6b",
+"ag c #60608f",
+"gQ c #61618f",
+"aH c #62608e",
+"aI c #626290",
+"aJ c #646491",
+"#r c #655886",
+"gp c #655f8c",
+"hf c #656491",
+"bc c #666692",
+"f6 c #686779",
+"bd c #686894",
+".W c #69446f",
+"bb c #696590",
+"hG c #696893",
+"bB c #6a6a95",
+"gz c #6a6c7c",
+"c6 c #6b527e",
+"bC c #6b6b96",
+"h3 c #6d6b95",
+"b7 c #6d6d98",
+"fK c #6e6467",
+"ad c #6f618b",
+"b8 c #6f6f99",
+"bA c #706992",
+"cB c #707099",
+"cC c #72729b",
+"gR c #73658b",
+"iM c #73729b",
+"b6 c #756c93",
+"ip c #756f96",
+"c3 c #75739b",
+"c4 c #76769e",
+"du c #78769d",
+"jc c #78779f",
+"gc c #79798d",
+"dv c #7979a0",
+"jC c #7b7ba1",
+"jd c #7c799e",
+"dX c #7c7aa0",
+"dY c #7c7ca3",
+"jD c #7c7da3",
+"#y c #7d5076",
+"cA c #7d6e93",
+"j1 c #7d7da3",
+".p c #7e5376",
+"bh c #7e5479",
+"dx c #7e5a7f",
+"jE c #7e7ea4",
+".6 c #7f5a7f",
+"iN c #807498",
+"eq c #807da1",
+"er c #8080a5",
+"jF c #8180a5",
+"g7 c #818496",
+"je c #82799b",
+"jG c #8282a5",
+"j2 c #8282a6",
+"#e c #834e73",
+"hg c #836986",
+"eV c #837fa2",
+"j3 c #8383a7",
+"lf c #838599",
+"eW c #8484a8",
+"g0 c #848898",
+"jf c #857a9b",
+"j4 c #8585a8",
+"ks c #8585a9",
+"jg c #867897",
+"kN c #8686a9",
+"le c #868aa9",
+"c2 c #876e8d",
+"jH c #8781a3",
+"fo c #8787aa",
+"j5 c #8888ab",
+"lq c #888fa8",
+"fn c #8980a1",
+"lp c #898998",
+"kO c #8989ac",
+"aG c #8a698b",
+"jJ c #8a819f",
+"j6 c #8a8aac",
+"fA c #8b7f82",
+"jI c #8b809e",
+"fT c #8b8aac",
+"kP c #8b8bad",
+"jK c #8c809c",
+"j7 c #8c8cac",
+"kt c #8c8cad",
+"kQ c #8c8cae",
+"d5 c #8d535e",
+"dt c #8d6c86",
+"ku c #8d8dae",
+"d0 c #8e5f7f",
+"j8 c #8e8cab",
+"gn c #8e8dae",
+"kR c #8e8eaf",
+"fR c #8f545e",
+"dW c #8f687c",
+"jL c #8f768d",
+"kv c #8f8fb0",
+"gl c #90545e",
+"iO c #907593",
+"kS c #9090b0",
+"lb c #9090b1",
+"g9 c #9092a3",
+"dC c #91555e",
+"fm c #915661",
+"ep c #916273",
+"fS c #917d99",
+"kw c #9191b1",
+"eU c #925b68",
+"hH c #926c7f",
+"gf c #928680",
+"gP c #9291b0",
+"lc c #9292b2",
+"gN c #93545f",
+"jk c #936774",
+"kT c #9393b3",
+"kU c #9394b3",
+"i6 c #946069",
+"jj c #946b78",
+"ld c #9494b3",
+"iR c #956573",
+"jt c #956774",
+"he c #9593b2",
+"i5 c #965e65",
+"f3 c #969394",
+"kx c #9693b0",
+"jl c #975f67",
+"iF c #976068",
+"iU c #97616a",
+"gm c #97778e",
+"j9 c #978fa9",
+"d# c #985861",
+".J c #985e71",
+"jh c #98748b",
+"ey c #996167",
+"iq c #997186",
+"jR c #997483",
+"d6 c #9a6067",
+"iV c #9a666d",
+"e7 c #9a7f78",
+"dH c #9b5f65",
+"i8 c #9b6873",
+"gO c #9b6f80",
+"fx c #9b8d84",
+".D c #9c5875",
+"dD c #9c5c64",
+"ek c #9c6268",
+"ak c #9c6682",
+"ju c #9c727e",
+"jS c #9c7d8d",
+"kV c #9c97b0",
+"dS c #9d6065",
+"dN c #9d6167",
+"et c #9d6580",
+"h4 c #9d6e7d",
+"jw c #9d8092",
+"hF c #9d95b0",
+"iu c #9e5e66",
+"df c #9e5f65",
+"ix c #9e636a",
+"iQ c #9e6f7f",
+"jT c #9e90a5",
+"hd c #9f6773",
+"jM c #9f7985",
+"iH c #a05f66",
+"dI c #a0666a",
+"e. c #a0686d",
+"kh c #a09bb5",
+"dO c #a16268",
+"kg c #a199af",
+"h1 c #a26068",
+"hE c #a26169",
+"dG c #a2676b",
+"iP c #a26e7b",
+"jU c #a299b0",
+"ki c #a29fb9",
+"hD c #a35d64",
+"di c #a36267",
+"dE c #a36268",
+"dK c #a3656a",
+"dF c #a3686c",
+"e6 c #a38c82",
+"g2 c #a39fa5",
+"kG c #a3a2bc",
+"kj c #a3a3bd",
+"kH c #a3a3be",
+"k4 c #a3a4bf",
+"dh c #a46166",
+"da c #a46167",
+"ji c #a46b77",
+"jQ c #a47981",
+"jW c #a49eb6",
+"in c #a55f67",
+"dl c #a56066",
+"dk c #a56267",
+"gS c #a56469",
+"dM c #a5676b",
+"jx c #a5879b",
+"h2 c #a593ac",
+"fI c #a59c9c",
+"jV c #a59fb7",
+"kk c #a5a5bf",
+"iw c #a66066",
+"hh c #a66669",
+"dR c #a6676b",
+"dL c #a6696c",
+"jX c #a69fb7",
+"kl c #a6a7c0",
+"lr c #a6a8c0",
+"h8 c #a75f66",
+"iT c #a76369",
+"#N c #a7738b",
+"iL c #a791a7",
+"jb c #a7a2bb",
+"kI c #a7a7c0",
+"k5 c #a7a7c1",
+"dg c #a86569",
+"eQ c #a8666b",
+"d9 c #a87274",
+"jv c #a88391",
+"io c #a891a8",
+"km c #a8a8c1",
+"k6 c #a8a9c1",
+"el c #a96066",
+"hc c #a96167",
+"hK c #a96267",
+"dj c #a9656a",
+"gq c #a9666f",
+"eY c #a9697f",
+"dQ c #a96a6d",
+"ba c #a97088",
+"ir c #a97180",
+"jY c #a9a5bc",
+"cI c #aa6067",
+"gL c #aa6167",
+"h7 c #aa6368",
+"iG c #aa646a",
+"de c #aa666a",
+"ii c #aa686c",
+"fW c #aa6876",
+"i7 c #aa6f77",
+"ei c #aa7575",
+"js c #aa7a7c",
+"jA c #aaa4bd",
+"kn c #aaaac2",
+"hk c #ab6168",
+"ij c #ab6268",
+"ec c #ab7071",
+"ja c #ab8898",
+"jB c #abaac2",
+"hB c #ac6167",
+"iK c #ac6269",
+"it c #ac666c",
+"hI c #ac696b",
+"fq c #ac697c",
+"iS c #ac6a74",
+"i9 c #ac707a",
+"ej c #ac7677",
+"d7 c #ac7878",
+"d8 c #ac7879",
+"jy c #ac8998",
+"jz c #ac9db1",
+"ko c #acacc3",
+"jZ c #acacc4",
+"hj c #ad6368",
+"gj c #ad6369",
+"dP c #ad6b6d",
+"eg c #ad7979",
+"k7 c #adadc5",
+"eo c #ae6168",
+"ds c #ae6369",
+"cP c #ae656b",
+"eb c #ae696d",
+"ee c #ae7473",
+"kp c #aeaec5",
+"j0 c #aeaec6",
+"gV c #af6369",
+".5 c #af677b",
+"bG c #af677d",
+"is c #af696c",
+"kJ c #afafc6",
+"h6 c #b0686b",
+"dd c #b0696d",
+"dJ c #b06f70",
+"ih c #b07d7e",
+"kq c #b0b0c7",
+".j c #b16075",
+"hZ c #b16469",
+"iI c #b1646a",
+"cO c #b1686d",
+"cY c #b1696b",
+"h5 c #b16c71",
+"k8 c #b1b1c7",
+"kK c #b1b1c8",
+"kr c #b1b2c8",
+"eT c #b26269",
+"h0 c #b26369",
+"dT c #b2656a",
+"fP c #b2666a",
+"iv c #b2666b",
+"eh c #b27e7c",
+"fL c #b2988b",
+"ls c #b2b2c8",
+"fr c #b36369",
+"ik c #b3646a",
+"il c #b3656a",
+"hJ c #b3686b",
+"dc c #b3696d",
+"e# c #b37d7c",
+"k9 c #b3b3c8",
+"kL c #b3b3c9",
+"h9 c #b4666b",
+"cQ c #b4686c",
+"cR c #b46a6e",
+"ef c #b47d7b",
+"eP c #b4817f",
+"i4 c #b48483",
+"jm c #b48686",
+"gH c #b4afaf",
+"lt c #b4b4c9",
+"l. c #b4b5ca",
+"eZ c #b5636a",
+"fl c #b5646a",
+"gU c #b5676b",
+"dn c #b56b6e",
+"j. c #b56f76",
+"eH c #b57c7a",
+"ff c #b59b8e",
+"kM c #b5b5ca",
+"lu c #b5b5cb",
+"ce c #b6666b",
+"ed c #b67c79",
+"i. c #b68484",
+"fX c #b7666c",
+"cT c #b7686c",
+"#q c #b77085",
+"iE c #b78685",
+"l# c #b7b7cc",
+"hC c #b8676b",
+"hi c #b8686c",
+"do c #b86b6e",
+"j# c #b87a83",
+"la c #b8b8cd",
+"lv c #b9b9ce",
+"gr c #ba686c",
+"db c #ba6a6e",
+"ky c #ba9ea7",
+"fQ c #bb666b",
+"gT c #bb696d",
+"cS c #bb6c6f",
+"dm c #bb6d6f",
+"gw c #bbb9be",
+"lw c #bbbbcf",
+"cJ c #bc6a6e",
+"iW c #bc8f8e",
+"k3 c #bcaeb8",
+"hL c #bd6d70",
+"ez c #bd8b87",
+"lx c #bdbdd0",
+"im c #be686d",
+"gs c #be6a6e",
+"dp c #be6b6d",
+"gk c #bf696e",
+"c1 c #bf6a6e",
+"fZ c #bf6b6e",
+"hY c #bf6d6f",
+"aA c #bf7c50",
+"ea c #bf817d",
+"iy c #bf9290",
+"k. c #bf9fa3",
+"kF c #bfacb5",
+"eu c #c0676d",
+"eG c #c07e7c",
+"fj c #c08580",
+"az c #c08a46",
+"gM c #c16a6e",
+".2 c #c16b6e",
+"e8 c #c19f95",
+"iJ c #c26b70",
+"eD c #c2918c",
+"kf c #c2a7aa",
+".4 c #c36d75",
+"cf c #c37072",
+"bz c #c37482",
+".I c #c46d71",
+"cl c #c46e71",
+"cN c #c47174",
+"kW c #c4a2a5",
+".3 c #c56d70",
+"a6 c #c59141",
+"fg c #c5a597",
+"cX c #c67273",
+"hv c #c6c0c1",
+"eR c #c76f71",
+"cv c #c77172",
+"hX c #c78b86",
+"fa c #c7918a",
+"eC c #c79791",
+"ex c #c86c70",
+"cU c #c86f73",
+"e3 c #c8928b",
+"eI c #c8938a",
+"eJ c #c8948c",
+"eN c #c89891",
+"fY c #c96f71",
+"eS c #c97072",
+"fk c #c97173",
+"eO c #c99a92",
+"d4 c #ca6c70",
+"ft c #ca6f72",
+"cK c #ca7374",
+"lg c #caafac",
+"cV c #cb7273",
+"cM c #cb7274",
+"jN c #cb9c97",
+"hl c #cc7777",
+"a5 c #cc9448",
+".o c #cd6e7a",
+"eE c #cd9e95",
+"dB c #ce6e71",
+"a7 c #ce8154",
+"ay c #ce9d48",
+"lo c #ceb2aa",
+"em c #cf7173",
+"cm c #cf7273",
+"cn c #d07374",
+"ck c #d07477",
+"hA c #d07879",
+"hM c #d08a85",
+"eB c #d0a59d",
+"jP c #d0aca6",
+"d1 c #d16d72",
+"cz c #d17176",
+"bK c #d17374",
+"bu c #d17b5e",
+"b5 c #d2757c",
+"cW c #d27677",
+"e2 c #d27777",
+"hq c #d2cdca",
+".X c #d36d7a",
+".1 c #d37174",
+"co c #d37375",
+"bL c #d37475",
+"bm c #d37c66",
+"f2 c #d3baaa",
+"d. c #d47174",
+"fs c #d47374",
+"cL c #d47678",
+"e5 c #d4b7a9",
+"fe c #d4bbac",
+"e1 c #d57275",
+"fO c #d57a79",
+"eM c #d5aa9f",
+"ca c #d6757f",
+"a4 c #d69a55",
+"eF c #d69d93",
+"hb c #d77c7b",
+"gW c #d77d7c",
+"fb c #d7aba0",
+"jr c #d7b8b1",
+"dU c #d87576",
+"hu c #d8d1ce",
+".H c #d97476",
+"b1 c #d97676",
+"cu c #d97878",
+"eK c #d9ada1",
+"eA c #d9b0a5",
+"gD c #d9d1cc",
+"en c #da7677",
+"ax c #dbb157",
+"fh c #dbb3a4",
+".0 c #dc7476",
+"cp c #dc7577",
+"b4 c #dc7779",
+"gi c #dc7f7d",
+"gK c #dc7f7e",
+"aS c #dc8969",
+"f# c #dca398",
+"gb c #dcd3cb",
+"gt c #dd8381",
+"eL c #ddb5a8",
+"b. c #de7577",
+"e0 c #de7677",
+"#V c #de7b85",
+"fu c #de8480",
+"fw c #dec0ad",
+"gZ c #ded5d2",
+"bM c #df7b7c",
+"bt c #df7e69",
+"aT c #dfad75",
+"c8 c #e07578",
+"ew c #e07677",
+"cr c #e07979",
+"cy c #e07d7f",
+"f0 c #e08682",
+"hW c #e0b9ad",
+"hp c #e0d9d4",
+"by c #e17779",
+"cg c #e17d7e",
+"aO c #e1848c",
+"fi c #e1b6a6",
+".Z c #e27778",
+"cj c #e27a7b",
+"fN c #e2ae9f",
+"hN c #e2bbae",
+"bR c #e37879",
+"cG c #e37a7d",
+"aB c #e37c6d",
+"ac c #e3888f",
+"i3 c #e3c6bb",
+"cs c #e47b7b",
+"a3 c #e4a268",
+"jn c #e4c9c0",
+"hw c #e4d8d2",
+"h. c #e4dad5",
+"dz c #e57677",
+"dy c #e57678",
+"bv c #e57c75",
+"fE c #e5bcae",
+"e9 c #e5c1b3",
+"ig c #e5c3b7",
+"gg c #e5c8b5",
+"aD c #e67678",
+"dq c #e67b7b",
+"aE c #e67b7c",
+"bn c #e68073",
+"cd c #e68183",
+"f7 c #e6d9cf",
+"hr c #e6dbd2",
+"ev c #e77879",
+"cq c #e77a7b",
+"f1 c #e7baa8",
+"gu c #e7bbaa",
+"e4 c #e7bfaf",
+"gA c #e7ddd4",
+"d3 c #e87879",
+"ci c #e87d7e",
+"cw c #e87f7f",
+"kz c #e8ae9d",
+"g6 c #e8ded6",
+"bS c #e97a7a",
+"ch c #e97e7f",
+"bl c #e98079",
+"ct c #e98081",
+"c0 c #e98182",
+"cb c #e98384",
+"hm c #e9aa9e",
+"kX c #e9ae9d",
+"gX c #e9b5a6",
+"kC c #e9b9a6",
+"fv c #e9b9a8",
+"fc c #e9c5b6",
+"iX c #e9d2c8",
+"d2 c #ea797a",
+"bT c #ea7a7a",
+"k# c #eab4a3",
+"aa c #eb797b",
+"dV c #eb7c7c",
+"bs c #eb7e75",
+"b# c #eb8081",
+"kA c #ebb3a2",
+"kB c #ebb8a5",
+"gv c #ebd4c5",
+"fH c #ebdcd0",
+"bQ c #ec7b7c",
+"hz c #ecb2a4",
+"kY c #ecb4a2",
+"li c #ecb4a3",
+"ka c #ecc3b2",
+"fM c #ecc8b3",
+"fF c #eccdbe",
+"iD c #eccdc0",
+"#f c #ed787d",
+"dA c #ed7a7a",
+"b0 c #ed7b7c",
+"bx c #ed7f80",
+"lj c #edb6a5",
+"lh c #edc0b0",
+"ke c #edc6b5",
+"fB c #edd7c9",
+"#i c #ee7a7a",
+"bU c #ee7b7b",
+"a8 c #ee7d76",
+"ha c #eeb9a8",
+"f. c #eec3b2",
+"k2 c #eec6b3",
+".E c #ef797d",
+"cF c #ef7b7e",
+"a. c #ef7c77",
+"kZ c #efbba8",
+"gJ c #efbfac",
+"gh c #efc0ad",
+"kD c #efc2af",
+"kE c #efc2b0",
+"aw c #efc56f",
+"fd c #efd3c4",
+"i# c #efd3c7",
+"#9 c #f07f74",
+"bH c #f08a8b",
+"#7 c #f08d70",
+"a2 c #f0a876",
+"aU c #f0bb90",
+"lk c #f0beab",
+"jO c #f0cfc1",
+"gI c #f0d6c5",
+"iz c #f0dace",
+"bX c #f17e7e",
+"dr c #f18081",
+"b2 c #f18484",
+"bJ c #f18888",
+"#6 c #f19f74",
+"k0 c #f1c1ad",
+".k c #f27a7d",
+"#j c #f27b7b",
+".G c #f27b7c",
+"#h c #f27c7c",
+"bW c #f27d7d",
+"bo c #f27e7c",
+"bN c #f28181",
+"an c #f2957e",
+"fD c #f2cbbb",
+"kd c #f2dccd",
+"c9 c #f37d7d",
+"#8 c #f38472",
+"ab c #f38686",
+"aF c #f38989",
+"aZ c #f3a181",
+"a0 c #f3a37d",
+"kb c #f3ddcf",
+"g3 c #f3e6da",
+"#k c #f47b7c",
+"c7 c #f47c7c",
+"#z c #f47c7e",
+"bV c #f47d7d",
+"bZ c #f48181",
+"cZ c #f48383",
+"a1 c #f4a77b",
+"ao c #f4b893",
+"ll c #f4c6b2",
+"#l c #f57b7c",
+"aC c #f57d7b",
+"br c #f57d7c",
+"a9 c #f57d7e",
+"aY c #f5a389",
+"k1 c #f5c9b3",
+"ho c #f5e5da",
+"bP c #f67e7e",
+"aR c #f67f7a",
+"#F c #f6837d",
+"#E c #f6847e",
+"#5 c #f6b17e",
+"ln c #f6ceb9",
+"hy c #f6d6c5",
+"ht c #f6ebe0",
+".Y c #f77d7d",
+".n c #f77d7e",
+"bO c #f78080",
+"am c #f7827a",
+"bY c #f78383",
+"lm c #f7cdb8",
+"hn c #f7d8c7",
+"ib c #f7e5d8",
+"iZ c #f7e8db",
+"iY c #f7e9dc",
+"kc c #f7e9dd",
+"iB c #f7eadd",
+"#K c #f87c7d",
+"a# c #f87d7c",
+"#L c #f87e7e",
+"cH c #f88382",
+"bw c #f88383",
+"h# c #f8decd",
+"g. c #f8e2d3",
+"fG c #f8e4d5",
+"hx c #f8e7db",
+"jq c #f8e9dd",
+"iC c #f8eadd",
+"i0 c #f8eade",
+"#m c #f97d7d",
+"bq c #f97d7e",
+"#M c #f98686",
+"bi c #f98c8d",
+"aX c #f9a991",
+"#4 c #f9b883",
+"#3 c #f9b884",
+"av c #f9ce7c",
+"fC c #f9decd",
+"gY c #f9e0d0",
+"hV c #f9e2d4",
+"g# c #f9e6d9",
+"ic c #f9e9dd",
+"hs c #f9eadd",
+"ia c #f9ebdf",
+"iA c #f9ece0",
+"#g c #fa7e7e",
+"#p c #fa7f80",
+"bk c #fa8787",
+"cx c #fa8988",
+"b3 c #fa8989",
+"bI c #fa8f8f",
+"#0 c #faa68f",
+"#1 c #fab28f",
+"#2 c #fab688",
+"aV c #faba9a",
+"ap c #fad7ab",
+"f9 c #fae5d7",
+"if c #fae6d8",
+"hO c #fae8da",
+"f8 c #faeadd",
+"hR c #faebde",
+"i2 c #faecdf",
+"jo c #faece0",
+"hQ c #faede0",
+"i1 c #faede1",
+"jp c #faeee2",
+".F c #fb7e7e",
+"bp c #fb7e7f",
+"#G c #fb827d",
+"cc c #fb8a8a",
+"bj c #fb8e8e",
+"#Z c #fb9489",
+"aW c #fbb297",
+"hU c #fbe8da",
+"hT c #fbe9dc",
+"ie c #fbeadd",
+"hS c #fbecdf",
+"id c #fbece0",
+"ga c #fbede0",
+"gC c #fbede1",
+"hP c #fbeee1",
+"gB c #fbeee2",
+"g4 c #fbefe2",
+"g5 c #fbefe3",
+"#n c #fc7e7e",
+"#J c #fc7f7f",
+"#H c #fc807d",
+"au c #fcd07f",
+"at c #fcd184",
+"as c #fcd493",
+"#I c #fd7f7e",
+"#o c #fd7f7f",
+"#X c #fd817f",
+"#D c #fd8680",
+"#Y c #fd8882",
+"aP c #fd8a89",
+"ar c #fddba3",
+"#W c #fe7f7e",
+".m c #fe7f7f",
+"aQ c #fe8181",
+"#A c #fe8280",
+"#B c #fe8480",
+"#C c #fe8580",
+"al c #fe8989",
+"aq c #fee0af",
+".l c #ff7f7f",
+"Qt.#.a.b.c.d.e.f.g.h.i.j.k.l.l.l.l.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z",
+".a.b.A.d.e.f.g.B.C.D.E.l.l.l.l.l.l.m.F.G.H.I.J.K.L.M.w.N.y.O.P.Q",
+".R.d.e.S.T.U.V.W.X.m.l.l.l.l.l.l.m.Y.Z.0.1.2.3.4.5.6.7.8.9.Q#.##",
+".e#a.T#b#c#d#e#f.l.l.l.l.l.l.l.m#g#h#i#j#k#l#m#n#o#p#q#r#.###s#t",
+".g#u#v#w#x#y#z.l.l.l.m.m#A#B#C#D#E#F#G#H#I.m#o#J#K#L#M#N#O#t#P#Q",
+"#v#R#S#T#U#V.l.l#W#X#Y#Z#0#1#2#3#4#5#6#7#8#9a.a##kaaabacadaeafag",
+"#Sahaiajakal.l#IamanaoapaqarasatauavawaxayazaAaBaCaDaEaFaGaHaIaJ",
+"aKaLaMaNaOaPaQaRaSaTaUaVaWaXaYaZa0a1a2a3a4a5a6a7a8a9b.b#babbbcbd",
+"bebfbgbhbibjbkblbmbnbo#g#o.F#m.Y#m#nbpbqbrbsbtbubvbwbxbybzbAbBbC",
+"bDbEbFbGbHbIbJbKbLbMbNbObPbQbRbSbTbUbVbWbXbYbZb0b1b2b3b4b5b6b7b8",
+"b9c.c#cacbcccdcecfcgchcicjckclcmcncocpcqcrcsctcucvcwcxcyczcAcBcC",
+".rcDcEcFcGcHb4cIcJcKcLcMcNcOcPcQcRcScTcUbLcVcWcXcYbKcZc0c1c2c3c4",
+".tc5c6c7c8c9d.d#dadbdcdddedfdgdhdidjdkdldbdmdndodidpdqdrdsdtdudv",
+".vdwdxdydzdAdBdCdDdEdFdGdHdIdJdhdKdLdMdNdOdPdQdRdSdTdUdVcIdWdXdY",
+".xdZd0d1d2d3d4d5d6d7d8d9e.e#eaebecedeeefegeheiejekelemeneoepeqer",
+".OeseteuevewexeyezeAeBeCeDeEeFeGeHeIeJeKeLeMeNeOePeQeReSeTeUeVeW",
+".QeXeYeZe0e1e2e3e4e5e6e7e8e9f.f#fafbfcfdfefffgfhfifjfkdbflfmfnfo",
+"##fpfqfrfsftfufvfwfxfyfzfAfBfCfDfEfFfGfHfIfJfKfLfMfNfOfPfQfRfSfT",
+"fUfVfWfXfYfZf0f1f2f3f4f5f6f7f8f9g.g#gagbgcgdgegfggghgigjgkglgmgn",
+"gogpgqgrgscegtgugvgwgxgygzgAgBgBgCgCgBgDgEgFgGgHgIgJgKgLgMgNgOgP",
+"gQgRgSgTgUgVgWgXgYgZg0g1g2g3gCg4g5g5g5g6g7g8g9h.h#hahbhcgkd#hdhe",
+"hfhghhhihjhkhlhmhnhohphqhrhsgag4g5g5g5hthuhvhwhxhyhzhAhBhChDhEhF",
+"hGhHhIhJhKgLhLhMhNhOg5gBgCgChPhQhRgag5gBhShThUhVhWhXhYhZdTh0h1h2",
+"h3h4h5h6h7h8h9cOi.i#gCg5g5g5g5iaibicg5gBidieifigihiiijikiliminio",
+"ipiqirisitiuiviwixiyizgBg5g5iAiBhsiCiAg4hPf8iDiEiFiGiHiIhiiJiKiL",
+"iMiNiOiPiQiRiSiTiUiViWiXgBg5iAiYiZi0i1g5i2i3i4i5i6i7i8i9j.j#jajb",
+"c4jcjdjejfjgjhjijjjkjljmjnjojpi1i1i1jpjqjrjsiFjtjujvjwjxjyjzjAjB",
+"dvjCjDjEjFjGjHjIjJjKjLjMjNjOjqg5g5g5ibjPjQjRjSjTjUjVjWjXjYjBjZj0",
+"j1jEerj2j3j4foj5j6j7j8j9k.k#kakbkckdkekfkgkhkikjkkklkmknkokpkqkr",
+"erj2j3ksfoj5j6ktkukvkwkxkykzkAkBkCkDkEkFkGkHkkkIkmknjZkpkJkKkLkM",
+"eWkNfokOkPkQkRkSkwkTkUkVkWkXkYkZk0k1k2k3k4k5k6knjZk7kJk8k9l.l#la",
+"j5j6kPkukvlblckTldlelflglhliljlklllmlnlolplqlrkJkqlsltlul#lvlwlx"};
diff --git a/debian/renpy.desktop b/debian/renpy.desktop
new file mode 100644
index 0000000..0d6dda3
--- /dev/null
+++ b/debian/renpy.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=Ren'Py
+GenericName=renpy
+Comment=visual-novel type games
+Comment[es]=juegos de novela grafica
+Icon=renpy
+Exec=renpy
+Terminal=false
+Categories=Application;Game;
diff --git a/debian/renpy.menu b/debian/renpy.menu
new file mode 100644
index 0000000..3339900
--- /dev/null
+++ b/debian/renpy.menu
@@ -0,0 +1,3 @@
+?package(renpy):needs="x11" section="Games/Adventure" \
+	title="Ren'Py" command="/usr/games/renpy" \
+	icon="/usr/share/pixmaps/renpy.xpm"
diff --git a/debian/renpy.xpm b/debian/renpy.xpm
new file mode 100644
index 0000000..e104344
--- /dev/null
+++ b/debian/renpy.xpm
@@ -0,0 +1,658 @@
+/* XPM */
+static char *dummy[]={
+"32 32 623 2",
+"dg c #1e2542",
+"ey c #253141",
+"c3 c #262f55",
+"di c #273059",
+"fc c #27333f",
+"dj c #283157",
+"dh c #28315b",
+"ee c #292229",
+"cU c #2a3460",
+"dp c #2b3663",
+"cV c #2c3664",
+"fs c #314254",
+"eB c #322d37",
+"dq c #343c60",
+"ez c #35313d",
+".2 c #364b60",
+"do c #383e60",
+".N c #395067",
+"aR c #3c5672",
+"#1 c #3c5a78",
+"#3 c #3d5874",
+"eg c #3e2a30",
+".F c #3e5c79",
+"hj c #3f3f3f",
+"dJ c #3f476e",
+"aw c #3f5b76",
+"eR c #412f36",
+"ah c #415a74",
+".k c #415f7d",
+"fd c #416080",
+".5 c #42617f",
+"#i c #44627f",
+"dE c #454e74",
+"ft c #455d73",
+"eT c #456586",
+"#D c #465f77",
+"cT c #474751",
+"ai c #47596b",
+"bE c #496886",
+".H c #496c8e",
+"fe c #4a698c",
+".x c #4b647d",
+".n c #4b6680",
+"dD c #4c5478",
+"gy c #4c6167",
+"d# c #4c6f94",
+".a c #4c7093",
+"bc c #4c7197",
+"ba c #4d4c5f",
+"aT c #4d565f",
+"gf c #4d749a",
+"eQ c #4e343a",
+".v c #4e759c",
+"bD c #4e769d",
+"fC c #4f667b",
+".u c #505961",
+"he c #50779f",
+"eP c #523b45",
+"ay c #525a63",
+"#l c #525b63",
+"hy c #526a81",
+"fA c #527aa3",
+"dv c #536380",
+"bd c #555453",
+"d. c #5682ad",
+"dQ c #5782ae",
+"cL c #5783af",
+"cK c #5884b0",
+"d4 c #593438",
+"eC c #59383a",
+".3 c #5985b2",
+"#j c #5a87b4",
+"#F c #5a88b5",
+"d5 c #5b4856",
+"e9 c #5b4f42",
+"ax c #5b88b6",
+"ef c #5b89b7",
+"fB c #5c8ab8",
+"#E c #5c8ab9",
+"bC c #5c8bb9",
+"eV c #5d8bba",
+"hx c #5d8cbb",
+"b0 c #5e8cbb",
+".l c #5e8dbc",
+"cn c #5e8dbd",
+"aS c #5e8ebd",
+"ff c #5f8ebe",
+".O c #5f8fbf",
+"eS c #60424c",
+".P c #606162",
+"#h c #606a74",
+"fX c #6090c0",
+"bB c #6091c1",
+"bA c #614955",
+"fW c #616b55",
+"gT c #6191c1",
+".G c #6191c2",
+"b1 c #6192c2",
+".4 c #6192c3",
+"dS c #625a6f",
+"eW c #626a50",
+"eU c #6292c3",
+".m c #6293c4",
+"bb c #6294c5",
+".w c #6394c5",
+".# c #6394c6",
+"#k c #6395c6",
+"dR c #6395c7",
+"#2 c #6495c7",
+"Qt c #6496c8",
+"ev c #653b40",
+"eA c #654752",
+".j c #666b6f",
+".b c #686867",
+"c4 c #696e86",
+"dF c #6c708b",
+"dI c #6e748f",
+"fY c #6e787f",
+"ho c #716a6e",
+"c2 c #726f78",
+"gS c #727852",
+"ew c #734348",
+"#0 c #746c63",
+"g5 c #74797c",
+"cW c #757b94",
+"#G c #777068",
+"gY c #7a7260",
+"bZ c #7c4d55",
+"hS c #7c7d4e",
+"fb c #7d7341",
+"gg c #7d8281",
+"eh c #7e494e",
+"cu c #7f797a",
+"cv c #7f7c83",
+"gz c #7f888d",
+"c6 c #805758",
+".E c #807b77",
+"hq c #818686",
+"hk c #828282",
+"gH c #847376",
+"#C c #84817f",
+"e8 c #868685",
+"g2 c #878b79",
+"gu c #887969",
+"hp c #898386",
+"dP c #8a4a4d",
+"hd c #8b884b",
+"#X c #8c555a",
+"fo c #8c8132",
+"#g c #8c8782",
+"g# c #8d837c",
+"bF c #8e5e64",
+"dr c #8e8881",
+"an c #8f5a5d",
+"hw c #8f8b4a",
+"gO c #908279",
+"ag c #90877d",
+"fg c #908c4a",
+"aC c #915e61",
+"cD c #926265",
+"fQ c #928b81",
+"dK c #9296a9",
+"cm c #935358",
+"aB c #93746f",
+"gt c #93867c",
+"be c #93887c",
+"dC c #949298",
+"g3 c #968081",
+".I c #968b80",
+"eN c #976263",
+"aj c #978c80",
+"hJ c #97928d",
+"hl c #979797",
+"eb c #98585e",
+".p c #988d81",
+".o c #988e83",
+"fz c #989048",
+"gI c #989793",
+"cF c #995b60",
+"et c #995e63",
+"hm c #999999",
+"bk c #9a6968",
+"hs c #9a8d82",
+"#Y c #9b8d81",
+"ek c #9c5e5f",
+"b2 c #9c6069",
+"#Z c #9c9083",
+"hi c #9c9c9c",
+"eO c #9d5c61",
+"bn c #9d6967",
+"a0 c #9e5b60",
+"el c #9e5b61",
+"hI c #9e9476",
+"gU c #9e9d96",
+"co c #9f5a5f",
+"#9 c #9f6565",
+"am c #9f7d7a",
+"#8 c #9f807c",
+"fM c #9f987e",
+"ex c #a05659",
+"ec c #a05c63",
+"ej c #a05d62",
+"eu c #a05d63",
+"hN c #a09085",
+"h# c #a09186",
+"gX c #a0a0a0",
+"c7 c #a15b61",
+"aD c #a15d64",
+"d7 c #a15e63",
+"bR c #a16a6b",
+"hO c #a19186",
+"ci c #a25b60",
+"bl c #a25d62",
+"g4 c #a28586",
+"hP c #a2917b",
+"#4 c #a29587",
+"d2 c #a35f66",
+"cJ c #a4595c",
+"ei c #a45f66",
+"gN c #a49388",
+"aV c #a49789",
+".y c #a4978a",
+".z c #a4988c",
+".M c #a49b91",
+"aW c #a58980",
+"hL c #a59589",
+"aU c #a5988a",
+"aX c #a66067",
+"b7 c #a67674",
+"hr c #a6968a",
+".c c #a69a8d",
+"fI c #a69f72",
+".6 c #a7998b",
+"av c #a85b5a",
+"db c #a86168",
+"gG c #a8a565",
+"cM c #a95b5e",
+"dy c #a96168",
+".K c #a99d91",
+"bs c #aa6064",
+"bp c #aa7e77",
+"#x c #aa988f",
+"aA c #aa9b8d",
+"d6 c #ab6268",
+"#w c #ab988f",
+"ht c #ab9a8e",
+"#y c #ab9a91",
+"hn c #abaead",
+"aY c #ac6269",
+"#v c #ac9a91",
+"hK c #ac9d92",
+"e4 c #aca39b",
+"dU c #ad7273",
+"bg c #ad8b84",
+"cs c #ad8c87",
+"g6 c #ad9d91",
+"hD c #adadad",
+"#W c #ae6267",
+"fr c #ae9288",
+"#z c #aea196",
+"bQ c #af696b",
+"a5 c #af6d6d",
+"#L c #af9a91",
+"gM c #afa094",
+"go c #afa487",
+".1 c #afa499",
+"du c #b05c5f",
+"by c #b06166",
+"hM c #b09e92",
+".i c #b0a59b",
+"f. c #b18d5b",
+"#u c #b1a197",
+"az c #b1a394",
+"bY c #b25a5a",
+"bz c #b25b5c",
+"cO c #b2646a",
+"cd c #b27c7c",
+"dw c #b3646a",
+"cA c #b38182",
+"#M c #b3857f",
+"c5 c #b3a79f",
+"hE c #b3b3b3",
+"c9 c #b45e61",
+"bV c #b46064",
+"dN c #b4656b",
+"cy c #b48380",
+"ga c #b49466",
+"eM c #b4a09a",
+"h. c #b4a295",
+"bf c #b4a696",
+"eE c #b4a85d",
+"#. c #b4a89b",
+".g c #b4a89c",
+"dx c #b5656b",
+"bv c #b56967",
+"bM c #b57574",
+"dM c #b58283",
+"af c #b5847d",
+"cc c #b5958f",
+"ha c #b59c5f",
+"g9 c #b5a396",
+"g1 c #b5a973",
+"hC c #b5b5b5",
+"da c #b66368",
+"dc c #b6666b",
+"cg c #b66d70",
+"bU c #b6746f",
+"bo c #b67771",
+"bJ c #b68882",
+"ea c #b69390",
+"ds c #b69792",
+"eD c #b6a34c",
+"## c #b6aa9e",
+"cG c #b76265",
+"fp c #b7988c",
+"bT c #b86265",
+"aE c #b8666c",
+"b# c #b95f61",
+"ao c #b9656a",
+"cp c #b9666c",
+"bm c #b96967",
+"dA c #b98584",
+"bO c #b9948d",
+"#7 c #b9a99e",
+"cB c #ba7b79",
+"#H c #baab9b",
+"#I c #baac9d",
+"#p c #baada0",
+"fP c #bab9b5",
+"#N c #bb7471",
+"dT c #bc686d",
+"gZ c #bcab75",
+".Q c #bcad9d",
+"#t c #bcaea3",
+".R c #bcafa1",
+"#A c #bcafa3",
+"b. c #bd686c",
+"bt c #bd7774",
+"e3 c #bdac5b",
+"al c #bdaca1",
+"#a c #bdb1a4",
+"ck c #be6265",
+"bK c #be6568",
+"gP c #bea160",
+"g0 c #beac6b",
+"#q c #beb1a5",
+"eI c #beb47c",
+"bX c #bf666a",
+"bh c #bf696e",
+".9 c #bfb2a5",
+"dW c #bfb9b8",
+"b4 c #c0696e",
+"c1 c #c07476",
+"de c #c08e8b",
+"fu c #c09a65",
+"em c #c09c77",
+"ge c #c0b148",
+"hF c #c0b57f",
+"g8 c #c0b9b1",
+"#B c #c1b5a8",
+"dt c #c26a6f",
+"c0 c #c29d9a",
+"hu c #c2a95c",
+"#5 c #c2b3a4",
+".t c #c2b5a9",
+"gs c #c2bbb5",
+"fR c #c39d69",
+"#m c #c3b4a4",
+"cw c #c3bbb7",
+"fG c #c3be9e",
+"#O c #c46968",
+"cR c #c48d89",
+"cC c #c4bab2",
+".h c #c5b8ab",
+"hf c #c5c0b2",
+"cH c #c66464",
+"#V c #c66b70",
+"fD c #c6b44d",
+".J c #c6b7a7",
+"#o c #c6b9ab",
+"fZ c #c6bfa6",
+"bS c #c7938c",
+"gi c #c7ab77",
+"#f c #c7baae",
+"eX c #c7bf99",
+"g7 c #c7c3bc",
+"a2 c #c87572",
+"a4 c #c87c78",
+"cr c #c88782",
+"#b c #c8bbae",
+"gB c #c8bca3",
+"dL c #c8bfb6",
+"a. c #c9686a",
+"cN c #c96c70",
+"a7 c #c96d6d",
+".s c #c9bbae",
+"eH c #c9c2a4",
+"aZ c #ca6a6c",
+"ed c #cb6c70",
+"dz c #cb6d71",
+".7 c #cbbdb0",
+"aQ c #cc6869",
+"ca c #ccb5ad",
+".X c #ccbfb2",
+"a8 c #cd6c6c",
+"bG c #cd6e72",
+"cb c #cd7272",
+".r c #cdc0b2",
+"fh c #cdc8ac",
+"cP c #ce6e72",
+"gj c #ceab63",
+"ct c #ceb0a9",
+"dV c #cec6c3",
+"bq c #cf7776",
+"b6 c #d07f7b",
+"fa c #d0b25a",
+"cY c #d0c1b8",
+"#K c #d0c2b4",
+".W c #d0c3b5",
+"dd c #d16f73",
+"b8 c #d18a88",
+".A c #d1c2b4",
+"e0 c #d1c36a",
+"df c #d1c6bc",
+"ep c #d1cdc9",
+"d3 c #d26f73",
+"c. c #d2b2ab",
+"#s c #d2c4b7",
+"fO c #d2cac1",
+"cl c #d36969",
+"f# c #d3b063",
+"aK c #d46f70",
+"fv c #d4ab6d",
+".Y c #d4c7b9",
+"gh c #d4cebc",
+"cj c #d56c6c",
+"#U c #d57074",
+"bI c #d57371",
+".B c #d5c8ba",
+".S c #d6c8ba",
+"#c c #d6c9bb",
+"dZ c #d6cecb",
+"#P c #d76d6d",
+"cQ c #d77174",
+".V c #d7c9bc",
+"gv c #d8b368",
+"eF c #d8c350",
+"eG c #d8c552",
+"ak c #d8c9ba",
+"fF c #d8d8d8",
+"ae c #d96d6e",
+"bi c #d97275",
+"dn c #d9c5bd",
+".C c #d9cbbd",
+"hG c #d9cc73",
+"aI c #da7275",
+"fE c #dad094",
+"g. c #dadad9",
+"aO c #db7275",
+"gb c #dbb66a",
+"eZ c #dbce7e",
+"bw c #dc7376",
+"fS c #dcb769",
+"fn c #dcca4f",
+"hh c #dcdcdb",
+"ch c #dda099",
+"fw c #ddb869",
+"f5 c #ddcd62",
+"#r c #ddcfc0",
+".Z c #ddcfc1",
+"f8 c #dddbd5",
+"bL c #deb5ab",
+"fq c #deb6a9",
+"c# c #deccc2",
+"#n c #ded0c1",
+"e5 c #ded2c7",
+"er c #ded6ce",
+"hz c #ded8c8",
+"gJ c #dedbd9",
+"e2 c #dededb",
+"fN c #dfcdc4",
+"cq c #e07477",
+"eo c #e0d4b5",
+"cx c #e0d4c9",
+"cX c #e0d6ce",
+"aJ c #e17475",
+"au c #e17477",
+"#T c #e17577",
+"cE c #e1bdb3",
+"#J c #e1d3c4",
+"bW c #e27070",
+"bP c #e27374",
+"b3 c #e27577",
+"cz c #e2d0c5",
+"fk c #e2d278",
+"en c #e2d280",
+".8 c #e2d3c4",
+"bu c #e37476",
+"a3 c #e37576",
+"dm c #e3d3c9",
+".U c #e3d4c6",
+"eJ c #e3d6c1",
+"gp c #e3e0dd",
+"a1 c #e47577",
+"dO c #e47578",
+"bN c #e4c5b9",
+"d1 c #e4d4ca",
+".q c #e4d5c6",
+".f c #e4d6c7",
+"gr c #e4e4e4",
+"c8 c #e57577",
+"aP c #e57678",
+"b9 c #e5d4c9",
+".0 c #e5d6c8",
+"dY c #e5dbd4",
+"hA c #e5e0d2",
+"fl c #e5e5e4",
+"br c #e67678",
+"hQ c #e6c95f",
+"#e c #e6d7c8",
+"dk c #e6dbd1",
+"hg c #e6e1d4",
+"hH c #e7d55c",
+".L c #e7d8c9",
+"#d c #e7d8ca",
+".D c #e7d9ca",
+"es c #e7dbd0",
+"f7 c #e7e5e1",
+"aF c #e87779",
+"cf c #e8cfc4",
+"f1 c #e8d46d",
+"cS c #e8d6cb",
+".d c #e8d9ca",
+".T c #e8d9cb",
+"e7 c #e8ddd2",
+"f6 c #e8e5df",
+"ap c #e97779",
+"#S c #e97879",
+"#6 c #e9dacb",
+"eq c #e9e6e4",
+"#Q c #ea7778",
+"f0 c #eacc62",
+".e c #eadbcc",
+"f9 c #eae7e2",
+"b5 c #eb7879",
+"gc c #ebcd62",
+"e6 c #ebdfd4",
+"bx c #ec7575",
+"fT c #edcf62",
+"gQ c #edd061",
+"dX c #ede2d7",
+"gV c #edeae1",
+"gK c #ededed",
+"#R c #ee797a",
+"fx c #eed261",
+"fH c #eeda6c",
+"fj c #efe9be",
+"hb c #f0d55f",
+"gC c #f1d95c",
+"d8 c #f1e2d7",
+"gA c #f1efe8",
+"aM c #f27979",
+"a9 c #f27a7b",
+"fK c #f2de56",
+"f3 c #f2de58",
+"dB c #f2e6db",
+"e. c #f2e7db",
+"f2 c #f2e8a7",
+"bj c #f37979",
+"aG c #f37a7a",
+"ar c #f37b7c",
+"eL c #f3e7dc",
+"gW c #f3f3f3",
+"aN c #f47b7b",
+"hv c #f4db5d",
+"hB c #f4f3f1",
+"at c #f57b7c",
+"aH c #f57c7c",
+"d9 c #f5e9dd",
+"eY c #f5f3ee",
+"f4 c #f6e257",
+"gL c #f6f5f4",
+"bH c #f77c7d",
+"fy c #f7df5c",
+"gF c #f7e358",
+"a# c #f87c7d",
+"hR c #f8e05b",
+"e# c #f8ece0",
+"e1 c #f8f6f2",
+"cI c #f97c7c",
+"a6 c #f97d7d",
+"gw c #f9e15b",
+"gR c #f9e25b",
+"gn c #f9e458",
+"cZ c #f9ede1",
+"d0 c #f9eee3",
+"fJ c #f9f5d9",
+"ac c #fa7d7e",
+"gl c #fae35b",
+"hc c #fae45a",
+"gd c #fae45b",
+"fV c #fae559",
+"gx c #fae658",
+"dG c #faeee2",
+"dH c #faefe3",
+"ce c #fb7d7d",
+"aL c #fb7e7e",
+"fU c #fbe45a",
+"gm c #fbe65a",
+"dl c #fbefe3",
+"eK c #fbf0e5",
+"fm c #fbfbfa",
+"aq c #fc7e7e",
+"gD c #fce65a",
+"gk c #fce759",
+"ad c #fd7e7e",
+"as c #fd7e7f",
+"gE c #fde759",
+"fL c #fde859",
+"aa c #fe7f7f",
+"ab c #ff7f7f",
+"fi c #fffffe",
+"gq c #ffffff",
+"QtQtQtQtQtQtQtQt.#.a.b.c.d.e.f.g.h.i.j.k.lQtQtQtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQtQt.m.n.o.p.q.e.e.e.e.r.s.e.t.u.v.#QtQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQt.w.x.y.z.A.e.e.e.e.e.e.B.C.e.D.E.F.GQtQtQtQtQtQtQtQt",
+"QtQtQtQtQtQt.H.I.J.K.e.e.e.e.e.e.e.e.C.L.e.e.M.N.OQtQtQtQtQtQtQt",
+"QtQtQtQtQt.l.P.Q.R.S.e.e.e.e.e.T.U.V.W.X.Y.Z.0.1.2.3.4QtQtQtQtQt",
+"QtQtQtQtQt.5.6.Q.7.e.e.8.9#.###a#b#c.U#d.d.L#e.d#f#g#h#i#j#kQtQt",
+"QtQtQtQt.m#l.Q#m#n#o#p#q#r.e.e.e.e.0#s#t#u#v#w#x#y#z#A#B#C#D#EQt",
+"QtQtQtQt#F#G#H#I#o#J.e.e.d#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Z#0#1#2",
+"QtQtQt.m#3#4#5#6.e.U#7#8#9a.a#aaababababababababacadaeafagah.OQt",
+"QtQt.laiaj.Qakalamanaoapaqarasaqabatabababababasaaauacavaw.mQtQt",
+"QtaxayazaAaBaCaDaEaFaGaHaIadaJaqaK#QaqaLabaMabaNabaOaPaQaR#2QtQt",
+"aSaTaUaVaWaXaYaOaaabaZa0a1a2a3a4a5aaaua6aba7asa8aHa9b.b#babbQtQt",
+"bcbdbebfbgbhbiababbjbkblbmbnbobpbqbrbsaLabbtbubvbwbxbybzbAbBQtQt",
+"#kbCbDbEbF#RbGabbHbIbJbKbLbMbNbObPbQbRaaabbSbTbUbVbWbXbYbZb0QtQt",
+"QtQtQtb1b2b3b4asb5b6b7b8b9c.c#cacbcccdaacecfcgchcicjckclcmaxQtQt",
+"QtQtQtcnco#UcpapcqcrcsctcucvcwcxcyczcAa6cBcCcDcEcFcGcHcIcJcKQtQt",
+"QtQtQtcLcMcNcOcPcQcRcScTcUcVcWcXcYcZc0c1c2c3c4c5c6c7c8abc9d.QtQt",
+"QtQtQtd#dabhdbdcdddedfdgdhdidjdkdldldmdndodpdqdrdsaXdtacdud.QtQt",
+"QtQtQtdvdwdxaXdydzdAdBdCdDdEdFdGdldldldHdIdJdKdLdMaXdNdOdPdQQtQt",
+"QtQtdRdSdydyaXaXdTdUdldldVdWdXdldldldldldYdZd0d1d2aXaYd3d4.3QtQt",
+"QtQt.md5aXaXaXaXd6d7d8dldldldldld9e.e#dldldldleaaXebecedeeefQtQt",
+"QtQt.legaXeheiejekelemeneodldldlepeqerdldldleseteuevewexeyaSQtQt",
+"QtQt#FezeAeBeCeDeEeFeGeHeIeJdldldHeKdldleLeMeNeOePeQeReSeTeUQtQt",
+"QtQt#2.O.leVeWeXeYeZe0e1e2e3e4e5e6e7dLe8e9f.f#fafbfcfdfe.mQtQtQt",
+"QtQtQtQtQtfffgfhfifjfkflfmfnfofpfqfrfsftfufvfwfxfyfzfAdRQtQtQtQt",
+"QtQtQtQtfBfCfDfEfFfGfHfIfJfKfLfMfNfOfPfQfRfvfSfTfUfVfWfXQtQtQtQt",
+"QtQtQt.GfYfZf0f1f2f3fLfLfLf4f5f6f7f8f9g.g#gagbgcgdfLgegfQtQtQtQt",
+"QtQtQtfXggghgigjgkfygkglgmgngogpgqgrgqgsgtgugvgcgwfLgxgy#kQtQtQt",
+"QtQtQt.mgzgAfmgBgCgDfLgEgFgGgHgIgJgKgLgMgNgOgPgQgRfLfLgSgTQtQtQt",
+"QtQtQt.lgUgVgWgXgYgZg0g1g2g3g4g5g6g7g8g9h.h#hahbhcfLfLhd.lQtQtQt",
+"QtQtQthehfhghhhihjhkhlhmhnhohphqg9hrhsg9g9hthuhvgDfLfLhwhxQtQtQt",
+"QtQt#khyhzhAhBhChDhEhFhGhHhIhJhKg9hLhMhNhOhPhQhRgEfLgkhS.OQtQtQt"};
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..bf4a6b4
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,142 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	$(MAKE) -f /usr/share/quilt/quilt.make patch
+	touch configure-stamp
+
+build: build-stamp
+build-stamp: configure-stamp 
+	dh_testdir
+	cd module; python setup.py build
+	#docbook-to-man debian/renpy.sgml > renpy.1
+	touch build-stamp
+
+clean: configure
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	cd module; python setup.py clean
+	rm -rf module/build/
+	$(MAKE) -f /usr/share/quilt/quilt.make unpatch
+	dh_clean 
+
+install-indep:
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# common/ - A directory containing common script files that help Ren'Py work.
+	dh_install -prenpy common/* usr/share/games/renpy/common/
+
+	rm -f $(CURDIR)/debian/renpy/usr/share/games/renpy/common/DejaVuSans.*
+	dh_link -prenpy /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf \
+		usr/share/games/renpy/common/DejaVuSans.ttf
+
+	# renpy/ - Contains the python source code for Ren'Py.
+	dh_install -prenpy  renpy/* usr/share/games/renpy/renpy/
+	# data/ - Contains the data for the launcher.
+	dh_install -prenpy  data/* usr/share/games/renpy/data/
+	# Scripts that give additional features.
+	dh_install -prenpy  extras/* usr/share/games/renpy/extras/
+	dh_install -prenpy  dse/* usr/share/games/renpy/dse/
+	dh_install -prenpy  template/* usr/share/games/renpy/template/
+	
+	dh_install -prenpy-demo demo/* usr/share/games/renpy/demo/
+
+	dh_install -prenpy  renpy.py usr/share/games/renpy/
+	dh_link -prenpy  usr/share/games/renpy/renpy.py usr/games/renpy
+
+install-arch:
+	# module/ - Contains the source code for the _renpy module.
+	#dh_install -prenpy  module/* usr/share/games/renpy/module/
+	#$(MAKE) install DESTDIR=$(CURDIR)/debian/renpy
+
+	#cd module; python setup.py install --home=$(CURDIR)/debian/renpy-module/usr
+	#PYVER="`python -V 2>&1 | awk '{print $$2}' | awk -F '.' '{print $$1"."$$2}'`" && \
+	#mv $(CURDIR)/debian/renpy-module/usr/lib/python $(CURDIR)/debian/renpy-module/usr/lib/python-$$PYVER
+
+	cd module; python setup.py install --home=$(CURDIR)/debian/tmp/usr
+	dh_install -prenpy-module debian/tmp/usr/lib/python/* usr/lib/renpy/module/
+	dh_link -prenpy-module  usr/lib/renpy/module usr/share/games/renpy/module
+
+	dh_install -prenpy debian/renpy.xpm usr/share/pixmaps
+	dh_install -prenpy debian/renpy.desktop usr/share/applications
+	dh_install -prenpy-demo debian/renpy-demo.xpm usr/share/pixmaps
+	dh_install -prenpy-demo debian/renpy-demo.desktop usr/share/applications
+
+install: install-arch install-indep
+
+# Build architecture-independent files here.
+binary-indep: install-indep
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs CHANGELOG.txt -i
+	dh_installdocs -i
+	dh_installexamples -i
+#	dh_installmenu -i
+	dh_installman -i
+	#dh_installdirs -prenpy usr/share/lintian/overrides/
+	#dh_install -prenpy debian/overrides/renpy usr/share/lintian/overrides/
+	dh_compress -i
+	dh_fixperms -i
+	dh_pysupport -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+# Build architecture-dependent files here.
+binary-arch: build install-arch
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs CHANGELOG.txt -a
+	dh_installdocs -a
+	dh_installexamples -a
+#	dh_installmenu -a
+	dh_installman -a
+	dh_strip -a
+	dh_compress -a
+	dh_fixperms -a
+	dh_pysupport -a
+	dh_installdeb -a
+	dh_shlibdeps -a
+	dh_gencontrol -a
+	dh_md5sums -a
+	dh_builddeb -a
+
+RENPY_VERSION = 5.6.2
+get-orig-source:
+	dh_testdir
+	dh_testroot
+	rm -rf "renpy-$(RENPY_VERSION)"
+	echo "Downloading Ren'Py..."
+	test -e "renpy-$(RENPY_VERSION)-full.tar.bz2" || \
+		wget "http://www.renpy.org/dl/$(RENPY_VERSION)/renpy-$(RENPY_VERSION)-full.tar.bz2"
+	tar xvfj "renpy-$(RENPY_VERSION)-full.tar.bz2"
+	rm -f "renpy-$(RENPY_VERSION)-full.tar.bz2"
+	cd "renpy-$(RENPY_VERSION)"; \
+		rm -rf `find . -name "*.dll"` ; \
+		rm -rf `find . -name "*.exe"` ; \
+		rm -rf `find . -name "*.rpyc"` ; \
+		rm -rf editor lib renpy.app renpy.code
+	tar cvfz "renpy_$(RENPY_VERSION).ds1.orig.tar.gz" "renpy-$(RENPY_VERSION)"
+	rm -rf "renpy-$(RENPY_VERSION)"
+	mv "renpy_$(RENPY_VERSION).ds1.orig.tar.gz" ..
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install-indep install-arch install configure get-orig-source

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