forked from pool/openssl-ibmca
Accepting request 1164459 from home:ngueorguiev:branches:security:tls
- Amended the .spec file (bsc#1221627) * Removed the flavors OBS-URL: https://build.opensuse.org/request/show/1164459 OBS-URL: https://build.opensuse.org/package/show/security:tls/openssl-ibmca?expand=0&rev=60
This commit is contained in:
parent
b35925491c
commit
6345fc1b78
@ -1,5 +0,0 @@
|
|||||||
<multibuild>
|
|
||||||
<flavor>openssl1</flavor>
|
|
||||||
<flavor>engine</flavor>
|
|
||||||
<flavor>provider</flavor>
|
|
||||||
</multibuild>
|
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 4 04:37:18 UTC 2024 - Nikolay Gueorguiev <nikolay.gueorguiev@suse.com>
|
||||||
|
|
||||||
|
- Amended the .spec file (bsc#1221627)
|
||||||
|
* Removed the flavors
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 18 19:18:47 UTC 2024 - Nikolay Gueorguiev <nikolay.gueorguiev@suse.com>
|
Mon Mar 18 19:18:47 UTC 2024 - Nikolay Gueorguiev <nikolay.gueorguiev@suse.com>
|
||||||
|
|
||||||
|
@ -16,27 +16,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define flavor @BUILD_FLAVOR@%{nil}
|
|
||||||
|
|
||||||
%if "%{flavor}" == ""
|
|
||||||
%define openssl3 1
|
%define openssl3 1
|
||||||
%define provider 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{flavor}" == "openssl1"
|
|
||||||
%define openssl3 0
|
|
||||||
%define provider 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{flavor}" == "engine"
|
|
||||||
%define openssl3 1
|
|
||||||
%define provider 0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if "%{flavor}" == "provider"
|
|
||||||
%define openssl3 1
|
|
||||||
%define provider 1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%global enginesdir %(pkg-config --variable=enginesdir libcrypto)
|
%global enginesdir %(pkg-config --variable=enginesdir libcrypto)
|
||||||
%global modulesdir %(pkg-config --variable=modulesdir libcrypto)
|
%global modulesdir %(pkg-config --variable=modulesdir libcrypto)
|
||||||
@ -50,7 +30,6 @@ Group: Hardware/Other
|
|||||||
URL: https://github.com/opencryptoki/openssl-ibmca
|
URL: https://github.com/opencryptoki/openssl-ibmca
|
||||||
Source: https://github.com/opencryptoki/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
Source: https://github.com/opencryptoki/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
Source1: engine_section.txt
|
Source1: engine_section.txt
|
||||||
Source2: _multibuild
|
|
||||||
###
|
###
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
@ -79,35 +58,23 @@ to libica, a library enabling the IBM s390/x CPACF crypto instructions.
|
|||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
export CPPFLAGS="%{optflags}"
|
export CPPFLAGS="%{optflags}"
|
||||||
|
|
||||||
%if %{provider}
|
%configure \
|
||||||
%configure \
|
|
||||||
--disable-engine \
|
|
||||||
--libdir=%{modulesdir}
|
--libdir=%{modulesdir}
|
||||||
%else
|
|
||||||
%configure \
|
mkdir -p %{buildroot}/%{enginesdir}
|
||||||
--disable-provider \
|
|
||||||
--libdir=%{enginesdir}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if %{provider}
|
|
||||||
#
|
|
||||||
###
|
|
||||||
#
|
|
||||||
%else
|
|
||||||
# Update the sample config file so that the dynamic path points
|
# Update the sample config file so that the dynamic path points
|
||||||
# to the correct version of the engines directory.
|
# to the correct version of the engines directory.
|
||||||
sed -i -e "/^dynamic_path/s, = .*/, = %{enginesdir}/," src/engine/openssl.cnf.sample
|
sed -i -e "/^dynamic_path/s, = .*/, = %{enginesdir}/," src/engine/openssl.cnf.sample
|
||||||
%endif
|
|
||||||
|
|
||||||
%make_install
|
%make_install
|
||||||
%if %{provider}
|
|
||||||
rm -f %{buildroot}/%{modulesdir}/ibmca-provider.la
|
rm -f %{buildroot}/%{modulesdir}/ibmca-provider.la
|
||||||
%else
|
mv %{buildroot}/%{modulesdir}/ibmca.* %{buildroot}/%{enginesdir}/
|
||||||
rm -f %{buildroot}/%{enginesdir}/ibmca.la
|
rm -f %{buildroot}/%{enginesdir}/ibmca.la
|
||||||
%endif
|
|
||||||
|
|
||||||
# This file contains the declaration of the ibmca engine section. It
|
# This file contains the declaration of the ibmca engine section. It
|
||||||
# needs to be on the "real" file system when the postinstall scriptlet
|
# needs to be on the "real" file system when the postinstall scriptlet
|
||||||
@ -156,13 +123,10 @@ fi
|
|||||||
%{_datadir}/%{name}/openssl-ibmca.sectiondef.txt
|
%{_datadir}/%{name}/openssl-ibmca.sectiondef.txt
|
||||||
%{_datadir}/%{name}/openssl-ibmca.enginedef.cnf
|
%{_datadir}/%{name}/openssl-ibmca.enginedef.cnf
|
||||||
%if %{openssl3}
|
%if %{openssl3}
|
||||||
%if %{provider}
|
|
||||||
%{modulesdir}/ibmca-provider.*
|
%{modulesdir}/ibmca-provider.*
|
||||||
%{_mandir}/man5/ibmca-provider.5%{?ext_man}
|
%{_mandir}/man5/ibmca-provider.5%{?ext_man}
|
||||||
%else
|
|
||||||
%{enginesdir}/ibmca.*
|
%{enginesdir}/ibmca.*
|
||||||
%{_mandir}/man5/ibmca.5%{?ext_man}
|
%{_mandir}/man5/ibmca.5%{?ext_man}
|
||||||
%endif
|
|
||||||
%else
|
%else
|
||||||
%{enginesdir}/ibmca.*
|
%{enginesdir}/ibmca.*
|
||||||
%{_mandir}/man5/ibmca.5%{?ext_man}
|
%{_mandir}/man5/ibmca.5%{?ext_man}
|
||||||
|
Loading…
Reference in New Issue
Block a user