commit nfsidmap for openSUSE:Factory

2018-08-28 Thread root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2018-08-28 09:19:15

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is "nfsidmap"

Tue Aug 28 09:19:15 2018 rev:38 rq:629458 version:0.27

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2018-07-18 
22:36:12.762486448 +0200
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2018-08-28 
09:19:19.855864121 +0200
@@ -1,0 +2,6 @@
+Tue Aug  7 23:44:43 UTC 2018 - nfbr...@suse.com
+
+- 0002-nss_gss_princ_to_ids-and-nss_gss_princ_to_grouplist-.patch
+ upstream patch to fix small bug (bsc#1098217)
+
+---

New:

  0002-nss_gss_princ_to_ids-and-nss_gss_princ_to_grouplist-.patch



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.YOdtro/_old  2018-08-28 09:19:20.351865698 +0200
+++ /var/tmp/diff_new_pack.YOdtro/_new  2018-08-28 09:19:20.351865698 +0200
@@ -27,6 +27,7 @@
 Source1:nfsv4.schema
 Patch0: fix-prototype.patch
 Patch1: libnfsidmap-export-symbols.patch
+Patch3: 0002-nss_gss_princ_to_ids-and-nss_gss_princ_to_grouplist-.patch
 BuildRequires:  libtool
 BuildRequires:  openldap2-devel
 BuildRequires:  pkgconfig
@@ -51,6 +52,7 @@
 %setup -q -n libnfsidmap-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch3 -p1
 cp %{SOURCE1} .
 
 %build

++ 0002-nss_gss_princ_to_ids-and-nss_gss_princ_to_grouplist-.patch ++
>From ba7daebba65dc4b1adfac9c8c61f373d6c394673 Mon Sep 17 00:00:00 2001
From: Scott Mayhew 
Date: Wed, 8 Feb 2017 08:40:38 -0500
Subject: [PATCH] nss_gss_princ_to_ids() and nss_gss_princ_to_grouplist() must
 strip the realm

nss_gss_princ_to_ids() and nss_gss_princ_to_grouplist() were hard-coded
to call nss_getpwnam with the 'dostrip' arg set to 0, which is the
opposite of what they should have had.  Note: there's no point making
the decision to strip or not to strip configurable in these two
functions.  Ideally both of these functions should be taking a
gss_name_t instead of a char * for the principal, calling
gss_localname() on that, and passing the result to nss_getpwnam... but
that would require changes in both rpc.svcgssd and libgssglue (both of
which have been deprecated for a while).

Fixes: 4db1bb1 (libnfsidmap: add options to aid id mapping in multi
domain environments)
Signed-off-by: Scott Mayhew 
Signed-off-by: Steve Dickson 
---
 nss.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nss.c b/nss.c
index 67e657a0314a..82799ce94d04 100644
--- a/nss.c
+++ b/nss.c
@@ -415,7 +415,7 @@ static int nss_gss_princ_to_ids(char *secname, char *princ,
return -ENOENT;
}
/* XXX: this should call something like getgssauthnam instead? */
-   pw = nss_getpwnam(princ, NULL, , 0);
+   pw = nss_getpwnam(princ, NULL, , 1);
if (pw == NULL) {
err = -ENOENT;
goto out;
@@ -438,7 +438,7 @@ int nss_gss_princ_to_grouplist(char *secname, char *princ,
goto out;
/* XXX: not quite right?  Need to know default realm? */
/* XXX: this should call something like getgssauthnam instead? */
-   pw = nss_getpwnam(princ, NULL, , 0);
+   pw = nss_getpwnam(princ, NULL, , 1);
if (pw == NULL) {
ret = -ENOENT;
goto out;
-- 
2.14.0.rc0.dirty




commit nfsidmap for openSUSE:Factory

2018-07-18 Thread root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2018-07-18 22:36:09

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is "nfsidmap"

Wed Jul 18 22:36:09 2018 rev:37 rq:622436 version:0.27

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2015-03-16 
09:41:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2018-07-18 
22:36:12.762486448 +0200
@@ -1,0 +2,16 @@
+Fri Jul 13 07:23:40 UTC 2018 - jeng...@inai.de
+
+- --with-pic is pointless in conjunction with --disable-static.
+  Remove it.
+
+---
+Tue Jul 10 11:38:21 UTC 2018 - mplus...@suse.com
+
+- Update to version 0.27
+  * No changelog available
+- Refresh patches:
+  * fix-prototype.patch
+  * libnfsidmap-export-symbols.patch
+- Modernise spec file with spec-cleaner
+
+---

Old:

  libnfsidmap-0.26.tar.bz2

New:

  libnfsidmap-0.27.tar.bz2



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.YLYfCe/_old  2018-07-18 22:36:13.570483771 +0200
+++ /var/tmp/diff_new_pack.YLYfCe/_new  2018-07-18 22:36:13.574483757 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nfsidmap
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,19 @@
 
 
 Name:   nfsidmap
-Version:0.26
+Version:0.27
 Release:0
 Summary:NFSv4 ID Mapping Library
 License:BSD-3-Clause
 Group:  Productivity/Networking/NFS
-Url:http://nfs.sourceforge.net
-
+URL:http://nfs.sourceforge.net
 Source0:
https://fedorapeople.org/~steved/libnfsidmap/%{version}/libnfsidmap-%{version}.tar.bz2
 Source1:nfsv4.schema
 Patch0: fix-prototype.patch
 Patch1: libnfsidmap-export-symbols.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libtool
 BuildRequires:  openldap2-devel
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  tcpd-devel
 
 %description
@@ -42,7 +40,7 @@
 %package devel
 Summary:NFSv4 ID Mapping Library development libraries
 Group:  Development/Libraries/C and C++
-Requires:   nfsidmap = %version
+Requires:   nfsidmap = %{version}
 
 %description devel
 In NFSv4, identities of users are conveyed by names rather than user ID
@@ -50,38 +48,36 @@
 translate these to numeric IDs.
 
 %prep
-%setup -q -n libnfsidmap-%version
-%patch0 -p0
-%patch1
-cp %{S:1} .
+%setup -q -n libnfsidmap-%{version}
+%patch0 -p1
+%patch1 -p1
+cp %{SOURCE1} .
 
 %build
 autoreconf -fiv
-export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED -DENABLE_LDAP"
-%configure --disable-static --with-pic --with-pluginpath=%_libdir/libnfsidmap
-%{__make} %{?_smp_mflags}
+export CFLAGS="%{optflags} -DLDAP_DEPRECATED -DENABLE_LDAP"
+%configure \
+  --disable-static \
+  --with-pluginpath=%{_libdir}/libnfsidmap
+make %{?_smp_mflags}
 
 %check
-make check
+make %{?_smp_mflags} check
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
-%{__rm} -f %{buildroot}%{_libdir}/*.la
-%{__rm} -f %{buildroot}%{_libdir}/libnfsidmap/*.la
+%make_install
+find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %doc README nfsv4.schema
 %{_libdir}/libnfsidmap/
 %{_libdir}/libnfsidmap.so.0*
 %{_mandir}/man?/*
 
 %files devel
-%defattr(-,root,root)
 %{_libdir}/libnfsidmap.so
 %{_includedir}/*.h
 %{_libdir}/pkgconfig/libnfsidmap.pc

++ fix-prototype.patch ++
--- /var/tmp/diff_new_pack.YLYfCe/_old  2018-07-18 22:36:13.598483678 +0200
+++ /var/tmp/diff_new_pack.YLYfCe/_new  2018-07-18 22:36:13.598483678 +0200
@@ -1,6 +1,8 @@
 nfsidmap.h
-+++ nfsidmap.h
-@@ -50,6 +50,7 @@
+Index: libnfsidmap-0.27/nfsidmap.h
+===
+--- libnfsidmap-0.27.orig/nfsidmap.h
 libnfsidmap-0.27/nfsidmap.h
+@@ -50,6 +50,7 @@ typedef struct _extra_mapping_params {
  typedef void (*nfs4_idmap_log_function_t)(const char *, ...);
  
  int nfs4_init_name_mapping(char *conffile);
@@ -8,13 +10,3 @@
  int nfs4_get_default_domain(char *server, char *domain, size_t len);
  int nfs4_uid_to_name(uid_t uid, char *domain, char *name, size_t len);
  int nfs4_gid_to_name(gid_t gid, char *domain, char *name, size_t len);
 nss.c
-+++ nss.c
-@@ -44,6 +44,7 @@

commit nfsidmap for openSUSE:Factory

2015-03-16 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2015-03-16 09:41:34

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2014-11-14 
09:18:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2015-03-16 
09:41:36.0 +0100
@@ -1,0 +2,8 @@
+Thu Mar  5 19:00:56 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 0.26
+  * No changelog available
+- Point download Url to new home
+- Remove depreciated AUTHORS section
+
+---

Old:

  libnfsidmap-0.25.tar.gz

New:

  libnfsidmap-0.26.tar.bz2



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.yl0wgQ/_old  2015-03-16 09:41:37.0 +0100
+++ /var/tmp/diff_new_pack.yl0wgQ/_new  2015-03-16 09:41:37.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nfsidmap
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,14 @@
 
 
 Name:   nfsidmap
-Version:0.25
+Version:0.26
 Release:0
 Summary:NFSv4 ID Mapping Library
 License:BSD-3-Clause
 Group:  Productivity/Networking/NFS
 Url:http://nfs.sourceforge.net
 
-#Git-Clone:git://git.linux-nfs.org/projects/steved/libnfsidmap
-Source0:
http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-%{version}.tar.gz
+Source0:
https://fedorapeople.org/~steved/libnfsidmap/%{version}/libnfsidmap-%{version}.tar.bz2
 Source1:nfsv4.schema
 Patch0: fix-prototype.patch
 Patch1: libnfsidmap-export-symbols.patch
@@ -40,12 +39,6 @@
 and group ID. Both the NFS server and client code in the kernel need to
 translate these to numeric IDs.
 
-
-
-Authors:
-
-J. Bruce Fields bfie...@citi.umich.edu
-
 %package devel
 Summary:NFSv4 ID Mapping Library development libraries
 Group:  Development/Libraries/C and C++
@@ -56,12 +49,6 @@
 and group ID. Both the NFS server and client code in the kernel need to
 translate these to numeric IDs.
 
-
-
-Authors:
-
-J. Bruce Fields bfie...@citi.umich.edu
-
 %prep
 %setup -q -n libnfsidmap-%version
 %patch0 -p0

++ libnfsidmap-0.25.tar.gz - libnfsidmap-0.26.tar.bz2 ++
 7834 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nfsidmap for openSUSE:Factory

2014-11-14 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2014-11-14 09:18:20

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2014-02-15 
17:17:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2014-11-14 
09:18:22.0 +0100
@@ -1,0 +2,5 @@
+Mon Oct  6 10:39:04 UTC 2014 - jeng...@inai.de
+
+- Use implicit %attrs; remove ancient specfile tags/sections
+
+---



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.SO5WOn/_old  2014-11-14 09:18:23.0 +0100
+++ /var/tmp/diff_new_pack.SO5WOn/_new  2014-11-14 09:18:23.0 +0100
@@ -17,26 +17,23 @@
 
 
 Name:   nfsidmap
-BuildRequires:  libtool
-BuildRequires:  openldap2-devel
-BuildRequires:  pkg-config
-BuildRequires:  tcpd-devel
-Url:http://nfs.sourceforge.net
+Version:0.25
+Release:0
 Summary:NFSv4 ID Mapping Library
 License:BSD-3-Clause
 Group:  Productivity/Networking/NFS
-Version:0.25
-Release:0
+Url:http://nfs.sourceforge.net
+
+#Git-Clone:git://git.linux-nfs.org/projects/steved/libnfsidmap
 Source0:
http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-%{version}.tar.gz
 Source1:nfsv4.schema
 Patch0: fix-prototype.patch
 Patch1: libnfsidmap-export-symbols.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
-%package devel
-Summary:NFSv4 ID Mapping Library development libraries
-Group:  Development/Libraries/C and C++
-Requires:   nfsidmap = %version
+BuildRequires:  libtool
+BuildRequires:  openldap2-devel
+BuildRequires:  pkg-config
+BuildRequires:  tcpd-devel
 
 %description
 In NFSv4, identities of users are conveyed by names rather than user ID
@@ -49,6 +46,11 @@
 
 J. Bruce Fields bfie...@citi.umich.edu
 
+%package devel
+Summary:NFSv4 ID Mapping Library development libraries
+Group:  Development/Libraries/C and C++
+Requires:   nfsidmap = %version
+
 %description devel
 In NFSv4, identities of users are conveyed by names rather than user ID
 and group ID. Both the NFS server and client code in the kernel need to
@@ -85,17 +87,16 @@
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(444,root,root,755)
+%defattr(-,root,root)
 %doc README nfsv4.schema
-%dir %{_libdir}/libnfsidmap/
-%attr(555,root,root) %{_libdir}/libnfsidmap/*.so*
-%attr(555,root,root) %{_libdir}/libnfsidmap.so.*
-%attr(444,root,root) %{_mandir}/man?/*
+%{_libdir}/libnfsidmap/
+%{_libdir}/libnfsidmap.so.0*
+%{_mandir}/man?/*
 
 %files devel
-%defattr(444,root,root,755)
-%attr(555,root,root) %{_libdir}/libnfsidmap.so
-%attr(444,root,root) %{_includedir}/*.h
+%defattr(-,root,root)
+%{_libdir}/libnfsidmap.so
+%{_includedir}/*.h
 %{_libdir}/pkgconfig/libnfsidmap.pc
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nfsidmap for openSUSE:Factory

2014-02-15 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2014-02-15 17:17:21

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2013-10-22 
14:52:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2014-02-15 
17:17:22.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 14 09:08:15 UTC 2014 - meiss...@suse.com
+
+- actually enable the LDAP plugin. bnc#859625
+
+---



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.ojOJRH/_old  2014-02-15 17:17:23.0 +0100
+++ /var/tmp/diff_new_pack.ojOJRH/_new  2014-02-15 17:17:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nfsidmap
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -68,7 +68,7 @@
 
 %build
 autoreconf -fiv
-export CFLAGS=$RPM_OPT_FLAGS -DLDAP_DEPRECATED
+export CFLAGS=$RPM_OPT_FLAGS -DLDAP_DEPRECATED -DENABLE_LDAP
 %configure --disable-static --with-pic --with-pluginpath=%_libdir/libnfsidmap
 %{__make} %{?_smp_mflags}
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nfsidmap for openSUSE:Factory

2013-10-22 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2013-10-22 14:52:56

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2013-08-01 
15:49:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2013-10-22 
14:52:57.0 +0200
@@ -1,0 +2,7 @@
+Tue Oct 22 11:10:00 UTC 2013 - p.drou...@gmail.com
+
+- Remove %fillup_prereq %insserv_prereq PreReq; the package doesn't
+  contain any sysvinit script and sysconfig file
+- Remove redundant %clean section
+
+---



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.5WCaQA/_old  2013-10-22 14:52:58.0 +0200
+++ /var/tmp/diff_new_pack.5WCaQA/_new  2013-10-22 14:52:58.0 +0200
@@ -27,13 +27,11 @@
 Group:  Productivity/Networking/NFS
 Version:0.25
 Release:0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-PreReq: %fillup_prereq %insserv_prereq
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:
http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-%{version}.tar.gz
 Source1:nfsv4.schema
 Patch0: fix-prototype.patch
 Patch1: libnfsidmap-export-symbols.patch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %package devel
 Summary:NFSv4 ID Mapping Library development libraries
@@ -82,9 +80,6 @@
 %{__rm} -f %{buildroot}%{_libdir}/*.la
 %{__rm} -f %{buildroot}%{_libdir}/libnfsidmap/*.la
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nfsidmap for openSUSE:Factory

2013-08-01 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2013-08-01 15:49:23

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2012-01-04 
07:25:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2013-08-01 
15:49:25.0 +0200
@@ -1,0 +2,20 @@
+Mon Jul 29 14:32:26 UTC 2013 - meiss...@suse.com
+
+- buildrequire pkg-config
+
+---
+Mon Jul 29 10:51:16 UTC 2013 - meiss...@suse.com
+
+- upgraded to 0.25 (FATE#312769)
+  * nss_getpwnam: ignore case when comparing domain names
+  * rpc.idmapd fails to load plugings
+  * Cleaned up some warnings
+  * Ignoring more files.
+  * Improve debugging during lib initialization.
+  * Added new --with-pluginpath configuration flag
+- specify correct plugin searchpath to find plugins on lib64 systems
+  bnc#800805
+- fix-prototype.patch: updated to 0.25 state, dropped 2 upstream hunks
+- libnfsidmap-export-symbols.patch: unfuzzed
+
+---

Old:

  libnfsidmap-0.24.tar.gz

New:

  libnfsidmap-0.25.tar.gz



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.YyOKgv/_old  2013-08-01 15:49:26.0 +0200
+++ /var/tmp/diff_new_pack.YyOKgv/_new  2013-08-01 15:49:26.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nfsidmap
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,17 @@
 #
 
 
-
 Name:   nfsidmap
-BuildRequires:  libtool openldap2-devel tcpd-devel
+BuildRequires:  libtool
+BuildRequires:  openldap2-devel
+BuildRequires:  pkg-config
+BuildRequires:  tcpd-devel
 Url:http://nfs.sourceforge.net
 Summary:NFSv4 ID Mapping Library
-Version:0.24
-Release:1
-Group:  Productivity/Networking/NFS
 License:BSD-3-Clause
+Group:  Productivity/Networking/NFS
+Version:0.25
+Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %fillup_prereq %insserv_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -34,7 +36,6 @@
 Patch1: libnfsidmap-export-symbols.patch
 
 %package devel
-License:BSD-3-Clause
 Summary:NFSv4 ID Mapping Library development libraries
 Group:  Development/Libraries/C and C++
 Requires:   nfsidmap = %version
@@ -70,9 +71,12 @@
 %build
 autoreconf -fiv
 export CFLAGS=$RPM_OPT_FLAGS -DLDAP_DEPRECATED
-%configure --disable-static --with-pic
+%configure --disable-static --with-pic --with-pluginpath=%_libdir/libnfsidmap
 %{__make} %{?_smp_mflags}
 
+%check
+make check
+
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
 %{__rm} -f %{buildroot}%{_libdir}/*.la

++ fix-prototype.patch ++
--- /var/tmp/diff_new_pack.YyOKgv/_old  2013-08-01 15:49:26.0 +0200
+++ /var/tmp/diff_new_pack.YyOKgv/_new  2013-08-01 15:49:26.0 +0200
@@ -1,14 +1,3 @@
 libnfsidmap.c
-+++ libnfsidmap.c
-@@ -183,7 +183,7 @@
-   unload_plugins(plgns);
-   return ret;
- }
--int nfs4_cleanup_name_mapping()
-+void nfs4_cleanup_name_mapping()
- {
-   if (nfs4_plugins)
-   unload_plugins(nfs4_plugins);
 --- nfsidmap.h
 +++ nfsidmap.h
 @@ -50,6 +50,7 @@
@@ -28,14 +17,4 @@
 +#include ctype.h
  #include nfsidmap.h
  #include nfsidmap_internal.h
- #include cfg.h
 libnfsidmap.c
-+++ libnfsidmap.c
-@@ -49,6 +49,7 @@
- #include syslog.h
- #include stdarg.h
- #include dlfcn.h
-+#include ctype.h
- #include nfsidmap.h
- #include nfsidmap_internal.h
  #include cfg.h

++ libnfsidmap-0.24.tar.gz - libnfsidmap-0.25.tar.gz ++
 10076 lines of diff (skipped)

++ libnfsidmap-export-symbols.patch ++
--- /var/tmp/diff_new_pack.YyOKgv/_old  2013-08-01 15:49:26.0 +0200
+++ /var/tmp/diff_new_pack.YyOKgv/_new  2013-08-01 15:49:26.0 +0200
@@ -1,7 +1,9 @@
+Index: configure.in
+===
 --- configure.in.orig
 +++ configure.in
-@@ -5,11 +5,16 @@ AC_PREREQ([2.66])
- AC_INIT([libnfsidmap],[0.24],[linux-...@vger.kernel.org])
+@@ -5,11 +5,16 @@ AC_PREREQ([2.68])
+ AC_INIT([libnfsidmap],[0.25],[linux-...@vger.kernel.org])
  AC_CONFIG_SRCDIR([nfsidmap.h])
  AC_CONFIG_MACRO_DIR([m4])
 -AM_INIT_AUTOMAKE
@@ -19,6 +21,8 @@
  
  # Checks for 

commit nfsidmap for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2011-12-06 18:32:05

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap, Maintainer is meiss...@suse.com

Changes:




Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.c3zf5v/_old  2011-12-06 18:53:27.0 +0100
+++ /var/tmp/diff_new_pack.c3zf5v/_new  2011-12-06 18:53:27.0 +0100
@@ -24,7 +24,7 @@
 Version:0.24
 Release:1
 Group:  Productivity/Networking/NFS
-License:BSD3c
+License:BSD-3-Clause
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %fillup_prereq %insserv_prereq
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -34,7 +34,7 @@
 Patch1: libnfsidmap-export-symbols.patch
 
 %package devel
-License:BSD3c
+License:BSD-3-Clause
 Summary:NFSv4 ID Mapping Library development libraries
 Group:  Development/Libraries/C and C++
 Requires:   nfsidmap = %version

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nfsidmap for openSUSE:Factory

2011-11-25 Thread h_root
Hello community,

here is the log from the commit of package nfsidmap for openSUSE:Factory 
checked in at 2011-11-25 23:12:09

Comparing /work/SRC/openSUSE:Factory/nfsidmap (Old)
 and  /work/SRC/openSUSE:Factory/.nfsidmap.new (New)


Package is nfsidmap, Maintainer is meiss...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/nfsidmap/nfsidmap.changes2011-09-23 
02:14:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.nfsidmap.new/nfsidmap.changes   2011-11-25 
23:05:08.0 +0100
@@ -1,0 +2,10 @@
+Fri Nov 25 12:18:34 UTC 2011 - a...@suse.de
+
+- Upstream tarball is .gz, change source.
+
+---
+Fri Nov 25 10:40:24 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---

Old:

  libnfsidmap-0.24.tar.bz2

New:

  libnfsidmap-0.24.tar.gz



Other differences:
--
++ nfsidmap.spec ++
--- /var/tmp/diff_new_pack.weZ4kd/_old  2011-11-25 23:05:10.0 +0100
+++ /var/tmp/diff_new_pack.weZ4kd/_new  2011-11-25 23:05:10.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   nfsidmap
-BuildRequires:  openldap2-devel tcpd-devel
+BuildRequires:  libtool openldap2-devel tcpd-devel
 Url:http://nfs.sourceforge.net
 Summary:NFSv4 ID Mapping Library
 Version:0.24
@@ -27,9 +27,8 @@
 License:BSD3c
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %fillup_prereq %insserv_prereq
-AutoReqProv:on
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:
http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-%{version}.tar.bz2
+Source0:
http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/libnfsidmap-%{version}.tar.gz
 Source1:nfsv4.schema
 Patch0: fix-prototype.patch
 Patch1: libnfsidmap-export-symbols.patch

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org