commit:     76c5151236ba705c74ea0747852d63fc21961400
Author:     Andreas K. Huettel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  5 19:45:31 2021 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Jan  5 20:06:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c51512

net-fs/nfs-utils: Remove old

Bug: https://bugs.gentoo.org/707624
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>

 net-fs/nfs-utils/Manifest                          |   2 -
 .../nfs-utils/files/nfs-utils-1.1.4-mtab-sym.patch |  39 ----
 .../files/nfs-utils-1.2.8-cross-build.patch        |  67 -------
 .../files/nfs-utils-2.3.4-no-werror.patch          |  67 -------
 ...include-order-between-config.h-and-stat.h.patch | 151 ---------------
 ....1-gssd-Look-in-lib32-for-gss-libs-aswell.patch |  39 ----
 net-fs/nfs-utils/files/nfs-utils-2.4.1-statx.patch |  31 ---
 ...2-mountd-Add-check-for-struct-file_handle.patch |  54 ------
 ...-mountd-Fix-compilation-for--disable-uuid.patch |  35 ----
 net-fs/nfs-utils/nfs-utils-2.4.1-r4.ebuild         | 211 ---------------------
 net-fs/nfs-utils/nfs-utils-2.4.3.ebuild            | 204 --------------------
 11 files changed, 900 deletions(-)

diff --git a/net-fs/nfs-utils/Manifest b/net-fs/nfs-utils/Manifest
index 3985e4172da..be08e1850fa 100644
--- a/net-fs/nfs-utils/Manifest
+++ b/net-fs/nfs-utils/Manifest
@@ -1,4 +1,2 @@
-DIST nfs-utils-2.4.1.tar.bz2 910791 BLAKE2B 
4419eff7fca21747e0bc4969ebb8a8b863aa951984af8f23f197e7dfc4faad3770173808862b84178714ca75f021be1af96f9e4408fecd7ef97999d261f2f21b
 SHA512 
655a115955f35177b761f821e29c752693d614f4c6c2a90d392e0ab83b615247a397cf18e8ad453a93c6dc528d1fa90cfdf8b04de6626e0f4083b10e2e54f540
-DIST nfs-utils-2.4.3.tar.bz2 921710 BLAKE2B 
9386a99561370e09ffe871ec38a4fc993e99332c0c6fdb0d07eb7a924cfab4634e5c5186ac1f1629deecf02557fd2d3d5d99b90d97c32d3680ca4478b5c49d9c
 SHA512 
160c828dd7a7b3206b7f167eb99a8dfac7e1a0c8dd88c81b639c3a1f66916908b3ca11fb9a945e4cf6a474f82509ed91a8a3217623f6cb79302d3d9b760f19d9
 DIST nfs-utils-2.5.1.tar.bz2 931848 BLAKE2B 
84c93ef5707bd97e9e1107dcca0530a3c137cb5ad04c7533bb8aee595a53fdc72359252d009fde95b9833a61f1695db1d6b1726081e5e8efd6c528e831f9834c
 SHA512 
36c11668a9d2a382206db3d73a3d03000cdd2be9836fcbbbd327eb38515ac0b451520f6ffdc69bc05b2b81c60ecb88d50a20a50f123b8092a5b63e1c1054a2eb
 DIST nfs-utils-2.5.2.tar.bz2 933724 BLAKE2B 
691204739fa4348cea6234f1b87bd74872c94a0c175b09a08ebb4d5cefb0b04c1adfffadc82b7e9a4a45d5c86e7f2af62b275526d27482798d4c5dc296a5be09
 SHA512 
9e97cf5cd8be27d58e1dcd7fa563280ac8afa57d09387dddd2d6b03cbcd6dae4066ac29804b8b1624b61cb12f2aa016380c85b731113c9359a0e6887d2db0641

