diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-11-05 14:43:10 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-11-05 14:45:42 +0100 |
commit | 876398edc86a7c72569a36b3f972219a9c34a11d (patch) | |
tree | c90c687d7fa37abf73c0a1ff59f6ec687e289089 /www-apps/nikola | |
parent | gui-libs/wlroots: Stabilize 0.16.2-r2 arm64, #916886 (diff) | |
download | gentoo-876398edc86a7c72569a36b3f972219a9c34a11d.tar.gz gentoo-876398edc86a7c72569a36b3f972219a9c34a11d.tar.bz2 gentoo-876398edc86a7c72569a36b3f972219a9c34a11d.zip |
www-apps/nikola: Fix loading of plugins
Bug: https://bugs.gentoo.org/916872
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'www-apps/nikola')
-rw-r--r-- | www-apps/nikola/files/nikola-8.2.4-yapsy.patch | 45 | ||||
-rw-r--r-- | www-apps/nikola/nikola-8.2.4.ebuild | 2 |
2 files changed, 47 insertions, 0 deletions
diff --git a/www-apps/nikola/files/nikola-8.2.4-yapsy.patch b/www-apps/nikola/files/nikola-8.2.4-yapsy.patch new file mode 100644 index 000000000000..563b92609879 --- /dev/null +++ b/www-apps/nikola/files/nikola-8.2.4-yapsy.patch @@ -0,0 +1,45 @@ +https://bugs.gentoo.org/916872 +https://github.com/getnikola/nikola/issues/3700 +Patch from upstream. + +commit 4f51e2e0a0b1c0de375d15d06cfacd703ab03040 +Author: Adam Williamson <awilliam@redhat.com> +Date: Sat, 15 Jul 2023 09:34:30 -0700 + + Handle change to plugin loading in recent yapsy (#3700) (#3701) + +--- a/nikola/plugin_categories.py ++++ b/nikola/plugin_categories.py +@@ -75,8 +75,31 @@ def set_site(self, site): + def inject_templates(self): + """Inject 'templates/<engine>' (if exists) very early in the theme chain.""" + try: ++ mod_candidate = None ++ # since https://github.com/tibonihoo/yapsy/pull/11 , ++ # yapsy only adds each imported plugin to sys.modules ++ # under its modified, "unique" name (see early in ++ # PluginManager.loadPlugins), so we recreate the ++ # modified name here to find it. we fudge the serial ++ # number here, assuming that if a plugin is loaded ++ # under the same name multiple times, the location ++ # will also be the same, so we can just use 0. ++ possible_names = ( ++ self.__class__.__module__, ++ "yapsy_loaded_plugin_" + self.__class__.__module__ + "_0", ++ "yapsy_loaded_plugin_" + self.name + "_0", ++ ) ++ for possible_name in possible_names: ++ mod_candidate = sys.modules.get(possible_name) ++ if mod_candidate: ++ break ++ if not mod_candidate: ++ # well, we tried. we wind up here for the dummy ++ # plugins; honestly I'm not sure exactly why/how, ++ # but they don't have templates, so it's okay ++ return + # Sorry, found no other way to get this +- mod_path = sys.modules[self.__class__.__module__].__file__ ++ mod_path = mod_candidate.__file__ + mod_dir = os.path.dirname(mod_path) + tmpl_dir = os.path.join( + mod_dir, 'templates', self.site.template_system.name diff --git a/www-apps/nikola/nikola-8.2.4.ebuild b/www-apps/nikola/nikola-8.2.4.ebuild index 93ffb6d32eea..76917982b3b4 100644 --- a/www-apps/nikola/nikola-8.2.4.ebuild +++ b/www-apps/nikola/nikola-8.2.4.ebuild @@ -37,6 +37,8 @@ RDEPEND="${BDEPEND} dev-python/pillow[jpeg,${PYTHON_USEDEP}] dev-python/cloudpickle[${PYTHON_USEDEP}]" +PATCHES=( "${FILESDIR}"/${P}-yapsy.patch ) + python_compile_all() { nikola tabcompletion --shell=bash > ${PN}.bashcomp || die nikola tabcompletion --shell=zsh > ${PN}.zshcomp || die |