rust-keylime/rust-keylime.spec
Alberto Planas Dominguez 25830373fa Accepting request 982602 from home:aplanas:branches:security
- Update to version 0.1.0+git.1655143451.7c4121e:
  * Add dependabot for automatic dependency updates
  * config: remove unused options
  * persist AK, NK and mTLS certificate to disk
  * Update tokio minimum version
  * Adjust CI test name according to keylime-tests PR#125
  * Make wiremock an optional dependency
  * Drop unused dependency flate2
  * Drop unused dependency rustc-serialize
  * Update clap dependency to 3.1.18
  * add support for "hash_ek" UUID creation
  * tpm: add and use EKResult struct as return value for create_ek(..)
  * replace custom marshall functions with the offical one
  * update to tss-esapi 7.1.0
  * quotes_handler: Rewind measured boot log file
  * Add test /functional/measured-boot-swtpm-sanity to Packit CI plan
  * OpenSSL on deb family is now libssl-dev

OBS-URL: https://build.opensuse.org/request/show/982602
OBS-URL: https://build.opensuse.org/package/show/security/rust-keylime?expand=0&rev=14
2022-06-14 11:50:32 +00:00

114 lines
3.3 KiB
RPMSpec

#
# spec file for package rust-keylime
#
# Copyright (c) 2022 SUSE LLC
#
# 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.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global rustflags '-Clink-arg=-Wl,-z,relro,-z,now'
Name: rust-keylime
Version: 0.1.0+git.1655143451.7c4121e
Release: 0
Summary: Rust implementation of the keylime agent
License: Apache-2.0 AND MIT
URL: https://github.com/keylime/rust-keylime
Source: rust-keylime-%{version}.tar.xz
Source1: vendor.tar.xz
Source2: cargo_config
Source3: keylime_agent.service
Source4: keylime.xml
# PATCH-FIX-OPENSUSE keylime.conf.diff
Patch1: keylime.conf.diff
BuildRequires: cargo
BuildRequires: firewall-macros
BuildRequires: libarchive-devel
BuildRequires: rust
BuildRequires: tpm2-0-tss-devel
BuildRequires: zeromq-devel
Recommends: %{name}-python = %{version}
Conflicts: keylime-agent
Conflicts: keylime-config
Conflicts: keylime-firewalld
Conflicts: python-keylime
ExcludeArch: %{ix86} s390x ppc64 ppc64le armhfp armv7hl
%description
Rust implementation of keylime agent. Keylime is system integrity
monitoring system.
%package -n %{name}-python
Summary: Shim loader for Python compatibility
Requires: %{name} = %{version}
Requires: python3-base
%description -n %{name}-python
Subpackage of %{name} for executing Python based revocation scripts.
%prep
%autosetup -a1 -p1
mkdir .cargo
cp %{SOURCE2} .cargo/config
%build
RUSTFLAGS=%{rustflags} cargo build --release
%install
RUSTFLAGS=%{rustflags} cargo install --frozen --root=%{buildroot}%{_prefix} --path .
install -Dpm 644 keylime.conf %{buildroot}%{_sysconfdir}/keylime.conf
install -Dpm 644 %{SOURCE3} %{buildroot}%{_unitdir}/keylime_agent.service
install -D -m 644 %{SOURCE4} %{buildroot}%{_prefix}/lib/firewalld/services/keylime.xml
# Create work directory
mkdir -p %{buildroot}%{_sharedstatedir}/keylime
# Create work directory for revocation actions
mkdir -p %{buildroot}%{_libexecdir}/keylime
cp tests/actions/shim.py %{buildroot}%{_libexecdir}/keylime
rm %{buildroot}%{_prefix}/.crates.toml
rm %{buildroot}%{_prefix}/.crates2.json
%pre
%service_add_pre keylime_agent.service
%post
%firewalld_reload
%service_add_post keylime_agent.service
%preun
%service_del_preun keylime_agent.service
%postun
%service_del_postun keylime_agent.service
%files
%doc README.md
%license LICENSE
%{_bindir}/keylime_agent
%{_bindir}/keylime_ima_emulator
%config(noreplace) %{_sysconfdir}/keylime.conf
%dir %attr(0700, root, root) %{_sharedstatedir}/keylime
%dir %{_prefix}/lib/firewalld
%dir %{_prefix}/lib/firewalld/services
%{_prefix}/lib/firewalld/services/keylime.xml
%{_unitdir}/keylime_agent.service
%files -n %{name}-python
%dir %{_libexecdir}/keylime
%{_libexecdir}/keylime/shim.py
%changelog