Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-onionshare for
openSUSE:Factory checked in at 2023-05-31 21:55:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-onionshare (Old)
and /work/SRC/openSUSE:Factory/.python-onionshare.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-onionshare"
Wed May 31 21:55:31 2023 rev:15 rq:1090051 version:2.6
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-onionshare/python-onionshare.changes
2022-12-11 17:16:38.537883178 +0100
+++
/work/SRC/openSUSE:Factory/.python-onionshare.new.1533/python-onionshare.changes
2023-05-31 21:55:32.917378173 +0200
@@ -1,0 +2,6 @@
+Wed May 31 16:00:56 UTC 2023 - Ben Greiner <[email protected]>
+
+- Add onionshare-poetry-core.patch
+ * poetry-core is enough to build and has a much smaller footprint
+
+-------------------------------------------------------------------
New:
----
onionshare-poetry-core.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-onionshare.spec ++++++
--- /var/tmp/diff_new_pack.Aznpzw/_old 2023-05-31 21:55:33.493381577 +0200
+++ /var/tmp/diff_new_pack.Aznpzw/_new 2023-05-31 21:55:33.497381601 +0200
@@ -1,7 +1,7 @@
#
# spec file
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2018-2022 Dr. Axel Braun
#
# All modifications and additions to the file contributed by third parties
@@ -32,6 +32,8 @@
Patch1: fix-test-cli-web.patch
# PATCH-FIX-OPENSUSE relax-async-mode.patch -- Do not rely on gevent
Patch2: relax-async-mode.patch
+# PATCH-FIX-UPSTREAM onionshare-poetry-core.patch -- poetry-core is enough to
build and has a much smaller footprint
+Patch3:
https://github.com/onionshare/onionshare/commit/a05d7af729585bdaa4f71437167339ac67bf3327.patch#/onionshare-poetry-core.patch
BuildRequires: fdupes
BuildRequires: hicolor-icon-theme
BuildRequires: python-rpm-macros
@@ -43,7 +45,7 @@
BuildRequires: python3-cepa >= 1.8.3
BuildRequires: python3-colorama
BuildRequires: python3-eventlet
-BuildRequires: python3-poetry
+BuildRequires: python3-poetry-core
BuildRequires: python3-psutil
BuildRequires: python3-pyside2 >= 5.15.2
BuildRequires: python3-pytest
++++++ onionshare-poetry-core.patch ++++++
>From a05d7af729585bdaa4f71437167339ac67bf3327 Mon Sep 17 00:00:00 2001
From: Saptak S <[email protected]>
Date: Sun, 9 Apr 2023 20:24:48 +0530
Subject: [PATCH] Updates poetry build system to poetry-core
---
cli/pyproject.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cli/pyproject.toml b/cli/pyproject.toml
index d0f311b39..a3675a7a1 100644
--- a/cli/pyproject.toml
+++ b/cli/pyproject.toml
@@ -40,5 +40,5 @@ pytest = ">=7.2.0"
onionshare-cli = 'onionshare_cli:main'
[build-system]
-requires = ["poetry>=0.12"]
-build-backend = "poetry.masonry.api"
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"