Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] variety: update to 0.8.11.
@ 2023-10-28  4:13 TinfoilSubmarine
  2023-10-30  0:25 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 1 reply; 2+ messages in thread
From: TinfoilSubmarine @ 2023-10-28  4:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1240 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/46938

variety: update to 0.8.11.
<!-- 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/46938.patch is attached

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

From d74ec0cc5cd28998f65e57e1775d6d4d3b34fdcb Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Sat, 28 Oct 2023 00:09:08 -0400
Subject: [PATCH] variety: update to 0.8.11.

---
 .../patches/Jumble_importlib_3.12_fix.patch   | 36 -------------------
 srcpkgs/variety/template                      |  6 ++--
 2 files changed, 3 insertions(+), 39 deletions(-)
 delete 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
deleted file mode 100644
index ba7254029b5a5..0000000000000
--- a/srcpkgs/variety/patches/Jumble_importlib_3.12_fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- 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 fc90702f3ac08..28f049fcfa28c 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -1,7 +1,7 @@
 # Template file for 'variety'
 pkgname=variety
-version=0.8.10
-revision=3
+version=0.8.11
+revision=1
 build_style=python3-module
 pycompile_dirs="usr/share/variety/plugins"
 hostmakedepends="python3-setuptools python3-distutils-extra intltool"
@@ -15,4 +15,4 @@ license="GPL-3.0-only"
 homepage="https://peterlevi.com/variety/"
 changelog="https://raw.githubusercontent.com/varietywalls/variety/master/data/ui/changes.txt"
 distfiles="https://github.com/varietywalls/variety/archive/${version}.tar.gz"
-checksum=9f312571b92032faf1d3eca62f3800a583e5a90b82a68b6dcd18362120fcda6c
+checksum=de64104cb01e2a2d1f427117293a69041eff0f962010c1813f65c961c0acf28e

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: variety: update to 0.8.11.
  2023-10-28  4:13 [PR PATCH] variety: update to 0.8.11 TinfoilSubmarine
@ 2023-10-30  0:25 ` classabbyamp
  0 siblings, 0 replies; 2+ messages in thread
From: classabbyamp @ 2023-10-30  0:25 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

variety: update to 0.8.11.
https://github.com/void-linux/void-packages/pull/46938

Description:
<!-- 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
-->


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-10-30  0:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-28  4:13 [PR PATCH] variety: update to 0.8.11 TinfoilSubmarine
2023-10-30  0:25 ` [PR PATCH] [Merged]: " classabbyamp

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).