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 b51500d
Showing
7 changed files
with
22 additions
and
24 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,2 @@ | ||
usr/include | ||
usr/lib/*/pkgconfig | ||
usr/lib/*/*.so | ||
usr/lib |
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,7 +1,7 @@ | ||
# This line is mandatory to access the configuration functions | ||
from Config import * | ||
|
||
addFilter('fused.x86_64: W: no-documentation') | ||
addFilter('fused-devel.x86_64: E: static-library-without-debuginfo /usr/lib64/libfused.a') | ||
addFilter('fused-devel.x86_64: W: no-documentation') | ||
# https://github.com/rpm-software-management/rpmlint/issues/856 | ||
addFilter('W: incoherent-version-in-changelog') |
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+ | ||
|
@@ -17,37 +17,38 @@ This package builds on FUSE but implements a completely custom file | |
system intended for use with the DAOS file system. | ||
|
||
%package devel | ||
Summary: DAOS File System in Userspace based on (FUSE) v3 libraries and headers | ||
Summary: DAOS file system development files | ||
Group: System Environment/Libraries | ||
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, pkgconfig, and headers for DAOS FUSE library | ||
|
||
%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 |