From 0af07cf81b18055100ee8722d1e55c578d43a3b17449c9491d5da89f855dc198 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 10 Feb 2025 13:43:20 +0000 Subject: [PATCH] gpgme 1.24.2 OBS-URL: https://build.opensuse.org/package/show/Base:System/gpgme?expand=0&rev=182 --- gpgme-1.24.1.tar.bz2 | 3 --- gpgme-1.24.1.tar.bz2.sig | Bin 119 -> 0 bytes gpgme-1.24.2.tar.bz2 | 3 +++ gpgme-1.24.2.tar.bz2.sig | Bin 0 -> 119 bytes gpgme.changes | 8 ++++++++ gpgme.spec | 6 +++--- python313.patch | 38 -------------------------------------- 7 files changed, 14 insertions(+), 44 deletions(-) delete mode 100644 gpgme-1.24.1.tar.bz2 delete mode 100644 gpgme-1.24.1.tar.bz2.sig create mode 100644 gpgme-1.24.2.tar.bz2 create mode 100644 gpgme-1.24.2.tar.bz2.sig delete mode 100644 python313.patch diff --git a/gpgme-1.24.1.tar.bz2 b/gpgme-1.24.1.tar.bz2 deleted file mode 100644 index 9267d3f..0000000 --- a/gpgme-1.24.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea05d0258e71061d61716584ec34cef59330a91340571edc46b78374973ba85f -size 1891695 diff --git a/gpgme-1.24.1.tar.bz2.sig b/gpgme-1.24.1.tar.bz2.sig deleted file mode 100644 index bf60cf49dacf694322fc4109f7930c5bd4bf8633c7cff76ee46284c424f3ff9e..0000000000000000000000000000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAuWnmEGV2~A4WXWBXm$E!p!y#PSlPRcU`VKV*t6Qv0=>b`p3|yQ7Fp=De41f40 zdKF6_{J4DgQk^RQrCS_-u2~;l^x$%i%3)25vPD*l85xc+h9%z4i7%-Zw3hC?&?Y-W UI^o1By_J_+-u>|Q + +- Update to 1.24.2: + * Fix regression for RSA in gpgme_pubkey_algo_string + * Prevent failing tests after 2027-05-15 +- drop python313.patch, is included + ------------------------------------------------------------------- Wed Dec 11 12:54:20 UTC 2024 - Lucas Mulling diff --git a/gpgme.spec b/gpgme.spec index 28d8a5a..0eb2bce 100644 --- a/gpgme.spec +++ b/gpgme.spec @@ -2,6 +2,7 @@ # spec file for package gpgme # # Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 Andreas Stieger # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -42,7 +43,7 @@ %endif Name: gpgme%{psuffix} -Version: 1.24.1 +Version: 1.24.2 Release: 0 Summary: Programmatic library interface to GnuPG License: GPL-3.0-or-later AND LGPL-2.1-or-later @@ -57,7 +58,6 @@ Source3: https://gnupg.org/signature_key.asc#/gpgme.keyring Source99: gpgme.changes # PATCH-FIX-OPENSUSE gpgme-suse-nobetasuffix.patch code@bnavigator.de -- remove "-unknown" betasuffix boo#1205197 Patch2: gpgme-suse-nobetasuffix.patch -Patch3: python313.patch Patch4: gpgme-fix-python-install.patch BuildRequires: autoconf BuildRequires: automake @@ -258,7 +258,7 @@ This package contains the bindings to use the library in Qt 6 C++ applications. %prep %autosetup -N -n gpgme-%{version} %if %{with replace_distutils} -%patch -p1 -P2 -P3 +%patch -p1 -P2 %endif %if 0%{suse_version} > 1500 # Note: rpm in 15.x does not know about the autopatch -m flag. diff --git a/python313.patch b/python313.patch deleted file mode 100644 index fc2c09c..0000000 --- a/python313.patch +++ /dev/null @@ -1,38 +0,0 @@ -Index: gpgme-1.24.0/configure.ac -=================================================================== ---- gpgme-1.24.0.orig/configure.ac -+++ gpgme-1.24.0/configure.ac -@@ -614,7 +614,7 @@ if test "$found_py" = "1"; then - if test "$found_py" = "1" -o "$found_py3" = "1"; then - # Reset everything, so that we can look for another Python. - m4_foreach([mym4pythonver], -- [[2.7],[3.6],[3.8],[3.9],[3.10],[3.11],[3.12],[all]], -+ [[2.7],[3.6],[3.8],[3.9],[3.10],[3.11],[3.12],[3.13],[all]], - [unset PYTHON - unset PYTHON_VERSION - unset PYTHON_CPPFLAGS -Index: gpgme-1.24.0/lang/python/setup.py.in -=================================================================== ---- gpgme-1.24.0.orig/lang/python/setup.py.in -+++ gpgme-1.24.0/lang/python/setup.py.in -@@ -291,6 +291,7 @@ GPGME and these bindings is available he - 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11', - 'Programming Language :: Python :: 3.12', -+ 'Programming Language :: Python :: 3.13', - 'Operating System :: POSIX', - 'Operating System :: Microsoft :: Windows', - 'Topic :: Communications :: Email', -Index: gpgme-1.24.0/m4/python.m4 -=================================================================== ---- gpgme-1.24.0.orig/m4/python.m4 -+++ gpgme-1.24.0/m4/python.m4 -@@ -41,7 +41,7 @@ AC_DEFUN([AM_PATH_PYTHON], - m4_define_default([_AM_PYTHON_INTERPRETER_LIST], - [python2 python2.7 dnl - python dnl -- python3 python3.12 python3.11 python3.10 python3.9 python3.8 python3.6 -+ python3 python3.13 python3.12 python3.11 python3.10 python3.9 python3.8 python3.6 - ]) - - AC_ARG_VAR([PYTHON], [the Python interpreter])