jlec 14/10/20 18:05:38 Added: pymol-9999-options.patch pymol-9999-listing.patch Log: sci-chemistry/pymol: Version Bump (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.1 sci-chemistry/pymol/files/pymol-9999-options.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol-9999-options.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol-9999-options.patch?rev=1.1&content-type=text/plain Index: pymol-9999-options.patch =================================================================== pymol/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pymol/setup.py b/pymol/setup.py index c446d6c..b7b353b 100644 --- a/pymol/setup.py +++ b/pymol/setup.py @@ -51,6 +51,7 @@ def CCompiler_compile(self, sources, output_dir=None, macros=None, class options: osx_frameworks = False jobs = int(os.getenv('JOBS', 0)) + no_libxml = False try: import argparse 1.1 sci-chemistry/pymol/files/pymol-9999-listing.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol-9999-listing.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol/files/pymol-9999-listing.patch?rev=1.1&content-type=text/plain Index: pymol-9999-listing.patch =================================================================== pymol/modules/pymol/plugins/repository.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pymol/modules/pymol/plugins/repository.py b/pymol/modules/pymol/plugins/repository.py index 9697f68..9820fac 100644 --- a/pymol/modules/pymol/plugins/repository.py +++ b/pymol/modules/pymol/plugins/repository.py @@ -182,7 +182,8 @@ class GithubRepository(HttpRepository): def fetchjson(self, url): handle = urlopen('https://api.github.com' + url) - return eval(handle.read()) + ret = handle.read().replace("false", "False") + return eval(ret) class LocalRepository(Repository): def __init__(self, url):
