[renpy] 75/146: New Upstream Release

Markus Koschany apo-guest at moszumanska.debian.org
Tue Jan 12 19:40:08 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 594b81bd628a091a8542f630bd17038dc023164b
Author: Miriam Ruiz <miriam at debian.org>
Date:   Mon Aug 23 15:03:46 2010 +0000

    New Upstream Release
---
 debian/changelog                     |  8 ++++++++
 debian/copyright                     | 10 +++++-----
 debian/patches/00_module_setup.patch |  2 +-
 debian/patches/02_traceback.patch    |  4 ++--
 debian/rules                         | 32 +++++++++++---------------------
 5 files changed, 27 insertions(+), 29 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8dd4310..dd2a2ab 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+renpy (6.11.0-1) UNRELEASED; urgency=low
+
+  [ Miriam Ruiz ]
+  * New Upstream Release
+  * Refreshed patches
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Mon, 23 Aug 2010 17:01:55 +0200
+
 renpy (6.10.2.dfsg1-1) unstable; urgency=low
 
   [ Miriam Ruiz ]
diff --git a/debian/copyright b/debian/copyright
index 1c1fbeb..dcae9f5 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,9 +1,9 @@
 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.renpy.org/
+It was downloaded from http://www.renpy.org/dl/
 
-Copyright 2004-2008 PyTom <pytom at bishoujo.us>
+Copyright 2004-2010 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
@@ -167,6 +167,6 @@ GNU General Public License can be found in `/usr/share/common-licenses/GPL'.
 
 ----------------------------------------------------------------------
 
-The Debian packaging is (C) 2007, Miriam Ruiz <little_miry at yahoo.es> and
-is licensed under the GPL. On Debian systems, the complete text of the
-GNU General Public License can be found in `/usr/share/common-licenses/GPL'.
+The Debian packaging is (C) 2007-2010, Miriam Ruiz <little_miry at yahoo.es>
+and is licensed under the same license as the program itself (MIT License)
+
diff --git a/debian/patches/00_module_setup.patch b/debian/patches/00_module_setup.patch
index 8ff24f1..d010151 100644
--- a/debian/patches/00_module_setup.patch
+++ b/debian/patches/00_module_setup.patch
@@ -1,6 +1,6 @@
 --- a/module/setup.py
 +++ b/module/setup.py
-@@ -12,7 +12,7 @@ except:
+@@ -13,7 +13,7 @@ except:
  
  
  # These control the level of optimization versus debugging.
diff --git a/debian/patches/02_traceback.patch b/debian/patches/02_traceback.patch
index 5da67c1..c39776a 100644
--- a/debian/patches/02_traceback.patch
+++ b/debian/patches/02_traceback.patch
@@ -1,6 +1,6 @@
 --- a/renpy/bootstrap.py
 +++ b/renpy/bootstrap.py
-@@ -347,10 +347,24 @@ def report_exception(e):
+@@ -356,10 +356,24 @@ def report_exception(e):
      print renpy.game.exception_info
      report_tb(sys.stdout, tb)
      
@@ -26,7 +26,7 @@
  
          f.write(codecs.BOM_UTF8)
  
-@@ -383,10 +397,18 @@ def report_exception(e):
+@@ -391,10 +405,18 @@ def report_exception(e):
          f.close()
  
          try:
diff --git a/debian/rules b/debian/rules
index a76d7ad..c11966f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -34,6 +34,17 @@ clean: configure
 	rm -f build-python* install-python*
 	-export RENPY_DEPS_INSTALL="/usr"; cd module && python setup.py clean
 	rm -rf module/build/
+
+	rm -rfv renpy.app lib jedit
+	rm -fv `find . -name "*.exe"`
+	rm -fv `find . -name "*.dll"`
+	rm -fv `find . -name "*.lib"`
+	rm -fv `find . -name "*.pyc"`
+	rm -fv `find . -name "*.rpyc"`
+	rm -fv `find . -name "*.rpymc"`
+	rm -fv `find . -name "*.pyo"`
+	rm -fv `find . -name "*.so"`
+
 	$(MAKE) -f /usr/share/quilt/quilt.make unpatch
 	dh_clean 
 
@@ -138,27 +149,6 @@ binary-arch: build install-arch
 	dh_md5sums -a
 	dh_builddeb -a
 
-VERSIONID=6.10.2
-
-get-orig-source:
-	rm -f renpy-$(VERSIONID)-sdk.tar.bz2
-	dget http://www.renpy.org/dl/$(VERSIONID)/renpy-$(VERSIONID)-sdk.tar.bz2
-	rm -rf renpy-$(VERSIONID)
-	tar xvfj renpy-$(VERSIONID)-sdk.tar.bz2
-	rm renpy-$(VERSIONID)-sdk.tar.bz2
-	cd renpy-$(VERSIONID) && rm -rf renpy.app lib jedit
-	rm -rf `find renpy-$(VERSIONID) -name "*.exe"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.dll"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.lib"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.pyc"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.rpyc"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.rpymc"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.pyo"`
-	rm -rf `find renpy-$(VERSIONID) -name "*.so"`
-	rm -rf ../renpy_$(VERSIONID).dfsg1.orig.tar.gz
-	tar cvfz ../renpy_$(VERSIONID).dfsg1.orig.tar.gz renpy-$(VERSIONID)
-	rm -r renpy-$(VERSIONID)
-
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary install-indep install-arch install configure get-doc
 .PHONY: 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