public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 3/3] libnfsidmap: Drop package
Date: Tue, 21 Feb 2023 15:45:52 +0100	[thread overview]
Message-ID: <20230221144552.857087-3-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20230221144552.857087-1-stefan.schantl@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 4573 bytes --]

This package now will be provided by
the nfs-utils package.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 libnfsidmap/libnfsidmap.nm                    | 58 --------------
 .../patches/libnfsidmap-0.26-rc1.patch        | 77 -------------------
 2 files changed, 135 deletions(-)
 delete mode 100644 libnfsidmap/libnfsidmap.nm
 delete mode 100644 libnfsidmap/patches/libnfsidmap-0.26-rc1.patch

diff --git a/libnfsidmap/libnfsidmap.nm b/libnfsidmap/libnfsidmap.nm
deleted file mode 100644
index 7cd1bd102..000000000
--- a/libnfsidmap/libnfsidmap.nm
+++ /dev/null
@@ -1,58 +0,0 @@
-###############################################################################
-# IPFire.org    - An Open Source Firewall Solution                            #
-# Copyright (C) - IPFire Development Team <info(a)ipfire.org>                   #
-###############################################################################
-
-name       = libnfsidmap
-version    = 0.25
-release    = 2
-
-groups     = System/Libraries
-url        = http://www.citi.umich.edu/projects/nfsv4/linux/
-license    = BSD
-summary    = Library to help mapping id's, mainly for NFSv4.
-
-description
-	libnfsidmap provides functions to map between NFSv4 names
-	(which are of the form user(a)domain) and local uid's and gid's.
-end
-
-source_dl  = http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/
-
-build
-	requires
-		autoconf
-		automake
-		gcc-c++
-		openldap-devel
-	end
-
-	configure_options += \
-		--with-pluginpath=%{libdir}/%{name} \
-		--disable-static
-
-	prepare_cmds
-		./autogen.sh
-	end
-
-	install_cmds
-		mkdir -pv %{BUILDROOT}%{sysconfdir}
-		install -m 644 idmapd.conf %{BUILDROOT}%{sysconfdir}
-	end
-end
-
-packages
-	package %{name}
-		configfiles
-			%{sysconfdir}/idmapd.conf
-		end
-	end
-
-	package %{name}-devel
-		template DEVEL
-	end
-
-	package %{name}-debuginfo
-		template DEBUGINFO
-	end
-end
diff --git a/libnfsidmap/patches/libnfsidmap-0.26-rc1.patch b/libnfsidmap/patches/libnfsidmap-0.26-rc1.patch
deleted file mode 100644
index e01e3f441..000000000
--- a/libnfsidmap/patches/libnfsidmap-0.26-rc1.patch
+++ /dev/null
@@ -1,77 +0,0 @@
-commit ee3099dbc71c6190cc612e923506c7d634b4b3c9
-Author: Ville Skytt� <ville.skytta(a)iki.fi>
-Date:   Tue Jun 19 10:10:40 2012 -0400
-
-    idmapd.conf.5: Fixed some syntax typos
-    
-    Signed-off-by: Steve Dickson <steved(a)redhat.com>
-
-diff --git a/idmapd.conf.5 b/idmapd.conf.5
-index 9c7f1ae..7b9e762 100644
---- a/idmapd.conf.5
-+++ b/idmapd.conf.5
-@@ -234,7 +234,6 @@ Number of seconds before timing out an LDAP request
- .\" -------------------------------------------------------------------
- .\"
- .SH EXAMPLES
--."
- An example
- .I /etc/idmapd.conf
- file:
-@@ -266,7 +265,7 @@ johndoe(a)OTHER.DOMAIN.ORG = johnny
- LDAP_server = ldap.domain.org
- LDAP_base = dc=org,dc=domain
- 
--.fo
-+.fi
- .\"
- .\" -------------------------------------------------------------------
- .\" Additional sections
-@@ -275,11 +274,11 @@ LDAP_base = dc=org,dc=domain
- .SH SEE ALSO
- .BR idmapd (8)
- .BR svcgssd (8)
--.".SH COMPATIBILITY
--.".SH STANDARDS
--.".SH ACKNOWLEDGEMENTS
--.".SH AUTHORS
--.".SH HISTORY
-+.\".SH COMPATIBILITY
-+.\".SH STANDARDS
-+.\".SH ACKNOWLEDGEMENTS
-+.\".SH AUTHORS
-+.\".SH HISTORY
- .SH BUGS
- Report bugs to <nfsv4(a)linux-nfs.org>
--.".SH CAVEATS
-+.\".SH CAVEATS
-
-commit f079113f90366f1965b9fd3b0fdbce77415f37a7
-Author: Juno Krahn <Juno.Krahn(a)gmail.com>
-Date:   Mon Mar 19 08:33:58 2012 -0400
-
-    idmapd: logging of Local-Realms only lists the last realm
-    
-    The list of local realms can be logged with a massage like the following:
-       rpc.idmapd: libnfsidmap: Realms list: 'EXAMPLE2.COM'
-    Instead of printing a list of realms, only the last realm in the list is shown.
-    
-    https://bugzilla.redhat.com/show_bug.cgi?id=804152
-    
-    Signed-off-by: Steve Dickson <steved(a)redhat.com>
-
-diff --git a/libnfsidmap.c b/libnfsidmap.c
-index 57bb6c3..641d766 100644
---- a/libnfsidmap.c
-+++ b/libnfsidmap.c
-@@ -285,8 +285,9 @@ int nfs4_init_name_mapping(char *conffile)
- 			}
- 			buf = malloc(siz);
- 			if (buf) {
-+				*buf = 0;
- 				TAILQ_FOREACH(r, &local_realms->fields, link) {
--					sprintf(buf, "'%s' ", r->field);
-+					sprintf(buf+strlen(buf), "'%s' ", r->field);
- 				}
- 				IDMAP_LOG(1, ("libnfsidmap: Realms list: %s", buf));
- 				free(buf);
-- 
2.30.2


      parent reply	other threads:[~2023-02-21 14:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-21 14:45 [PATCH 1/3] keyutils: New package Stefan Schantl
2023-02-21 14:45 ` [PATCH 2/3] nfs-utils: Update to 2.6.2 Stefan Schantl
2023-02-21 14:45 ` Stefan Schantl [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230221144552.857087-3-stefan.schantl@ipfire.org \
    --to=stefan.schantl@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox