From 1f832b7df80be0c2fd85a00e66ea3053a5e8d05e Mon Sep 17 00:00:00 2001 From: cvsdist Date: Sep 09 2004 15:16:22 +0000 Subject: auto-import changelog data from ypbind-1.11-1.src.rpm Tue Jun 11 2002 Alex Larsson 1.11-1 - Updated to 1.11 from upstream. - Removed patche that went in upstream. - Updated broadcast patch Thu May 23 2002 Tim Powers - automated rebuild --- diff --git a/.cvsignore b/.cvsignore index 451346a..9ddeccc 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -ypbind-mt-1.10.tar.bz2 +ypbind-mt-1.11.tar.bz2 diff --git a/sources b/sources index 018d617..d9f2eea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -48acfe5dcbd39bbc802cffcfe55b9e71 ypbind-mt-1.10.tar.bz2 +c37228a2877a59578227ff9e1b1a060b ypbind-mt-1.11.tar.bz2 diff --git a/ypbind-1.11-broadcast.patch b/ypbind-1.11-broadcast.patch new file mode 100644 index 0000000..f46e1d1 --- /dev/null +++ b/ypbind-1.11-broadcast.patch @@ -0,0 +1,25 @@ +--- ypbind-mt-1.11/src/ypbind-mt.c.broadcast Tue Jun 11 06:50:48 2002 ++++ ypbind-mt-1.11/src/ypbind-mt.c Tue Jun 11 06:54:34 2002 +@@ -545,19 +545,9 @@ + exit (1); + } + +- if (!use_broadcast) +- { +- if (load_config (0) != 0) +- { +- fputs (_("No NIS server and no -broadcast option specified.\n"), stderr); +- fprintf (stderr, +- _("Add a NIS server to the %s configuration file,\n"), +- configfile); +- fputs (_("or start ypbind with the -broadcast option.\n"), stderr); +- exit (1); +- } +- } +- else ++ if (!use_broadcast && (load_config (0) != 0)) ++ use_broadcast = 1; ++ if (use_broadcast) + add_server (domain, NULL, 0); + + unlink_bindingdir (); diff --git a/ypbind-1.11-gettextdomain.patch b/ypbind-1.11-gettextdomain.patch new file mode 100644 index 0000000..2a96820 --- /dev/null +++ b/ypbind-1.11-gettextdomain.patch @@ -0,0 +1,11 @@ +--- ypbind-mt-1.11/po/Makevars.fixit Tue Jun 11 07:19:05 2002 ++++ ypbind-mt-1.11/po/Makevars Tue Jun 11 07:19:07 2002 +@@ -1,7 +1,7 @@ + # Makefile variables for PO directory in any package using GNU gettext. + + # Usually the message domain is the same as the package name. +-DOMAIN = $(PACKAGE) ++DOMAIN = ypbind + + # These two variables depend on the location of this directory. + subdir = po diff --git a/ypbind.spec b/ypbind.spec index cc17cd7..2456ed0 100644 --- a/ypbind.spec +++ b/ypbind.spec @@ -1,15 +1,14 @@ Summary: The NIS daemon which binds NIS clients to an NIS domain. Name: ypbind -Version: 1.10 -Release: 7 +Version: 1.11 +Release: 1 Copyright: GPL Group: System Environment/Daemons Source0: ftp://ftp.us.kernel.org/pub/linux/utils/net/NIS/ypbind-mt-%{PACKAGE_VERSION}.tar.bz2 Source1: ypbind.init -Patch1: ypbind-mt-1.6-broadcast.patch +Patch1: ypbind-1.11-broadcast.patch Patch2: ypbind-1.8-dos.patch -Patch3: ypbind-1.10-no_mt.patch -Patch4: ypbind-1.10-config.patch +Patch3: ypbind-1.11-gettextdomain.patch Prereq: /sbin/chkconfig Requires: portmap, yp-tools, bash >= 2.0 Epoch: 3 @@ -34,10 +33,9 @@ also need to install the ypserv package to a machine on your network. %prep %setup -q -n ypbind-mt-%{version} -%patch1 -p0 +%patch1 -p1 -b .broadcast #%patch2 -p1 %patch3 -p1 -b .fixit -%patch4 -p1 -b .config %build %configure --sbindir=/sbin @@ -83,6 +81,14 @@ exit 0 %doc README NEWS %changelog +* Tue Jun 11 2002 Alex Larsson 1.11-1 +- Updated to 1.11 from upstream. +- Removed patche that went in upstream. +- Updated broadcast patch + +* Thu May 23 2002 Tim Powers +- automated rebuild + * Mon Mar 25 2002 Alex Larsson 1.10-7 - Get failure message right in init script (#37463 again)