2007-01-15 23:15:34 +00:00
|
|
|
#
|
2011-01-14 14:03:14 +00:00
|
|
|
# spec file for package gpgme
|
2007-01-15 23:15:34 +00:00
|
|
|
#
|
2021-01-14 11:11:48 +00:00
|
|
|
# Copyright (c) 2021 SUSE LLC
|
2007-01-15 23:15:34 +00:00
|
|
|
#
|
2009-01-13 17:58:06 +00:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-10-08 11:38:36 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-15 23:15:34 +00:00
|
|
|
#
|
|
|
|
|
2012-11-18 09:43:42 +00:00
|
|
|
|
2019-10-17 10:54:40 +00:00
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == ""
|
2020-07-20 08:51:43 +00:00
|
|
|
%define psuffix %{nil}
|
2018-01-08 10:31:58 +00:00
|
|
|
%bcond_without python2
|
|
|
|
%bcond_without python3
|
2019-10-17 11:15:13 +00:00
|
|
|
%bcond_with qt
|
2019-10-17 10:54:40 +00:00
|
|
|
%else
|
2020-07-20 08:51:43 +00:00
|
|
|
%define psuffix qt
|
2019-10-17 10:54:40 +00:00
|
|
|
%bcond_with python2
|
|
|
|
%bcond_with python3
|
2019-10-17 11:15:13 +00:00
|
|
|
%bcond_without qt
|
2019-10-17 10:54:40 +00:00
|
|
|
%endif
|
2020-12-08 08:07:04 +00:00
|
|
|
%{!?python_module:%define python_module() python-%{**} python3-{**}}
|
2019-10-17 11:15:13 +00:00
|
|
|
Name: gpgme%{psuffix}
|
2021-07-12 13:36:30 +00:00
|
|
|
Version: 1.16.0
|
2011-12-01 20:10:43 +00:00
|
|
|
Release: 0
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Programmatic library interface to GnuPG
|
2021-07-12 13:36:30 +00:00
|
|
|
License: GPL-3.0-or-later AND LGPL-2.1-or-later
|
2010-12-14 22:28:20 +00:00
|
|
|
Group: Productivity/Security
|
2020-07-20 08:51:43 +00:00
|
|
|
URL: https://www.gnupg.org/related_software/gpgme/
|
2019-10-17 10:54:40 +00:00
|
|
|
Source: ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-%{version}.tar.bz2
|
|
|
|
Source1: ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-%{version}.tar.bz2.sig
|
2011-07-29 15:54:23 +00:00
|
|
|
Source2: baselibs.conf
|
2020-11-18 09:44:33 +00:00
|
|
|
# https://www.gnupg.org/signature_key.html
|
2013-03-09 18:04:52 +00:00
|
|
|
Source3: gpgme.keyring
|
2015-02-05 10:58:10 +00:00
|
|
|
# used to have a fixed timestamp
|
2019-10-17 10:54:40 +00:00
|
|
|
Source99: gpgme.changes
|
2021-07-12 13:36:30 +00:00
|
|
|
Patch0: gpgme-1.16.0-Use-after-free-in-t-edit-sign-test.patch
|
|
|
|
Patch1: gpgme-1.16.0-t-various-testSignKeyWithExpiration-32-bit.patch
|
2017-02-14 09:52:32 +00:00
|
|
|
BuildRequires: gcc-c++
|
2013-03-09 18:04:52 +00:00
|
|
|
BuildRequires: gpg2 >= 2.0.10
|
2017-12-12 16:53:22 +00:00
|
|
|
BuildRequires: libassuan-devel >= 2.4.2
|
2020-11-18 09:44:33 +00:00
|
|
|
BuildRequires: libgpg-error-devel >= 1.36
|
2016-09-27 12:54:32 +00:00
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: swig
|
2020-12-08 08:07:04 +00:00
|
|
|
%if %{with python2} || %{with python3}
|
|
|
|
BuildRequires: %{python_module devel}
|
2021-01-14 11:11:48 +00:00
|
|
|
BuildRequires: python-rpm-macros
|
2020-12-08 08:07:04 +00:00
|
|
|
%endif
|
2019-10-17 11:15:13 +00:00
|
|
|
%if %{with qt}
|
2016-09-27 12:54:32 +00:00
|
|
|
BuildRequires: pkgconfig(Qt5Core)
|
2016-10-13 08:28:34 +00:00
|
|
|
BuildRequires: pkgconfig(Qt5Test)
|
2019-10-17 11:15:13 +00:00
|
|
|
%endif
|
2021-03-29 21:11:17 +00:00
|
|
|
%if 0%{?suse_version} >= 1550
|
|
|
|
# TW: generate subpackages for every python3 flavor
|
2020-12-08 08:07:04 +00:00
|
|
|
%define python_subpackage_only 1
|
|
|
|
%python_subpackages
|
|
|
|
%else
|
|
|
|
%define python_sitearch %python3_sitearch
|
|
|
|
%define python_files() -n python3-%{**}
|
|
|
|
%endif
|
|
|
|
|
2007-01-15 23:15:34 +00:00
|
|
|
%description
|
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2007-01-15 23:15:34 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management. It uses GnuPG as its back-end.
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2007-08-06 21:39:18 +00:00
|
|
|
%package -n libgpgme11
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Programmatic library interface to GnuPG
|
2017-02-14 06:39:37 +00:00
|
|
|
Group: System/Libraries
|
2011-09-05 13:30:00 +00:00
|
|
|
Requires: gpg2
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2007-08-06 21:39:18 +00:00
|
|
|
%description -n libgpgme11
|
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2007-08-06 21:39:18 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management. It uses GnuPG as its back-end.
|
2007-08-06 21:39:18 +00:00
|
|
|
|
|
|
|
%package -n libgpgme-devel
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Development files for GPGME, a C library for accessing GnuPG
|
2007-12-31 21:22:29 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
2010-12-14 22:28:20 +00:00
|
|
|
Requires: glibc-devel
|
2010-09-16 10:21:05 +00:00
|
|
|
Requires: libgpg-error-devel
|
2010-12-14 22:28:20 +00:00
|
|
|
Requires: libgpgme11 = %{version}
|
2017-11-08 06:57:22 +00:00
|
|
|
%requires_ge libassuan-devel
|
2010-04-01 13:29:34 +00:00
|
|
|
Provides: gpgme-devel = %{version}
|
|
|
|
Obsoletes: gpgme-devel < %{version}
|
2007-08-06 21:39:18 +00:00
|
|
|
|
|
|
|
%description -n libgpgme-devel
|
2007-01-15 23:15:34 +00:00
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2007-01-15 23:15:34 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2016-10-20 07:23:29 +00:00
|
|
|
This subpackage contains the headers needed for building applications
|
|
|
|
making use of libgpgme.
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2016-09-27 12:54:32 +00:00
|
|
|
%package -n libgpgmepp6
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Programmatic C++ library interface to GnuPG
|
2017-02-14 06:39:37 +00:00
|
|
|
Group: System/Libraries
|
2016-09-27 12:54:32 +00:00
|
|
|
Requires: gpg2
|
|
|
|
|
|
|
|
%description -n libgpgmepp6
|
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2016-09-27 12:54:32 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2016-09-27 12:54:32 +00:00
|
|
|
|
|
|
|
This package contains the C++ bindings.
|
|
|
|
|
|
|
|
%package -n libgpgmepp-devel
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Development files for libgpgmepp, a C++ library for accessing GnuPG
|
2016-09-27 12:54:32 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Requires: glibc-devel
|
|
|
|
Requires: libgpg-error-devel
|
|
|
|
Requires: libgpgme-devel = %{version}
|
|
|
|
Requires: libgpgmepp6 = %{version}
|
2017-11-08 06:57:22 +00:00
|
|
|
%requires_ge libassuan-devel
|
2016-09-27 12:54:32 +00:00
|
|
|
|
|
|
|
%description -n libgpgmepp-devel
|
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2016-09-27 12:54:32 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2016-10-20 07:23:29 +00:00
|
|
|
This subpackage contains the headers needed for building applications
|
|
|
|
making use of libgpgmepp.
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2020-12-08 08:07:04 +00:00
|
|
|
%if 0%{?python_subpackage_only}
|
|
|
|
%package -n python-gpg
|
|
|
|
Summary: Python %{python_version} bindings for GPGME, a library for accessing GnuPG
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
|
|
|
|
%description -n python-gpg
|
|
|
|
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.
|
|
|
|
|
|
|
|
This package contains the bindings to use the library from Python %{python_version} applications.
|
|
|
|
|
|
|
|
%else
|
2021-07-12 13:36:30 +00:00
|
|
|
|
2017-11-08 06:57:22 +00:00
|
|
|
%package -n python2-gpg
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Python 2 bindings for GPGME, a library for accessing GnuPG
|
2017-02-14 06:39:37 +00:00
|
|
|
Group: Development/Languages/Python
|
2017-11-08 06:57:22 +00:00
|
|
|
Provides: python-gpg = %{version}-%{release}
|
|
|
|
Obsoletes: python-gpg < %{version}-%{release}
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2017-11-08 06:57:22 +00:00
|
|
|
%description -n python2-gpg
|
2016-09-27 12:54:32 +00:00
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2016-09-27 12:54:32 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2016-09-27 12:54:32 +00:00
|
|
|
|
|
|
|
This package contains the bindings to use the library from Python 2 applications.
|
|
|
|
|
2016-11-20 22:33:59 +00:00
|
|
|
%package -n python3-gpg
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Python 3 bindings for GPGME, a library for accessing GnuPG
|
2017-02-14 06:39:37 +00:00
|
|
|
Group: Development/Languages/Python
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2016-11-20 22:33:59 +00:00
|
|
|
%description -n python3-gpg
|
2016-09-27 12:54:32 +00:00
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2016-09-27 12:54:32 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2016-09-27 12:54:32 +00:00
|
|
|
|
|
|
|
This package contains the bindings to use the library from Python 3 applications.
|
2020-12-08 08:07:04 +00:00
|
|
|
%endif
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2016-10-19 09:36:02 +00:00
|
|
|
%package -n libqgpgme7
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Programmatic Qt library interface to GnuPG
|
2017-02-14 06:39:37 +00:00
|
|
|
Group: System/Libraries
|
2016-10-13 08:28:34 +00:00
|
|
|
Requires: gpg2
|
|
|
|
|
2016-10-19 09:36:02 +00:00
|
|
|
%description -n libqgpgme7
|
2016-10-13 08:28:34 +00:00
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2016-10-13 08:28:34 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2016-10-13 08:28:34 +00:00
|
|
|
|
|
|
|
This package contains the Qt bindings.
|
|
|
|
|
|
|
|
%package -n libqgpgme-devel
|
2016-10-20 07:23:29 +00:00
|
|
|
Summary: Development files for libqgpgme, a Qt library for accessing GnuPG
|
2016-10-13 08:28:34 +00:00
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Requires: libgpgme-devel = %{version}
|
|
|
|
Requires: libgpgmepp-devel = %{version}
|
2016-10-19 09:36:02 +00:00
|
|
|
Requires: libqgpgme7 = %{version}
|
2016-10-13 08:28:34 +00:00
|
|
|
|
|
|
|
%description -n libqgpgme-devel
|
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
2016-10-20 07:23:29 +00:00
|
|
|
easier for applications. It provides a high-level crypto API for
|
2016-10-13 08:28:34 +00:00
|
|
|
encryption, decryption, signing, signature verification, and key
|
2016-10-20 07:23:29 +00:00
|
|
|
management.
|
2016-10-13 08:28:34 +00:00
|
|
|
|
|
|
|
This package contains the bindings to use the library in Qt C++ applications.
|
|
|
|
|
2007-01-15 23:15:34 +00:00
|
|
|
%prep
|
2020-07-20 08:51:43 +00:00
|
|
|
%setup -q -n gpgme-%{version}
|
2021-07-12 13:36:30 +00:00
|
|
|
%patch0 -p1
|
|
|
|
%patch1 -p1
|
2017-02-14 09:52:32 +00:00
|
|
|
|
2007-01-15 23:15:34 +00:00
|
|
|
%build
|
2015-09-17 12:56:47 +00:00
|
|
|
build_timestamp=$(date -u +%{Y}-%{m}-%{dT}%{H}:%{M}+0000 -r %{SOURCE99})
|
2017-03-24 15:14:23 +00:00
|
|
|
languages="cl cpp"
|
|
|
|
|
2018-01-08 10:31:58 +00:00
|
|
|
%if %{with python2} || %{with python3}
|
2017-03-24 15:14:23 +00:00
|
|
|
languages="${languages} python"
|
|
|
|
%endif
|
|
|
|
|
2019-10-17 11:15:13 +00:00
|
|
|
%if %{with qt}
|
2019-10-17 10:54:40 +00:00
|
|
|
languages="cpp qt"
|
2019-10-17 11:15:13 +00:00
|
|
|
%endif
|
2017-03-24 15:14:23 +00:00
|
|
|
|
2014-05-21 13:51:31 +00:00
|
|
|
%configure \
|
2017-02-14 09:52:32 +00:00
|
|
|
--disable-silent-rules \
|
2014-05-21 13:51:31 +00:00
|
|
|
--disable-static \
|
2015-08-26 15:46:17 +00:00
|
|
|
--disable-fd-passing \
|
2016-09-27 12:54:32 +00:00
|
|
|
--enable-languages="${languages}" \
|
2015-09-17 12:56:47 +00:00
|
|
|
--enable-build-timestamp="${build_timestamp}"
|
2020-07-20 08:51:43 +00:00
|
|
|
%make_build
|
2007-01-15 23:15:34 +00:00
|
|
|
|
|
|
|
%install
|
2017-02-14 09:52:32 +00:00
|
|
|
%make_install
|
2015-06-19 15:15:14 +00:00
|
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
2016-09-27 12:54:32 +00:00
|
|
|
chmod -x %{buildroot}%{_libdir}/cmake/Gpgmepp/*.cmake
|
2017-02-14 09:52:32 +00:00
|
|
|
|
2019-10-17 11:15:13 +00:00
|
|
|
%if %{with qt}
|
2019-10-17 10:54:40 +00:00
|
|
|
rm -r %{buildroot}%{_bindir}
|
|
|
|
rm -r %{buildroot}%{_datadir}/aclocal/gpgme*
|
|
|
|
rm -r %{buildroot}%{_includedir}/gpgme*
|
|
|
|
rm -r %{buildroot}%{_infodir}/gpgme*
|
|
|
|
rm -r %{buildroot}%{_libdir}/cmake/Gpgmepp
|
|
|
|
rm -r %{buildroot}%{_libdir}/libgpgme*
|
|
|
|
rm -r %{buildroot}%{_libdir}/pkgconfig/gpgme*
|
|
|
|
%endif
|
2008-02-08 20:18:15 +00:00
|
|
|
|
|
|
|
%check
|
2011-10-02 15:36:05 +00:00
|
|
|
%if ! 0%{?qemu_user_space_build}
|
2020-07-20 08:51:43 +00:00
|
|
|
%make_build check
|
2011-10-02 15:36:05 +00:00
|
|
|
%endif
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2019-10-17 11:15:13 +00:00
|
|
|
%if %{with qt}
|
2019-10-17 10:54:40 +00:00
|
|
|
%post -n libqgpgme7 -p /sbin/ldconfig
|
|
|
|
%postun -n libqgpgme7 -p /sbin/ldconfig
|
2019-10-17 11:15:13 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if !%{with qt}
|
2010-12-14 22:28:20 +00:00
|
|
|
%post -n libgpgme11 -p /sbin/ldconfig
|
|
|
|
%postun -n libgpgme11 -p /sbin/ldconfig
|
2016-09-27 12:54:32 +00:00
|
|
|
%post -n libgpgmepp6 -p /sbin/ldconfig
|
|
|
|
%postun -n libgpgmepp6 -p /sbin/ldconfig
|
2019-10-17 11:15:13 +00:00
|
|
|
%endif
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2019-10-17 11:15:13 +00:00
|
|
|
%if !%{with qt}
|
2007-01-15 23:15:34 +00:00
|
|
|
%files
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2018-04-19 11:59:31 +00:00
|
|
|
%doc AUTHORS ChangeLog ChangeLog-2011 README NEWS THANKS TODO VERSION
|
2014-12-08 08:31:29 +00:00
|
|
|
%{_bindir}/gpgme-tool
|
2018-04-19 11:59:31 +00:00
|
|
|
%{_bindir}/gpgme-json
|
2007-12-31 21:22:29 +00:00
|
|
|
%{_datadir}/common-lisp
|
|
|
|
%{_datadir}/common-lisp/source
|
2010-04-01 13:29:34 +00:00
|
|
|
%{_infodir}/gpgme*
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2007-08-06 21:39:18 +00:00
|
|
|
%files -n libgpgme11
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2010-04-01 13:29:34 +00:00
|
|
|
%{_libdir}/libgpgme.so.*
|
2007-08-06 21:39:18 +00:00
|
|
|
|
|
|
|
%files -n libgpgme-devel
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2010-04-01 13:29:34 +00:00
|
|
|
%{_libdir}/libgpgme.so
|
2007-12-31 21:22:29 +00:00
|
|
|
%{_bindir}/gpgme-config
|
|
|
|
%{_datadir}/aclocal/gpgme.m4
|
|
|
|
%{_includedir}/gpgme.h
|
2019-04-01 07:16:03 +00:00
|
|
|
%{_libdir}/pkgconfig/gpgme.pc
|
|
|
|
%{_libdir}/pkgconfig/gpgme-glib.pc
|
2007-01-15 23:15:34 +00:00
|
|
|
|
2016-09-27 12:54:32 +00:00
|
|
|
%files -n libgpgmepp6
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2016-09-27 12:54:32 +00:00
|
|
|
%{_libdir}/libgpgmepp.so.*
|
|
|
|
|
|
|
|
%files -n libgpgmepp-devel
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2016-09-27 12:54:32 +00:00
|
|
|
%{_libdir}/libgpgmepp.so
|
|
|
|
%{_includedir}/gpgme++
|
|
|
|
%dir %{_libdir}/cmake
|
|
|
|
%dir %{_libdir}/cmake/Gpgmepp
|
|
|
|
%{_libdir}/cmake/Gpgmepp/GpgmeppConfig*.cmake
|
2019-10-17 11:15:13 +00:00
|
|
|
%endif
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2020-12-08 08:07:04 +00:00
|
|
|
%if %{with python2} && ! 0%{?python_subpackage_only}
|
2017-11-08 06:57:22 +00:00
|
|
|
%files -n python2-gpg
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2020-05-15 08:58:18 +00:00
|
|
|
%{python_sitearch}/gpg*
|
2018-01-08 10:31:58 +00:00
|
|
|
%endif
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2020-12-08 08:07:04 +00:00
|
|
|
%if %{with python3} || ( 0%{?python_subpackage_only} && %{with python2} )
|
|
|
|
%files %{python_files gpg}
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2020-12-08 08:07:04 +00:00
|
|
|
%{python_sitearch}/gpg*
|
2017-03-24 15:14:23 +00:00
|
|
|
%endif
|
2016-09-27 12:54:32 +00:00
|
|
|
|
2019-10-17 11:15:13 +00:00
|
|
|
%if %{with qt}
|
2016-10-19 09:36:02 +00:00
|
|
|
%files -n libqgpgme7
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2016-10-13 08:28:34 +00:00
|
|
|
%{_libdir}/libqgpgme.so.*
|
|
|
|
|
|
|
|
%files -n libqgpgme-devel
|
2021-07-12 13:36:30 +00:00
|
|
|
%license COPYING COPYING.LESSER LICENSES
|
2016-10-13 08:28:34 +00:00
|
|
|
%{_includedir}/qgpgme/
|
|
|
|
%{_includedir}/QGpgME/
|
|
|
|
%dir %{_libdir}/cmake
|
2016-11-20 22:33:59 +00:00
|
|
|
%dir %{_libdir}/cmake/QGpgme
|
|
|
|
%{_libdir}/cmake/QGpgme/*.cmake
|
2016-10-13 08:28:34 +00:00
|
|
|
%{_libdir}/libqgpgme.so
|
2019-10-17 11:15:13 +00:00
|
|
|
%endif
|
2016-10-13 08:28:34 +00:00
|
|
|
|
2007-03-12 00:58:50 +00:00
|
|
|
%changelog
|