Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-josepy for openSUSE:Factory checked in at 2024-10-29 14:36:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-josepy (Old) and /work/SRC/openSUSE:Factory/.python-josepy.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-josepy" Tue Oct 29 14:36:30 2024 rev:15 rq:1218878 version:1.14.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-josepy/python-josepy.changes 2023-11-30 22:01:11.192762045 +0100 +++ /work/SRC/openSUSE:Factory/.python-josepy.new.2020/python-josepy.changes 2024-10-29 14:37:19.802943427 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 22:01:54 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- add ignore-pyopenssl-warnings.patch + +------------------------------------------------------------------- New: ---- ignore-pyopenssl-warnings.patch BETA DEBUG BEGIN: New: - add ignore-pyopenssl-warnings.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-josepy.spec ++++++ --- /var/tmp/diff_new_pack.cOQSFb/_old 2024-10-29 14:37:20.258962256 +0100 +++ /var/tmp/diff_new_pack.cOQSFb/_new 2024-10-29 14:37:20.258962256 +0100 @@ -1,7 +1,7 @@ # -# spec file +# spec file for package python-josepy # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,8 +25,8 @@ License: Apache-2.0 URL: https://github.com/certbot/josepy Source0: https://files.pythonhosted.org/packages/source/j/%{libname}/%{libname}-%{version}.tar.gz -#Source1: https://files.pythonhosted.org/packages/source/j/%%{libname}/%%{libname}-%%{version}.tar.gz.asc Source2: %{name}.keyring +Patch1: https://github.com/certbot/josepy/commit/350410fc1d38c4ac8422816b6865ac8cd9c60fc7.patch#/ignore-pyopenssl-warnings.patch BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module coverage >= 4.0} BuildRequires: %{python_module cryptography >= 1.5} @@ -50,7 +50,7 @@ It is used by the certbot project. Formerly Let's Encrypt project. %prep -%setup -q -n %{libname}-%{version} +%autosetup -p1 -n %{libname}-%{version} %build %pyproject_wheel ++++++ ignore-pyopenssl-warnings.patch ++++++ >From 350410fc1d38c4ac8422816b6865ac8cd9c60fc7 Mon Sep 17 00:00:00 2001 From: Alex Gaynor <alex.gay...@gmail.com> Date: Thu, 5 Sep 2024 16:24:32 -0400 Subject: [PATCH] Ignore warning that CSRs are deprecated in pyOpenSSL (#185) Without this, pyca/cryptography's downstream tests currently fail. The actual warning is being addressed in #182 --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4e2009fb..2af02b11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,11 @@ disallow_untyped_defs = true [tool.pytest.ini_options] # We also ignore our own deprecation warning about dropping Python 3.7 support. -filterwarnings = ["error", "ignore:Python 3.7 support will be dropped:DeprecationWarning"] +filterwarnings = [ + "error", + "ignore:Python 3.7 support will be dropped:DeprecationWarning", + "ignore:CSR support in pyOpenSSL is deprecated:DeprecationWarning", +] norecursedirs = "*.egg .eggs dist build docs .tox" # Isort tooling configuration