From 4d9f41286a497679fda6967a3c1eafc1c23248fc92d7fddc366a216a0119c7a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 3 May 2024 15:20:48 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main libnfs revision cb1d1256297c977eec22c568eb36d8a8 --- .gitattributes | 23 ++++++++ libnfs-5.0.2.tar.gz | 3 + libnfs.changes | 135 ++++++++++++++++++++++++++++++++++++++++++++ libnfs.spec | 104 ++++++++++++++++++++++++++++++++++ 4 files changed, 265 insertions(+) create mode 100644 .gitattributes create mode 100644 libnfs-5.0.2.tar.gz create mode 100644 libnfs.changes create mode 100644 libnfs.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/libnfs-5.0.2.tar.gz b/libnfs-5.0.2.tar.gz new file mode 100644 index 0000000..241498d --- /dev/null +++ b/libnfs-5.0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637e56643b19da9fba98f06847788c4dad308b723156a64748041035dcdf9bd3 +size 281154 diff --git a/libnfs.changes b/libnfs.changes new file mode 100644 index 0000000..4785712 --- /dev/null +++ b/libnfs.changes @@ -0,0 +1,135 @@ +------------------------------------------------------------------- +Wed Aug 17 19:03:56 UTC 2022 - Dirk Müller + +- update to 5.0.2: + * Various small multithreading fixes + * Add opaque pointer to service_proc to make it easier to build server apps. + * BSD compile fix + * OpenBSD support + * fix double free in nfs3_pread_mcb() + +------------------------------------------------------------------- +Mon May 9 08:00:48 UTC 2022 - Paolo Stivanin + +- Update to version 5.0.1: + * Multithread support for Linux and Windows + * Fix NFS4 behavior of chmod/chown/utimes + * Add marshalling / unmarshalling of various NFSv4.1 structures (but not 4.1 support) + * PS3 support + * PS2 EE support + * Support escaped characters in the URL + +------------------------------------------------------------------- +Wed Jul 24 15:18:59 UTC 2019 - Bjørn Lie + +- Update to version 4.0.0: + + Fix the versioning in makerpms.sh. + + Fix some compile issues in the test programs. + + NFSv3: skip commit on close if the file has not been written + to. + + Add nfs_umount() to NFSv3. + + Add nfs_statvfs64(). + + Fix invalid shift of pid_t when generating rpc->xid. + + Compile fixes for Mac OSX. + + Fix for dup2() on Windows. + + NFSv4 fix for directory handling. + + Improvements to configure/building. +- Bump sover to 13 following upstream. +- Use modern macros. +- Pass explicit --enable-utils to configure, ensure we build the + utils. + +------------------------------------------------------------------- +Thu Nov 8 16:42:28 UTC 2018 - Luigi Baldoni + +- Update to version 3.0.0 + * NFSv4 support. + * lockf() support (NFSv4 only). + * fcntl() support for locking (NFSv4 only). + * Add CMake support. + * URL arguments to select NFS version. + * URL argument to set nfsport. This allows NFSv4 to work for + servers without portmapper support. + * URL argument to set he mount port. + * NFSv4: use getpwnam to map NFSv4 (Ganesha) when passing + uid/gid as a user/group name insead of as a uid/gid. + * Added nfs-fh: a simle utility to print the filehandle for a + nfs file. + * Add a new open2() function that takes a mode argument. + * Add a testsuite for libnfs. + +- Spec cleanup + +------------------------------------------------------------------- +Tue Oct 17 15:12:58 UTC 2017 - zaitor@opensuse.org + +- Update to version 2.0.0: + + Bug fixes: + - Fix NULL pointer crash in nfs_link(). + - Clamp read/write size for servers (Ganesha) that offer very + large io sizes instead of failing to connect to the export. + - Tell the server to commit all data to stable storage when we + close files. + - Double free fix: don't call rpc_free_pdu() after + rpc_queue_pdu() failure. + - Fix for memory leak in rpc_allocate_*(). + - Abort the mount process correctly if MOUNT/MNT returns error + or is cancelled. + - Fix memory leak in error path in nfs_create_2_cb(). + - Fix leak of rpc->inbuf if we destroy the context while we + have still PDUs in flight. + + New features: + - Add O_NOFOLLOW support for nfs_open(). + - Add a new mkdir2 command that also takes a mode argument. + - Add a new readlink2 command that avoids having to preallocate + the buffer. + - Add support for RPC timeouts for both the sync and async + interfaces. + - Use SOCK_CLOEXEC for the sockets. + - Make rpc_set{g|u}id() public. + - Performance optimization: socket: Batch pdu read in + rpc_read_from_socket. + - Low level support for NFSv4 some and examples. + - Support for building RPC servers. +- Bump soname to 11 following upstream changes. +- Stop passing disable-werror to configure, no longer needed. + +------------------------------------------------------------------- +Fri Mar 10 22:22:17 UTC 2017 - zaitor@opensuse.org + +- Update to version 1.11.0: + + Reduce the number of memory allocations in the ZDR layer. + + Check both seconds and nanoseconds field when validating dir + cache. + + Invalidate the dir cache immediately if we do something that + would cause it to become stale, such as adding/removing objects + from the cache. + + Add options to enable/disable dir caching. + + Discard readahead cache on [p]write and truncate. + + Android fixes. + + Windows fixes. + + Support timeouts for sync functions. + + Add an internal pagecache. + + Add nfs_rewinddir(), nfs_seekdir() and nfs_telldir(). + + Fix crash in nfs_truncate(). + + Fix segfault that can trigger if we rpc_disconnect() during the + mount. + + Add support to bind to a specific interface (linux only). +- Pass --disable-werror to configure, needed after glibc 2.25 + update. + +------------------------------------------------------------------- +Sun Aug 7 16:23:00 UTC 2016 - olaf@aepfle.de + +- Add also Release to really obsolete libnfs + +------------------------------------------------------------------- +Sat Jul 23 07:00:07 UTC 2016 - olaf@aepfle.de + +- Obsolete libnfs from PMBS + +------------------------------------------------------------------- +Fri Apr 22 15:45:00 UTC 2016 - zaitor@opensuse.org + +- Inital packaging, version 1.10.0. + diff --git a/libnfs.spec b/libnfs.spec new file mode 100644 index 0000000..5f1dd31 --- /dev/null +++ b/libnfs.spec @@ -0,0 +1,104 @@ +# +# spec file for package libnfs +# +# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2015 Bjørn Lie, Bryne, Norway. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%define sover 14 +Name: libnfs +Version: 5.0.2 +Release: 0 +Summary: Client library for accessing NFS shares over a network +License: BSD-2-Clause AND LGPL-2.1-or-later AND GPL-3.0-or-later +Group: Productivity/Networking/NFS +URL: https://github.com/sahlberg/libnfs +Source0: %{url}/archive/libnfs-%{version}.tar.gz +BuildRequires: autoconf +BuildRequires: libtool +BuildRequires: pkgconfig + +%description +Package contains a library of functions for accessing NFSv2 and +NFSv3 servers from user space. It provides a low-level, +asynchronous RPC library for accessing NFS protocols, an +asynchronous library with POSIX-like VFS functions, and a +synchronous library with POSIX-like VFS functions. + +%package -n libnfs%{sover} +Summary: Client library for accessing NFS shares over a network +Group: Productivity/Networking/NFS + +%description -n libnfs%{sover} +Package contains a library of functions for accessing NFSv2 and +NFSv3 servers from user space. It provides a low-level, +asynchronous RPC library for accessing NFS protocols, an +asynchronous library with POSIX-like VFS functions, and a +synchronous library with POSIX-like VFS functions. + +%package devel +Summary: Development files for libnfs +Group: Development/Languages/C and C++ +Requires: libnfs%{sover} = %{version}-%{release} + +%description devel +The libnfs-devel package contains libraries and header files for +developing applications that use libnfs. + +%package -n utils-libnfs +Summary: Utilities for accessing NFS servers +# Handle libnfs from packman, which contained both binaries and lib +Group: Productivity/Networking/NFS +Provides: libnfs = %{version}-%{release} +Obsoletes: libnfs < %{version}-%{release} + +%description -n utils-libnfs +The utils-libnfs package contains simple client programs for +accessing NFS servers using libnfs. + +%prep +%autosetup -p1 -n %{name}-%{name}-%{version} + +%build +autoreconf -fiv +%configure \ + --disable-static \ + --disable-examples \ + --enable-utils \ + %{nil} +%make_build + +%install +%make_install +find %{buildroot} -type f -name "*.la" -delete -print + +%post -n libnfs%{sover} -p /sbin/ldconfig +%postun -n libnfs%{sover} -p /sbin/ldconfig + +%files -n libnfs%{sover} +%license COPYING LICENCE-LGPL-2.1.txt LICENCE-BSD.txt LICENCE-GPL-3.txt +%doc README +%{_libdir}/libnfs.so.* + +%files devel +%{_libdir}/libnfs.so +%{_includedir}/nfsc/ +%{_libdir}/pkgconfig/libnfs.pc + +%files -n utils-libnfs +%{_bindir}/nfs-* +%{_mandir}/man1/nfs-*.1%{?ext_man} + +%changelog