Github messages for voidlinux
 help / color / mirror / Atom feed
From: TinfoilSubmarine <TinfoilSubmarine@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] variety: patch to fix for Python 3.12.
Date: Mon, 16 Oct 2023 19:24:21 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-46726@inbox.vuxu.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1252 bytes --]

There is a new pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages update/variety
https://github.com/void-linux/void-packages/pull/46726

variety: patch to fix for Python 3.12.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46726.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/variety-46726.patch --]
[-- Type: text/x-diff, Size: 2602 bytes --]

From e26859bf9d1d776287a3710bc0d64e64a2276c3f Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Mon, 16 Oct 2023 13:12:16 -0400
Subject: [PATCH] variety: patch to fix for Python 3.12.

---
 .../patches/Jumble_importlib_3.12_fix.patch   | 36 +++++++++++++++++++
 srcpkgs/variety/template                      |  2 +-
 2 files changed, 37 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/variety/patches/Jumble_importlib_3.12_fix.patch

diff --git a/srcpkgs/variety/patches/Jumble_importlib_3.12_fix.patch b/srcpkgs/variety/patches/Jumble_importlib_3.12_fix.patch
new file mode 100644
index 0000000000000..ba7254029b5a5
--- /dev/null
+++ b/srcpkgs/variety/patches/Jumble_importlib_3.12_fix.patch
@@ -0,0 +1,36 @@
+--- a/jumble/Jumble.py
++++ b/jumble/Jumble.py
+@@ -14,7 +14,8 @@
+ # with this program.  If not, see <http://www.gnu.org/licenses/>.
+ ### END LICENSE
+ 
+-import imp
++import importlib.util
++import sys
+ import inspect
+ import logging
+ import os
+@@ -39,13 +40,16 @@
+         for location, f in self._walk_python_files():
+             path = os.path.join(location, f)
+             name = os.path.splitext(f)[0]
+-            info = imp.find_module(name, [location])
+-            try:
+-                logger.info(lambda: "Jumble loading module in %s from %s" % (name, path))
+-                yield imp.load_module(name, *info), path
+-            except Exception:
+-                logger.exception("Could not load plugin module %s" % path)
+-                continue
++            if (spec := importlib.util.spec_from_file_location(name, path)) is not None:
++                try:
++                    module = importlib.util.module_from_spec(spec)
++                    logger.info(lambda: "Jumble loading module in %s from %s" % (name, path))
++                    sys.modules[name] = module
++                    spec.loader.exec_module(module)
++                    yield module, path
++                except Exception:
++                    logger.exception("Could not load plugin module %s" % path)
++                    continue
+ 
+     def _walk_plugin_classes(self):
+         for module, path in self._walk_modules():
diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index 33b02011caf4a..fc90702f3ac08 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
 version=0.8.10
-revision=2
+revision=3
 build_style=python3-module
 pycompile_dirs="usr/share/variety/plugins"
 hostmakedepends="python3-setuptools python3-distutils-extra intltool"

             reply	other threads:[~2023-10-16 17:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-16 17:24 TinfoilSubmarine [this message]
2023-10-16 18:01 ` [PR PATCH] [Merged]: " ahesford

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-46726@inbox.vuxu.org \
    --to=tinfoilsubmarine@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).