Gentoo Archives: gentoo-commits

From: Alexandre Rostovtsev <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/pyfa/, games-util/pyfa/files/
Date: Sun, 05 Jun 2016 22:18:57
Message-Id: 1465165049.4ffb77e246b4c9c62fd18464589791fb27db4d36.tetromino@gentoo
1 commit: 4ffb77e246b4c9c62fd18464589791fb27db4d36
2 Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 22:17:29 2016 +0000
4 Commit: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 22:17:29 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ffb77e2
7
8 games-util/pyfa: updated patch for live ebuild (bug #584624)
9
10 Thanks to Martin McCourt.
11
12 Package-Manager: portage-2.3.0_rc1
13
14 .../pyfa/files/pyfa-1.21.4-html-export-path.patch | 33 ++++++++++++++++++++++
15 games-util/pyfa/pyfa-9999.ebuild | 2 +-
16 2 files changed, 34 insertions(+), 1 deletion(-)
17
18 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
19 new file mode 100644
20 index 0000000..f35dfcb
21 --- /dev/null
22 +++ b/games-util/pyfa/files/pyfa-1.21.4-html-export-path.patch
23 @@ -0,0 +1,33 @@
24 +From a596f7f5398f613a607ecc91e06ea651806b8b63 Mon Sep 17 00:00:00 2001
25 +From: Alexandre Rostovtsev <tetromino@g.o>
26 +Date: Mon, 16 Jul 2012 05:43:38 -0400
27 +Subject: [PATCH] Export fits to home directory, not python sitedir
28 +
29 +---
30 + service/settings.py | 3 ++-
31 + 1 file changed, 2 insertions(+), 1 deletion(-)
32 +
33 +diff --git a/service/settings.py b/service/settings.py
34 +index cd1b33b..a883ca1 100644
35 +--- a/service/settings.py
36 ++++ b/service/settings.py
37 +@@ -21,6 +21,7 @@ import cPickle
38 + import os.path
39 + import config
40 + import urllib2
41 ++import sys
42 +
43 + class SettingsProvider():
44 + BASE_PATH = os.path.join(config.savePath, "settings")
45 +@@ -221,7 +222,7 @@ class HTMLExportSettings():
46 + return cls._instance
47 +
48 + def __init__(self):
49 +- serviceHTMLExportDefaultSettings = {"enabled": False, "path": config.pyfaPath + os.sep + 'pyfaFits.html', "website": "null-sec.com", "minimal": False }
50 ++ serviceHTMLExportDefaultSettings = {"enabled": False, "path": unicode(os.path.expanduser(os.path.join('~', 'pyfaFits.html')), sys.getfilesystemencoding()), "website": "null-sec.com", "minimal": False }
51 + self.serviceHTMLExportSettings = SettingsProvider.getInstance().getSettings("pyfaServiceHTMLExportSettings", serviceHTMLExportDefaultSettings)
52 +
53 + def getEnabled(self):
54 +--
55 +2.8.3
56 +
57
58 diff --git a/games-util/pyfa/pyfa-9999.ebuild b/games-util/pyfa/pyfa-9999.ebuild
59 index 6f524e5..e8c4d8b 100644
60 --- a/games-util/pyfa/pyfa-9999.ebuild
61 +++ b/games-util/pyfa/pyfa-9999.ebuild
62 @@ -42,7 +42,7 @@ src_prepare() {
63 eapply "${FILESDIR}/${PN}-1.15.1-staticdata.patch"
64
65 # do not try to save exported html to python sitedir
66 - eapply "${FILESDIR}/${PN}-1.20.2-html-export-path.patch"
67 + eapply "${FILESDIR}/${PN}-1.21.4-html-export-path.patch"
68
69 # fix import path in the main script for systemwide installation
70 eapply "${FILESDIR}/${PN}-1.15.1-import-pyfa.patch"