Compare commits

..

11 Commits

Author SHA1 Message Date
openeuler-ci-bot
5a273fde82
!21 attest tools support openssl 3.0.0
From: @HuaxinLuGitee 
Reviewed-by: @zhujianwei001 
Signed-off-by: @zhujianwei001
2023-03-16 08:48:34 +00:00
Huaxin Lu
556bea21f8 attest tools support openssl 3.0.0 2023-02-10 13:45:20 +08:00
openeuler-ci-bot
588c946fda
!17 Fix build error with openssl
From: @gys66 
Reviewed-by: @HuaxinLuGitee 
Signed-off-by: @HuaxinLuGitee
2023-02-08 02:05:11 +00:00
gaoyusong
9922d049b5 Fix build error with openssl
Signed-off-by: gaoyusong <gaoyusong2@huawei.com>
2023-02-07 21:05:15 +08:00
openeuler-ci-bot
ee16f13ee5
!14 use release source pkg
From: @HuaxinLuGitee 
Reviewed-by: @zhujianwei001 
Signed-off-by: @zhujianwei001
2022-11-23 02:33:46 +00:00
卢华歆
a9d9e93b63 Merge branch 'openEuler-22.03-LTS-Next' of gitee.com:src-openeuler/attest-tools into master
Signed-off-by: 卢华歆 <1539327763@qq.com>
2022-11-17 08:57:33 +00:00
Huaxin Lu
261f808242 use release source pkg 2022-11-11 14:05:26 +08:00
openeuler-ci-bot
61873082df !12 [sync] PR-11: Add openssl_tpm2_engineinrequires
From: @openeuler-sync-bot
Reviewed-by: @gwei3
Signed-off-by: @gwei3
2021-09-07 02:13:36 +00:00
wang_yue111
ea2c860a24 Add openssl_tpm2_engineinrequires
(cherry picked from commit 3d0f6bed3c737c0716075b5b9ea2e8dec3418b80)
2021-09-06 15:09:17 +08:00
openeuler-ci-bot
19045d5040 !11 Add openssl_tpm2_engineinrequires
From: @wang_yue111
Reviewed-by: @zhujianwei001
Signed-off-by: @zhujianwei001
2021-09-06 06:52:55 +00:00
wang_yue111
3d0f6bed3c Add openssl_tpm2_engineinrequires 2021-09-03 21:02:37 +08:00
3 changed files with 43 additions and 3 deletions

View File

@ -0,0 +1,26 @@
From 63001de4b2b56d2a94c2e806f03ade285c4c9533 Mon Sep 17 00:00:00 2001
From: Huaxin Lu <luhuaxin1@huawei.com>
Date: Fri, 10 Feb 2023 13:41:25 +0800
Subject: [PATCH] attest tools support openssl 3.0
Signed-off-by: Huaxin Lu <luhuaxin1@huawei.com>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 9b2e89c..ab774c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ AC_CHECK_LIB([digestlist-base], [new_key_pgp],[digestlists_pgp=true],[],[])
AM_CONDITIONAL([DIGESTLISTS], [test x$digestlists = xtrue])
AM_CONDITIONAL([DIGESTLISTS_PGP], [test x$digestlists_pgp = xtrue])
-CFLAGS="$CFLAGS -Wall -Werror -DTPM_POSIX"
+CFLAGS="$CFLAGS -Wall -Werror -DTPM_POSIX -Wno-deprecated-declarations -Wno-discarded-qualifiers"
AC_SUBST(CFLAGS)
--
2.33.0

View File

@ -1,15 +1,17 @@
name: attest-tools name: attest-tools
Version: 0.2.92 Version: 0.2.92
Release: 3 Release: 7
Summary: Attestation tools Summary: Attestation tools
Source0: https://gitee.com/openeuler/%{name}/repository/archive/v%{version}.tar.gz Source0: https://gitee.com/openeuler/%{name}/repository/archive/v%{version}.tar.gz
Patch0: attest-tools-support-openssl-3.0.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
License: GPLv2+ License: GPLv2+
Url: https://gitee.com/openeuler/attest-tools Url: https://gitee.com/openeuler/attest-tools
BuildRequires: autoconf automake libcurl-devel libtool openssl-devel BuildRequires: autoconf automake libcurl-devel libtool openssl-devel
BuildRequires: digest-list-tools-devel json-c-devel libcurl-devel tss2-devel systemd BuildRequires: digest-list-tools-devel json-c-devel libcurl-devel tss2-devel systemd
Requires: json-c curl tss2 Requires: json-c curl tss2 openssl_tpm2_engine
%if 0%{?suse_version} %if 0%{?suse_version}
BuildRequires: libopenssl-devel BuildRequires: libopenssl-devel
@ -29,7 +31,7 @@ Requires:%{name} = %{version}-%{release}
This package includes the headers of the libraries. This package includes the headers of the libraries.
%prep %prep
%autosetup -n %{name}-%{version} -p1 %autosetup -n %{name}-v%{version} -p1
%build %build
autoreconf -iv autoreconf -iv
@ -95,6 +97,18 @@ rm -rf $RPM_BUILD_ROOT
%{_prefix}/include/attest-tools %{_prefix}/include/attest-tools
%changelog %changelog
* Thu Mar 16 2023 luhuaxin <luhuaxin1@huawei.com> - 0.2.92-7
- Support openssl 3.0
* Tue Feb 7 2023 gaoyusong <gaoyusong2@huawei.com> - 0.2.92-6
- Fix build error with openssl
* Thu Nov 17 2022 luhuaxin <luhuaxin1@huawei.com> - 0.2.92-5
- use release source pkg
* Fri Sep 03 2021 wangyue <wangyue92@huawei.com> - 0.2.92-4
- Add openssl_tpm2_engine in requires
* Mon May 31 2021 baizhonggui <baizhonggui@huawei.com> - 0.2.92-3 * Mon May 31 2021 baizhonggui <baizhonggui@huawei.com> - 0.2.92-3
- Fix building error: File must begin with "/": %{_unitdir}/attest_ra_server.service - Fix building error: File must begin with "/": %{_unitdir}/attest_ra_server.service
- Add systemd in BuildRequires - Add systemd in BuildRequires

Binary file not shown.