SHA256
1
0
forked from pool/xca

Accepting request 1165932 from security

OBS-URL: https://build.opensuse.org/request/show/1165932
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/xca?expand=0&rev=10
This commit is contained in:
Ana Guerrero 2024-04-07 20:13:21 +00:00 committed by Git OBS Bridge
commit 290614975c
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Apr 4 13:18:04 UTC 2024 - ecsos <ecsos@opensuse.org>
- Fix build error in Leap.
-------------------------------------------------------------------
Wed Apr 3 11:43:34 UTC 2024 - pgajdos@suse.com

View File

@ -27,7 +27,13 @@ Summary(de): Ein RSA-Schlüssel- und -Zertifikat-Managementprogramm
URL: https://www.hohnstaedt.de/xca/
Source: https://github.com/chris2511/xca/releases/download/RELEASE.%{version}/%{name}-%{version}.tar.gz
Patch0: %{name}-desktop.patch
BuildRequires: gcc-c++
%if 0%{?suse_version} <= 1600
BuildRequires: gcc12
BuildRequires: gcc12-c++
%else
BuildRequires: gcc
BuildRequires: gcc-c++
%endif
BuildRequires: hicolor-icon-theme
BuildRequires: libqt5-linguist
BuildRequires: libtool
@ -77,6 +83,10 @@ Bash completion script for %{name}.
%build
%if 0%{?suse_version} <= 1600
export CC=gcc-12
export CXX=g++-12
%endif
%if 0%{?suse_version} <= 1600
%cmake
%cmake_build
%else