forked from pool/parsec
Accepting request 844364 from home:Guillaume_G
parsec service OBS-URL: https://build.opensuse.org/request/show/844364 OBS-URL: https://build.opensuse.org/package/show/security/parsec?expand=0&rev=1
This commit is contained in:
118
parsec.spec
Normal file
118
parsec.spec
Normal file
@@ -0,0 +1,118 @@
|
||||
#
|
||||
# spec file for package parsec
|
||||
#
|
||||
# Copyright (c) 2020 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'
|
||||
# Features available: mbed-crypto-provider, pkcs11-provider, tpm-provider, all-providers
|
||||
%define features "mbed-crypto-provider,tpm-provider"
|
||||
%{?systemd_ordering}
|
||||
Name: parsec
|
||||
Version: 0.6.0
|
||||
Release: 0
|
||||
Summary: Platform AbstRaction for SECurity
|
||||
License: Apache-2.0
|
||||
URL: https://parallaxsecond.github.io/parsec-book
|
||||
Source0: https://github.com/parallaxsecond/parsec/archive/%{version}.tar.gz#/parsec-%{version}.tar.gz
|
||||
Source1: vendor.tar.xz
|
||||
Source2: cargo_config
|
||||
Source3: parsec.service
|
||||
Source4: config.toml
|
||||
Source5: parsec.conf
|
||||
Source6: system-user-parsec.conf
|
||||
# Borrowed from Fedora - https://src.fedoraproject.org/rpms/parsec/blob/master/f/pkcs11-libloading-issue.patch
|
||||
Patch1: pkcs11-libloading-issue.patch
|
||||
BuildRequires: cargo
|
||||
BuildRequires: clang-devel
|
||||
BuildRequires: cmake
|
||||
BuildRequires: llvm-devel
|
||||
BuildRequires: protobuf-devel
|
||||
BuildRequires: pkcs11-helper-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(tss2-esys) >= 2.3.3
|
||||
BuildRequires: python3
|
||||
BuildRequires: rust-packaging
|
||||
BuildRequires: sysuser-tools
|
||||
%sysusers_requires
|
||||
ExcludeArch: armv6l armv6hl
|
||||
|
||||
%description
|
||||
PARSEC is the Platform AbstRaction for SECurity, an open-source initiative to provide
|
||||
a common API to hardware security and cryptographic services in a platform-agnostic way.
|
||||
This abstraction layer keeps workloads decoupled from physical platform details,
|
||||
enabling cloud-native delivery flows within the data center and at the edge.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -qa1
|
||||
%patch1 -p1
|
||||
mkdir .cargo
|
||||
cp %{SOURCE2} .cargo/config
|
||||
sed -i -e 's#default = \[\]##' Cargo.toml
|
||||
echo 'default = ["tpm-provider", "mbed-crypto-provider"]' >> Cargo.toml
|
||||
|
||||
%build
|
||||
export PROTOC=%{_bindir}/protoc
|
||||
export PROTOC_INCLUDE=%{_includedir}
|
||||
%cargo_build -- --features=%features
|
||||
%sysusers_generate_pre %{SOURCE6} parsec
|
||||
|
||||
%install
|
||||
export PROTOC=%{_bindir}/protoc
|
||||
export PROTOC_INCLUDE=%{_includedir}
|
||||
%cargo_install
|
||||
mkdir -p %{buildroot}%{_sysusersdir}
|
||||
install -m 0644 %{SOURCE6} %{buildroot}%{_sysusersdir}/
|
||||
install -D -p -m0644 %{SOURCE3} %{buildroot}%{_unitdir}/parsec.service
|
||||
install -D -p -m0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/parsec/config.toml
|
||||
install -D -p -m0644 %{SOURCE5} %{buildroot}%{_tmpfilesdir}/parsec.conf
|
||||
install -d -m0755 %{buildroot}%{_localstatedir}/lib/parsec
|
||||
# Move parsec to _libexecdir
|
||||
mkdir -p %{buildroot}%{_libexecdir}
|
||||
mv target/release/parsec %{buildroot}%{_libexecdir}
|
||||
# Clean-up
|
||||
find %{buildroot} -name .crates2.json -delete
|
||||
rm -rf %{buildroot}%{_datadir}/cargo/registry
|
||||
|
||||
%check
|
||||
export PROTOC=%{_bindir}/protoc
|
||||
export PROTOC_INCLUDE=%{_includedir}
|
||||
%cargo_test -- --lib --features=%features
|
||||
|
||||
%pre -f parsec.pre
|
||||
%service_add_pre parsec.service
|
||||
|
||||
%post
|
||||
%service_add_post parsec.service
|
||||
%tmpfiles_create %_tmpfilesdir/parsec.conf
|
||||
|
||||
%preun
|
||||
%service_del_preun parsec.service
|
||||
|
||||
%postun
|
||||
%service_del_postun parsec.service
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md config.toml
|
||||
%attr(0750,parsec,parsec) %dir %{_sysconfdir}/parsec/
|
||||
%attr(0750,parsec,parsec) %dir %{_localstatedir}/lib/parsec/
|
||||
%attr(0644,parsec,parsec) %config(noreplace) %{_sysconfdir}/parsec/config.toml
|
||||
%{_libexecdir}/parsec
|
||||
%{_tmpfilesdir}/parsec.conf
|
||||
%{_unitdir}/parsec.service
|
||||
%{_sysusersdir}/system-user-parsec.conf
|
||||
|
||||
%changelog
|
Reference in New Issue
Block a user