Hello community,

here is the log from the commit of package libnsl for openSUSE:Factory checked 
in at 2017-08-24 17:40:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libnsl (Old)
 and      /work/SRC/openSUSE:Factory/.libnsl.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libnsl"

Thu Aug 24 17:40:29 2017 rev:2 rq:517650 version:1.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libnsl/libnsl.changes    2016-04-11 
10:28:01.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libnsl.new/libnsl.changes       2017-08-24 
17:40:46.530641365 +0200
@@ -1,0 +2,18 @@
+Fri Aug 18 19:53:51 UTC 2017 - [email protected]
+
+- Update to version 1.1.0
+  - Fix compilation with new glibc (obsoletes decls.patch)
+  - Add rpcsvc/yp.h
+
+-------------------------------------------------------------------
+Wed Jul  5 13:53:16 UTC 2017 - [email protected]
+
+- decls.patch: fix missing declarations
+
+-------------------------------------------------------------------
+Thu Feb 23 11:38:55 CET 2017 - [email protected]
+
+- Update to version 1.0.5
+  - Fix compiler warnings
+
+-------------------------------------------------------------------

Old:
----
  libnsl-1.0.4.tar.bz2

New:
----
  libnsl-1.1.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libnsl.spec ++++++
--- /var/tmp/diff_new_pack.z1adYl/_old  2017-08-24 17:40:47.410517490 +0200
+++ /var/tmp/diff_new_pack.z1adYl/_new  2017-08-24 17:40:47.418516363 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libnsl
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,27 +17,28 @@
 
 
 Name:           libnsl
-Version:        1.0.4
+Version:        1.1.0
 Release:        0
 Summary:        Network Support Library (NIS/NIS+)
 License:        LGPL-2.1
 Group:          System/Libraries
+Url:            http://github.com/thkukuk/libnsl
+Source:         %{name}-%{version}.tar.bz2
+Source1:        baselibs.conf
 BuildRequires:  autoconf
 BuildRequires:  libtool
 BuildRequires:  pkg-config
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} >= 1310
 BuildRequires: libtirpc-devel >= 1.0
 %endif
-Url:            http://github.com/thkukuk/libnsl
-Source:         %{name}-%{version}.tar.bz2
-Source1:        baselibs.conf
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%define debug_package_requires libnsl1 = %{version}-%{release}
+%define debug_package_requires libnsl2 = %{version}-%{release}
 
 %description
 The Network Support Library for NIS/NIS+ was formerly part of glibc and
 is now a standalone library. The big difference is, that this library
 has support for IPv6.
+The NIS+ code is deprecated and only there "as is".
 
 %package -n libnsl2
 Summary:        Network Support Library (NIS/NIS+)
@@ -47,6 +48,7 @@
 The Network Support Library for NIS/NIS+ was formerly part of glibc and
 is now a standalone library. The big difference is, that this library
 has support for IPv6.
+The NIS+ code is deprecated and only there "as is".
 
 %package devel
 Summary:        Development package for Network Support Library (NIS/NIS+)
@@ -58,39 +60,37 @@
 is now a standalone library. The big difference is, that this library
 has support for IPv6.
 This package contains all files to develop and link against libnsl.
+The NIS+ API is deprecated and only there "as is".
 
 %prep
 %setup -q
 
 %build
 %configure --libdir=/%{_libdir}/nsl --includedir=%{_includedir}/nsl
-%{__make} %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %install
 # Don't strip .symtab to allow debugging
 export STRIP_KEEP_SYMTAB=libnsl*.so*
 # NO_BRP_CHECK_ROOTFS is for SLES11 only, but does not harm for Factory
 export NO_BRP_CHECK_ROOTFS=true
-make install DESTDIR=$RPM_BUILD_ROOT
-# move library to /lib
-%{__mkdir} -p $RPM_BUILD_ROOT/%{_lib}
- %{__mv} -v $RPM_BUILD_ROOT/%{_libdir}/nsl/%{name}.so.2*  
$RPM_BUILD_ROOT/%{_lib}/
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
+mv -v %{buildroot}/%{_libdir}/nsl/%{name}.so.2*  %{buildroot}%{_libdir}/
 # Adjust devel so link
-%{__rm} -v %{buildroot}/%{_libdir}/nsl/%{name}.{a,la,so}
-%{__ln_s} -v /%{_lib}/%{name}.so.2 %{buildroot}%{_libdir}/nsl/%{name}.so
-%{__mv} -v $RPM_BUILD_ROOT/%{_libdir}/nsl/pkgconfig $RPM_BUILD_ROOT/%{_libdir}
+rm -v %{buildroot}/%{_libdir}/nsl/%{name}.{a,la,so}
+ln -s -v %{_libdir}/%{name}.so.2 %{buildroot}%{_libdir}/nsl/%{name}.so
+mv -v %{buildroot}/%{_libdir}/nsl/pkgconfig %{buildroot}/%{_libdir}
 
 %check
-make check
+make %{?_smp_mflags} check
 
 %post -n libnsl2 -p /sbin/ldconfig
-
 %postun -n libnsl2 -p /sbin/ldconfig
 
 %files -n libnsl2
 %defattr(-,root,root)
 %doc COPYING
-/%{_lib}/libnsl.so.2*
+%{_libdir}/libnsl.so.2*
 
 %files devel
 %defattr(-,root,root)

++++++ libnsl-1.0.4.tar.bz2 -> libnsl-1.1.0.tar.bz2 ++++++
++++ 22752 lines of diff (skipped)


Reply via email to