forked from pool/optee-client
Compare commits
9 Commits
Author | SHA256 | Date | |
---|---|---|---|
046aac4b7d | |||
b324e8fb0e | |||
0fbf0b5274 | |||
2bbb9f4551 | |||
e6d773bbf2 | |||
994c187437 | |||
1ab70764da | |||
bf9eebee4d | |||
7e341c0dcd |
@@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 19 06:47:05 UTC 2025 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Update to 4.6.0:
|
||||||
|
* cmake: raise mimimum required to 3.5
|
||||||
|
- Skipped 4.5.0:
|
||||||
|
* libckteec: Validate EdDSA mechanism parameter length
|
||||||
|
* VSCode : Enable Development inside Docker Container
|
||||||
|
* libckteec: support for CKM_RSA_X_509
|
||||||
|
- Skipped 4.4.0:
|
||||||
|
* libteec/CMakeLists.txt: remove CFG_TEE_CLIENT_LOAD_PATH comment
|
||||||
|
* tee-supplicant: add udev rule and systemd service file
|
||||||
|
* libckteec: fix memory allocation leakage on template serialization
|
||||||
|
* tee-supplicant: add sd_notify.c to Android.bp sources
|
||||||
|
- Skipped 4.3.0:
|
||||||
|
* tee-supplicant: send READY=1 notification to systemd
|
||||||
|
* tee-supplicant: remove useless use of __ANDROID__ condition
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 25 06:18:37 UTC 2024 - ming li <mli@suse.com>
|
Tue Jun 25 06:18:37 UTC 2024 - ming li <mli@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package optee-client
|
# spec file for package optee-client
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -21,15 +21,17 @@
|
|||||||
%define libname3 libseteec0
|
%define libname3 libseteec0
|
||||||
%define libname4 libteeacl0
|
%define libname4 libteeacl0
|
||||||
Name: optee-client
|
Name: optee-client
|
||||||
Version: 4.2.0
|
Version: 4.6.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Trusted Execution Environment client
|
Summary: A Trusted Execution Environment client
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Group: System/Boot
|
Group: System/Boot
|
||||||
URL: https://github.com/OP-TEE/optee_client
|
URL: https://github.com/OP-TEE/optee_client
|
||||||
Source: https://github.com/OP-TEE/optee_client/archive/%{version}.tar.gz#/optee_client-%{version}.tar.gz
|
Source: https://github.com/OP-TEE/optee_client/archive/%{version}.tar.gz#/optee_client-%{version}.tar.gz
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake >= 3.5
|
||||||
BuildRequires: libuuid-devel
|
BuildRequires: libuuid-devel
|
||||||
|
BuildRequires: udev
|
||||||
|
%{?systemd_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This component provides the TEE Client API as defined by the
|
This component provides the TEE Client API as defined by the
|
||||||
@@ -108,6 +110,15 @@ make %{?_smp_mflags} V=1
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
# Fix paths for service and udev rule
|
||||||
|
mkdir -p %{buildroot}%{_udevrulesdir}
|
||||||
|
mv %{buildroot}/usr/etc/udev/rules.d/optee-udev.rules %{buildroot}%{_udevrulesdir}/99-optee-udev.rules
|
||||||
|
rm -rf %{buildroot}/usr/etc
|
||||||
|
%ifnarch %{ix86} %{arm}
|
||||||
|
mkdir -p %{buildroot}%{_unitdir}
|
||||||
|
mv %{buildroot}/usr/lib64/systemd/system/tee-supplicant@.service %{buildroot}%{_unitdir}/tee-supplicant@.service
|
||||||
|
rm -rf %{buildroot}/usr/lib64/systemd/
|
||||||
|
%endif
|
||||||
|
|
||||||
%post -n %{libname} -p /sbin/ldconfig
|
%post -n %{libname} -p /sbin/ldconfig
|
||||||
%postun -n %{libname} -p /sbin/ldconfig
|
%postun -n %{libname} -p /sbin/ldconfig
|
||||||
@@ -125,6 +136,9 @@ make %{?_smp_mflags} V=1
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%{_sbindir}/tee-supplicant
|
%{_sbindir}/tee-supplicant
|
||||||
|
%dir %{_unitdir}
|
||||||
|
%{_udevrulesdir}/99-optee-udev.rules
|
||||||
|
%{_unitdir}/tee-supplicant@.service
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/*.h
|
%{_includedir}/*.h
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ba0dad79cec2dabb7b6a6d3e391804f0184863ee9810e90bf97a392d3c1ad5eb
|
|
||||||
size 103555
|
|
3
optee_client-4.6.0.tar.gz
Normal file
3
optee_client-4.6.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a970338c9f69861901336716d89684646e4480b9970996a5b3581ae7d49fdaa3
|
||||||
|
size 106353
|
Reference in New Issue
Block a user