commit ypserv for openSUSE:Factory

2020-08-29 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2020-08-29 20:44:59

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


Package is "ypserv"

Sat Aug 29 20:44:59 2020 rev:44 rq:830476 version:4.1

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2019-03-13 
09:14:39.811390243 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new.3399/ypserv.changes  2020-08-29 
20:45:06.905534431 +0200
@@ -1,0 +2,12 @@
+Sat Aug 29 11:02:35 UTC 2020 - Thorsten Kukuk 
+
+- Do /usr/etc split
+
+---
+Sat Aug 29 06:58:32 UTC 2020 - Thorsten Kukuk 
+
+- Move non-executeable files to /usr/share/yp
+- Adjust tmpfiles.d to use /usr/share/yp
+- Adjust yppasswdd.service to use /usr/libexec/yp
+
+---

Old:

  sysconfig.ypserv
  yppasswdd.init
  ypserv.init
  ypxfrd.init

New:

  default.yppasswdd
  default.ypserv
  default.ypxfrd



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.gl2iRW/_old  2020-08-29 20:45:08.181534964 +0200
+++ /var/tmp/diff_new_pack.gl2iRW/_new  2020-08-29 20:45:08.193534968 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ypserv
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018, 2020 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
@@ -15,22 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-%if ! %{defined _fillupdir}
-  %define _fillupdir %{_localstatedir}/adm/fillup-templates
-%endif
 Name:   ypserv
 Version:4.1
 Release:0
 Summary:YP - (NIS)-Server
 License:GPL-2.0-only
-Group:  Productivity/Networking/NIS
 URL:https://github.com/thkukuk/ypserv
 Source: ypserv-%{version}.tar.xz
-Source1:ypserv.init
-Source2:yppasswdd.init
-Source3:ypxfrd.init
-Source4:sysconfig.ypserv
+Source1:default.yppasswdd
+Source2:default.ypserv
+Source3:default.ypxfrd
 Source6:ypserv.service
 Source7:yppasswdd.service
 Source8:ypxfrd.service
@@ -43,11 +37,10 @@
 BuildRequires:  pkgconfig(libnsl)
 BuildRequires:  pkgconfig(libsystemd) >= 209
 BuildRequires:  pkgconfig(libtirpc)
-Requires:   gawk
+Requires:   /usr/bin/gawk
 Requires:   make
 Requires:   rpcbind
-Requires(post): %fillup_prereq
-%{?systemd_requires}
+Requires(post): /usr/bin/grep
 
 %description
 The Network Information Service (NIS) provides a simple network
@@ -76,19 +69,21 @@
 
 %install
 %make_install
-mkdir -p %{buildroot}%{_fillupdir}
+mkdir -p %{buildroot}%{_sysconfdir}
 mkdir -p %{buildroot}%{_libexecdir}/yp
+mkdir -p %{buildroot}%{_datadir}/yp
 mkdir -p %{buildroot}%{_unitdir}
-mkdir -p %{buildroot}%{_initddir}
 DOCDIR=%{_defaultdocdir}/yp
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}/ypserv
 #install contrib/ypslave $RPM_BUILD_ROOT/usr/sbin
-install -m 644 etc/ypserv.conf %{buildroot}%{_sysconfdir}/
-install -m 644 etc/securenets %{buildroot}%{_libexecdir}/yp/securenets.example
-mv %{buildroot}%{_localstatedir}/yp/Makefile 
%{buildroot}%{_libexecdir}/yp/ypMakefile
-# install sysconfig.ypserv
-install -m 644 %{SOURCE4} %{buildroot}%{_fillupdir}
+install -m 644 etc/ypserv.conf %{buildroot}%{_datadir}/yp/
+install -m 644 etc/securenets %{buildroot}%{_datadir}/yp/securenets.example
+mv %{buildroot}%{_localstatedir}/yp/Makefile 
%{buildroot}%{_datadir}/yp/ypMakefile
+# install default files
+install -D -m 644 %{SOURCE1} %{buildroot}%{_prefix}/etc/default/yppasswdd
+install -D -m 644 %{SOURCE2} %{buildroot}%{_prefix}/etc/default/ypserv
+install -D -m 644 %{SOURCE3} %{buildroot}%{_prefix}/etc/default/ypxfrd
 # install ypserv.conf in tmpfiles.d
 mkdir -p %{buildroot}%{_prefix}/lib/tmpfiles.d
 install -m 644 %{SOURCE10} %{buildroot}%{_prefix}/lib/tmpfiles.d/ypserv.conf
@@ -111,10 +106,18 @@
 %service_add_pre ypxfrd.service
 
 %post
-%{fillup_only -n ypserv}
 %service_add_post ypserv.service
 %service_add_post yppasswdd.service
 %service_add_post ypxfrd.service
+if [ -f /etc/sysconfig/ypserv ]; then
+grep ^YPSERV_ARGS= /etc/sysconfig/ypserv > /etc/default/ypserv
+grep ^YPXFRD_ARGS= /etc/sysconfig/ypserv > /etc/default/ypxfrd
+grep ^YPPASSWDD_ARGS= /etc/sysconfig/ypserv >> /etc/default/yppasswdd
+grep ^YPPWD_SRCDIR= /etc/sysconfig/ypserv >> /etc/default/yppasswdd
+grep ^YPPWD_CHFN= /etc/sysconfig/ypserv >> 

commit ypserv for openSUSE:Factory

2019-03-13 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2019-03-13 09:14:35

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


Package is "ypserv"

Wed Mar 13 09:14:35 2019 rev:43 rq:684401 version:4.1

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2018-02-23 
15:32:15.845176691 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new.28833/ypserv.changes 2019-03-13 
09:14:39.811390243 +0100
@@ -1,0 +2,9 @@
+Tue Mar 12 16:15:59 CET 2019 - ku...@suse.de
+
+- Update to version 4.1
+  - minor bugfix release
+- ypserv-4.1.diff: replaced ypserv-2.32.diff
+- 0001-use-_PATH_VARRUN-from-paths.h.patch: integrated upstream
+- drop SuSEfirewall2 support
+
+---

Old:

  0001-use-_PATH_VARRUN-from-paths.h.patch
  SuSEfirewall2.ypserv
  ypserv-2.32.diff
  ypserv-4.0.tar.bz2

New:

  ypserv-4.1.diff
  ypserv-4.1.tar.xz



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.DMT7Oc/_old  2019-03-13 09:14:41.303390089 +0100
+++ /var/tmp/diff_new_pack.DMT7Oc/_new  2019-03-13 09:14:41.303390089 +0100
@@ -20,26 +20,23 @@
   %define _fillupdir %{_localstatedir}/adm/fillup-templates
 %endif
 Name:   ypserv
-Version:4.0
+Version:4.1
 Release:0
 Summary:YP - (NIS)-Server
 License:GPL-2.0-only
 Group:  Productivity/Networking/NIS
-URL:http://www.linux-nis.org/nis/ypserv/
-Source: ypserv-%{version}.tar.bz2
+URL:https://github.com/thkukuk/ypserv
+Source: ypserv-%{version}.tar.xz
 Source1:ypserv.init
 Source2:yppasswdd.init
 Source3:ypxfrd.init
 Source4:sysconfig.ypserv
-Source5:SuSEfirewall2.ypserv
 Source6:ypserv.service
 Source7:yppasswdd.service
 Source8:ypxfrd.service
 Source9:yppasswdd-systemd-exec
 Source10:   ypserv.tmpfiles
-Patch1: ypserv-2.32.diff
-# PATCH-FIX-UPSTREAM, bnc#011483
-Patch2: 0001-use-_PATH_VARRUN-from-paths.h.patch
+Patch1: ypserv-4.1.diff
 BuildRequires:  gdbm-devel
 BuildRequires:  openslp-devel
 BuildRequires:  pkgconfig
@@ -72,7 +69,6 @@
 %prep
 %setup -q
 %patch1
-%patch2 -p1
 
 %build
 %configure --enable-fqdn --libexecdir="%{_libexecdir}/yp"
@@ -80,7 +76,6 @@
 
 %install
 %make_install
-mkdir -p %{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services
 mkdir -p %{buildroot}%{_fillupdir}
 mkdir -p %{buildroot}%{_libexecdir}/yp
 mkdir -p %{buildroot}%{_unitdir}
@@ -88,14 +83,12 @@
 DOCDIR=%{_defaultdocdir}/yp
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}/ypserv
-#install contrib/ypslave $RPM_BUILD_ROOT%{_sbindir}
+#install contrib/ypslave $RPM_BUILD_ROOT/usr/sbin
 install -m 644 etc/ypserv.conf %{buildroot}%{_sysconfdir}/
 install -m 644 etc/securenets %{buildroot}%{_libexecdir}/yp/securenets.example
 mv %{buildroot}%{_localstatedir}/yp/Makefile 
%{buildroot}%{_libexecdir}/yp/ypMakefile
 # install sysconfig.ypserv
 install -m 644 %{SOURCE4} %{buildroot}%{_fillupdir}
-# install SuSEfirewall2 service script
-install -m 644 %{SOURCE5} 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv
 # install ypserv.conf in tmpfiles.d
 mkdir -p %{buildroot}%{_prefix}/lib/tmpfiles.d
 install -m 644 %{SOURCE10} %{buildroot}%{_prefix}/lib/tmpfiles.d/ypserv.conf
@@ -149,7 +142,6 @@
 %doc NEWS README
 %{_fillupdir}/sysconfig.ypserv
 %config(noreplace) %{_sysconfdir}/ypserv.conf
-%config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv
 %dir %{_libexecdir}/yp
 %{_libexecdir}/yp/yppasswdd-systemd-exec
 %{_libexecdir}/yp/securenets.example

++ ypserv-2.32.diff -> ypserv-4.1.diff ++
--- /work/SRC/openSUSE:Factory/ypserv/ypserv-2.32.diff  2013-11-07 
09:15:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new.28833/ypserv-4.1.diff
2019-03-13 09:14:39.167390309 +0100
@@ -1,6 +1,6 @@
 --- scripts/ypMakefile.in
-+++ scripts/ypMakefile.in
-@@ -37,8 +37,9 @@
 scripts/ypMakefile.in  2019/03/12 15:10:13
+@@ -45,8 +45,9 @@
  MERGE_PASSWD=true
  
  # Should we merge the group file with the gshadow file ?
@@ -11,7 +11,7 @@
  
  # These are commands which this Makefile needs to properly rebuild the
  # NIS databases. Don't change these unless you have a good reason.
-@@ -54,7 +55,7 @@
+@@ -62,7 +63,7 @@
  # taken from YPSRCDIR.
  #
  YPSRCDIR = /etc
@@ -20,22 +20,20 @@
  YPBINDIR = @YPBINDIR@
  YPSBINDIR = @SBINDIR@
  YPDIR = @YPMAPDIR@
-@@ -101,10 +102,11 @@
+@@ -107,8 +108,9 @@
  # If you don't want some of these maps built, feel free to comment
  # them out from this list.
  
 -all:  passwd 

commit ypserv for openSUSE:Factory

2018-02-23 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2018-02-23 15:31:52

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


Package is "ypserv"

