-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAOS-15136 client: Switch to using libfused
Switch to using libfused instead of libfuse3 PR-repos: fused@PR-1:25 Required-githooks: true Change-Id: I382b96a17a8d503d6cf7321b57050e7ab0c187d4 Signed-off-by: Jeff Olivier <[email protected]>
- Loading branch information
1 parent
6c59aa0
commit 77dc952
Showing
11 changed files
with
41 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
daos (2.5.101-3) unstable; urgency=medium | ||
[ Jeff Olivier ] | ||
* Switch from libfuse3 to libfused | ||
|
||
-- Jeff Olivier <[email protected]> Wed, 27 Mar 2024 21:30:00 +0000 | ||
|
||
daos (2.5.101-2) unstable; urgency=medium | ||
[ Jan Michalski ] | ||
* Add dtx_tests to the server-tests package | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
|
||
Name: daos | ||
Version: 2.5.101 | ||
Release: 2%{?relval}%{?dist} | ||
Release: 3%{?relval}%{?dist} | ||
Summary: DAOS Storage Engine | ||
|
||
License: BSD-2-Clause-Patent | ||
|
@@ -51,9 +51,9 @@ BuildRequires: boost-devel | |
%endif | ||
BuildRequires: libpmemobj-devel >= 2.0.0 | ||
%if (0%{?rhel} >= 8) | ||
BuildRequires: fuse3-devel >= 3 | ||
BuildRequires: libfused-devel >= 1 | ||
%else | ||
BuildRequires: fuse3-devel >= 3.4.2 | ||
BuildRequires: libfused-devel >= 1 | ||
%endif | ||
%if (0%{?suse_version} >= 1500) | ||
BuildRequires: go-race | ||
|
@@ -175,7 +175,7 @@ Requires: mercury >= %{mercury_version} | |
Requires: libfabric >= %{libfabric_version} | ||
%if (0%{?suse_version} >= 1500) | ||
Requires: libfabric1 >= %{libfabric_version} | ||
Requires: libfuse3-3 >= 3.4.2 | ||
Requires: libfused >= 1 | ||
%endif | ||
Requires: /usr/bin/fusermount3 | ||
%{?systemd_requires} | ||
|
@@ -226,9 +226,9 @@ Requires: Lmod | |
Requires: capstone-devel | ||
%endif | ||
%if (0%{?rhel} >= 8) | ||
Requires: fuse3-devel >= 3 | ||
Requires: libfused-devel >= 1 | ||
%else | ||
Requires: fuse3-devel >= 3.4.2 | ||
Requires: libfused-devel >= 1 | ||
%endif | ||
|
||
%description client-tests | ||
|
@@ -587,6 +587,9 @@ getent passwd daos_agent >/dev/null || useradd -s /sbin/nologin -r -g daos_agent | |
# No files in a shim package | ||
|
||
%changelog | ||
* Wed Mar 27 2024 Jeff Olivier <[email protected]> 2.5.101-3 | ||
- Switch libfuse3 to libfused | ||
|
||
* Mon Mar 18 2024 Jan Michalski <[email protected]> 2.5.101-2 | ||
- Add dtx_tests to the server-tests package | ||
|
||
|