Compare commits

..

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
076802675d
!40 support remote attestation
From: @houmingyong 
Reviewed-by: @hzero1996 
Signed-off-by: @hzero1996
2023-04-27 13:25:47 +00:00
houmingyong
43725dcb33 support remote attestation 2023-04-27 21:17:21 +08:00
openeuler-ci-bot
687e68fcf1
!37 [sync] PR-36: support part openssl headers
From: @openeuler-sync-bot 
Reviewed-by: @houmingyong 
Signed-off-by: @houmingyong
2023-04-10 13:14:25 +00:00
houmingyong
cb8294b3c6 support part openssl headers
(cherry picked from commit 4642e69f1a40e0d0027f697ec62683b4e5fca374)
2023-04-10 21:04:12 +08:00
openeuler-ci-bot
4f1926ebd3
!32 Unified license name specification
From: @gys66 
Reviewed-by: @houmingyong 
Signed-off-by: @houmingyong
2022-12-21 03:26:31 +00:00
gaoyusong
dd071d00f8 Unified license name specification
Signed-off-by: gaoyusong <gaoyusong2@huawei.com>
2022-12-21 11:16:20 +08:00
openeuler-ci-bot
519e863889
!29 fix error source pkg
From: @gys66 
Reviewed-by: @houmingyong 
Signed-off-by: @houmingyong
2022-11-22 09:21:11 +00:00
gaoyusong
7f54e07358 fix error source pkg
Signed-off-by: gaoyusong <gaoyusong2@huawei.com>
2022-11-22 17:02:40 +08:00
openeuler-ci-bot
2e195e4a17
!24 拆分itrustee_sdk-devel
From: @zhengxiaoxiaoGitee 
Reviewed-by: @houmingyong 
Signed-off-by: @houmingyong
2022-08-03 04:37:10 +00:00
zhengxiaoxiao
5846532d83
split itrustee_sdk into itrustee_sdk and itrustee_sdk-devel 2022-08-03 04:25:18 +00:00
4 changed files with 40025 additions and 7 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,25 +1,33 @@
Name: itrustee_sdk
Version: 0.1.0
Release: 7
Release: 12
Summary: Confidential computing framework for developing TA on itrustee OS
ExclusiveArch: aarch64
Group: OS Security
License: Mulan PSL v2
License: MulanPSL-2.0
URL: https://gitee.com/openeuler/itrustee_sdk
Source0: https://gitee.com/openeuler/itrustee_sdk/repository/archive/v%{version}.tar.gz
Patch0: 0001-add-Makefile-to-create-libteec_adaptor.so.patch
Patch1: 0002-add-ftrapv-strip-and-FS-as-the-compiling-flags.patch
Patch2: 0003-no-copy-shared-memory.patch
Patch3: 0004-support-part-openssl-headers.patch
Patch4: 0005-support-remote-attestation.patch
Provides: libteec_adaptor.so()(64bit)
%define debug_package %{nil}
%description
itrustee_sdk is a confidential computing framework for developing TA on itrustee OS
%package devel
Summary: Development files for %{name}
Requires: %{name} = %{version}-%{release}
%description devel
The %{name}-devel is package contains Header file for developing applications that
us %{name}
%prep
%autosetup -n %{name} -p1
%autosetup -n %{name}-v%{version} -p1
%build
sed -i 's/fPIC/fPIC -g/g' Makefile
@ -31,19 +39,38 @@ make
%install
install -d %{buildroot}/opt/
install -d %{buildroot}/lib64/
install -d %{buildroot}/%{_sysconfdir}/itrustee/cloud/
install -d %{buildroot}/%{_sysconfdir}/secGear/cloud/
make install DESTDIR=%{buildroot}/
install -pm 644 build/signtools/cloud/rsa_public_key_cloud.pem %{buildroot}/%{_sysconfdir}/itrustee/cloud
install -pm 644 build/signtools/cloud/rsa_public_key_cloud.pem %{buildroot}/%{_sysconfdir}/secGear/cloud
strip %{buildroot}/lib64/*.so
%files
%files devel
%defattr(-,root,root)
/opt/itrustee_sdk
%{_sysconfdir}/secGear/cloud/rsa_public_key_cloud.pem
%files
%defattr(-,root,root)
/lib64/libteec_adaptor.so
%{_sysconfdir}/itrustee/cloud/rsa_public_key_cloud.pem
%changelog
* Thu Apr 27 2023 houmingyong<houmingyong@huawei.com> - 0.1.0-12
- DESC: support remote attestation
* Tue Feb 28 2023 houmingyong<houmingyong@huawei.com> - 0.1.0-11
- DESC: support part openssl hearders
* Tue Nov 22 2022 gaoyusong<gaoyusong2@huawei.com> - 0.1.0-10
- DESC: Unified license name specification
* Tue Nov 22 2022 gaoyusong<gaoyusong2@huawei.com> - 0.1.0-9
- DESC: fix error source pkg
* Wed Aug 03 2022 zhengxiaoxiao<zhengxiaoxiao2@huawei.com> - 0.1.0-8
- DESC: split itrustee_sdk into itrustee_sdk and itrustee_sdk-devel
* Wed Aug 03 2022 wangyu<wangyu283@huawei.com> - 0.1.0-7
- DESC: support: no-copy shared memory

Binary file not shown.