Fri Feb 23 15:31:52 2018 rev:42 rq:579487 version:4.0

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2018-02-20 
17:58:45.302514966 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2018-02-23 
15:32:15.845176691 +0100
@@ -1,0 +2,5 @@
+Fri Feb 23 11:41:31 UTC 2018 - ku...@suse.com
+
+- Use %license instead of %doc [bsc#1082318]
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.afiypt/_old  2018-02-23 15:32:17.257125675 +0100
+++ /var/tmp/diff_new_pack.afiypt/_new  2018-02-23 15:32:17.257125675 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ypserv
 #
-# Copyright (c) 2017 SUSE LINUX 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
@@ -16,11 +16,14 @@
 #
 
 
+%if ! %{defined _fillupdir}
+  %define _fillupdir %{_localstatedir}/adm/fillup-templates
+%endif
 Name:   ypserv
 Version:4.0
 Release:0
 Summary:YP - (NIS)-Server
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  Productivity/Networking/NIS
 URL:http://www.linux-nis.org/nis/ypserv/
 Source: ypserv-%{version}.tar.bz2
@@ -39,6 +42,7 @@
 Patch2: 0001-use-_PATH_VARRUN-from-paths.h.patch
 BuildRequires:  gdbm-devel
 BuildRequires:  openslp-devel
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(libnsl)
 BuildRequires:  pkgconfig(libsystemd) >= 209
 BuildRequires:  pkgconfig(libtirpc)
@@ -48,10 +52,6 @@
 Requires(post): %fillup_prereq
 %{?systemd_requires}
 
-%if ! %{defined _fillupdir}
-  %define _fillupdir /var/adm/fillup-templates
-%endif
-
 %description
 The Network Information Service (NIS) provides a simple network
 lookup service consisting of databases and processes. It was formerly
@@ -139,13 +139,14 @@
 
 %posttrans
 # Update "Fix"
-if [ -f /var/yp/Makefile.rpmsave -a ! -e /var/yp/Makefile ]; then
-  mv /var/yp/Makefile.rpmsave /var/yp/Makefile
+if [ -f %{_localstatedir}/yp/Makefile.rpmsave -a ! -e 
%{_localstatedir}/yp/Makefile ]; then
+  mv %{_localstatedir}/yp/Makefile.rpmsave %{_localstatedir}/yp/Makefile
 fi
 %tmpfiles_create ypserv.conf
 
 %files
-%doc NEWS README TODO COPYING ChangeLog
+%license COPYING
+%doc NEWS README
 %{_fillupdir}/sysconfig.ypserv
 %config(noreplace) %{_sysconfdir}/ypserv.conf
 %config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv




commit ypserv for openSUSE:Factory

2018-02-20 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2018-02-20 17:57:18

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


Package is "ypserv"

Tue Feb 20 17:57:18 2018 rev:41 rq:578344 version:4.0

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2017-11-23 
09:43:58.777465495 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2018-02-20 
17:58:45.302514966 +0100
@@ -1,0 +2,8 @@
+Thu Feb  8 17:29:38 UTC 2018 - matthias.gerst...@suse.com
+
+- support specification of fixed ports for ypserv, ypxfrd, ypppasswd via
+  /etc/sysconfig/ypserv. This is necessary to support the migration to
+  firewalld. firewalld does not support dynamic rpc ports like SuSEfirewall2
+  did. One way around this is to assign fixed port numbers for all services.
+
+---



Other differences:
--
++ sysconfig.ypserv ++
--- /var/tmp/diff_new_pack.eRl05X/_old  2018-02-20 17:58:46.738463286 +0100
+++ /var/tmp/diff_new_pack.eRl05X/_new  2018-02-20 17:58:46.738463286 +0100
@@ -38,3 +38,25 @@
 # for possible options.
 #
 YPXFRD_ARGS=""
+
+## Path:Network/NIS/NIS server
+## Description: 
+## Type:string
+## Default: ""
+## ServiceRestart: ypserv
+#
+# Additonal arguments for ypserv. See manual page
+# for possible options.
+#
+YPSERV_ARGS=""
+
+## Path:Network/NIS/NIS server
+## Description: 
+## Type:string
+## Default: ""
+## ServiceRestart: yppasswdd
+#
+# Additonal arguments for rpc.yppasswdd. See manual page
+# for possible options.
+#
+YPPASSWDD_ARGS=""

++ yppasswdd-systemd-exec ++
--- /var/tmp/diff_new_pack.eRl05X/_old  2018-02-20 17:58:46.754462710 +0100
+++ /var/tmp/diff_new_pack.eRl05X/_new  2018-02-20 17:58:46.754462710 +0100
@@ -11,4 +11,4 @@
 test "$YPPWD_CHSH" = "yes" && YPPASSWDD_OPTS="$YPPASSWDD_OPTS -e chsh"
 test x"$YPPWD_SRCDIR" = "x" && YPPWD_SRCDIR="/etc"
 
-exec /usr/sbin/rpc.yppasswdd -f -D $YPPWD_SRCDIR $YPPASSWDD_OPTS
+exec /usr/sbin/rpc.yppasswdd -f -D $YPPWD_SRCDIR $YPPASSWDD_OPTS 
$YPPASSWDD_ARGS

++ ypserv.service ++
--- /var/tmp/diff_new_pack.eRl05X/_old  2018-02-20 17:58:46.806460839 +0100
+++ /var/tmp/diff_new_pack.eRl05X/_new  2018-02-20 17:58:46.810460695 +0100
@@ -6,7 +6,8 @@
 [Service]
 Type=notify
 NotifyAccess=all
-ExecStart=/usr/sbin/ypserv -f
+EnvironmentFile=-/etc/sysconfig/ypserv
+ExecStart=/usr/sbin/ypserv -f $YPSERV_ARGS
 
 [Install]
 WantedBy=multi-user.target




commit ypserv for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2017-11-23 09:43:55

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


Package is "ypserv"

Thu Nov 23 09:43:55 2017 rev:40 rq:544366 version:4.0

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2017-11-10 
14:57:17.404311105 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2017-11-23 
09:43:58.777465495 +0100
@@ -1,0 +2,6 @@
+Wed Nov 22 11:13:19 CET 2017 - ku...@suse.de
+
+- Prepare for new fillup location
+- Remove check for transactional-update, done in systemd macros now
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.eD6lZB/_old  2017-11-23 09:43:59.573436448 +0100
+++ /var/tmp/diff_new_pack.eD6lZB/_new  2017-11-23 09:43:59.577436302 +0100
@@ -48,6 +48,10 @@
 Requires(post): %fillup_prereq
 %{?systemd_requires}
 
+%if ! %{defined _fillupdir}
+  %define _fillupdir /var/adm/fillup-templates
+%endif
+
 %description
 The Network Information Service (NIS) provides a simple network
 lookup service consisting of databases and processes. It was formerly
@@ -77,7 +81,7 @@
 %install
 %make_install
 mkdir -p %{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services
-mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates
+mkdir -p %{buildroot}%{_fillupdir}
 mkdir -p %{buildroot}%{_libexecdir}/yp
 mkdir -p %{buildroot}%{_unitdir}
 mkdir -p %{buildroot}%{_initddir}
@@ -89,7 +93,7 @@
 install -m 644 etc/securenets %{buildroot}%{_libexecdir}/yp/securenets.example
 mv %{buildroot}%{_localstatedir}/yp/Makefile 
%{buildroot}%{_libexecdir}/yp/ypMakefile
 # install sysconfig.ypserv
-install -m 644 %{SOURCE4} %{buildroot}%{_localstatedir}/adm/fillup-templates/
+install -m 644 %{SOURCE4} %{buildroot}%{_fillupdir}
 # install SuSEfirewall2 service script
 install -m 644 %{SOURCE5} 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv
 # install ypserv.conf in tmpfiles.d
@@ -138,13 +142,11 @@
 if [ -f /var/yp/Makefile.rpmsave -a ! -e /var/yp/Makefile ]; then
   mv /var/yp/Makefile.rpmsave /var/yp/Makefile
 fi
-if [ -z ${TRANSACTIONAL_UPDATE} ]; then
-  %tmpfiles_create ypserv.conf
-fi
+%tmpfiles_create ypserv.conf
 
 %files
 %doc NEWS README TODO COPYING ChangeLog
-%{_localstatedir}/adm/fillup-templates/sysconfig.ypserv
+%{_fillupdir}/sysconfig.ypserv
 %config(noreplace) %{_sysconfdir}/ypserv.conf
 %config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv
 %dir %{_libexecdir}/yp




commit ypserv for openSUSE:Factory

2017-11-10 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2017-11-10 14:56:55

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


Package is "ypserv"

Fri Nov 10 14:56:55 2017 rev:39 rq:539863 version:4.0

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2016-12-15 
10:42:43.363569802 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2017-11-10 
14:57:17.404311105 +0100
@@ -1,0 +2,11 @@
+Wed Nov  8 13:53:16 CET 2017 - ku...@suse.de
+
+- Cleanup /var/yp on de-installation
+
+---
+Wed Nov  8 10:54:37 CET 2017 - ku...@suse.de
+
+- Remove old SysV init support
+- Use systemd tmpfiles.d to create /var/yp hierachy
+
+---

New:

  ypserv.tmpfiles



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.OTPLgt/_old  2017-11-10 14:57:19.112249329 +0100
+++ /var/tmp/diff_new_pack.OTPLgt/_new  2017-11-10 14:57:19.116249184 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ypserv
 #
-# Copyright (c) 2014 SUSE LINUX Products 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
@@ -19,14 +19,10 @@
 Name:   ypserv
 Version:4.0
 Release:0
-Url:http://www.linux-nis.org/nis/ypserv/
 Summary:YP - (NIS)-Server
 License:GPL-2.0
 Group:  Productivity/Networking/NIS
-PreReq: %fillup_prereq
-%if %{suse_version} < 1310
-PreReq: %insserv_prereq
-%endif
+URL:http://www.linux-nis.org/nis/ypserv/
 Source: ypserv-%{version}.tar.bz2
 Source1:ypserv.init
 Source2:yppasswdd.init
@@ -37,24 +33,20 @@
 Source7:yppasswdd.service
 Source8:ypxfrd.service
 Source9:yppasswdd-systemd-exec
+Source10:   ypserv.tmpfiles
 Patch1: ypserv-2.32.diff
 # PATCH-FIX-UPSTREAM, bnc#011483
 Patch2: 0001-use-_PATH_VARRUN-from-paths.h.patch
 BuildRequires:  gdbm-devel
 BuildRequires:  openslp-devel
-%if %{suse_version} >= 1310
 BuildRequires:  pkgconfig(libnsl)
 BuildRequires:  pkgconfig(libsystemd) >= 209
 BuildRequires:  pkgconfig(libtirpc)
-%{?systemd_requires}
-%else
-BuildRequires:  libnsl-devel
-BuildRequires:  libtirpc-devel
-%endif
 Requires:   gawk
 Requires:   make
 Requires:   rpcbind
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Requires(post): %fillup_prereq
+%{?systemd_requires}
 
 %description
 The Network Information Service (NIS) provides a simple network
@@ -65,9 +57,9 @@
 machines on the network. Information likely to be distributed by
 NIS is:
 
-login names/passwords/home directories (/etc/passwd)
-group information (/etc/group)
-host names and IP numbers (/etc/hosts)
+login names/passwords/home directories (%{_sysconfdir}/passwd)
+group information (%{_sysconfdir}/group)
+host names and IP numbers (%{_sysconfdir}/hosts)
 
 So, for example, if your password entry is recorded in the NIS passwd
 database, you will be able to login on all machines on the net which
@@ -80,51 +72,41 @@
 
 %build
 %configure --enable-fqdn --libexecdir="%{_libexecdir}/yp"
-make
+make %{?_smp_mflags}
 
 %install
 %make_install
-mkdir -p $RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services
-mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
-mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/yp
-%if %{suse_version} >= 1310
-mkdir -p $RPM_BUILD_ROOT%{_unitdir}
-%else
-mkdir -p $RPM_BUILD_ROOT/etc/init.d
-%endif
+mkdir -p %{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services
+mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates
+mkdir -p %{buildroot}%{_libexecdir}/yp
+mkdir -p %{buildroot}%{_unitdir}
+mkdir -p %{buildroot}%{_initddir}
 DOCDIR=%{_defaultdocdir}/yp
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}/ypserv
 #install contrib/ypslave $RPM_BUILD_ROOT%{_sbindir}
-install -m 644 etc/ypserv.conf $RPM_BUILD_ROOT/etc/
-install -m 644 etc/securenets $RPM_BUILD_ROOT/var/yp
+install -m 644 etc/ypserv.conf %{buildroot}%{_sysconfdir}/
+install -m 644 etc/securenets %{buildroot}%{_libexecdir}/yp/securenets.example
+mv %{buildroot}%{_localstatedir}/yp/Makefile 
%{buildroot}%{_libexecdir}/yp/ypMakefile
 # install sysconfig.ypserv
-install -m 644 %SOURCE4 $RPM_BUILD_ROOT/var/adm/fillup-templates/
+install -m 644 %{SOURCE4} %{buildroot}%{_localstatedir}/adm/fillup-templates/
 # install SuSEfirewall2 service script
-install -m 644 

commit ypserv for openSUSE:Factory

2016-11-28 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2016-11-28 15:04:53

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


Package is "ypserv"

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2016-07-01 
10:00:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2016-11-28 
15:04:56.0 +0100
@@ -1,0 +2,5 @@
+Mon Nov 21 19:53:57 UTC 2016 - sweet_...@gmx.de
+
+- add 0001-use-_PATH_VARRUN-from-paths.h.patch [bnc#1011483]
+
+---

New:

  0001-use-_PATH_VARRUN-from-paths.h.patch



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.OduyJn/_old  2016-11-28 15:04:58.0 +0100
+++ /var/tmp/diff_new_pack.OduyJn/_new  2016-11-28 15:04:58.0 +0100
@@ -37,7 +37,9 @@
 Source7:yppasswdd.service
 Source8:ypxfrd.service
 Source9:yppasswdd-systemd-exec
-Patch:  ypserv-2.32.diff
+Patch1: ypserv-2.32.diff
+# PATCH-FIX-UPSTREAM, bnc#011483
+Patch2: 0001-use-_PATH_VARRUN-from-paths.h.patch
 BuildRequires:  gdbm-devel
 BuildRequires:  openslp-devel
 %if %{suse_version} >= 1310
@@ -73,7 +75,8 @@
 
 %prep
 %setup -q
-%patch
+%patch1
+%patch2 -p1
 
 %build
 %configure --enable-fqdn --libexecdir="%{_libexecdir}/yp"

++ 0001-use-_PATH_VARRUN-from-paths.h.patch ++
>From 77bde21fe32194cfe38d1b1437cfa188e2d390d4 Mon Sep 17 00:00:00 2001
From: Ruediger Meier 
Date: Mon, 21 Nov 2016 20:02:12 +0100
Subject: [PATCH 1/2] use _PATH_VARRUN from paths.h

Since 1e5d6333 configure we doesn't check for paths.h anymore. That's
why all pidfiles went to /etc instead of /var/run.

Normally I would simply add AC_CHECK_HEADERS(paths.h) again but
since this project does not check for any other header I simply
remove "#if HAVE_PATHS_H".

Signed-off-by: Ruediger Meier 
---
 lib/pidfile.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/pidfile.h b/lib/pidfile.h
index 47c2f67..d524963 100644
--- a/lib/pidfile.h
+++ b/lib/pidfile.h
@@ -23,9 +23,8 @@
 #include "config.h"
 #endif
 
-#ifdef HAVE_PATHS_H
 #include 
-#endif
+
 #ifndef _PATH_VARRUN
 #define _PATH_VARRUN "/etc/"
 #endif
-- 
1.8.5.6




commit ypserv for openSUSE:Factory

2016-07-01 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2016-07-01 10:00:03

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


Package is "ypserv"

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2016-04-11 
10:27:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2016-07-01 
10:00:08.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 20 13:19:00 CEST 2016 - ku...@suse.de
+
+- Remove syslog.target from *.service files [bsc#983938]
+
+---



Other differences:
--
++ yppasswdd.service ++
--- /var/tmp/diff_new_pack.HRKK2z/_old  2016-07-01 10:00:09.0 +0200
+++ /var/tmp/diff_new_pack.HRKK2z/_new  2016-07-01 10:00:09.0 +0200
@@ -1,7 +1,7 @@
 [Unit]
 Description=NIS/YP Users Passwords Change Server
 Requires=rpcbind.service ypserv.service
-After=syslog.target network.target rpcbind.service ypserv.service
+After=network.target rpcbind.service ypserv.service
 
 [Service]
 Type=notify

++ ypserv.service ++
--- /var/tmp/diff_new_pack.HRKK2z/_old  2016-07-01 10:00:09.0 +0200
+++ /var/tmp/diff_new_pack.HRKK2z/_new  2016-07-01 10:00:09.0 +0200
@@ -1,7 +1,7 @@
 [Unit]
 Description=NIS/YP Server
 Requires=rpcbind.service
-After=syslog.target network.target rpcbind.service slpd.service
+After=network.target rpcbind.service slpd.service
 
 [Service]
 Type=notify

++ ypxfrd.service ++
--- /var/tmp/diff_new_pack.HRKK2z/_old  2016-07-01 10:00:09.0 +0200
+++ /var/tmp/diff_new_pack.HRKK2z/_new  2016-07-01 10:00:09.0 +0200
@@ -1,7 +1,7 @@
 [Unit]
 Description=NIS/YP Maps Transferring Accelerator
 Requires=rpcbind.service ypserv.service
-After=syslog.target network.target rpcbind.service ypserv.service
+After=network.target rpcbind.service ypserv.service
 
 [Service]
 Type=notify




commit ypserv for openSUSE:Factory

2016-04-11 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2016-04-11 10:27:54

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


Package is "ypserv"

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2015-04-10 
09:51:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2016-04-11 
10:27:55.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr  5 12:26:08 CEST 2016 - ku...@suse.de
+
+- Update to version 4.0
+  - use libnsl instead of libnis
+
+---
@@ -4 +10 @@
-- Update to verseion 3.5
+- Update to version 3.5

Old:

  ypserv-3.5.tar.bz2

New:

  ypserv-4.0.tar.bz2



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.E0eBYJ/_old  2016-04-11 10:27:56.0 +0200
+++ /var/tmp/diff_new_pack.E0eBYJ/_new  2016-04-11 10:27:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   ypserv
-Version:3.5
+Version:4.0
 Release:0
 Url:http://www.linux-nis.org/nis/ypserv/
 Summary:YP - (NIS)-Server
@@ -40,14 +40,13 @@
 Patch:  ypserv-2.32.diff
 BuildRequires:  gdbm-devel
 BuildRequires:  openslp-devel
-BuildRequires:  pkgconfig
 %if %{suse_version} >= 1310
-BuildRequires:  pkgconfig(libnis) >= 2.99.8
+BuildRequires:  pkgconfig(libnsl)
 BuildRequires:  pkgconfig(libsystemd-daemon)
 BuildRequires:  pkgconfig(libtirpc)
 %{?systemd_requires}
 %else
-BuildRequires:  libnis-devel >= 2.99.8
+BuildRequires:  libnsl-devel
 BuildRequires:  libtirpc-devel
 %endif
 Requires:   gawk

++ ypserv-3.5.tar.bz2 -> ypserv-4.0.tar.bz2 ++
 3332 lines of diff (skipped)




commit ypserv for openSUSE:Factory

2014-12-16 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2014-12-16 14:48:16

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2014-11-29 
08:39:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2014-12-16 
14:47:49.0 +0100
@@ -1,0 +2,7 @@
+Sat Dec  6 20:49:33 UTC 2014 - jeng...@inai.de
+
+- Run build in parallel. Specfile cleanups: reduce filelists by
+  using wildcards, remove %doc (it is implicit for documentation
+  paths), use rpm macros in place of expansions.
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.94rVpD/_old  2014-12-16 14:47:50.0 +0100
+++ /var/tmp/diff_new_pack.94rVpD/_new  2014-12-16 14:47:50.0 +0100
@@ -19,8 +19,8 @@
 Name:   ypserv
 Version:3.0
 Release:0
-Url:http://www.linux-nis.org/nis/ypserv/
-Summary:YP - (NIS)-Server
+Url:http://linux-nis.org/nis/ypserv/
+Summary:Network Information Service (NIS/YP) server
 License:GPL-2.0
 Group:  Productivity/Networking/NIS
 PreReq: %fillup_prereq
@@ -77,51 +77,41 @@
 %patch
 
 %build
-export CFLAGS=$RPM_OPT_FLAGS
-./configure --prefix=%{_prefix} --enable-fqdn --mandir=%{_mandir}
-make
+%configure --enable-fqdn --libexecdir=%_libexecdir/yp
+make %{?_smp_mflags}
 
 %install
-mkdir -p $RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services
-mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
-mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/yp
-%if %{suse_version} = 1310
-mkdir -p $RPM_BUILD_ROOT%{_unitdir}
-%else
-mkdir -p $RPM_BUILD_ROOT/etc/init.d
-%endif
-DOCDIR=%{_defaultdocdir}/yp
-install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}
-install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}/ypserv
-make install DESTDIR=$RPM_BUILD_ROOT
-#install contrib/ypslave $RPM_BUILD_ROOT/usr/sbin/
-install -m 644 etc/ypserv.conf $RPM_BUILD_ROOT/etc/
-install -m 644 etc/securenets $RPM_BUILD_ROOT/var/yp
+%make_install
+mkdir -p %buildroot/etc/sysconfig/SuSEfirewall2.d/services
+mkdir -p %buildroot/var/adm/fillup-templates
+mkdir -p %buildroot/%_defaultdocdir/yp/ypserv
+#install contrib/ypslave %buildroot/usr/sbin/
+install -m 644 etc/ypserv.conf %buildroot/etc/
+install -m 644 etc/securenets %buildroot/var/yp/
 # install sysconfig.ypserv
-install -m 644 %SOURCE4 $RPM_BUILD_ROOT/var/adm/fillup-templates/
+install -m 644 %SOURCE4 %buildroot/var/adm/fillup-templates/
 # install SuSEfirewall2 service script
-install -m 644 %SOURCE5 
$RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services/ypserv
+install -m 644 %SOURCE5 
%buildroot/etc/sysconfig/SuSEfirewall2.d/services/ypserv
 %if %{suse_version} = 1310
-# install systemd files
-install -m 644 %SOURCE6 $RPM_BUILD_ROOT%{_unitdir}/ypserv.service
-install -m 644 %SOURCE7 $RPM_BUILD_ROOT%{_unitdir}/yppasswdd.service
-install -m 644 %SOURCE8 $RPM_BUILD_ROOT%{_unitdir}/ypxfrd.service
-install -m 755 %SOURCE9 $RPM_BUILD_ROOT%{_prefix}/lib/yp/yppasswdd-systemd-exec
-# create symlink for rcypserv, rcyppasswdd, rcypxfrd
-ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypserv
-ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcyppasswdd
-ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypxfrd
+mkdir -p %buildroot/%_unitdir
+install -m 644 %SOURCE6 %buildroot/%_unitdir/ypserv.service
+install -m 644 %SOURCE7 %buildroot/%_unitdir/yppasswdd.service
+install -m 644 %SOURCE8 %buildroot/%_unitdir/ypxfrd.service
+install -m 755 %SOURCE9 %buildroot/%_libexecdir/yp/yppasswdd-systemd-exec
+ln -s service %buildroot/%_sbindir/rcypserv
+ln -s service %buildroot/%_sbindir/rcyppasswdd
+ln -s service %buildroot/%_sbindir/rcypxfrd
 %else
-# install init scripts
-install -m 755 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/ypserv
-install -m 755 %SOURCE2 $RPM_BUILD_ROOT/etc/init.d/yppasswdd
-install -m 755 %SOURCE3 $RPM_BUILD_ROOT/etc/init.d/ypxfrd
-ln -sf ../../etc/init.d/yppasswdd   $RPM_BUILD_ROOT/usr/sbin/rcyppasswdd
-ln -sf ../../etc/init.d/ypxfrd  $RPM_BUILD_ROOT/usr/sbin/rcypxfrd
-ln -sf ../../etc/init.d/ypserv  $RPM_BUILD_ROOT/usr/sbin/rcypserv
+mkdir -p %buildroot/%_initrddir
+install -m 755 %SOURCE1 %buildroot/%_initrddir/ypserv
+install -m 755 %SOURCE2 %buildroot/%_initrddir/yppasswdd
+install -m 755 %SOURCE3 %buildroot/%_initrddir/ypxfrd
+ln -sf ../../etc/init.d/yppasswdd %buildroot/%_sbindir/rcyppasswdd
+ln -sf ../../etc/init.d/ypxfrd%buildroot/%_sbindir/rcypxfrd
+ln -sf ../../etc/init.d/ypserv%buildroot/%_sbindir/rcypserv
 %endif
 # Remove files which should not be included:

commit ypserv for openSUSE:Factory

2014-11-28 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2014-11-29 08:39:25

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2014-10-25 
08:33:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2014-11-29 
08:39:26.0 +0100
@@ -1,0 +2,24 @@
+Wed Nov  5 14:58:41 CET 2014 - ku...@suse.de
+
+- Update to version 3.0
+  - evyerthing is now ported
+
+---
+Mon Nov  3 11:04:15 CET 2014 - ku...@suse.de
+
+- Update to version 2.99.3
+  - Implement -p option for ypserv
+
+---
+Sat Nov  1 20:48:26 CET 2014 - ku...@suse.de
+
+- Update to version 2.99.2
+  - At least everything compiles now
+
+---
+Fri Oct 31 16:43:58 CET 2014 - ku...@suse.de
+
+- Update to version 2.99.1
+  - Start porting to use ti-rpc interfaces for IPv6 support
+
+---

Old:

  ypserv-2.32.1.tar.bz2

New:

  yppasswdd.init
  ypserv-3.0.tar.bz2
  ypserv.init
  ypxfrd.init



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.0MWcwa/_old  2014-11-29 08:39:28.0 +0100
+++ /var/tmp/diff_new_pack.0MWcwa/_new  2014-11-29 08:39:28.0 +0100
@@ -17,22 +17,20 @@
 
 
 Name:   ypserv
-BuildRequires:  gdbm-devel
-BuildRequires:  openslp-devel
-BuildRequires:  pkgconfig(libsystemd-daemon)
-%{?systemd_requires}
-Requires:   gawk
-Requires:   make
-Requires:   rpcbind
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:2.32.1
+Version:3.0
 Release:0
 Url:http://www.linux-nis.org/nis/ypserv/
 Summary:YP - (NIS)-Server
 License:GPL-2.0
 Group:  Productivity/Networking/NIS
 PreReq: %fillup_prereq
+%if %{suse_version}  1310
+PreReq: %insserv_prereq
+%endif
 Source: ypserv-%{version}.tar.bz2
+Source1:ypserv.init
+Source2:yppasswdd.init
+Source3:ypxfrd.init
 Source4:sysconfig.ypserv
 Source5:SuSEfirewall2.ypserv
 Source6:ypserv.service
@@ -40,6 +38,22 @@
 Source8:ypxfrd.service
 Source9:yppasswdd-systemd-exec
 Patch:  ypserv-2.32.diff
+BuildRequires:  gdbm-devel
+BuildRequires:  openslp-devel
+BuildRequires:  pkgconfig
+%if %{suse_version} = 1310
+BuildRequires:  pkgconfig(libnis) = 2.99.8
+BuildRequires:  pkgconfig(libsystemd-daemon)
+BuildRequires:  pkgconfig(libtirpc)
+%{?systemd_requires}
+%else
+BuildRequires:  libnis-devel = 2.99.8
+BuildRequires:  libtirpc-devel
+%endif
+Requires:   gawk
+Requires:   make
+Requires:   rpcbind
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 The Network Information Service (NIS) provides a simple network
@@ -70,8 +84,12 @@
 %install
 mkdir -p $RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services
 mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
-mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/yp
+mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/yp
+%if %{suse_version} = 1310
 mkdir -p $RPM_BUILD_ROOT%{_unitdir}
+%else
+mkdir -p $RPM_BUILD_ROOT/etc/init.d
+%endif
 DOCDIR=%{_defaultdocdir}/yp
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}
 install -d -m 755 $RPM_BUILD_ROOT${DOCDIR}/ypserv
@@ -83,18 +101,30 @@
 install -m 644 %SOURCE4 $RPM_BUILD_ROOT/var/adm/fillup-templates/
 # install SuSEfirewall2 service script
 install -m 644 %SOURCE5 
$RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services/ypserv
+%if %{suse_version} = 1310
 # install systemd files
 install -m 644 %SOURCE6 $RPM_BUILD_ROOT%{_unitdir}/ypserv.service
 install -m 644 %SOURCE7 $RPM_BUILD_ROOT%{_unitdir}/yppasswdd.service
 install -m 644 %SOURCE8 $RPM_BUILD_ROOT%{_unitdir}/ypxfrd.service
-install -m 755 %SOURCE9 $RPM_BUILD_ROOT%{_libexecdir}/yp/yppasswdd-systemd-exec
-# Remove files which should not be included:
-rm $RPM_BUILD_ROOT%{_libexecdir}/yp/match_printcap
+install -m 755 %SOURCE9 $RPM_BUILD_ROOT%{_prefix}/lib/yp/yppasswdd-systemd-exec
 # create symlink for rcypserv, rcyppasswdd, rcypxfrd
 ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypserv
 ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcyppasswdd
 ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypxfrd
+%else
+# install init scripts
+install -m 755 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/ypserv
+install -m 755 %SOURCE2 $RPM_BUILD_ROOT/etc/init.d/yppasswdd
+install -m 755 %SOURCE3 $RPM_BUILD_ROOT/etc/init.d/ypxfrd
+ln -sf ../../etc/init.d/yppasswdd   

commit ypserv for openSUSE:Factory

2014-10-25 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2014-10-25 08:33:08

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2014-06-01 
19:40:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2014-10-25 
08:33:26.0 +0200
@@ -1,0 +2,7 @@
+Sun Oct 19 19:24:23 UTC 2014 - p.drou...@gmail.com
+
+- Remove redundant %clean section
+- Remove dependency to insserv; the package doesn't contain any
+  sysvinit script
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.s977Eh/_old  2014-10-25 08:33:27.0 +0200
+++ /var/tmp/diff_new_pack.s977Eh/_new  2014-10-25 08:33:27.0 +0200
@@ -31,7 +31,7 @@
 Summary:YP - (NIS)-Server
 License:GPL-2.0
 Group:  Productivity/Networking/NIS
-PreReq: %insserv_prereq %fillup_prereq
+PreReq: %fillup_prereq
 Source: ypserv-%{version}.tar.bz2
 Source4:sysconfig.ypserv
 Source5:SuSEfirewall2.ypserv
@@ -95,9 +95,6 @@
 ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcyppasswdd
 ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypxfrd
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %pre
 %service_add_pre ypserv.service
 %service_add_pre yppasswdd.service

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



commit ypserv for openSUSE:Factory

2014-06-01 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2014-06-01 19:40:15

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2014-03-14 
15:18:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2014-06-01 
19:40:18.0 +0200
@@ -1,0 +2,5 @@
+Tue May 27 16:15:52 CEST 2014 - ku...@suse.de
+
+- Adjust for latest systemd changes
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.5PFkgB/_old  2014-06-01 19:40:19.0 +0200
+++ /var/tmp/diff_new_pack.5PFkgB/_new  2014-06-01 19:40:19.0 +0200
@@ -19,7 +19,7 @@
 Name:   ypserv
 BuildRequires:  gdbm-devel
 BuildRequires:  openslp-devel
-BuildRequires:  pkgconfig(systemd)
+BuildRequires:  pkgconfig(libsystemd-daemon)
 %{?systemd_requires}
 Requires:   gawk
 Requires:   make

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



commit ypserv for openSUSE:Factory

2014-03-14 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2014-03-14 15:18:15

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2014-02-15 
08:08:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2014-03-14 
15:18:16.0 +0100
@@ -1,0 +2,7 @@
+Thu Mar  6 18:12:47 CET 2014 - ku...@suse.de
+
+- Update to version 2.32.1
+  - Fix yphelper help
+  - Adjust for systemd = 209
+
+---

Old:

  ypserv-2.32.tar.bz2

New:

  ypserv-2.32.1.tar.bz2



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.jginxk/_old  2014-03-14 15:18:17.0 +0100
+++ /var/tmp/diff_new_pack.jginxk/_new  2014-03-14 15:18:17.0 +0100
@@ -25,7 +25,7 @@
 Requires:   make
 Requires:   rpcbind
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:2.32
+Version:2.32.1
 Release:0
 Url:http://www.linux-nis.org/nis/ypserv/
 Summary:YP - (NIS)-Server
@@ -39,7 +39,7 @@
 Source7:yppasswdd.service
 Source8:ypxfrd.service
 Source9:yppasswdd-systemd-exec
-Patch:  ypserv-%{version}.diff
+Patch:  ypserv-2.32.diff
 
 %description
 The Network Information Service (NIS) provides a simple network

++ yppasswdd.service ++
--- /var/tmp/diff_new_pack.jginxk/_old  2014-03-14 15:18:17.0 +0100
+++ /var/tmp/diff_new_pack.jginxk/_new  2014-03-14 15:18:17.0 +0100
@@ -1,5 +1,5 @@
 [Unit]
-Description=NIS/YP (Network Information Service) Users Passwords Change Server
+Description=NIS/YP Users Passwords Change Server
 Requires=rpcbind.service ypserv.service
 After=syslog.target network.target rpcbind.service ypserv.service
 

++ ypserv-2.32.tar.bz2 - ypserv-2.32.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ypserv-2.32/ChangeLog new/ypserv-2.32.1/ChangeLog
--- old/ypserv-2.32/ChangeLog   2013-11-06 15:03:52.0 +0100
+++ new/ypserv-2.32.1/ChangeLog 2014-03-06 18:10:13.0 +0100
@@ -1,3 +1,14 @@
+2014-03-06  Thorsten Kukuk  ku...@suse.de
+
+   * release version 2.32.1
+
+   * configure.ac: Adjust sd_notify check for systemd = 209.
+
+2014-01-04  Thorsten Kukuk  ku...@suse.de
+
+   * yphelper/yphelper.c: fix command name.
+   * yphelper/yphelper.8.xml: fix command name.
+
 2013-11-06  Thorsten Kukuk  ku...@suse.de
 
* release version 2.32
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ypserv-2.32/NEWS new/ypserv-2.32.1/NEWS
--- old/ypserv-2.32/NEWS2013-11-06 15:14:13.0 +0100
+++ new/ypserv-2.32.1/NEWS  2014-03-06 18:09:25.0 +0100
@@ -5,6 +5,9 @@
 Please send bug reports, questions and suggestions to ku...@linux-nis.org.
 
 
+Version 2.32.1
+* Adjust for systemd = 209
+
 Version 2.32
 * Update autoconf/automake
 * ypserv: remove broken SIGHUP support.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ypserv-2.32/configure new/ypserv-2.32.1/configure
--- old/ypserv-2.32/configure   2013-11-06 15:07:41.0 +0100
+++ new/ypserv-2.32.1/configure 2014-03-06 18:08:58.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for ypserv 2.32.
+# Generated by GNU Autoconf 2.69 for ypserv 2.32.1.
 #
 # Report bugs to ku...@linux-nis.org.
 #
@@ -580,8 +580,8 @@
 # Identity of this package.
 PACKAGE_NAME='ypserv'
 PACKAGE_TARNAME='ypserv'
-PACKAGE_VERSION='2.32'
-PACKAGE_STRING='ypserv 2.32'
+PACKAGE_VERSION='2.32.1'
+PACKAGE_STRING='ypserv 2.32.1'
 PACKAGE_BUGREPORT='ku...@linux-nis.org'
 PACKAGE_URL=''
 
@@ -1300,7 +1300,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures ypserv 2.32 to adapt to many kinds of systems.
+\`configure' configures ypserv 2.32.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1366,7 +1366,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of ypserv 2.32:;;
+ short | recursive ) echo Configuration of ypserv 2.32.1:;;
esac
   cat \_ACEOF
 
@@ -1473,7 +1473,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-ypserv configure 2.32
+ypserv configure 2.32.1
 generated by GNU Autoconf 2.69
 
 

commit ypserv for openSUSE:Factory

2014-02-14 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2014-02-15 08:08:39

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2013-11-07 
09:15:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2014-02-15 
08:08:40.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 14 15:25:34 CET 2014 - ku...@suse.de
+
+- Add rc* compat symlinks
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.mdBucy/_old  2014-02-15 08:08:41.0 +0100
+++ /var/tmp/diff_new_pack.mdBucy/_new  2014-02-15 08:08:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ypserv
 #
-# 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
@@ -90,6 +90,10 @@
 install -m 755 %SOURCE9 $RPM_BUILD_ROOT%{_libexecdir}/yp/yppasswdd-systemd-exec
 # Remove files which should not be included:
 rm $RPM_BUILD_ROOT%{_libexecdir}/yp/match_printcap
+# create symlink for rcypserv, rcyppasswdd, rcypxfrd
+ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypserv
+ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcyppasswdd
+ln -s /sbin/service $RPM_BUILD_ROOT%{_sbindir}/rcypxfrd
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -154,9 +158,12 @@
 %{_libexecdir}/yp/ypxfr
 %{_libexecdir}/yp/ypxfr_*
 %{_libexecdir}/yp/yppasswdd-systemd-exec
-/usr/sbin/rpc.ypxfrd
-/usr/sbin/rpc.yppasswdd
-/usr/sbin/yppush
-/usr/sbin/ypserv
+%{_sbindir}/rpc.ypxfrd
+%{_sbindir}/rpc.yppasswdd
+%{_sbindir}/yppush
+%{_sbindir}/ypserv
+%{_sbindir}/rcypserv
+%{_sbindir}/rcyppasswdd
+%{_sbindir}/rcypxfrd
 
 %changelog

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



commit ypserv for openSUSE:Factory

2013-11-07 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2013-11-07 09:15:39

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


Package is ypserv

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2013-04-19 
10:04:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2013-11-07 
09:15:40.0 +0100
@@ -1,0 +2,9 @@
+Wed Nov  6 15:15:08 CET 2013 - ku...@suse.de
+
+- Update to version 2.32
+  - Update autoconf/automake
+  - ypserv: remove broken SIGHUP support.
+  - /var/yp/Makefile: read MINUID/MINGID from /etc/login.defs
+- Remove old sysv init scripts
+
+---

Old:

  yppasswdd.init
  ypserv-2.31.diff
  ypserv-2.31.tar.bz2
  ypserv.init
  ypxfrd.init

New:

  ypserv-2.32.diff
  ypserv-2.32.tar.bz2



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.rGUEFT/_old  2013-11-07 09:15:41.0 +0100
+++ /var/tmp/diff_new_pack.rGUEFT/_new  2013-11-07 09:15:41.0 +0100
@@ -25,7 +25,7 @@
 Requires:   make
 Requires:   rpcbind
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:2.31
+Version:2.32
 Release:0
 Url:http://www.linux-nis.org/nis/ypserv/
 Summary:YP - (NIS)-Server
@@ -33,9 +33,6 @@
 Group:  Productivity/Networking/NIS
 PreReq: %insserv_prereq %fillup_prereq
 Source: ypserv-%{version}.tar.bz2
-Source1:ypserv.init
-Source2:yppasswdd.init
-Source3:ypxfrd.init
 Source4:sysconfig.ypserv
 Source5:SuSEfirewall2.ypserv
 Source6:ypserv.service
@@ -71,7 +68,6 @@
 make
 
 %install
-mkdir -p $RPM_BUILD_ROOT/etc/init.d
 mkdir -p $RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services
 mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates
 mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/yp
@@ -83,9 +79,6 @@
 #install contrib/ypslave $RPM_BUILD_ROOT/usr/sbin/
 install -m 644 etc/ypserv.conf $RPM_BUILD_ROOT/etc/
 install -m 644 etc/securenets $RPM_BUILD_ROOT/var/yp
-install -m 755 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/ypserv
-install -m 755 %SOURCE2 $RPM_BUILD_ROOT/etc/init.d/yppasswdd
-install -m 755 %SOURCE3 $RPM_BUILD_ROOT/etc/init.d/ypxfrd
 # install sysconfig.ypserv
 install -m 644 %SOURCE4 $RPM_BUILD_ROOT/var/adm/fillup-templates/
 # install SuSEfirewall2 service script
@@ -126,9 +119,6 @@
 %defattr(-,root,root)
 %doc NEWS README TODO COPYING ChangeLog
 /var/adm/fillup-templates/sysconfig.ypserv
-%config /etc/init.d/yppasswdd
-%config /etc/init.d/ypserv
-%config /etc/init.d/ypxfrd
 %config(noreplace) /var/yp/Makefile
 %config(noreplace) /var/yp/securenets
 %config(noreplace) /etc/ypserv.conf

++ ypserv-2.31.diff - ypserv-2.32.diff ++

++ ypserv-2.31.tar.bz2 - ypserv-2.32.tar.bz2 ++
 6487 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/ypserv-2.31/ChangeLog new/ypserv-2.32/ChangeLog
--- old/ypserv-2.31/ChangeLog   2013-04-11 11:26:51.0 +0200
+++ new/ypserv-2.32/ChangeLog   2013-11-06 15:03:52.0 +0100
@@ -1,3 +1,25 @@
+2013-11-06  Thorsten Kukuk  ku...@suse.de
+
+   * release version 2.32
+
+   * ypserv/ypserv.c: Remove sig_hup, ignore SIG_HUP.
+   * ypserv/ypserv.8.xml: Remove SIG HUP section.
+   * lib/yp_db.c: fix return value for tcbdbopen in error case.
+   Patch by Edgar Hoch, RHBZ#1004110
+
+   * scripts/ypMakefile.in: Read MINUID/MINGID from /etc/login.defs
+   Patch by Honza Horak, RHBZ#1004090
+
+2013-10-07  Thorsten Kukuk  ku...@suse.de
+
+   * yppush/yppush.8.xml: Fix typo (reported by
+Masatake YAMATO yam...@redhat.com).
+
+2013-07-22  Thorsten Kukuk  ku...@suse.de
+
+   * lib/ypserv_conf.c (load_ypserv_conf): Use int instead
+   of c because of fgetc/EOF.
+
 2013-04-11  Thorsten Kukuk  ku...@suse.de
 
* release version 2.31
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/ypserv-2.31/Makefile.am new/ypserv-2.32/Makefile.am
--- old/ypserv-2.31/Makefile.am 2012-05-30 14:21:30.0 +0200
+++ new/ypserv-2.32/Makefile.am 2013-11-06 

commit ypserv for openSUSE:Factory

2012-05-31 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2012-06-01 07:25:15

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


Package is ypserv, Maintainer is ku...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2011-09-23 
12:53:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2012-06-01 
07:25:17.0 +0200
@@ -1,0 +2,6 @@
+Wed May 30 14:03:37 CEST 2012 - ku...@suse.de
+
+- Update to version 2.28
+  - Lot of bug fixes.
+
+---

Old:

  ypserv-2.25.diff
  ypserv-2.25.tar.bz2

New:

  ypserv-2.28.diff
  ypserv-2.28.tar.bz2



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.CB9IS9/_old  2012-06-01 07:25:19.0 +0200
+++ /var/tmp/diff_new_pack.CB9IS9/_new  2012-06-01 07:25:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ypserv
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -15,19 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   ypserv
-BuildRequires:  gdbm-devel openslp-devel
-License:GPL-2.0
-Group:  Productivity/Networking/NIS
-Requires:   make portmap gawk
-AutoReqProv:on
+BuildRequires:  gdbm-devel
+BuildRequires:  openslp-devel
+Requires:   gawk
+Requires:   make
+Requires:   portmap
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:2.25
-Release:1
+Version:2.28
+Release:0
+Url:http://www.linux-nis.org/nis/ypserv/
 Summary:YP - (NIS)-Server
+License:GPL-2.0
+Group:  Productivity/Networking/NIS
 PreReq: %insserv_prereq %fillup_prereq
 Source: ypserv-%{version}.tar.bz2
 Source1:ypserv.init

++ yppasswdd.init ++
--- /var/tmp/diff_new_pack.CB9IS9/_old  2012-06-01 07:25:19.0 +0200
+++ /var/tmp/diff_new_pack.CB9IS9/_new  2012-06-01 07:25:19.0 +0200
@@ -18,6 +18,7 @@
 # Required-Stop: $remote_fs $portmap
 # Default-Start: 3 5
 # Default-Stop: 0 1 2 6
+# Short-Description: Start ypppasswd daemon
 # Description: Start yppasswd daemon to allow NIS users
 #  to change the password
 ### END INIT INFO

++ ypserv-2.25.diff - ypserv-2.28.diff ++

++ ypserv-2.25.tar.bz2 - ypserv-2.28.tar.bz2 ++
 2305 lines of diff (skipped)

++ ypserv.init ++
--- /var/tmp/diff_new_pack.CB9IS9/_old  2012-06-01 07:25:19.0 +0200
+++ /var/tmp/diff_new_pack.CB9IS9/_new  2012-06-01 07:25:19.0 +0200
@@ -20,6 +20,7 @@
 # Required-Stop: $remote_fs $portmap
 # Default-Start: 3 5
 # Default-Stop: 0 1 2 6
+# Short-Description: Start ypserv daemon
 # Description: Start ypserv to distribute NIS maps
 ### END INIT INFO
 

++ ypxfrd.init ++
--- /var/tmp/diff_new_pack.CB9IS9/_old  2012-06-01 07:25:19.0 +0200
+++ /var/tmp/diff_new_pack.CB9IS9/_new  2012-06-01 07:25:19.0 +0200
@@ -18,6 +18,7 @@
 # Required-Stop: $remote_fs $portmap
 # Default-Start: 3 5
 # Default-Stop: 0 1 2 6
+# Short-Description: Start rpc.ypxfrd daemon
 # Description: Start rpc.ypxfrd to allow faster NIS map transfers
 ### END INIT INFO
 

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



commit ypserv for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2011-12-06 19:21:04

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


Package is ypserv, Maintainer is ku...@suse.com

Changes:




Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.FRUyDZ/_old  2011-12-06 20:02:51.0 +0100
+++ /var/tmp/diff_new_pack.FRUyDZ/_new  2011-12-06 20:02:51.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   ypserv
 BuildRequires:  gdbm-devel openslp-devel
-License:GPLv2
+License:GPL-2.0
 Group:  Productivity/Networking/NIS
 Requires:   make portmap gawk
 AutoReqProv:on

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



commit ypserv for openSUSE:Factory

2011-08-25 Thread h_root

Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory
checked in at Thu Aug 25 10:47:44 CEST 2011.




--- ypserv/ypserv.changes   2010-09-24 12:39:25.0 +0200
+++ /mounts/work_src_done/STABLE/ypserv/ypserv.changes  2011-05-02 
17:33:41.0 +0200
@@ -1,0 +2,6 @@
+Mon May  2 17:32:57 CEST 2011 - ku...@suse.de
+
+- Update to version 2.25
+  - Fix small issues found by tool analysis
+
+---

calling whatdependson for head-i586


Old:

  ypserv-2.24.diff
  ypserv-2.24.tar.bz2

New:

  ypserv-2.25.diff
  ypserv-2.25.tar.bz2



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.FkO8F1/_old  2011-08-25 10:46:41.0 +0200
+++ /var/tmp/diff_new_pack.FkO8F1/_new  2011-08-25 10:46:41.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package ypserv (Version 2.24)
+# spec file for package ypserv
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -25,7 +25,7 @@
 Requires:   make portmap gawk
 AutoReqProv:on
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Version:2.24
+Version:2.25
 Release:1
 Summary:YP - (NIS)-Server
 PreReq: %insserv_prereq %fillup_prereq

++ ypserv-2.24.diff - ypserv-2.25.diff ++

++ ypserv-2.24.tar.bz2 - ypserv-2.25.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ypserv-2.24/ChangeLog new/ypserv-2.25/ChangeLog
--- old/ypserv-2.24/ChangeLog   2010-09-24 11:45:36.0 +0200
+++ new/ypserv-2.25/ChangeLog   2011-04-29 16:35:58.0 +0200
@@ -1,3 +1,22 @@
+2011-04-29  Thorsten Kukuk  ku...@suse.de
+
+   * yphelper/yphelper.c (is_master): Fix memory leak.
+   * rpc.yppasswdd/yppasswdd.c (main): Check if we could open
+   /dev/null.
+   * ypserv/ypserv.c (main): Likewise.
+   * rpc.yppasswdd/update.c (update_files): Close all files.
+   * revnetgroup/getnetgrent.c: Return if malloc fails.
+   * makedbm/makedbm.c (create_file): Close file if not stdin.
+   * lib/yp_db.c (_db_open): Document not implemented cache size.
+   * lib/pidfile.c (create_pidfile): Exit if we cannot create
+   pid file.
+   Based on patches from Honza Horak hho...@redhat.com.
+
+2010-10-29  Thorsten Kukuk  ku...@suse.de
+
+   * rpc.yppasswdd/update.c (remove_password): Remove password
+   for logging.
+
 2010-09-24  Thorsten Kukuk  ku...@suse.de
 
* release version 2.24
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ypserv-2.24/NEWS new/ypserv-2.25/NEWS
--- old/ypserv-2.24/NEWS2010-09-24 11:47:46.0 +0200
+++ new/ypserv-2.25/NEWS2011-04-29 15:51:40.0 +0200
@@ -5,6 +5,9 @@
 Please send bug reports, questions and suggestions to ku...@linux-nis.org.
 
 
+Version 2.25
+* Lot of small bug fixes/improved error handling
+
 Version 2.24
 * rpc.yppasswdd: Fix -x option
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ypserv-2.24/configure new/ypserv-2.25/configure
--- old/ypserv-2.24/configure   2010-09-24 11:58:44.0 +0200
+++ new/ypserv-2.25/configure   2011-04-29 16:36:22.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.63 for ypserv 2.24.
+# Generated by GNU Autoconf 2.63 for ypserv 2.25.
 #
 # Report bugs to ku...@linux-nis.org.
 #
@@ -596,8 +596,8 @@
 # Identity of this package.
 PACKAGE_NAME='ypserv'
 PACKAGE_TARNAME='ypserv'
-PACKAGE_VERSION='2.24'
-PACKAGE_STRING='ypserv 2.24'
+PACKAGE_VERSION='2.25'
+PACKAGE_STRING='ypserv 2.25'
 PACKAGE_BUGREPORT='ku...@linux-nis.org'
 
 ac_unique_file=ypserv/ypserv.c
@@ -1315,7 +1315,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures ypserv 2.24 to adapt to many kinds of systems.
+\`configure' configures ypserv 2.25 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1381,7 +1381,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of ypserv 2.24:;;
+ short | recursive ) echo Configuration of ypserv 2.25:;;
esac
   cat \_ACEOF
 
@@ -1481,7 +1481,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-ypserv configure 2.24
+ypserv configure 2.25
 generated by GNU Autoconf 2.63
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000,