-
Notifications
You must be signed in to change notification settings - Fork 304
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:28 Required-githooks: true Change-Id: I382b96a17a8d503d6cf7321b57050e7ab0c187d4 Signed-off-by: Jeff Olivier <[email protected]>
- Loading branch information
1 parent
6c59aa0
commit 2c75fc4
Showing
11 changed files
with
40 additions
and
47 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: fused-devel >= 1 | ||
%else | ||
BuildRequires: fuse3-devel >= 3.4.2 | ||
BuildRequires: fused-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: fused >= 1 | ||
%endif | ||
Requires: /usr/bin/fusermount3 | ||
%{?systemd_requires} | ||
|
@@ -225,11 +225,7 @@ Requires: libcapstone-devel | |
Requires: Lmod | ||
Requires: capstone-devel | ||
%endif | ||
%if (0%{?rhel} >= 8) | ||
Requires: fuse3-devel >= 3 | ||
%else | ||
Requires: fuse3-devel >= 3.4.2 | ||
%endif | ||
Requires: fused >= 1 | ||
|
||
%description client-tests | ||
This is the package needed to run the DAOS test suite (client tests) | ||
|
@@ -587,6 +583,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 | ||
|
||
|