Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-easydev for openSUSE:Factory 
checked in at 2025-01-12 12:00:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-easydev (Old)
 and      /work/SRC/openSUSE:Factory/.python-easydev.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-easydev"

Sun Jan 12 12:00:10 2025 rev:10 rq:1236763 version:0.13.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-easydev/python-easydev.changes    
2024-04-29 17:58:55.044617544 +0200
+++ /work/SRC/openSUSE:Factory/.python-easydev.new.1881/python-easydev.changes  
2025-01-12 12:00:11.468236028 +0100
@@ -1,0 +2,6 @@
+Fri Jan 10 04:35:36 UTC 2025 - Steve Kowalik <[email protected]>
+
+- Add patch support-poetry-core-2.patch:
+  * Support poetry-core 2.0 changes.
+
+-------------------------------------------------------------------

New:
----
  support-poetry-core-2.patch

BETA DEBUG BEGIN:
  New:
- Add patch support-poetry-core-2.patch:
  * Support poetry-core 2.0 changes.
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-easydev.spec ++++++
--- /var/tmp/diff_new_pack.x7ehdw/_old  2025-01-12 12:00:12.108262381 +0100
+++ /var/tmp/diff_new_pack.x7ehdw/_new  2025-01-12 12:00:12.108262381 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-easydev
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,6 +23,8 @@
 License:        BSD-3-Clause
 URL:            https://github.com/cokelaer/easydev
 Source:         
https://github.com/cokelaer/easydev/archive/refs/tags/v%{version}.tar.gz#/easydev-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM gh#cokelaer/easydev#37
+Patch0:         support-poetry-core-2.patch
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:       python-colorama
@@ -72,5 +74,5 @@
 %doc README.rst
 %license COPYING
 %{python_sitelib}/easydev
-%{python_sitelib}/easydev*-info
+%{python_sitelib}/easydev-%{version}.dist-info
 

++++++ support-poetry-core-2.patch ++++++
>From 57840ffd66a23e9546c3cf97f870094d0b6dd5aa Mon Sep 17 00:00:00 2001
From: Steve Kowalik <[email protected]>
Date: Fri, 10 Jan 2025 15:33:10 +1100
Subject: [PATCH] Support poetry-core 2.0

poetry-core 2.0 has been released, and it is a lot more strict with the
configuration in pyproject.toml.
---
 pyproject.toml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 52c55a3..2ad7f62 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,11 +2,13 @@
 requires = ["poetry-core"]
 build-backend = "poetry.core.masonry.api"
 
-[tool.poetry]
+[project]
 name = "easydev"
 version = "0.13.2"
 description = "Commn utilities to ease development of Python packages"
-authors = ["Thomas Cokelaer <[email protected]>"]
+authors = [
+    { "name" = "Thomas Cokelaer", "email" = "[email protected]" },
+]
 license = "BSD-3-Clause"
 readme = "README.rst"
 keywords = ["config", "decorators", "development"]

Reply via email to