games-util/pyfa: updated patch for live ebuild (bug #584624)
authorAlexandre Rostovtsev <tetromino@gentoo.org>
Sun, 5 Jun 2016 22:17:29 +0000 (18:17 -0400)
committerAlexandre Rostovtsev <tetromino@gentoo.org>
Sun, 5 Jun 2016 22:17:29 +0000 (18:17 -0400)
Thanks to Martin McCourt.

Package-Manager: portage-2.3.0_rc1

games-util/pyfa/files/pyfa-1.21.4-html-export-path.patch [new file with mode: 0644]
games-util/pyfa/pyfa-9999.ebuild

diff --git a/games-util/pyfa/files/pyfa-1.21.4-html-export-path.patch b/games-util/pyfa/files/pyfa-1.21.4-html-export-path.patch
new file mode 100644 (file)
index 0000000..f35dfcb
--- /dev/null
@@ -0,0 +1,33 @@
+From a596f7f5398f613a607ecc91e06ea651806b8b63 Mon Sep 17 00:00:00 2001
+From: Alexandre Rostovtsev <tetromino@gentoo.org>
+Date: Mon, 16 Jul 2012 05:43:38 -0400
+Subject: [PATCH] Export fits to home directory, not python sitedir
+
+---
+ service/settings.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/service/settings.py b/service/settings.py
+index cd1b33b..a883ca1 100644
+--- a/service/settings.py
++++ b/service/settings.py
+@@ -21,6 +21,7 @@ import cPickle
+ import os.path
+ import config
+ import urllib2
++import sys
+ class SettingsProvider():
+     BASE_PATH = os.path.join(config.savePath, "settings")
+@@ -221,7 +222,7 @@ class HTMLExportSettings():
+         return cls._instance
+     def __init__(self):
+-        serviceHTMLExportDefaultSettings = {"enabled": False, "path": config.pyfaPath + os.sep + 'pyfaFits.html', "website": "null-sec.com", "minimal": False }
++        serviceHTMLExportDefaultSettings = {"enabled": False, "path": unicode(os.path.expanduser(os.path.join('~', 'pyfaFits.html')), sys.getfilesystemencoding()), "website": "null-sec.com", "minimal": False }
+         self.serviceHTMLExportSettings = SettingsProvider.getInstance().getSettings("pyfaServiceHTMLExportSettings", serviceHTMLExportDefaultSettings)
+     def getEnabled(self):
+-- 
+2.8.3
+
index 6f524e58506615334560691c2a4089bca0ad7889..e8c4d8bcdb14171819078e3a27d84783cc06d28a 100644 (file)
@@ -42,7 +42,7 @@ src_prepare() {
        eapply "${FILESDIR}/${PN}-1.15.1-staticdata.patch"
 
        # do not try to save exported html to python sitedir
-       eapply "${FILESDIR}/${PN}-1.20.2-html-export-path.patch"
+       eapply "${FILESDIR}/${PN}-1.21.4-html-export-path.patch"
 
        # fix import path in the main script for systemwide installation
        eapply "${FILESDIR}/${PN}-1.15.1-import-pyfa.patch"