From cbb4dd303f0edc984abea23c7a5bd4de78e078ce Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 17 May 2022 06:34:34 -0400 Subject: [PATCH] import gpgme-1.15.1-6.el9 --- .gitignore | 1 + .gpgme.metadata | 1 + ...on-t-add-extra-libraries-for-linking.patch | 47 ++ SOURCES/0001-fix-stupid-ax_python_devel.patch | 27 + SOURCES/gpgme-1.15.1-covscan.patch | 377 +++++++++++ SOURCES/gpgme-1.15.1-glibc-closefrom.patch | 13 + SOURCES/gpgme-1.3.2-largefile.patch | 24 + SOURCES/gpgme-multilib.h | 20 + SPECS/gpgme.spec | 604 ++++++++++++++++++ 9 files changed, 1114 insertions(+) create mode 100644 .gitignore create mode 100644 .gpgme.metadata create mode 100644 SOURCES/0001-don-t-add-extra-libraries-for-linking.patch create mode 100644 SOURCES/0001-fix-stupid-ax_python_devel.patch create mode 100644 SOURCES/gpgme-1.15.1-covscan.patch create mode 100644 SOURCES/gpgme-1.15.1-glibc-closefrom.patch create mode 100644 SOURCES/gpgme-1.3.2-largefile.patch create mode 100644 SOURCES/gpgme-multilib.h create mode 100644 SPECS/gpgme.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84ff423 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gpgme-1.15.1.licenses.tar.bz2 diff --git a/.gpgme.metadata b/.gpgme.metadata new file mode 100644 index 0000000..c52d382 --- /dev/null +++ b/.gpgme.metadata @@ -0,0 +1 @@ +29011c97c5e2a5e42234e6051f12c16660c89243 SOURCES/gpgme-1.15.1.licenses.tar.bz2 diff --git a/SOURCES/0001-don-t-add-extra-libraries-for-linking.patch b/SOURCES/0001-don-t-add-extra-libraries-for-linking.patch new file mode 100644 index 0000000..39298db --- /dev/null +++ b/SOURCES/0001-don-t-add-extra-libraries-for-linking.patch @@ -0,0 +1,47 @@ +From 07a8ac908cbadb22c344895ebf9cc00c6a8fd3f7 Mon Sep 17 00:00:00 2001 +From: Igor Gnatenko +Date: Wed, 29 Mar 2017 07:05:41 +0200 +Subject: [PATCH] don't add extra libraries for linking + +Signed-off-by: Igor Gnatenko +--- + lang/cpp/src/GpgmeppConfig.cmake.in.in | 2 +- + src/gpgme-config.in | 6 +++--- + 2 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/lang/cpp/src/GpgmeppConfig.cmake.in.in b/lang/cpp/src/GpgmeppConfig.cmake.in.in +index 73f5eaad..3104d715 100644 +--- a/lang/cpp/src/GpgmeppConfig.cmake.in.in ++++ b/lang/cpp/src/GpgmeppConfig.cmake.in.in +@@ -63,7 +63,7 @@ add_library(Gpgmepp SHARED IMPORTED) + + set_target_properties(Gpgmepp PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "@resolved_includedir@/gpgme++;@resolved_includedir@" +- INTERFACE_LINK_LIBRARIES "pthread;@resolved_libdir@/libgpgme@libsuffix@;@LIBASSUAN_LIBS@" ++ INTERFACE_LINK_LIBRARIES "pthread;@resolved_libdir@/libgpgme@libsuffix@" + IMPORTED_LOCATION "@resolved_libdir@/libgpgmepp@libsuffix@" + ) + +diff --git a/src/gpgme-config.in b/src/gpgme-config.in +index a4d152e1..6a854e4a 100644 +--- a/src/gpgme-config.in ++++ b/src/gpgme-config.in +@@ -22,12 +22,12 @@ cflags="-I@includedir@" + libs="-L@libdir@" + + # Network libraries. +-assuan_cflags="@LIBASSUAN_CFLAGS@" +-assuan_libs="@LIBASSUAN_LIBS@" ++#assuan_cflags="@LIBASSUAN_CFLAGS@" ++#assuan_libs="@LIBASSUAN_LIBS@" + + # Configure libgpg-error. + gpg_error_cflags="@GPG_ERROR_CFLAGS@" +-gpg_error_libs="@GPG_ERROR_LIBS@" ++#gpg_error_libs="@GPG_ERROR_LIBS@" + + # Configure thread packages. + thread_modules="" +-- +2.15.1 + diff --git a/SOURCES/0001-fix-stupid-ax_python_devel.patch b/SOURCES/0001-fix-stupid-ax_python_devel.patch new file mode 100644 index 0000000..40cf7df --- /dev/null +++ b/SOURCES/0001-fix-stupid-ax_python_devel.patch @@ -0,0 +1,27 @@ +From b0eabea4b1232ee7f45d13b8add928d463f37444 Mon Sep 17 00:00:00 2001 +From: Igor Gnatenko +Date: Wed, 29 Mar 2017 07:13:35 +0200 +Subject: [PATCH] fix stupid ax_python_devel + +References: https://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=commit;h=883a2abd5af5c96be894d5ef7ee6e9a2b8e64307 +Signed-off-by: Igor Gnatenko +--- + m4/ax_python_devel.m4 | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/m4/ax_python_devel.m4 b/m4/ax_python_devel.m4 +index b990d5b3..318b089c 100644 +--- a/m4/ax_python_devel.m4 ++++ b/m4/ax_python_devel.m4 +@@ -137,7 +137,7 @@ variable to configure. See ``configure --help'' for reference. + # + AC_MSG_CHECKING([for the distutils Python package]) + ac_distutils_result=`$PYTHON -c "import distutils" 2>&1` +- if test -z "$ac_distutils_result"; then ++ if test $? -eq 0; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) +-- +2.12.1 + diff --git a/SOURCES/gpgme-1.15.1-covscan.patch b/SOURCES/gpgme-1.15.1-covscan.patch new file mode 100644 index 0000000..216786f --- /dev/null +++ b/SOURCES/gpgme-1.15.1-covscan.patch @@ -0,0 +1,377 @@ +From 3101e381eb7ff31138aa20438ae757365e390d2c Mon Sep 17 00:00:00 2001 +From: Jiri Kucera +Date: Thu, 15 Jul 2021 22:41:37 +0200 +Subject: [PATCH] lang/python/gpgme.i: Fix memleaks + +--- + lang/python/gpgme.i | 85 +++++++++++++++++++++++++++------------------ + 1 file changed, 52 insertions(+), 33 deletions(-) + +diff --git a/lang/python/gpgme.i b/lang/python/gpgme.i +index 87371af8..fabf9e2c 100644 +--- a/lang/python/gpgme.i ++++ b/lang/python/gpgme.i +@@ -53,7 +53,7 @@ + { + encodedInput = PyUnicode_AsUTF8String($input); + if (encodedInput == NULL) +- return NULL; ++ SWIG_fail; + $1 = PyBytes_AsString(encodedInput); + } + else if (PyBytes_Check($input)) +@@ -62,7 +62,7 @@ + PyErr_Format(PyExc_TypeError, + "arg %d: expected str, bytes, or None, got %s", + $argnum, $input->ob_type->tp_name); +- return NULL; ++ SWIG_fail; + } + } + %typemap(freearg) const char * { +@@ -70,14 +70,16 @@ + } + + /* Likewise for a list of strings. */ +-%typemap(in) const char *[] (void *vector = NULL, +- size_t size, ++%typemap(arginit) const char *[] { ++ $1 = NULL; ++} ++%typemap(in) const char *[] (size_t size, + PyObject **pyVector = NULL) { + /* Check if is a list */ + if (PyList_Check($input)) { + size_t i, j; + size = PyList_Size($input); +- $1 = (char **) (vector = malloc((size+1) * sizeof(char *))); ++ $1 = (char **) malloc((size+1) * sizeof(char *)); + pyVector = calloc(sizeof *pyVector, size); + + for (i = 0; i < size; i++) { +@@ -86,12 +88,7 @@ + { + pyVector[i] = PyUnicode_AsUTF8String(o); + if (pyVector[i] == NULL) +- { +- free(vector); +- for (j = 0; j < i; j++) +- Py_XDECREF(pyVector[j]); +- return NULL; +- } ++ SWIG_fail; + $1[i] = PyBytes_AsString(pyVector[i]); + } + else if (PyString_Check(o)) +@@ -101,8 +98,7 @@ + "arg %d: list must contain only str or bytes, got %s " + "at position %d", + $argnum, o->ob_type->tp_name, i); +- free($1); +- return NULL; ++ SWIG_fail; + } + } + $1[i] = NULL; +@@ -110,14 +106,17 @@ + PyErr_Format(PyExc_TypeError, + "arg %d: expected a list of str or bytes, got %s", + $argnum, $input->ob_type->tp_name); +- return NULL; ++ SWIG_fail; + } + } + %typemap(freearg) const char *[] { +- size_t i; +- free(vector$argnum); +- for (i = 0; i < size$argnum; i++) +- Py_XDECREF(pyVector$argnum[i]); ++ if (pyVector$argnum) { ++ size_t i; ++ for (i = 0; i < size$argnum; i++) ++ Py_XDECREF(pyVector$argnum[i]); ++ free(pyVector$argnum); ++ } ++ if ($1) free($1); + } + + /* Release returned buffers as necessary. */ +@@ -135,7 +134,7 @@ + if (!PySequence_Check($input)) { + PyErr_Format(PyExc_ValueError, "arg %d: Expected a list of gpgme_key_t", + $argnum); +- return NULL; ++ SWIG_fail; + } + if((numb = PySequence_Length($input)) != 0) { + $1 = (gpgme_key_t*)malloc((numb+1)*sizeof(gpgme_key_t)); +@@ -152,8 +151,7 @@ + "arg %d: list must contain only gpgme_key_ts, got %s " + "at position %d", + $argnum, pypointer->ob_type->tp_name, i); +- free($1); +- return NULL; ++ SWIG_fail; + } + Py_DECREF(pypointer); + } +@@ -179,7 +177,7 @@ + pypointer = _gpg_obj2gpgme_data_t($input, $argnum, &wrapper, + &bytesio, &view); + if (pypointer == NULL) +- return NULL; ++ SWIG_fail; + have_view = !! view.obj; + + /* input = $input, 1 = $1, 1_descriptor = $1_descriptor */ +@@ -189,7 +187,7 @@ + if ((SWIG_ConvertPtr(pypointer,(void **) &$1, $1_descriptor, + SWIG_POINTER_EXCEPTION | $disown )) == -1) { + Py_DECREF(pypointer); +- return NULL; ++ SWIG_fail; + } + Py_DECREF(pypointer); + } +@@ -347,6 +345,10 @@ + } + + /* Those are for gpgme_data_read() and gpgme_strerror_r(). */ ++%typemap(arginit) (void *buffer, size_t size), (char *buf, size_t buflen) { ++ $1 = NULL; ++ $2 = 0; ++} + %typemap(in) (void *buffer, size_t size), (char *buf, size_t buflen) { + { + long tmp$argnum; +@@ -359,12 +361,12 @@ + else + { + PyErr_SetString(PyExc_TypeError, "Numeric argument expected"); +- return NULL; ++ SWIG_fail; + } + + if (tmp$argnum < 0) { + PyErr_SetString(PyExc_ValueError, "Positive integer expected"); +- return NULL; ++ SWIG_fail; + } + $2 = (size_t) tmp$argnum; + $1 = ($1_ltype) malloc($2+1); +@@ -373,11 +375,11 @@ + %typemap(argout) (void *buffer, size_t size), (char *buf, size_t buflen) { + Py_XDECREF($result); /* Blow away any previous result */ + if (result < 0) { /* Check for I/O error */ +- free($1); ++ if ($1) free($1); + return PyErr_SetFromErrno(PyExc_RuntimeError); + } + $result = PyBytes_FromStringAndSize($1,result); +- free($1); ++ if ($1) free($1); + } + + /* For gpgme_data_write, but should be universal. */ +@@ -390,11 +392,11 @@ + { + encodedInput = PyUnicode_AsUTF8String($input); + if (encodedInput == NULL) +- return NULL; ++ SWIG_fail; + if (PyBytes_AsStringAndSize(encodedInput, (char **) &$1, &ssize) == -1) + { + Py_DECREF(encodedInput); +- return NULL; ++ SWIG_fail; + } + } + else if (PyBytes_Check($input)) +@@ -403,7 +405,7 @@ + PyErr_Format(PyExc_TypeError, + "arg %d: expected str, bytes, or None, got %s", + $argnum, $input->ob_type->tp_name); +- return NULL; ++ SWIG_fail; + } + + if (! $1) +@@ -432,8 +434,17 @@ + size++; + } + $result = PyList_New(size); ++ if ($result == NULL) ++ SWIG_fail; + for (i=0,curr=$1; inext) { + PyObject *o = SWIG_NewPointerObj(SWIG_as_voidptr(curr), $1_descriptor, %newpointer_flags); ++ if (o == NULL) { ++ int j; ++ for (j = 0; j < i; j++) ++ Py_XDECREF(PyList_GetItem($result, j)); ++ Py_DECREF($result); ++ SWIG_fail; ++ } + PyList_SetItem($result, i, o); + } + } +@@ -446,6 +457,8 @@ + PyObject *fragile; + fragile = SWIG_NewPointerObj(SWIG_as_voidptr($1), $1_descriptor, + %newpointer_flags); ++ if (fragile == NULL) ++ SWIG_fail; + $result = _gpg_wrap_result(fragile, name); + Py_DECREF(fragile); + } +@@ -469,22 +482,28 @@ wrapresult(gpgme_vfs_mount_result_t, "VFSMountResult") + } + $result = PyList_New(size); + if ($result == NULL) +- return NULL; /* raise */ ++ SWIG_fail; /* raise */ + for (i=0,curr=$1; inext) { + PyObject *fragile, *o; + fragile = SWIG_NewPointerObj(SWIG_as_voidptr(curr), $1_descriptor, + %newpointer_flags); + if (fragile == NULL) + { ++ int j; ++ for (j = 0; j < i; j++) ++ Py_XDECREF(PyList_GetItem($result, j)); + Py_DECREF($result); +- return NULL; /* raise */ ++ SWIG_fail; /* raise */ + } + o = _gpg_wrap_result(fragile, "EngineInfo"); + Py_DECREF(fragile); + if (o == NULL) + { ++ int j; ++ for (j = 0; j < i; j++) ++ Py_XDECREF(PyList_GetItem($result, j)); + Py_DECREF($result); +- return NULL; /* raise */ ++ SWIG_fail; /* raise */ + } + PyList_SetItem($result, i, o); + } + +From b2815dcba2e75f79a6349191b3744952a9bd3311 Mon Sep 17 00:00:00 2001 +From: Jiri Kucera +Date: Sat, 17 Jul 2021 01:12:08 +0200 +Subject: [PATCH] lang/cpp/src/data.cpp: Fix memleaks + +--- + lang/cpp/src/data.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/lang/cpp/src/data.cpp b/lang/cpp/src/data.cpp +index 7a93cbc2..d08a29db 100644 +--- a/lang/cpp/src/data.cpp ++++ b/lang/cpp/src/data.cpp +@@ -249,6 +249,7 @@ std::vector GpgME::Data::toKeys(Protocol proto) const + } + + if (gpgme_op_keylist_from_data_start (ctx->impl()->ctx, d->data, 0)) { ++ delete ctx; + return ret; + } + + +From eb3bf52fcb437b0508b2912f648ac25799daef55 Mon Sep 17 00:00:00 2001 +From: Jiri Kucera +Date: Sat, 17 Jul 2021 01:12:45 +0200 +Subject: [PATCH] src/engine-gpg.c: Fix memleaks + +--- + src/engine-gpg.c | 11 +++++++---- + 1 file changed, 7 insertions(+), 4 deletions(-) + +diff --git a/src/engine-gpg.c b/src/engine-gpg.c +index b51ea173..af74714c 100644 +--- a/src/engine-gpg.c ++++ b/src/engine-gpg.c +@@ -1148,6 +1148,7 @@ build_argv (engine_gpg_t gpg, const char *pgmname) + to avoid and given that we reach this here only + after a malloc failure for a small object, it is + probably better not to do anything. */ ++ free_argv (argv); + return gpg_error (GPG_ERR_GENERAL); + } + /* If the data_type is FD, we have to do a dup2 here. */ +@@ -1270,6 +1271,9 @@ read_status (engine_gpg_t gpg) + buffer = realloc (buffer, bufsize); + if (!buffer) + return gpg_error_from_syserror (); ++ /* Update buffer and bufsize here to prevent memory leaks. */ ++ gpg->status.buffer = buffer; ++ gpg->status.bufsize = bufsize; + } + + nread = _gpgme_io_read (gpg->status.fd[0], +@@ -1382,8 +1386,6 @@ read_status (engine_gpg_t gpg) + } + + /* Update the gpg object. */ +- gpg->status.bufsize = bufsize; +- gpg->status.buffer = buffer; + gpg->status.readpos = readpos; + return 0; + } +@@ -1423,6 +1425,9 @@ read_colon_line (engine_gpg_t gpg) + buffer = realloc (buffer, bufsize); + if (!buffer) + return gpg_error_from_syserror (); ++ /* Prevent memory leaks. */ ++ gpg->colon.bufsize = bufsize; ++ gpg->colon.buffer = buffer; + } + + nread = _gpgme_io_read (gpg->colon.fd[0], buffer+readpos, bufsize-readpos); +@@ -1502,8 +1507,6 @@ read_colon_line (engine_gpg_t gpg) + } + + /* Update the gpg object. */ +- gpg->colon.bufsize = bufsize; +- gpg->colon.buffer = buffer; + gpg->colon.readpos = readpos; + return 0; + } + +From e94363045f104fe57188bd014c91462e3693ec24 Mon Sep 17 00:00:00 2001 +From: Jiri Kucera +Date: Sat, 17 Jul 2021 01:14:14 +0200 +Subject: [PATCH] src/engine-gpgsm.c: Fix memleaks + +--- + src/engine-gpgsm.c | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + +diff --git a/src/engine-gpgsm.c b/src/engine-gpgsm.c +index d5f0d7a9..7a8a049b 100644 +--- a/src/engine-gpgsm.c ++++ b/src/engine-gpgsm.c +@@ -1533,8 +1533,10 @@ gpgsm_export (void *engine, const char *pattern, gpgme_export_mode_t mode, + gpgsm->output_cb.data = keydata; + err = gpgsm_set_fd (gpgsm, OUTPUT_FD, use_armor ? "--armor" + : map_data_enc (gpgsm->output_cb.data)); +- if (err) ++ if (err) { ++ free (cmd); + return err; ++ } + gpgsm_clear_fd (gpgsm, INPUT_FD); + gpgsm_clear_fd (gpgsm, MESSAGE_FD); + gpgsm->inline_data = NULL; +@@ -1634,8 +1636,10 @@ gpgsm_export_ext (void *engine, const char *pattern[], gpgme_export_mode_t mode, + gpgsm->output_cb.data = keydata; + err = gpgsm_set_fd (gpgsm, OUTPUT_FD, use_armor ? "--armor" + : map_data_enc (gpgsm->output_cb.data)); +- if (err) ++ if (err) { ++ free (line); + return err; ++ } + gpgsm_clear_fd (gpgsm, INPUT_FD); + gpgsm_clear_fd (gpgsm, MESSAGE_FD); + gpgsm->inline_data = NULL; diff --git a/SOURCES/gpgme-1.15.1-glibc-closefrom.patch b/SOURCES/gpgme-1.15.1-glibc-closefrom.patch new file mode 100644 index 0000000..4c1e11f --- /dev/null +++ b/SOURCES/gpgme-1.15.1-glibc-closefrom.patch @@ -0,0 +1,13 @@ +diff --git a/src/posix-io.c b/src/posix-io.c +index e712ef2..2a3a81f 100644 +--- a/src/posix-io.c ++++ b/src/posix-io.c +@@ -570,7 +570,7 @@ _gpgme_io_spawn (const char *path, char *const argv[], unsigned int flags, + if (fd_list[i].fd > fd) + fd = fd_list[i].fd; + fd++; +-#if defined(__sun) || defined(__FreeBSD__) ++#if defined(__sun) || defined(__FreeBSD__) || defined(__GLIBC__) + closefrom (fd); + max_fds = fd; + #else /*!__sun */ diff --git a/SOURCES/gpgme-1.3.2-largefile.patch b/SOURCES/gpgme-1.3.2-largefile.patch new file mode 100644 index 0000000..bbf88de --- /dev/null +++ b/SOURCES/gpgme-1.3.2-largefile.patch @@ -0,0 +1,24 @@ +diff -up gpgme-1.3.2/src/gpgme-config.in.largefile gpgme-1.3.2/src/gpgme-config.in +--- gpgme-1.3.2/src/gpgme-config.in.largefile 2012-09-26 10:10:37.882744198 +0200 ++++ gpgme-1.3.2/src/gpgme-config.in 2012-09-26 10:16:02.558762827 +0200 +@@ -41,6 +41,10 @@ cflags_pthread="" + cflags_glib="@GLIB_CFLAGS@" + with_glib= + ++if test "0@NEED__FILE_OFFSET_BITS@" -gt "0" ; then ++ cflags_lfs="-D_FILE_OFFSET_BITS=@NEED__FILE_OFFSET_BITS@" ++fi ++ + output="" + + usage() +@@ -105,6 +109,9 @@ while test $# -gt 0; do + exit 0 + ;; + --cflags) ++ if test "x$cflags_lfs" != "x"; then ++ output="$output $cflags_lfs" ++ fi + result= + tmp_c= + tmp_g= diff --git a/SOURCES/gpgme-multilib.h b/SOURCES/gpgme-multilib.h new file mode 100644 index 0000000..574f09d --- /dev/null +++ b/SOURCES/gpgme-multilib.h @@ -0,0 +1,20 @@ +/* gpgme-multilib.h */ +/* This file is here to prevent a file conflict on multiarch systems. A + * conflict will occur because gpgme.h has arch-specific definitions. + * + * DO NOT INCLUDE THE NEW FILE DIRECTLY -- ALWAYS INCLUDE THIS ONE INSTEAD. */ + +#ifndef GPGME_MULTILIB_H +#define GPGME_MULTILIB_H +#include + +#if __WORDSIZE == 32 +#include "gpgme-32.h" +#elif __WORDSIZE == 64 +#include "gpgme-64.h" +#else +#error "unexpected value for __WORDSIZE macro" +#endif + +#endif + diff --git a/SPECS/gpgme.spec b/SPECS/gpgme.spec new file mode 100644 index 0000000..c407871 --- /dev/null +++ b/SPECS/gpgme.spec @@ -0,0 +1,604 @@ +%bcond_without check + +# trim changelog included in binary rpms +%global _changelog_trimtime %(date +%s -d "1 year ago") + +%global gnupg2_min_ver 2.2.24 +%global libgpg_error_min_ver 1.36 + +Name: gpgme +Summary: GnuPG Made Easy - high level crypto API +Version: 1.15.1 +Release: 6%{?dist} + +# /usr/bin/gpgme-tool is licensed under GPLv3+ +# the rest is licensed under LGPLv2+ +# Note: /usr/bin/gpgme-json contains bits of MIT licensed code, but its +# effective license remains LGPLv2+ +# (see https://fedoraproject.org/wiki/Licensing:FAQ) +License: LGPLv2+ and GPLv3+ +URL: https://gnupg.org/related_software/gpgme/ +#Source0: https://gnupg.org/ftp/gcrypt/gpgme/gpgme-%%{version}.tar.bz2 +Source0: gpgme-%{version}.licenses.tar.bz2 +Source2: gpgme-multilib.h + +## downstream patches +# Don't add extra libs/cflags in gpgme-config/cmake equivalent +Patch1001: 0001-don-t-add-extra-libraries-for-linking.patch +# add -D_FILE_OFFSET_BITS... to gpgme-config, upstreamable +Patch1002: gpgme-1.3.2-largefile.patch +# Let's fix stupid AX_PYTHON_DEVEL +Patch1003: 0001-fix-stupid-ax_python_devel.patch +# Fix static analysis issues +Patch1004: gpgme-1.15.1-covscan.patch +# glibc 2.34 introduces closefrom() +Patch1005: gpgme-1.15.1-glibc-closefrom.patch + +#BuildRequires: autoconf +#BuildRequires: automake +BuildRequires: make +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: gawk +BuildRequires: gnupg2 >= %{gnupg2_min_ver} +BuildRequires: gnupg2-smime +BuildRequires: libgpg-error-devel >= %{libgpg_error_min_ver} +BuildRequires: libassuan-devel >= 2.4.2 + +# For python bindings +BuildRequires: swig + +# to remove RPATH +BuildRequires: chrpath + +# For AutoReq cmake-filesystem +BuildRequires: cmake + +Requires: gnupg2 >= %{gnupg2_min_ver} + +# On the following architectures workaround multiarch conflict of -devel packages: +%define multilib_arches %{ix86} x86_64 ia64 ppc ppc64 s390 s390x %{sparc} + +%description +GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG +easier for applications. It provides a high-level crypto API for +encryption, decryption, signing, signature verification and key +management. + +%package devel +Summary: Development headers and libraries for %{name} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: libgpg-error-devel%{?_isa} >= %{libgpg_error_min_ver} + +%description devel +%{summary}. + +%package -n %{name}pp +Summary: C++ bindings/wrapper for GPGME +Obsoletes: gpgme-pp < 1.8.0-7 +Provides: gpgme-pp = %{?epoch:%{epoch}:}%{version}-%{release} +Provides: gpgme-pp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} + +%description -n %{name}pp +%{summary}. + +%package -n %{name}pp-devel +Summary: Development libraries and header files for %{name}-pp +Obsoletes: gpgme-pp-devel < 1.8.0-7 +Provides: gpgme-pp-devel = %{?epoch:%{epoch}:}%{version}-%{release} +Provides: gpgme-pp-devel%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}pp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}-devel%{?_isa} +# For automatic provides +BuildRequires: cmake + +%description -n %{name}pp-devel +%{summary} + +%package -n q%{name} +Summary: Qt API bindings/wrapper for GPGME +Requires: %{name}pp%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +BuildRequires: pkgconfig(Qt5Core) +BuildRequires: pkgconfig(Qt5Test) + +%description -n q%{name} +%{summary}. + +%package -n q%{name}-devel +Summary: Development libraries and header files for %{name} +# before libqgpgme.so symlink was moved to avoid conflict +Conflicts: kdepimlibs-devel < 4.14.10-17 +Requires: q%{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Requires: %{name}pp-devel%{?_isa} +# For automatic provides +BuildRequires: cmake + +%description -n q%{name}-devel +%{summary}. + +%package -n python3-gpg +Summary: %{name} bindings for Python 3 +%{?python_provide:%python_provide python3-gpg} +BuildRequires: python3-devel +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} +Obsoletes: platform-python-gpg < %{version}-%{release} + +%description -n python3-gpg +%{summary}. + +%prep +%autosetup -p1 + +## HACK ALERT +# The config script already suppresses the -L if it's /usr/lib, so cheat and +# set it to a value which we know will be suppressed. +sed -i -e 's|^libdir=@libdir@$|libdir=@exec_prefix@/lib|g' src/gpgme-config.in + +# The build machinery does not support Python 3.9+ yet +# https://github.com/gpg/gpgme/pull/4 +sed -i 's/3.8/%{python3_version}/g' configure + +%build +# People neeed to learn that you can't run autogen.sh anymore +#./autogen.sh +%configure --disable-static --disable-silent-rules --enable-languages=cpp,qt,python +%make_build + +%install +%make_install + +# unpackaged files +rm -fv %{buildroot}%{_infodir}/dir +rm -fv %{buildroot}%{_libdir}/lib*.la + +# Hack to resolve multiarch conflict (#341351) +%ifarch %{multilib_arches} +mv %{buildroot}%{_bindir}/gpgme-config{,.%{_target_cpu}} +cat > gpgme-config-multilib.sh <<__END__ +#!/bin/sh +exec %{_bindir}/gpgme-config.\$(arch) \$@ +__END__ +install -D -p gpgme-config-multilib.sh %{buildroot}%{_bindir}/gpgme-config +mv %{buildroot}%{_includedir}/gpgme.h \ + %{buildroot}%{_includedir}/gpgme-%{__isa_bits}.h +install -m644 -p -D %{SOURCE2} %{buildroot}%{_includedir}/gpgme.h +%endif +chrpath -d %{buildroot}%{_bindir}/%{name}-tool +chrpath -d %{buildroot}%{_bindir}/%{name}-json +chrpath -d %{buildroot}%{_libdir}/lib%{name}pp.so* +chrpath -d %{buildroot}%{_libdir}/libq%{name}.so* + +# autofoo installs useless stuff for uninstall +rm -vf %{buildroot}%{python2_sitelib}/gpg/install_files.txt +rm -vf %{buildroot}%{python3_sitelib}/gpg/install_files.txt + +%if %{with check} +%check +make check +%endif + +%files +%license COPYING* LICENSES +%doc AUTHORS NEWS README* +%{_bindir}/%{name}-json +%{_libdir}/lib%{name}.so.11* + +%files devel +%{_bindir}/%{name}-config +%{_bindir}/%{name}-tool +%ifarch %{multilib_arches} +%{_bindir}/%{name}-config.%{_target_cpu} +%{_includedir}/%{name}-%{__isa_bits}.h +%endif +%{_includedir}/%{name}.h +%{_libdir}/lib%{name}.so +%{_datadir}/aclocal/%{name}.m4 +%{_infodir}/%{name}.info* +%{_libdir}/pkgconfig/%{name}*.pc + +%files -n %{name}pp +%doc lang/cpp/README +%{_libdir}/lib%{name}pp.so.6* + +%files -n %{name}pp-devel +%{_includedir}/%{name}++/ +%{_libdir}/lib%{name}pp.so +%{_libdir}/cmake/Gpgmepp/ + +%files -n q%{name} +%doc lang/qt/README +%{_libdir}/libq%{name}.so.7* + +%files -n q%{name}-devel +%{_includedir}/q%{name}/ +%{_includedir}/QGpgME/ +%{_libdir}/libq%{name}.so +%{_libdir}/cmake/QGpgme/ + +%files -n python3-gpg +%doc lang/python/README +%{python3_sitearch}/gpg-*.egg-info +%{python3_sitearch}/gpg/ + +%changelog +* Thu Feb 17 2022 Jiri Kucera - 1.15.1-6 +- Rebuild + Resolves: #2035319 + +* Mon Aug 09 2021 Mohan Boddu - 1.15.1-5 +- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags + Related: rhbz#1991688 + +* Fri Jul 16 2021 Jiri Kucera - 1.15.1-4 +- Fix license and covscan issues + Resolves: #1938732 + +* Thu Apr 15 2021 Mohan Boddu - 1.15.1-3 +- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 + +* Tue Jan 26 2021 Fedora Release Engineering - 1.15.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sun Jan 24 2021 Igor Raits - 1.15.1-1 +- Update to 1.15.1 + +* Tue Jul 28 2020 Fedora Release Engineering - 1.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat Jul 18 2020 Igor Raits - 1.14.0-1 +- Update to 1.14.0 + +* Fri May 22 2020 Miro Hrončok - 1.13.1-8 +- Rebuilt for Python 3.9 + +* Thu Apr 30 2020 Tomáš Mráz - 1.13.1-7 +- Fix FTBFS with gnupg-2.2.19 and above + +* Wed Jan 29 2020 Fedora Release Engineering - 1.13.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 1.13.1-5 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Thu Aug 15 2019 Miro Hrončok - 1.13.1-4 +- Rebuilt for Python 3.8 + +* Sat Aug 10 2019 Igor Gnatenko - 1.13.1-3 +- Set real VERSION + +* Sat Aug 3 2019 Peter Robinson 1.13.1-2 +- Move .pc files to devel so the base library doesn't pull in devel packages + +* Mon Jul 29 18:46:42 CEST 2019 Igor Gnatenko - 1.13.1-1 +- Update to 1.13.1 + +* Thu Jul 25 2019 Fedora Release Engineering - 1.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Wed Jun 05 2019 Miro Hrončok - 1.12.0-2 +- Subpackage python2-gpg has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sat Feb 16 2019 Igor Gnatenko - 1.12.0-1 +- Update to 1.12.0 + +* Fri Feb 01 2019 Fedora Release Engineering - 1.11.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 1.11.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Jun 15 2018 Miro Hrončok - 1.11.1-2 +- Rebuilt for Python 3.7 + +* Fri Apr 20 2018 Igor Gnatenko - 1.11.1-1 +- Update to 1.11.1 + +* Thu Apr 19 2018 Igor Gnatenko - 1.11.0-1 +- Update to 1.11.0 + +* Tue Apr 17 2018 Jonathan Lebon - 1.10.0-4 +- Backport patch to tweak STATUS_FAILURE handling + +* Wed Feb 07 2018 Fedora Release Engineering - 1.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Jan 30 2018 Igor Gnatenko - 1.10.0-2 +- Switch to %%ldconfig_scriptlets + +* Wed Dec 13 2017 Igor Gnatenko - 1.10.0-1 +- Update to 1.10.0 + +* Tue Nov 07 2017 Igor Gnatenko - 1.9.0-8 +- Use better Obsoletes for platform-python + +* Fri Nov 03 2017 Igor Gnatenko - 1.9.0-7 +- Remove platform-python subpackages + +* Thu Aug 10 2017 Petr Viktorin - 1.9.0-6 +- Add subpackage for platform-python (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack) + +* Mon Aug 07 2017 Igor Gnatenko - 1.9.0-5 +- Remove BuildRequires: pth-devel, it is not needed for long time + +* Mon Aug 07 2017 Björn Esser - 1.9.0-4 +- Rebuilt for AutoReq cmake-filesystem + +* Wed Aug 02 2017 Fedora Release Engineering - 1.9.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Mar 29 2017 Igor Gnatenko - 1.9.0-1 +- Update to 1.9.0 + +* Sat Feb 11 2017 Igor Gnatenko - 1.8.0-12 +- Fix FTBFS + +* Fri Feb 10 2017 Fedora Release Engineering - 1.8.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Jan 18 2017 Rex Dieter - 1.8.0-10 +- patch out LIBASSUAN_LIBRARIES in cmake too + +* Wed Jan 18 2017 Rex Dieter - 1.8.0-9 +- gpgmepp-devel: Requires: libassuan-devel + +* Mon Jan 16 2017 Rex Dieter - 1.8.0-8 +- qgpgme-devel: Conflicts: kdepimlibs-devel < 4.14.10-17 + +* Sun Jan 01 2017 Rex Dieter - 1.8.0-7 +- rename gpgme-pp to gpgmepp, simplify -devel deps + +* Sun Jan 01 2017 Rex Dieter - 1.8.0-6 +- backport upstream cmake-related fix + +* Thu Dec 22 2016 Miro Hrončok - 1.8.0-5 +- Rebuild for Python 3.6 + +* Sun Dec 11 2016 Igor Gnatenko - 1.8.0-4 +- Rename pythonX-gpgme into pythonX-gpg + +* Sun Dec 11 2016 Igor Gnatenko - 1.8.0-3 +- Add Qt and C++ subpackages + +* Sat Dec 10 2016 Igor Gnatenko - 1.8.0-2 +- Enable tests + +* Sat Dec 10 2016 Igor Gnatenko - 1.8.0-1 +- Update to 1.8.0 + +* Wed Sep 21 2016 Igor Gnatenko - 1.7.0-1 +- Update to 1.7.0 + +* Mon Jul 25 2016 Igor Gnatenko - 1.6.0-3 +- Set min ver for libgpg-error + +* Mon Jul 25 2016 Igor Gnatenko - 1.6.0-2 +- Backport patch for STATUS_KEY_CONSIDERED (RHBZ #1359521) + +* Wed Jul 13 2016 Igor Gnatenko - 1.6.0-1 +- Update to 1.6.0 (RHBZ #1167656) + +* Wed Feb 03 2016 Fedora Release Engineering - 1.4.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 1.4.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Dec 06 2014 Frantisek Kluknavsky - 1.4.3-5 +- CVE-2014-3564, rhbz#1125170, gpgme-1.3.2-bufferoverflow.patch + +* Sat Aug 16 2014 Fedora Release Engineering - 1.4.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jul 12 2014 Tom Callaway - 1.4.3-3 +- fix license handling + +* Sat Jun 07 2014 Fedora Release Engineering - 1.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed Oct 09 2013 Rex Dieter - 1.4.3-1 +- gpgme-1.4.3 +- cleanup .spec, trim changelog + +* Sat Aug 03 2013 Fedora Release Engineering - 1.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Jul 09 2013 Karsten Hopp 1.3.2-3 +- rebuild to fix some f20 dependency issues on PPC + +* Thu Feb 14 2013 Fedora Release Engineering - 1.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Nov 20 2012 Frantisek Kluknavsky - 1.3.2-2 +- minor spec cleanup + +* Wed Sep 26 2012 Tomas Mraz - 1.3.2-1 +- new upstream version +- re-enable gpg tests (original patch by John Morris ) +- quiet configure warning 'could not find g13' +- there is no libgpgme-pth anymore + +* Thu Jul 19 2012 Fedora Release Engineering - 1.3.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sun Apr 22 2012 Rex Dieter 1.3.0-8 +- -devel: make Requires: libgpg-error-devel arch'd +- ensure gpgme-config wrapper is executable + +* Sun Apr 22 2012 Rex Dieter 1.3.0-7 +- gpgme.h: fatal error: gpgme-i386.h: No such file or directory compilation terminated (#815116) + +* Wed Feb 15 2012 Simon Lukasik - 1.3.0-6 +- Resolve multilib conflict of gpgme-config (#341351) +- Resolve multilib conflict of gpgme.h (#341351) + +* Fri Jan 13 2012 Fedora Release Engineering - 1.3.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Mar 17 2011 Rex Dieter - 1.3.0-4 +- gpgme-config: remove libassuan-related flags as threatened (#676954) +\ +* Sun Feb 13 2011 Rex Dieter - 1.3.0-3 +- -devel: fix typo (broken dep) + +* Sat Feb 12 2011 Rex Dieter - 1.3.0-2 +- BR: libassuan2-devel +- gpgme-config outputs -lassuan (#676954) + +* Fri Feb 11 2011 Tomas Mraz - 1.3.0-1 +- new upstream version + +* Tue Feb 08 2011 Fedora Release Engineering - 1.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Aug 18 2010 Tomas Mraz - 1.2.0-3 +- fix the condition for adding the -D_FILE_OFFSET_BITS... + +* Wed Aug 11 2010 Tomas Mraz - 1.2.0-2 +- add -D_FILE_OFFSET_BITS... to gpgme-config as appropriate (#621698) + +* Fri Jul 02 2010 Rex Dieter - 1.2.0-1 +- gpgme-1.2.0 (#610984) + +* Sun Feb 14 2010 Rex Dieter - 1.1.8-4 +- FTBFS gpgme-1.1.8-3.fc13: ImplicitDSOLinking (#564605) + +* Thu Nov 19 2009 Tomas Mraz - 1.1.8-3 +- Add buildrequires gnupg2-smime for the gpgsm + +* Fri Jul 24 2009 Fedora Release Engineering - 1.1.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat Jun 20 2009 Rex Dieter - 1.1.8-1 +- gpgme-1.1.8 +- -devel: s/postun/preun/ info scriptlet + +* Wed Mar 11 2009 Rex Dieter - 1.1.7-3 +- track shlib sonames closer, to highlight future abi/soname changes +- _with_gpg macro, to potentially conditionalize gnupg vs gnupg2 defaults + for various os/releases (ie, fedora vs rhel) + +* Tue Feb 24 2009 Fedora Release Engineering - 1.1.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Oct 18 2008 Rex Dieter 1.1.7-1 +- gpgme-1.1.7 + +* Sun Feb 17 2008 Rex Dieter 1.1.6-3 +- --with-gpg=%%_bindir/gpg2 (#432445) +- drop Requires: gnupg (#432445) + +* Fri Feb 08 2008 Rex Dieter 1.1.6-2 +- respin (gcc43) + +* Fri Jan 04 2008 Rex Dieter 1.1.6-1 +- gpgme-1.1.6 +- multiarch conflicts in gpgme (#341351) + +* Sat Aug 25 2007 Rex Dieter 1.1.5-4 +- BR: gawk + +* Sat Aug 25 2007 Rex Dieter 1.1.5-3 +- respin (BuildID) + +* Thu Aug 09 2007 Rex Dieter 1.1.5-2 +- License: LGPLv2+ + +* Mon Jul 09 2007 Rex Dieter 1.1.5-1 +- gpgme-1.1.5 + +* Mon Mar 05 2007 Rex Dieter 1.1.4-1 +- gpgme-1.1.4 + +* Sat Feb 03 2007 Rex Dieter 1.1.3-1 +- gpgme-1.1.3 + +* Tue Oct 03 2006 Rex Dieter +- respin + +* Mon Sep 18 2006 Rex Dieter 1.1.2-6 +- fix gpgme-config --thread=pthread --cflags + +* Tue Aug 29 2006 Rex Dieter 1.1.2-5 +- fc6 respin + +* Mon Mar 6 2006 Rex Dieter 1.1.2-4 +- add back support for gpgme-config --thread=pthread + +* Mon Mar 6 2006 Rex Dieter 1.1.2-2 +- drop extraneous libs from gpgme-config + +* Fri Mar 3 2006 Rex Dieter 1.1.2-1 +- 1.1.2 +- drop upstreamed gpgme-1.1.0-tests.patch + +* Wed Mar 1 2006 Rex Dieter +- fc5: gcc/glibc respin + +* Wed Nov 30 2005 Rex Dieter - 1.1.0-3 +- (re)build against (newer) libksba/gnupg2 + +* Thu Oct 06 2005 Rex Dieter - 1.1.0-2 +- 1.1.0 + +* Mon Aug 8 2005 Rex Dieter - 1.0.3-1 +- 1.0.3 +- --disable-static + +* Thu May 12 2005 Michael Schwendt - 1.0.2-3 +- rebuilt + +* Fri Mar 18 2005 Ville Skyttä - 1.0.2-2 +- Fix FC4 build. + +* Tue Feb 1 2005 Michael Schwendt - 0:1.0.2-1 +- LGPL used here, and made summary more explicit. +- Remove dirmngr dependency (gpgsm interfaces with it). +- Obsolete cryptplug as gpgme >= 0.4.5 provides what we used cryptplug for. + +* Thu Jan 06 2005 Rex Dieter 0:1.0.2-0.fdr.1 +- 1.0.2 + +* Thu Oct 21 2004 Rex Dieter 0:1.0.0-0.fdr.1 +- 1.0.0 +- Requires: dirmngr + +* Tue Oct 19 2004 Rex Dieter 0:0.4.7-0.fdr.1 +- 0.4.7 + +* Sun May 2 2004 Ville Skyttä - 0:0.4.3-0.fdr.3 +- Require %%{_bindir}/gpgsm instead of newpg. +- Cosmetic spec file improvements. + +* Thu Oct 23 2003 Ville Skyttä - 0:0.4.3-0.fdr.2 +- Update description. + +* Tue Oct 7 2003 Ville Skyttä - 0:0.4.3-0.fdr.1 +- Update to 0.4.3. + +* Fri Aug 15 2003 Ville Skyttä - 0:0.4.2-0.fdr.1 +- Update to 0.4.2. +- make check in the %%check section. + +* Thu Jul 10 2003 Ville Skyttä - 0:0.4.1-0.fdr.1 +- Update to 0.4.1. +- Make -devel cooperate with --excludedocs. + +* Sat Apr 19 2003 Ville Skyttä - 0:0.4.0-0.fdr.2 +- BuildRequire pth-devel, fix missing epoch in -devel Requires (#169). +- Save .spec in UTF-8. + +* Sat Mar 22 2003 Ville Skyttä - 0:0.4.0-0.fdr.1 +- Update to current Fedora guidelines. +- Exclude %%{_libdir}/*.la. + +* Tue Feb 12 2003 Warren Togami 0.4.0-1.fedora.3 +- info/dir temporary workaround + +* Sat Feb 8 2003 Ville Skyttä - 0.4.0-1.fedora.1 +- First Fedora release.