forked from libfuse/libfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jeff Olivier <[email protected]>
- Loading branch information
1 parent
1afbef2
commit 7198626
Showing
6 changed files
with
21 additions
and
21 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,5 +1,11 @@ | ||
fused (1.0.0-1) unstable; urgency=medium | ||
fused (1.0.0-2) unstable; urgency=medium | ||
[ Jeff Olivier ] | ||
* Change to static only | ||
|
||
-- Jeff Olivier <[email protected]> Sat, 11 Jan 2025 08:09:00 +0000 | ||
|
||
|
||
fused (1.0.0-1) unstable; urgency=medium | ||
[ Jeff Olivier ] | ||
* Initial version | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
usr/include | ||
usr/lib/*/pkgconfig | ||
usr/lib/*/*.so | ||
usr/lib/*/libfused.a |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Name: fused | ||
Version: 1.0.0 | ||
Release: 1%{?relval}%{?dist} | ||
Release: 2%{?relval}%{?dist} | ||
Summary: DAOS File System in Userspace Library | ||
|
||
License: LGPLv2+ | ||
|
@@ -12,6 +12,8 @@ Conflicts: filesystem < 3 | |
BuildRequires: libselinux-devel | ||
BuildRequires: meson, gcc-c++, gcc | ||
|
||
%_debug_package %{name}-debuginfo | ||
|
||
%description | ||
This package builds on FUSE but implements a completely custom file | ||
system intended for use with the DAOS file system. | ||
|
@@ -23,31 +25,31 @@ License: LGPLv2+ | |
Conflicts: filesystem < 3 | ||
Requires: %{name}%{?_isa} = %{version}-%{release} | ||
|
||
%description devel | ||
Provides a user space library and headers for DAOS specific FUSE filesystem | ||
|
||
%global debug_package %{nil} | ||
|
||
%description devel | ||
Static library and headers | ||
|
||
%prep | ||
%autosetup | ||
|
||
%build | ||
%meson --strip -Ddisable-mtab=True -Dutils=False --default-library shared | ||
%meson --strip -Ddisable-mtab=True -Dutils=False --default-library static | ||
%meson_build | ||
|
||
%install | ||
export MESON_INSTALL_DESTDIR_PREFIX=%{buildroot}/usr %meson_install | ||
find %{buildroot} . | ||
find %{buildroot} -type f -name "*.la" -exec rm -f {} ';' | ||
|
||
%files | ||
%{_libdir}/libfused.so.* | ||
|
||
%files devel | ||
%{_libdir}/libfused.so | ||
%{_libdir}/libfused.a | ||
%{_includedir}/fused/ | ||
%{_libdir}/pkgconfig | ||
|
||
%changelog | ||
* Sat Jan 11 2025 Jeff Olivier <[email protected]> - 1.0.0-2.0 | ||
- Only build static lib | ||
|
||
* Mon Feb 12 2024 Jeff Olivier <[email protected]> - 1.0.0-1.0 | ||
- Initial packaging for fused, a DAOS file system adaptation of libfused |