summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Rostovtsev <tetromino@gentoo.org>2016-06-05 18:06:24 -0400
committerAlexandre Rostovtsev <tetromino@gentoo.org>2016-06-05 18:07:01 -0400
commit27afc3d0c9914c9999f8d57f4760b0c4627c5ce0 (patch)
tree03c77b04031d4d442702f3ea696efd78c9e97a4c /games-util/pyfa/files
parentAdd jemalloc-4.2.0 update, drop force-gtk2 useflag from mozconfig-v6.46.eclass (diff)
downloadgentoo-27afc3d0c9914c9999f8d57f4760b0c4627c5ce0.tar.gz
gentoo-27afc3d0c9914c9999f8d57f4760b0c4627c5ce0.tar.bz2
gentoo-27afc3d0c9914c9999f8d57f4760b0c4627c5ce0.zip
games-util/pyfa: belated bump to 1.21.3
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'games-util/pyfa/files')
-rw-r--r--games-util/pyfa/files/pyfa-1.1.8-html-export-path.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/games-util/pyfa/files/pyfa-1.1.8-html-export-path.patch b/games-util/pyfa/files/pyfa-1.1.8-html-export-path.patch
deleted file mode 100644
index e7614d21aa4d..000000000000
--- a/games-util/pyfa/files/pyfa-1.1.8-html-export-path.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 017938391c5b67327c489a5c3a6fc720d4204609 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 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/service/settings.py b/service/settings.py
-index 8f6e3a8..5ac386d 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")
-@@ -199,7 +200,7 @@ class HTMLExportSettings():
- return cls._instance
-
- def __init__(self):
-- serviceHTMLExportDefaultSettings = {"enabled": False, "path": config.pyfaPath + os.sep + 'pyfaFits.html' }
-+ serviceHTMLExportDefaultSettings = {"enabled": False, "path": unicode(os.path.expanduser(os.path.join('~', 'pyfaFits.html')), sys.getfilesystemencoding()) }
- self.serviceHTMLExportSettings = SettingsProvider.getInstance().getSettings("pyfaServiceHTMLExportSettings", serviceHTMLExportDefaultSettings)
-
- def getEnabled(self):
---
-1.7.8.6
-