diff --git a/net-fs/nfs-utils/files/nfs-utils-1.1.4-mtab-sym.patch 
b/net-fs/nfs-utils/files/nfs-utils-1.1.4-mtab-sym.patch
deleted file mode 100644
index c9e60afc74d..00000000000
--- a/net-fs/nfs-utils/files/nfs-utils-1.1.4-mtab-sym.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-ripped from Debian
-
---- nfs-utils-1.1.4/utils/mount/fstab.c
-+++ nfs-utils-1.1.4/utils/mount/fstab.c
-@@ -57,7 +57,7 @@ mtab_does_not_exist(void) {
-       return var_mtab_does_not_exist;
- }
- 
--static int
-+int
- mtab_is_a_symlink(void) {
-         get_mtab_info();
-         return var_mtab_is_a_symlink;
---- nfs-utils-1.1.4/utils/mount/fstab.h
-+++ nfs-utils-1.1.4/utils/mount/fstab.h
-@@ -7,6 +7,7 @@
- #define _PATH_FSTAB "/etc/fstab"
- #endif
- 
-+int mtab_is_a_symlink(void);
- int mtab_is_writable(void);
- int mtab_does_not_exist(void);
- void reset_mtab_info(void);
---- nfs-utils-1.1.4/utils/mount/mount.c
-+++ nfs-utils-1.1.4/utils/mount/mount.c
-@@ -230,6 +230,13 @@ create_mtab (void) {
-       int flags;
-       mntFILE *mfp;
- 
-+      /* Avoid writing if the mtab is a symlink to /proc/mounts, since
-+         that would create a file /proc/mounts in case the proc filesystem
-+         is not mounted, and the fchmod below would also fail. */
-+      if (mtab_is_a_symlink()) {
-+              return EX_SUCCESS;
-+      }
-+
-       lock_mtab();
- 
-       mfp = nfs_setmntent (MOUNTED, "a+");

diff --git a/net-fs/nfs-utils/files/nfs-utils-1.2.8-cross-build.patch 
b/net-fs/nfs-utils/files/nfs-utils-1.2.8-cross-build.patch
deleted file mode 100644
index 366a85badfe..00000000000
--- a/net-fs/nfs-utils/files/nfs-utils-1.2.8-cross-build.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-this is kind of hacky, but automake doesn't make this easy
-for us atm, so hack away :(
-
-(recent autotools will always add $(CFLAGS)/etc... to the compile)
-
-posted upstream:
-https://marc.info/?l=linux-nfs&m=136416341629788&w=2
-Date: Sun, 24 Mar 2013 22:21:08 +0000
-Message-ID: 1364163668-15490-1-git-send-email-vap...@gentoo.org
-
-From 269ae1346d9ccc97304205066d20e7e7b638f30e Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vap...@gentoo.org>
-Date: Sun, 24 Mar 2013 18:14:48 -0400
-Subject: [PATCH nfs-utils] locktes/rpcgen: tweak how we override compiler 
settings
-
-Newer autotools will use both CFLAGS and <target>_CFLAGS when compiling
-the <target>.  Adding the build settings to the target-specific flags no
-longer works as a way to compile build-time tools.
-
-Instead, clobber the global flags.  This triggers an automake warning,
-but the end result actually works (unlike the existing code).
-
-Signed-off-by: Mike Frysinger <vap...@gentoo.org>
-
---- a/tools/locktest/Makefile.am
-+++ b/tools/locktest/Makefile.am
-@@ -1,12 +1,11 @@
- ## Process this file with automake to produce Makefile.in
- 
- CC=$(CC_FOR_BUILD)
--LIBTOOL = @LIBTOOL@ --tag=CC
-+CFLAGS=$(CFLAGS_FOR_BUILD)
-+CPPFLAGS=$(CPPFLAGS_FOR_BUILD)
-+LDFLAGS=$(LDFLAGS_FOR_BUILD)
- 
- noinst_PROGRAMS = testlk
- testlk_SOURCES = testlk.c
--testlk_CFLAGS=$(CFLAGS_FOR_BUILD)
--testlk_CPPFLAGS=$(CPPFLAGS_FOR_BUILD)
--testlk_LDFLAGS=$(LDFLAGS_FOR_BUILD)
- 
- MAINTAINERCLEANFILES = Makefile.in
---- a/tools/rpcgen/Makefile.am
-+++ b/tools/rpcgen/Makefile.am
-@@ -1,7 +1,9 @@
- ## Process this file with automake to produce Makefile.in
- 
- CC=$(CC_FOR_BUILD)
--LIBTOOL = @LIBTOOL@ --tag=CC
-+CFLAGS=$(CFLAGS_FOR_BUILD)
-+CPPFLAGS=$(CPPFLAGS_FOR_BUILD)
-+LDFLAGS=$(LDFLAGS_FOR_BUILD)
- 
- noinst_PROGRAMS = rpcgen
- rpcgen_SOURCES = rpc_clntout.c rpc_cout.c rpc_hout.c rpc_main.c \
-@@ -9,10 +11,6 @@
-                rpc_util.c rpc_sample.c rpc_output.h rpc_parse.h \
-                rpc_scan.h rpc_util.h
- 
--rpcgen_CFLAGS=$(CFLAGS_FOR_BUILD)
--rpcgen_CPPLAGS=$(CPPFLAGS_FOR_BUILD)
--rpcgen_LDFLAGS=$(LDFLAGS_FOR_BUILD)
--rpcgen_LDADD=$(LIBTIRPC)
- 
- MAINTAINERCLEANFILES = Makefile.in
- 
- EXTRA_DIST = rpcgen.new.1

diff --git a/net-fs/nfs-utils/files/nfs-utils-2.3.4-no-werror.patch 
b/net-fs/nfs-utils/files/nfs-utils-2.3.4-no-werror.patch
deleted file mode 100644
index 7fc0dd1c724..00000000000
--- a/net-fs/nfs-utils/files/nfs-utils-2.3.4-no-werror.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-From 04c9e3cc26dd330d9cb524c02de610c3bccd4b7b Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vap...@gentoo.org>
-Date: Sat, 11 May 2019 22:51:35 +0200
-Subject: [PATCH] Don't build with -Werror flags
-
-https://bugs.gentoo.org/656984
-
-Signed-off-by: Lars Wendler <polynomia...@gentoo.org>
----
- configure.ac | 34 +---------------------------------
- 1 file changed, 1 insertion(+), 33 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 4d70961..e6e709c 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -574,46 +574,14 @@ AC_SUBST(CPPFLAGS_FOR_BUILD)
- AC_SUBST(LDFLAGS_FOR_BUILD)
- 
- my_am_cflags="\
-- -pipe \
-  -Wall \
-  -Wextra \
-  $rpcgen_cflags \
-- -Werror=missing-prototypes \
-- -Werror=missing-declarations \
-- -Werror=format=2 \
-- -Werror=undef \
-- -Werror=missing-include-dirs \
-- -Werror=strict-aliasing=2 \
-- -Werror=init-self \
-- -Werror=implicit-function-declaration \
-- -Werror=return-type \
-- -Werror=switch \
-- -Werror=overflow \
-- -Werror=parentheses \
-- -Werror=aggregate-return \
-- -Werror=unused-result \
-  -Wno-cast-function-type \
-  -fno-strict-aliasing \
- "
- 
--AC_DEFUN([CHECK_CCSUPPORT], [
--  my_save_cflags="$CFLAGS"
--  CFLAGS=$1
--  AC_MSG_CHECKING([whether CC supports $1])
--  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
--    [AC_MSG_RESULT([yes])]
--    [$2+=$1],
--    [AC_MSG_RESULT([no])]
--  )
--  CFLAGS="$my_save_cflags"
--])
--
--CHECK_CCSUPPORT([-Werror=format-overflow=2], [flg1])
--CHECK_CCSUPPORT([-Werror=int-conversion], [flg2])
--CHECK_CCSUPPORT([-Werror=incompatible-pointer-types], [flg3])
--CHECK_CCSUPPORT([-Werror=misleading-indentation], [flg4])
--
--AC_SUBST([AM_CFLAGS], ["$my_am_cflags $flg1 $flg2 $flg3 $flg4"])
-+AC_SUBST([AM_CFLAGS], ["$my_am_cflags"])
- 
- # Make sure that $ACLOCAL_FLAGS are used during a rebuild
- AC_SUBST([ACLOCAL_AMFLAGS], ["-I $ac_macro_dir \$(ACLOCAL_FLAGS)"])
--- 
-2.21.0
-

diff --git 
a/net-fs/nfs-utils/files/nfs-utils-2.4.1-Fix-include-order-between-config.h-and-stat.h.patch
 
b/net-fs/nfs-utils/files/nfs-utils-2.4.1-Fix-include-order-between-config.h-and-stat.h.patch
deleted file mode 100644
index 836a2af5407..00000000000
--- 
a/net-fs/nfs-utils/files/nfs-utils-2.4.1-Fix-include-order-between-config.h-and-stat.h.patch
+++ /dev/null
@@ -1,151 +0,0 @@
-From 2fbc62e2a13fc22b6ae4910e295a2c10fb790486 Mon Sep 17 00:00:00 2001
-From: Zoltan Karcagi <zkr7...@gmail.com>
-Date: Mon, 12 Aug 2019 13:27:16 -0400
-Subject: [PATCH] Fix include order between config.h and stat.h
-
-At least on Arch linux ARM, the definition of struct stat in stat.h depends
-on __USE_FILE_OFFSET64. This symbol comes from config.h when defined,
-therefore config.h must always be included before stat.h. Fix all
-occurrences where the order is wrong by moving config.h to the top.
-
-This fixes the client side error "Stale file handle" when mounting from
-a server running Arch Linux ARM.
-
-Signed-off-by: Zoltan Karcagi <zkr7...@gmail.com>
-Signed-off-by: Steve Dickson <ste...@redhat.com>
----
- support/misc/nfsd_path.c         | 5 ++++-
- support/misc/xstat.c             | 5 ++++-
- support/nfs/conffile.c           | 8 +++++++-
- utils/blkmapd/device-discovery.c | 8 ++++----
- utils/idmapd/idmapd.c            | 8 ++++----
- 5 files changed, 23 insertions(+), 11 deletions(-)
-
-diff --git a/support/misc/nfsd_path.c b/support/misc/nfsd_path.c
-index 84e48028..f078a668 100644
---- a/support/misc/nfsd_path.c
-+++ b/support/misc/nfsd_path.c
-@@ -1,3 +1,7 @@
-+#ifdef HAVE_CONFIG_H
-+#include <config.h>
-+#endif
-+
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
-@@ -5,7 +9,6 @@
- #include <stdlib.h>
- #include <unistd.h>
- 
--#include "config.h"
- #include "conffile.h"
- #include "xmalloc.h"
- #include "xlog.h"
-diff --git a/support/misc/xstat.c b/support/misc/xstat.c
-index fa047880..4c997eea 100644
---- a/support/misc/xstat.c
-+++ b/support/misc/xstat.c
-@@ -1,3 +1,7 @@
-+#ifdef HAVE_CONFIG_H
-+#include <config.h>
-+#endif
-+
- #include <errno.h>
- #include <sys/types.h>
- #include <fcntl.h>
-@@ -5,7 +9,6 @@
- #include <sys/sysmacros.h>
- #include <unistd.h>
- 
--#include "config.h"
- #include "xstat.h"
- 
- #ifdef HAVE_FSTATAT
-diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c
-index b6400bec..6ba8a35c 100644
---- a/support/nfs/conffile.c
-+++ b/support/nfs/conffile.c
-@@ -500,7 +500,7 @@ conf_readfile(const char *path)
- 
-       if ((stat (path, &sb) == 0) || (errno != ENOENT)) {
-               char *new_conf_addr = NULL;
--              size_t sz = sb.st_size;
-+              off_t sz;
-               int fd = open (path, O_RDONLY, 0);
- 
-               if (fd == -1) {
-@@ -517,6 +517,11 @@ conf_readfile(const char *path)
- 
-               /* only after we have the lock, check the file size ready to 
read it */
-               sz = lseek(fd, 0, SEEK_END);
-+              if (sz < 0) {
-+                      xlog_warn("conf_readfile: unable to determine file 
size: %s",
-+                                strerror(errno));
-+                      goto fail;
-+              }
-               lseek(fd, 0, SEEK_SET);
- 
-               new_conf_addr = malloc(sz+1);
-@@ -2162,6 +2167,7 @@ conf_write(const char *filename, const char *section, 
const char *arg,
-       ret = 0;
- 
- cleanup:
-+      flush_outqueue(&inqueue, NULL);
-       flush_outqueue(&outqueue, NULL);
- 
-       if (buff)
-diff --git a/utils/blkmapd/device-discovery.c 
b/utils/blkmapd/device-discovery.c
-index e811703d..f5f9b10b 100644
---- a/utils/blkmapd/device-discovery.c
-+++ b/utils/blkmapd/device-discovery.c
-@@ -26,6 +26,10 @@
-  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-  */
- 
-+#ifdef HAVE_CONFIG_H
-+#include "config.h"
-+#endif /* HAVE_CONFIG_H */
-+
- #include <sys/sysmacros.h>
- #include <sys/types.h>
- #include <sys/stat.h>
-@@ -51,10 +55,6 @@
- #include <errno.h>
- #include <libdevmapper.h>
- 
--#ifdef HAVE_CONFIG_H
--#include "config.h"
--#endif /* HAVE_CONFIG_H */
--
- #include "device-discovery.h"
- #include "xcommon.h"
- #include "nfslib.h"
-diff --git a/utils/idmapd/idmapd.c b/utils/idmapd/idmapd.c
-index 62e37b8a..267acea5 100644
---- a/utils/idmapd/idmapd.c
-+++ b/utils/idmapd/idmapd.c
-@@ -34,6 +34,10 @@
-  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-  */
- 
-+#ifdef HAVE_CONFIG_H
-+#include "config.h"
-+#endif /* HAVE_CONFIG_H */
-+
- #include <sys/types.h>
- #include <sys/time.h>
- #include <sys/inotify.h>
-@@ -62,10 +66,6 @@
- #include <libgen.h>
- #include <nfsidmap.h>
- 
--#ifdef HAVE_CONFIG_H
--#include "config.h"
--#endif /* HAVE_CONFIG_H */
--
- #include "xlog.h"
- #include "conffile.h"
- #include "queue.h"
--- 
-2.21.0
-

diff --git 
a/net-fs/nfs-utils/files/nfs-utils-2.4.1-gssd-Look-in-lib32-for-gss-libs-aswell.patch
 
b/net-fs/nfs-utils/files/nfs-utils-2.4.1-gssd-Look-in-lib32-for-gss-libs-aswell.patch
deleted file mode 100644
index 8e340656b3e..00000000000
--- 
a/net-fs/nfs-utils/files/nfs-utils-2.4.1-gssd-Look-in-lib32-for-gss-libs-aswell.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From e2244412ae8b0b04446063ff6e8a1d0ebebe55a8 Mon Sep 17 00:00:00 2001
-From: Matt Turner <matts...@gmail.com>
-Date: Sun, 11 Aug 2019 14:50:01 -0700
-Subject: [PATCH] gssd: Look in lib32 for gss libs aswell.
-
-Akin to commit da999b81b058 ("Look in lib64 for gss libs aswell.")
-
-mips/n32 systems have libraries in lib32 (but not lib or lib64). Without
-checking lib32, configure fails with
-
-checking for Kerberos v5... configure: error: Kerberos v5 with GSS
-         support not found: consider --disable-gss or --with-krb5=
-
-Signed-off-by: Matt Turner <matts...@gmail.com>
----
- aclocal/kerberos5.m4 | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/aclocal/kerberos5.m4 b/aclocal/kerberos5.m4
-index 8a0f3e4c..faa58049 100644
---- a/aclocal/kerberos5.m4
-+++ b/aclocal/kerberos5.m4
-@@ -38,9 +38,11 @@ AC_DEFUN([AC_KERBEROS_V5],[
-       AC_DEFINE_UNQUOTED(KRB5_VERSION, $K5VERS, [Define this as the Kerberos 
version number])
-       if test -f $dir/include/gssapi/gssapi_krb5.h -a \
-                 \( -f $dir/lib/libgssapi_krb5.a -o \
-+                   -f $dir/lib/libgssapi_krb5.so -o \
-+                   -f $dir/lib32/libgssapi_krb5.a -o \
-+                   -f $dir/lib32/libgssapi_krb5.so -o \
-                    -f $dir/lib64/libgssapi_krb5.a -o \
--                   -f $dir/lib64/libgssapi_krb5.so -o \
--                   -f $dir/lib/libgssapi_krb5.so \) ; then
-+                   -f $dir/lib64/libgssapi_krb5.so \) ; then
-          AC_DEFINE(HAVE_KRB5, 1, [Define this if you have MIT Kerberos 
libraries])
-          KRBDIR="$dir"
-          gssapi_lib=gssapi_krb5
--- 
-2.21.0
-

diff --git a/net-fs/nfs-utils/files/nfs-utils-2.4.1-statx.patch 
b/net-fs/nfs-utils/files/nfs-utils-2.4.1-statx.patch
deleted file mode 100644
index 7515a819915..00000000000
--- a/net-fs/nfs-utils/files/nfs-utils-2.4.1-statx.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From c8953944c5d34095d42f604f911022fbe144918c Mon Sep 17 00:00:00 2001
-From: Andreas Steinmetz <a...@domdv.de>
-Date: Wed, 30 Oct 2019 16:57:00 +0100
-Subject: [PATCH] Old kernels don't know statx calls and return EINVAL
-
-On a system with glibc-2.29 and kernel 4.9.128 nfs v3 mount fails as
-statx() with mask=STATX_BASIC_STATS returns EINVAL, probably from
-glibc, as strace of rpc.mountd shows no system call.
-
-Fixes: https://bugs.gentoo.org/688644
-Signed-off-by: Lars Wendler <polynomia...@gentoo.org>
----
- support/misc/xstat.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/support/misc/xstat.c b/support/misc/xstat.c
-index fa047880..6aca6e29 100644
---- a/support/misc/xstat.c
-+++ b/support/misc/xstat.c
-@@ -47,6 +47,8 @@ statx_do_stat(int fd, const char *pathname, struct stat 
*statbuf, int flags)
-                       statx_copy(statbuf, &stxbuf);
-                       return 0;
-               }
-+              if (errno == EINVAL)
-+                      errno = ENOSYS;
-               if (errno == ENOSYS)
-                       statx_supported = 0;
-       } else
--- 
-2.24.0.rc1
-

diff --git 
a/net-fs/nfs-utils/files/nfs-utils-2.4.2-mountd-Add-check-for-struct-file_handle.patch
 
b/net-fs/nfs-utils/files/nfs-utils-2.4.2-mountd-Add-check-for-struct-file_handle.patch
deleted file mode 100644
index 2a89cc7665f..00000000000
--- 
a/net-fs/nfs-utils/files/nfs-utils-2.4.2-mountd-Add-check-for-struct-file_handle.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From f100d07d923b5db60d42dc2453485fa0dba69a79 Mon Sep 17 00:00:00 2001
-From: Petr Vorel <petr.vo...@gmail.com>
-Date: Mon, 18 Nov 2019 08:58:36 -0500
-Subject: [PATCH] mountd: Add check for 'struct file_handle'
-
-From: Maxime Hadjinlian <maxime.hadjinl...@gmail.com>
-
-The code to check if name_to_handle_at() is implemented generates only a
-warning but with some toolchain it doesn't fail to link (the function must be
-implemented somewhere).
-However the "struct file_handle" type is not available.
-
-So, this patch adds a check for this struct.
-
-Patch taken from buildroot distribution.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazz...@bootlin.com>
-[ pvorel: rebased from nfs-utils-1-3-4 ]
-Signed-off-by: Petr Vorel <petr.vo...@gmail.com>
-Signed-off-by: Maxime Hadjinlian <maxime.hadjinl...@gmail.com>
-Signed-off-by: Steve Dickson <ste...@redhat.com>
----
- configure.ac         | 1 +
- utils/mountd/cache.c | 2 +-
- 2 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 9ba9d4b..949ff9f 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -510,6 +510,7 @@ AC_TYPE_PID_T
- AC_TYPE_SIZE_T
- AC_HEADER_TIME
- AC_STRUCT_TM
-+AC_CHECK_TYPES([struct file_handle])
- 
- dnl *************************************************************
- dnl Check for functions
-diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
-index 3861f84..31e9507 100644
---- a/utils/mountd/cache.c
-+++ b/utils/mountd/cache.c
-@@ -446,7 +446,7 @@ static int same_path(char *child, char *parent, int len)
-       if (count_slashes(p) != count_slashes(parent))
-               return 0;
- 
--#if HAVE_NAME_TO_HANDLE_AT
-+#if defined(HAVE_NAME_TO_HANDLE_AT) && defined(HAVE_STRUCT_FILE_HANDLE)
-       struct {
-               struct file_handle fh;
-               unsigned char handle[128];
--- 
-1.8.3.1
-

diff --git 
a/net-fs/nfs-utils/files/nfs-utils-2.4.2-mountd-Fix-compilation-for--disable-uuid.patch
 
b/net-fs/nfs-utils/files/nfs-utils-2.4.2-mountd-Fix-compilation-for--disable-uuid.patch
deleted file mode 100644
index 3bb9f8b3c9b..00000000000
--- 
a/net-fs/nfs-utils/files/nfs-utils-2.4.2-mountd-Fix-compilation-for--disable-uuid.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 31bb484b22c220c561f3a95c3b7ca3ea9b96cc9b Mon Sep 17 00:00:00 2001
-From: Petr Vorel <petr.vo...@gmail.com>
-Date: Mon, 18 Nov 2019 11:27:19 -0500
-Subject: [PATCH] mountd: Fix compilation for --disable-uuid
-
-Although code in configure.ac pretends to set USE_BLKID as 0
-via AC_DEFINE_UNQUOTED, it's actually not defined
-support/include/config.h.in
-support/include/config.h
-/* #undef USE_BLKID */
-
-Fixes: 8e643554 ("Allow disabling of libblkid usage.")
-
-Signed-off-by: Petr Vorel <petr.vo...@gmail.com>
-Signed-off-by: Steve Dickson <ste...@redhat.com>
----
- utils/mountd/cache.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
-index 31e9507..e5186c7 100644
---- a/utils/mountd/cache.c
-+++ b/utils/mountd/cache.c
-@@ -221,7 +221,7 @@ static void auth_unix_gid(int f)
-               xlog(L_ERROR, "auth_unix_gid: error writing reply");
- }
- 
--#if USE_BLKID
-+#ifdef USE_BLKID
- static const char *get_uuid_blkdev(char *path)
- {
-       /* We set *safe if we know that we need the
--- 
-1.8.3.1
-

diff --git a/net-fs/nfs-utils/nfs-utils-2.4.1-r4.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.4.1-r4.ebuild
deleted file mode 100644
index b54e1063a40..00000000000
--- a/net-fs/nfs-utils/nfs-utils-2.4.1-r4.ebuild
+++ /dev/null
@@ -1,211 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic linux-info multilib systemd
-
-DESCRIPTION="NFS client and server daemons"
-HOMEPAGE="http://linux-nfs.org/";
-
-if [[ "${PV}" = *_rc* ]] ; then
-       MY_PV="$(ver_rs 1- -)"
-       
SRC_URI="http://git.linux-nfs.org/?p=steved/nfs-utils.git;a=snapshot;h=refs/tags/${PN}-${MY_PV};sf=tgz
 -> ${P}.tar.gz"
-       S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
-else
-       SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
-       KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
s390 sparc x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="caps ipv6 junction kerberos ldap +libmount nfsdcld +nfsidmap +nfsv4 
nfsv41 selinux tcpd +uuid"
-REQUIRED_USE="kerberos? ( nfsv4 )"
-RESTRICT="test" #315573
-
-# kth-krb doesn't provide the right include
-# files, and nfs-utils doesn't build against heimdal either,
-# so don't depend on virtual/krb.
-# (04 Feb 2005 agriffis)
-DEPEND="
-       >=dev-db/sqlite-3.3
-       dev-libs/libxml2
-       net-libs/libtirpc:=
-       >=net-nds/rpcbind-0.2.4
-       sys-libs/e2fsprogs-libs
-       caps? ( sys-libs/libcap )
-       ldap? ( net-nds/openldap )
-       libmount? ( sys-apps/util-linux )
-       nfsv4? (
-               dev-libs/libevent:=
-               >=sys-apps/keyutils-1.5.9:=
-               kerberos? (
-                       >=net-libs/libtirpc-0.2.4-r1[kerberos]
-                       app-crypt/mit-krb5
-               )
-       )
-       nfsv41? (
-               sys-fs/lvm2
-       )
-       tcpd? ( sys-apps/tcp-wrappers )
-       uuid? ( sys-apps/util-linux )"
-RDEPEND="${DEPEND}
-       !net-libs/libnfsidmap
-       !net-nds/portmap
-       !<sys-apps/openrc-0.13.9
-       selinux? (
-               sec-policy/selinux-rpc
-               sec-policy/selinux-rpcbind
-       )
-"
-BDEPEND="
-       net-libs/rpcsvc-proto
-       virtual/pkgconfig
-"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-1.1.4-mtab-sym.patch
-       "${FILESDIR}"/${PN}-1.2.8-cross-build.patch
-       "${FILESDIR}"/${PN}-2.3.4-no-werror.patch
-       "${FILESDIR}"/${P}-gssd-Look-in-lib32-for-gss-libs-aswell.patch
-       "${FILESDIR}"/${P}-Fix-include-order-between-config.h-and-stat.h.patch
-       "${FILESDIR}"/${PN}-2.4.1-statx.patch #688644
-       "${FILESDIR}"/${PN}-2.4.2-Ensure-consistent-struct-stat.patch
-       "${FILESDIR}"/${PN}-2.4.2-mountd-Add-check-for-struct-file_handle.patch
-       "${FILESDIR}"/${PN}-2.4.2-mountd-Fix-compilation-for--disable-uuid.patch
-)
-
-pkg_setup() {
-       linux-info_pkg_setup
-       if use nfsv4 && ! use nfsdcld && linux_config_exists && ! 
linux_chkconfig_present CRYPTO_MD5 ; then
-               ewarn "Your NFS server will be unable to track clients across 
server restarts!"
-               ewarn "Please enable the \"${HILITE}nfsdcld${NORMAL}\" USE flag 
to install the nfsdcltrack usermode"
-               ewarn "helper upcall program, or enable 
${HILITE}CONFIG_CRYPTO_MD5${NORMAL} in your kernel to"
-               ewarn "support the legacy, in-kernel client tracker."
-       fi
-}
-
-src_prepare() {
-       default
-
-       sed \
-               -e "/^sbindir/s:= := \"${EPREFIX}\":g" \
-               -i utils/*/Makefile.am || die
-
-       eautoreconf
-}
-
-src_configure() {
-       export libsqlite3_cv_is_recent=yes # Our DEPEND forces this.
-       export ac_cv_header_keyutils_h=$(usex nfsidmap)
-       local myeconfargs=(
-               --with-statedir="${EPREFIX}"/var/lib/nfs
-               --enable-tirpc
-               --with-tirpcinclude="${EPREFIX}"/usr/include/tirpc/
-               --with-pluginpath="${EPREFIX}"/usr/$(get_libdir)/libnfsidmap
-               --with-rpcgen
-               --with-systemd="$(systemd_get_systemunitdir)"
-               --without-gssglue
-               $(use_enable caps)
-               $(use_enable ipv6)
-               $(use_enable junction)
-               $(use_enable kerberos gss)
-               $(use_enable kerberos svcgss)
-               $(use_enable ldap)
-               $(use_enable libmount libmount-mount)
-               $(use_enable nfsdcld nfsdcltrack)
-               $(use_enable nfsv4)
-               $(use_enable nfsv41)
-               $(use_enable uuid)
-               $(use_with tcpd tcp-wrappers)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       # remove compiled files bundled in the tarball
-       emake clean
-       default
-}
-
-src_install() {
-       default
-       rm linux-nfs/Makefile* || die
-       dodoc -r linux-nfs README
-
-       # Don't overwrite existing xtab/etab, install the original
-       # versions somewhere safe...  more info in pkg_postinst
-       keepdir /var/lib/nfs/{,sm,sm.bak}
-       mv "${ED}"/var/lib/nfs "${ED}"/usr/$(get_libdir)/ || die
-
-       # Install some client-side binaries in /sbin
-       dodir /sbin
-       mv "${ED}"/usr/sbin/rpc.statd "${ED}"/sbin/ || die
-
-       if use nfsv4 && use nfsidmap ; then
-               insinto /etc
-               doins support/nfsidmap/idmapd.conf
-
-               # Install a config file for idmappers in newer kernels. #415625
-               insinto /etc/request-key.d
-               echo 'create id_resolver * * /usr/sbin/nfsidmap -t 600 %k %d' > 
id_resolver.conf
-               doins id_resolver.conf
-       fi
-
-       insinto /etc
-       doins "${FILESDIR}"/exports
-       keepdir /etc/exports.d
-
-       local f list=() opt_need=""
-       if use nfsv4 ; then
-               opt_need="rpc.idmapd"
-               list+=( rpc.idmapd rpc.pipefs )
-               use kerberos && list+=( rpc.gssd rpc.svcgssd )
-       fi
-       for f in nfs nfsclient rpc.statd "${list[@]}" ; do
-               newinitd "${FILESDIR}"/${f}.initd ${f}
-       done
-       newinitd "${FILESDIR}"/nfsmount.initd-1.3.1 nfsmount # Nuke after 
2015/08/01
-       for f in nfs nfsclient ; do
-               newconfd "${FILESDIR}"/${f}.confd ${f}
-       done
-       sed -i \
-               -e "/^NFS_NEEDED_SERVICES=/s:=.*:=\"${opt_need}\":" \
-               "${ED}"/etc/conf.d/nfs || die #234132
-
-       local systemd_systemunitdir="$(systemd_get_systemunitdir)"
-       sed -i \
-               -e 's:/usr/sbin/rpc.statd:/sbin/rpc.statd:' \
-               "${ED}${systemd_systemunitdir}"/* || die
-
-       keepdir /var/lib/nfs #368505
-       keepdir /var/lib/nfs/v4recovery #603628
-
-}
-
-pkg_postinst() {
-       # Install default xtab and friends if there's none existing.  In
-       # src_install we put them in /usr/lib/nfs for safe-keeping, but
-       # the daemons actually use the files in /var/lib/nfs.  #30486
-       local f
-       for f in "${EROOT}"/usr/$(get_libdir)/nfs/*; do
-               [[ -e ${EROOT}/var/lib/nfs/${f##*/} ]] && continue
-               einfo "Copying default ${f##*/} from 
${EPREFIX}/usr/$(get_libdir)/nfs to ${EPREFIX}/var/lib/nfs"
-               cp -pPR "${f}" "${EROOT}"/var/lib/nfs/
-       done
-
-       if systemd_is_booted; then
-               for v in ${REPLACING_VERSIONS}; do
-                       if ver_test "${v}" -lt 1.3.0; then
-                               ewarn "We have switched to upstream systemd 
unit files. Since"
-                               ewarn "they got renamed, you should probably 
enable the new ones."
-                               ewarn "You can run 'equery files nfs-utils | 
grep systemd'"
-                               ewarn "to know what services you need to enable 
now."
-                       fi
-               done
-       else
-               ewarn "If you use OpenRC, the nfsmount service has been 
replaced with nfsclient."
-               ewarn "If you were using nfsmount, please add nfsclient and 
netmount to the"
-               ewarn "same runlevel as nfsmount."
-       fi
-}

diff --git a/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild
deleted file mode 100644
index 46241c2f097..00000000000
--- a/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild
+++ /dev/null
@@ -1,204 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic linux-info multilib systemd
-
-DESCRIPTION="NFS client and server daemons"
-HOMEPAGE="http://linux-nfs.org/";
-
-if [[ "${PV}" = *_rc* ]] ; then
-       MY_PV="$(ver_rs 1- -)"
-       
SRC_URI="http://git.linux-nfs.org/?p=steved/nfs-utils.git;a=snapshot;h=refs/tags/${PN}-${MY_PV};sf=tgz
 -> ${P}.tar.gz"
-       S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
-else
-       SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
-       KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="caps ipv6 junction kerberos ldap +libmount nfsdcld +nfsidmap +nfsv4 
nfsv41 selinux tcpd +uuid"
-REQUIRED_USE="kerberos? ( nfsv4 )"
-RESTRICT="test" #315573
-
-# kth-krb doesn't provide the right include
-# files, and nfs-utils doesn't build against heimdal either,
-# so don't depend on virtual/krb.
-# (04 Feb 2005 agriffis)
-DEPEND="
-       >=dev-db/sqlite-3.3
-       dev-libs/libxml2
-       net-libs/libtirpc:=
-       >=net-nds/rpcbind-0.2.4
-       sys-libs/e2fsprogs-libs
-       caps? ( sys-libs/libcap )
-       ldap? ( net-nds/openldap )
-       libmount? ( sys-apps/util-linux )
-       nfsv4? (
-               dev-libs/libevent:=
-               >=sys-apps/keyutils-1.5.9:=
-               kerberos? (
-                       >=net-libs/libtirpc-0.2.4-r1[kerberos]
-                       app-crypt/mit-krb5
-               )
-       )
-       nfsv41? (
-               sys-fs/lvm2
-       )
-       tcpd? ( sys-apps/tcp-wrappers )
-       uuid? ( sys-apps/util-linux )"
-RDEPEND="${DEPEND}
-       !net-libs/libnfsidmap
-       !net-nds/portmap
-       !<sys-apps/openrc-0.13.9
-       selinux? (
-               sec-policy/selinux-rpc
-               sec-policy/selinux-rpcbind
-       )
-"
-BDEPEND="
-       net-libs/rpcsvc-proto
-       virtual/pkgconfig
-"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-2.4.2-no-werror.patch
-       "${FILESDIR}"/${PN}-2.4.2-Ensure-consistent-struct-stat.patch
-)
-
-pkg_setup() {
-       linux-info_pkg_setup
-       if use nfsv4 && ! use nfsdcld && linux_config_exists && ! 
linux_chkconfig_present CRYPTO_MD5 ; then
-               ewarn "Your NFS server will be unable to track clients across 
server restarts!"
-               ewarn "Please enable the \"${HILITE}nfsdcld${NORMAL}\" USE flag 
to install the nfsdcltrack usermode"
-               ewarn "helper upcall program, or enable 
${HILITE}CONFIG_CRYPTO_MD5${NORMAL} in your kernel to"
-               ewarn "support the legacy, in-kernel client tracker."
-       fi
-}
-
-src_prepare() {
-       default
-
-       sed \
-               -e "/^sbindir/s:= := \"${EPREFIX}\":g" \
-               -i utils/*/Makefile.am || die
-
-       eautoreconf
-}
-
-src_configure() {
-       export libsqlite3_cv_is_recent=yes # Our DEPEND forces this.
-       export ac_cv_header_keyutils_h=$(usex nfsidmap)
-       local myeconfargs=(
-               --with-statedir="${EPREFIX}"/var/lib/nfs
-               --enable-tirpc
-               --with-tirpcinclude="${EPREFIX}"/usr/include/tirpc/
-               --with-pluginpath="${EPREFIX}"/usr/$(get_libdir)/libnfsidmap
-               --with-rpcgen
-               --with-systemd="$(systemd_get_systemunitdir)"
-               --without-gssglue
-               $(use_enable caps)
-               $(use_enable ipv6)
-               $(use_enable junction)
-               $(use_enable kerberos gss)
-               $(use_enable kerberos svcgss)
-               $(use_enable ldap)
-               $(use_enable libmount libmount-mount)
-               $(use_enable nfsdcld nfsdcltrack)
-               $(use_enable nfsv4)
-               $(use_enable nfsv41)
-               $(use_enable uuid)
-               $(use_with tcpd tcp-wrappers)
-       )
-       econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-       # remove compiled files bundled in the tarball
-       emake clean
-       default
-}
-
-src_install() {
-       default
-       rm linux-nfs/Makefile* || die
-       dodoc -r linux-nfs README
-
-       # Don't overwrite existing xtab/etab, install the original
-       # versions somewhere safe...  more info in pkg_postinst
-       keepdir /var/lib/nfs/{,sm,sm.bak}
-       mv "${ED}"/var/lib/nfs "${ED}"/usr/$(get_libdir)/ || die
-
-       # Install some client-side binaries in /sbin
-       dodir /sbin
-       mv "${ED}"/usr/sbin/rpc.statd "${ED}"/sbin/ || die
-
-       if use nfsv4 && use nfsidmap ; then
-               insinto /etc
-               doins support/nfsidmap/idmapd.conf
-
-               # Install a config file for idmappers in newer kernels. #415625
-               insinto /etc/request-key.d
-               echo 'create id_resolver * * /usr/sbin/nfsidmap -t 600 %k %d' > 
id_resolver.conf
-               doins id_resolver.conf
-       fi
-
-       insinto /etc
-       doins "${FILESDIR}"/exports
-       keepdir /etc/exports.d
-
-       local f list=() opt_need=""
-       if use nfsv4 ; then
-               opt_need="rpc.idmapd"
-               list+=( rpc.idmapd rpc.pipefs )
-               use kerberos && list+=( rpc.gssd rpc.svcgssd )
-       fi
-       for f in nfs nfsclient rpc.statd "${list[@]}" ; do
-               newinitd "${FILESDIR}"/${f}.initd ${f}
-       done
-       newinitd "${FILESDIR}"/nfsmount.initd-1.3.1 nfsmount # Nuke after 
2015/08/01
-       for f in nfs nfsclient ; do
-               newconfd "${FILESDIR}"/${f}.confd ${f}
-       done
-       sed -i \
-               -e "/^NFS_NEEDED_SERVICES=/s:=.*:=\"${opt_need}\":" \
-               "${ED}"/etc/conf.d/nfs || die #234132
-
-       local systemd_systemunitdir="$(systemd_get_systemunitdir)"
-       sed -i \
-               -e 's:/usr/sbin/rpc.statd:/sbin/rpc.statd:' \
-               "${ED}${systemd_systemunitdir}"/* || die
-
-       keepdir /var/lib/nfs #368505
-       keepdir /var/lib/nfs/v4recovery #603628
-
-}
-
-pkg_postinst() {
-       # Install default xtab and friends if there's none existing.  In
-       # src_install we put them in /usr/lib/nfs for safe-keeping, but
-       # the daemons actually use the files in /var/lib/nfs.  #30486
-       local f
-       for f in "${EROOT}"/usr/$(get_libdir)/nfs/*; do
-               [[ -e ${EROOT}/var/lib/nfs/${f##*/} ]] && continue
-               einfo "Copying default ${f##*/} from 
${EPREFIX}/usr/$(get_libdir)/nfs to ${EPREFIX}/var/lib/nfs"
-               cp -pPR "${f}" "${EROOT}"/var/lib/nfs/
-       done
-
-       if systemd_is_booted; then
-               for v in ${REPLACING_VERSIONS}; do
-                       if ver_test "${v}" -lt 1.3.0; then
-                               ewarn "We have switched to upstream systemd 
unit files. Since"
-                               ewarn "they got renamed, you should probably 
enable the new ones."
-                               ewarn "You can run 'equery files nfs-utils | 
grep systemd'"
-                               ewarn "to know what services you need to enable 
now."
-                       fi
-               done
-       else
-               ewarn "If you use OpenRC, the nfsmount service has been 
replaced with nfsclient."
-               ewarn "If you were using nfsmount, please add nfsclient and 
netmount to the"
-               ewarn "same runlevel as nfsmount."
-       fi
-}

Reply via email to