Hello community, here is the log from the commit of package pingus for openSUSE:Factory checked in at 2017-12-19 10:50:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pingus (Old) and /work/SRC/openSUSE:Factory/.pingus.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pingus" Tue Dec 19 10:50:03 2017 rev:28 rq:545146 version:0.7.6 Changes: -------- --- /work/SRC/openSUSE:Factory/pingus/pingus.changes 2017-03-09 01:59:15.434398810 +0100 +++ /work/SRC/openSUSE:Factory/.pingus.new/pingus.changes 2017-12-19 10:50:03.689755843 +0100 @@ -1,0 +2,6 @@ +Thu Nov 23 13:42:07 UTC 2017 - [email protected] + +- Add pingus-scons-on-py3.patch: Fix build with scons using + python3 as interpreter. + +------------------------------------------------------------------- New: ---- pingus-scons-on-py3.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pingus.spec ++++++ --- /var/tmp/diff_new_pack.SUiHsS/_old 2017-12-19 10:50:08.993499809 +0100 +++ /var/tmp/diff_new_pack.SUiHsS/_new 2017-12-19 10:50:08.997499616 +0100 @@ -38,6 +38,8 @@ Patch1: %{name}-%{version}-Makefile.patch # PATCH-FIX-UPSTREAM pingus-0.7.6-SConscript.patch -- Issue 145, Fix linking against X11 and adds wii support Patch2: %{name}-%{version}-SConscript.patch +# PATCH-FIX-UPSTREAM pingus-scons-on-py3.patch [email protected] -- Fix build with scons using python3 as interpreter +Patch3: pingus-scons-on-py3.patch %if 0%{?suse_version} BuildRequires: fdupes BuildRequires: hicolor-icon-theme @@ -85,6 +87,7 @@ %setup -q -n %{name} %patch1 %patch2 +%patch3 -p1 # Convert to unix line end dos2unix data/po/pl.po data/levels/incoming/*.pingus \ ++++++ pingus-scons-on-py3.patch ++++++ Index: pingus/SConscript =================================================================== --- pingus.orig/SConscript +++ pingus/SConscript @@ -126,12 +126,12 @@ class Project: def configure_end(self): self.env = self.conf.Finish() - print "Reports:" - print self.reports + print ("Reports:") + print (self.reports) if not self.fatal_error == "": - print "Fatal Errors:" - print self.fatal_error + print ("Fatal Errors:") + print (self.fatal_error) Exit(1) def configure_gxx(self):
