diff options
author | Pacho Ramos <pacho@gentoo.org> | 2020-08-17 19:18:05 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2020-08-17 19:18:05 +0200 |
commit | 7ae3f36f6311c433ca73eaabd6bc7eed3f188c0f (patch) | |
tree | 6089e622bb6d2e40dfc97528818d5bf00cbfe2ed /games-puzzle/pingus/files | |
parent | dev-lang/python: stable 3.8.5 for hppa, bug #736854 (diff) | |
download | gentoo-7ae3f36f6311c433ca73eaabd6bc7eed3f188c0f.tar.gz gentoo-7ae3f36f6311c433ca73eaabd6bc7eed3f188c0f.tar.bz2 gentoo-7ae3f36f6311c433ca73eaabd6bc7eed3f188c0f.zip |
games-puzzle/pingus: Use python3 scons
Closes: https://bugs.gentoo.org/735538
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'games-puzzle/pingus/files')
-rw-r--r-- | games-puzzle/pingus/files/pingus-0.7.6-python3.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/games-puzzle/pingus/files/pingus-0.7.6-python3.patch b/games-puzzle/pingus/files/pingus-0.7.6-python3.patch new file mode 100644 index 000000000000..7df3bc9e983d --- /dev/null +++ b/games-puzzle/pingus/files/pingus-0.7.6-python3.patch @@ -0,0 +1,19 @@ +--- a/SConscript.bak 2019-08-01 12:45:16.937878393 -0500 ++++ b/SConscript 2019-08-01 12:46:13.648803035 -0500 +@@ -126,12 +126,12 @@ + 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): |