[renpy] 57/146: New Upstream Release

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:06 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 dd4b19b16de54e94976bf624b4b3b601a077b911
Author: Miriam Ruiz <miriam at debian.org>
Date:   Fri Apr 24 21:29:40 2009 +0000

    New Upstream Release
---
 debian/changelog                     |  7 ++++--
 debian/control                       |  4 ++--
 debian/patches/00_module_setup.patch | 42 +++++++++---------------------------
 debian/rules                         |  6 +++---
 4 files changed, 20 insertions(+), 39 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f6e9009..946e854 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,14 @@
-renpy (6.8.0-1) UNRELEASED; urgency=low
+renpy (6.9.1-1) UNRELEASED; urgency=low
 
   [ Miriam Ruiz ]
   * New Upstream Release
   * Refreshed patches
   * Requires pygame 1.8.1 to run
+  * Added libavutil-dev, libavformat-dev, libavcodec-dev and libswscale-dev
+    to Build-Depends
+  * Upgraded Standards-Version from 3.8.0 to 3.8.1
 
- -- Miriam Ruiz <little_miry at yahoo.es>  Thu, 13 Nov 2008 10:55:09 +0100
+ -- Miriam Ruiz <little_miry at yahoo.es>  Fri, 24 Apr 2009 22:15:51 +0200
 
 renpy (6.7.1-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 55d625e..503f274 100644
--- a/debian/control
+++ b/debian/control
@@ -6,8 +6,8 @@ Uploaders: Miriam Ruiz <little_miry at yahoo.es>
 Build-Depends: debhelper (>= 7), dpkg-dev (>= 1.13.19), quilt,
  python-all-dev, python-support (>= 0.6.4), python-setuptools, python-pygame (>= 1.8.1),
  libsdl1.2-dev, libsdl-image1.2-dev, libsdl-sound1.2-dev, libsdl-ttf2.0-dev,
- libmodplug-dev, libspeex-dev
-Standards-Version: 3.8.0
+ libmodplug-dev, libspeex-dev, libavutil-dev, libavformat-dev, libavcodec-dev, libswscale-dev
+Standards-Version: 3.8.1
 Homepage: http://www.renpy.org/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/renpy/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/renpy/?op=log
diff --git a/debian/patches/00_module_setup.patch b/debian/patches/00_module_setup.patch
index 562055f..81d68cd 100644
--- a/debian/patches/00_module_setup.patch
+++ b/debian/patches/00_module_setup.patch
@@ -1,33 +1,11 @@
-Index: renpy-6.8.0/module/setup.py
-===================================================================
---- renpy-6.8.0.orig/module/setup.py	2008-11-13 11:00:09.000000000 +0100
-+++ renpy-6.8.0/module/setup.py	2008-11-13 11:00:13.000000000 +0100
-@@ -12,25 +12,10 @@
- except:
-     pass
+--- renpy-6.9.1.orig/module/setup.py
++++ renpy-6.9.1/module/setup.py
+@@ -12,7 +12,7 @@
+ 
+ 
+ # These control the level of optimization versus debugging.
+-extra_compile_args = [ "-O3", "-funroll-loops" ]
++extra_compile_args = [ "-O2", "-funroll-loops" ]
+ # extra_compile_args = [ "-O0", "-ggdb" ]
+ 
  
--# 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", install + "/include/freetype2", install + "/include/pygame"]
--library_dirs = [ install + "/lib" ]
--extra_compile_args = [ "-O3", "-funroll-loops", "-ffast-math" ]
-+include_dirs = [ "/usr/include", "/usr/include/SDL", "/usr/include/freetype2", "/usr/include/python"+platform.python_version_tuple()[0]+'.'+platform.python_version_tuple()[1]+"/pygame"]
-+library_dirs = [ "/usr/lib" ]
-+extra_compile_args = [ "-O2", "-funroll-loops", "-ffast-math" ]
- extra_link_args = [ ]
- png_libraries = [ 'png', "z" ]
- sdl_libraries = [ 'SDL' ]
diff --git a/debian/rules b/debian/rules
index 4402482..b8c7497 100755
--- a/debian/rules
+++ b/debian/rules
@@ -23,7 +23,7 @@ build-stamp: configure $(PYVERS:%=build-python%)
 
 build-python%: configure-stamp
 	dh_testdir
-	cd module && python$* setup.py build
+	export RENPY_DEPS_INSTALL="/usr"; cd module && python$* setup.py build
 	touch $@
 
 clean: configure
@@ -32,7 +32,7 @@ clean: configure
 	rm -rf `find . -name "*.rpyc"`
 	rm -f build-stamp configure-stamp
 	rm -f build-python* install-python*
-	cd module; python setup.py clean
+	export RENPY_DEPS_INSTALL="/usr"; cd module && python setup.py clean
 	rm -rf module/build/
 	$(MAKE) -f /usr/share/quilt/quilt.make unpatch
 	dh_clean 
@@ -84,7 +84,7 @@ install-arch: build $(PYVERS:%=install-python%)
 install-python%:
 	dh_testdir
 	dh_testroot
-	cd module && python$* setup.py install \
+	export RENPY_DEPS_INSTALL="/usr"; cd module && python$* setup.py install \
 		--no-compile \
 		--root=$(CURDIR)/debian/python-renpy \
 		;

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