From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- games-board/pysolfc/files/pysolfc-2.0-gentoo.patch | 10 +++++ .../pysolfc/files/pysolfc-PIL-imports.patch | 49 ++++++++++++++++++++++ games-board/pysolfc/files/pysolfc-gentoo.patch | 10 +++++ 3 files changed, 69 insertions(+) create mode 100644 games-board/pysolfc/files/pysolfc-2.0-gentoo.patch create mode 100644 games-board/pysolfc/files/pysolfc-PIL-imports.patch create mode 100644 games-board/pysolfc/files/pysolfc-gentoo.patch (limited to 'games-board/pysolfc/files') diff --git a/games-board/pysolfc/files/pysolfc-2.0-gentoo.patch b/games-board/pysolfc/files/pysolfc-2.0-gentoo.patch new file mode 100644 index 000000000000..3af96d9c0c2f --- /dev/null +++ b/games-board/pysolfc/files/pysolfc-2.0-gentoo.patch @@ -0,0 +1,10 @@ +--- pysollib/settings.py.old 2014-04-07 20:05:02.335276008 +0200 ++++ pysollib/settings.py 2014-04-07 20:05:33.099062670 +0200 +@@ -63,6 +63,7 @@ + '/usr/local/share/PySolFC', + '/usr/games/PySolFC', + '/usr/local/games/PySolFC', ++ '@GAMES_DATADIR@', + ] + if os.name == 'nt': + pass diff --git a/games-board/pysolfc/files/pysolfc-PIL-imports.patch b/games-board/pysolfc/files/pysolfc-PIL-imports.patch new file mode 100644 index 000000000000..64d9980a881b --- /dev/null +++ b/games-board/pysolfc/files/pysolfc-PIL-imports.patch @@ -0,0 +1,49 @@ +https://sourceforge.net/p/pysolfc/patches/10/ +https://bugs.gentoo.org/show_bug.cgi?id=471514 + +Index: pysollib/mfxutil.py +=================================================================== +diff --git a/pysollib/mfxutil.py b/pysollib/mfxutil.py +--- a/pysollib/mfxutil.py (revision 279) ++++ b/pysollib/mfxutil.py (working copy) +@@ -41,18 +41,18 @@ + Image = ImageTk = ImageOps = None + if TOOLKIT == 'tk': + try: # PIL +- import Image +- import ImageTk +- import ImageOps ++ from PIL import Image ++ from PIL import ImageTk ++ from PIL import ImageOps + except ImportError: + Image = None + else: + # for py2exe +- import GifImagePlugin +- import PngImagePlugin +- import JpegImagePlugin +- import BmpImagePlugin +- import PpmImagePlugin ++ from PIL import GifImagePlugin ++ from PIL import PngImagePlugin ++ from PIL import JpegImagePlugin ++ from PIL import BmpImagePlugin ++ from PIL import PpmImagePlugin + Image._initialized = 2 + USE_PIL = False + if TOOLKIT == 'tk' and Image and Image.VERSION >= '1.1.7': +Index: scripts/cardset_viewer.py +=================================================================== +diff --git a/scripts/cardset_viewer.py b/scripts/cardset_viewer.py +--- a/scripts/cardset_viewer.py (revision 279) ++++ b/scripts/cardset_viewer.py (working copy) +@@ -7,7 +7,7 @@ + from math import sqrt, sin, cos, pi + from Tkinter import * + try: +- import Image, ImageTk ++ from PIL import Image, ImageTk + except ImportError: + Image = None + diff --git a/games-board/pysolfc/files/pysolfc-gentoo.patch b/games-board/pysolfc/files/pysolfc-gentoo.patch new file mode 100644 index 000000000000..07a7b662f320 --- /dev/null +++ b/games-board/pysolfc/files/pysolfc-gentoo.patch @@ -0,0 +1,10 @@ +--- a/pysollib/settings.py 2014-04-07 20:05:02.335276008 +0200 ++++ b/pysollib/settings.py 2014-04-07 20:05:33.099062670 +0200 +@@ -63,6 +63,7 @@ + '/usr/local/share/PySolFC', + '/usr/games/PySolFC', + '/usr/local/games/PySolFC', ++ '/usr/share/pysolfc', + ] + if os.name == 'nt': + pass -- cgit v1.2.3