diff --git a/.gitignore b/.gitignore index fae6099..2c5e4ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1 @@ -yp-tools-2.11.tar.bz2 -/yp-tools-2.12.tar.bz2 -/yp-tools-2.14.tar.bz2 -/yp-tools-3.0.1.tar.bz2 -/yp-tools-3.3.tar.bz2 -/yp-tools-yp-tools-4.2.2.tar.gz -/v4.2.3.tar.gz +yp-tools-2.9.tar.bz2 diff --git a/sources b/sources index 1320751..f7ca57c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v4.2.3.tar.gz) = 2fcdaaeb8af4c3f62aa571a488c04561356681fc18b919ef728cfc1941578870cce74b136959f49e4ab04f988a79252163c1abe30b357788cb0b5faca7b5d147 +19de06a04129ec26773f9198e086fcd4 yp-tools-2.9.tar.bz2 diff --git a/yp-tools-2.12-adjunct.patch b/yp-tools-2.12-adjunct.patch deleted file mode 100644 index a32b69d..0000000 --- a/yp-tools-2.12-adjunct.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -up yp-tools-2.12/src/yppasswd.c.adjunct yp-tools-2.12/src/yppasswd.c ---- yp-tools-2.12/src/yppasswd.c.adjunct 2012-04-23 13:17:47.000988833 +0200 -+++ yp-tools-2.12/src/yppasswd.c 2012-04-23 13:18:01.209802938 +0200 -@@ -774,6 +775,7 @@ - /* We can't check the password with shadow passwords enabled. We - * leave the checking to yppasswdd */ - if (uid != 0 && strcmp (pwd->pw_passwd, "x") != 0 && -+ 0 != strncmp (pwd->pw_passwd, "##", 2) && /* don't check passwords using passwd.adjunct feature */ - strcmp (pwd->pw_passwd, hashpass ) != 0) - { - int passwdlen = get_passwd_len (pwd->pw_passwd); diff --git a/yp-tools-2.12-crypt.patch b/yp-tools-2.12-crypt.patch deleted file mode 100644 index 5e8ca41..0000000 --- a/yp-tools-2.12-crypt.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff -up yp-tools-2.12/src/yppasswd.c.crypt yp-tools-2.12/src/yppasswd.c ---- yp-tools-2.12/src/yppasswd.c.crypt 2012-04-23 13:01:35.599721168 +0200 -+++ yp-tools-2.12/src/yppasswd.c 2012-04-23 13:16:18.251261293 +0200 -@@ -772,9 +778,16 @@ main (int argc, char **argv) - { - int passwdlen = get_passwd_len (pwd->pw_passwd); - char *sane_passwd = alloca (passwdlen + 1); -+ char *crypted; - strncpy (sane_passwd, pwd->pw_passwd, passwdlen); - sane_passwd[passwdlen] = 0; -- if (strcmp (crypt (s, sane_passwd), sane_passwd)) -+ crypted = crypt (s, sane_passwd); -+ if(crypted == NULL) -+ { -+ fprintf (stderr, _("Sorry - crypt() failed.\n")); -+ return 1; -+ } -+ if (strcmp (crypted, sane_passwd)) - { - fprintf (stderr, _("Sorry.\n")); - return 1; -@@ -789,6 +802,7 @@ main (int argc, char **argv) - char *error_msg; - #endif /* USE_CRACKLIB */ - char *buf, salt[37], *p = NULL; -+ char *crypted; - int tries = 0; - - buf = (char *) malloc (129); -@@ -869,7 +883,13 @@ main (int argc, char **argv) - break; - } - -- yppwd.newpw.pw_passwd = strdup (crypt (buf, salt)); -+ crypted = crypt (buf, salt); -+ if(crypted == NULL) { -+ fprintf (stderr, _("Sorry - crypt() failed.\n")); -+ return 1; -+ } else { -+ yppwd.newpw.pw_passwd = strdup (crypted); -+ } - } - - if (f_flag) diff --git a/yp-tools-2.12-hash.patch b/yp-tools-2.12-hash.patch deleted file mode 100644 index e5aaa0b..0000000 --- a/yp-tools-2.12-hash.patch +++ /dev/null @@ -1,68 +0,0 @@ -diff -up yp-tools-2.12/man/yppasswd.1.in.hash yp-tools-2.12/man/yppasswd.1.in ---- yp-tools-2.12/man/yppasswd.1.in.hash 2011-09-09 16:18:49.469037058 +0200 -+++ yp-tools-2.12/man/yppasswd.1.in 2011-09-09 16:20:19.101030930 +0200 -@@ -81,6 +81,12 @@ for authentication with the - .BR yppasswdd (8) - daemon. Subsequently, the - program prompts for the updated information: -+.P -+If we use shadowing passwords using passwd.adjunct, SHA-512 will be -+used for hashing a new password by default. If we want to use MD5, -+SHA_256 or older DES, we need to set the environment variable -+YP_PASSWD_HASH. Possible values are "DES", "MD5", "SHA-256" and -+"SHA-512" (value is case-insensitive). - .\" - .\" - .IP "\fByppasswd\fP or \fB-p\fP" -diff -up yp-tools-2.12/src/yppasswd.c.hash yp-tools-2.12/src/yppasswd.c ---- yp-tools-2.12/src/yppasswd.c.hash 2011-09-09 16:20:35.360029823 +0200 -+++ yp-tools-2.12/src/yppasswd.c 2011-09-09 16:25:21.589010245 +0200 -@@ -514,6 +514,32 @@ create_random_salt (char *salt, int num_ - close (fd); - } - -+ -+/* -+ * Reads environment variable YP_PASSWD_HASH and returns hash id. -+ * Possible values are MD5, SHA-256, SHA-512 and DES. -+ * If other value is set or it is not set at all, SHA-512 is used. -+ */ -+static int -+get_env_hash_id() -+{ -+ const char *v = getenv("YP_PASSWD_HASH"); -+ if (!v) -+ return SHA_512; -+ -+ if (!strcasecmp(v, "DES")) -+ return DES; -+ -+ if (!strcasecmp(v, "SHA-256")) -+ return SHA_256; -+ -+ if (!strcasecmp(v, "MD5")) -+ return MD5; -+ -+ return SHA_512; -+} -+ -+ - int - main (int argc, char **argv) - { -@@ -723,6 +749,15 @@ main (int argc, char **argv) - - hash_id = get_hash_id (pwd->pw_passwd); - -+ /* If we use passwd.adjunct, there is no magic value like $1$ in the -+ * beginning of password, but ##username instead. Thus, SHA_512 will be -+ * used for hashing a new password by default. If we want to use DES, -+ * MD5 or SHA_256, we need to set the environment variable -+ * YP_PASSWD_HASH (e.g. YP_PASSWD_HASH=DES). -+ */ -+ if (strncmp(pwd->pw_passwd, "##", 2) == 0) -+ hash_id = get_env_hash_id(); -+ - /* Preserve 'rounds=$' (if present) in case of SHA-2 */ - if (hash_id == SHA_256 || hash_id == SHA_512) - { diff --git a/yp-tools-2.7-md5.patch b/yp-tools-2.7-md5.patch new file mode 100644 index 0000000..df823f1 --- /dev/null +++ b/yp-tools-2.7-md5.patch @@ -0,0 +1,109 @@ +--- yp-tools-2.8/src/yppasswd.c.orig 2002-12-05 08:49:20.000000000 -0500 ++++ yp-tools-2.8/src/yppasswd.c 2003-04-23 14:58:13.000000000 -0400 +@@ -49,6 +49,8 @@ + #include + #include + #include ++#include ++#include + #include + #include + #include +@@ -436,11 +438,44 @@ verifypassword (struct passwd *pwd, char + + #endif + ++#define bin_to_ascii(c) ((c)>=38?((c)-38+'a'):(c)>=12?((c)-12+'A'):(c)+'.') ++ ++static void ++create_random_salt (char *salt, int num_chars) ++{ ++ int fd; ++ unsigned char c; ++ int i; ++ int res; ++ ++ fd = open("/dev/urandom", O_RDONLY); ++ ++ for (i = 0; i < num_chars; i++) ++ { ++ res = 0; ++ ++ if (fd != 0) ++ res = read (fd, &c, 1); ++ ++ if (res != 1) ++ c = random(); ++ ++ salt[i] = bin_to_ascii(c & 0x3f); ++ } ++ ++ salt[num_chars] = 0; ++ ++ if (fd != 0) ++ close (fd); ++} ++ ++ + int + main (int argc, char **argv) + { + char *s, *progname, *domainname = NULL, *user = NULL, *master = NULL; + int f_flag = 0, l_flag = 0, p_flag = 0, error, status; ++ int has_md5_passwd = 0; + struct yppasswd yppwd; + struct passwd *pwd; + CLIENT *clnt; +@@ -451,6 +486,8 @@ main (int argc, char **argv) + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + ++ srandom (time (NULL)); ++ + if ((s = strrchr (argv[0], '/')) != NULL) + progname = s + 1; + else +@@ -642,6 +679,9 @@ main (int argc, char **argv) + cp = stpcpy (hashpass, "##"); + strcpy (cp, pwd->pw_name); + ++ if (strncmp(pwd->pw_passwd, "$1$", 3) == 0) ++ has_md5_passwd = 1; ++ + /* We can't check the password with shadow passwords enabled. We + * leave the checking to yppasswdd */ + if (uid != 0 && strcmp (pwd->pw_passwd, "x") != 0 && +@@ -676,13 +716,11 @@ main (int argc, char **argv) + + if (p_flag) + { +-#define bin_to_ascii(c) ((c)>=38?((c)-38+'a'):(c)>=12?((c)-12+'A'):(c)+'.') + #ifdef USE_CRACKLIB + char *error_msg; + #endif /* USE_CRACKLIB */ +- char *buf, salt[2], *p = NULL; ++ char *buf, salt[12], *p = NULL; + int tries = 0; +- time_t tm; + + buf = (char *) malloc (129); + +@@ -733,9 +771,15 @@ main (int argc, char **argv) + } + } + +- time (&tm); +- salt[0] = bin_to_ascii (tm & 0x3f); +- salt[1] = bin_to_ascii ((tm >> 6) & 0x3f); ++ if (!has_md5_passwd) ++ create_random_salt (salt, 2); ++ else ++ { ++ /* The user already had a MD5 password, so it's safe to ++ * use a MD5 password again */ ++ strcpy (salt, "$1$"); ++ create_random_salt (salt+3, 8); ++ } + + yppwd.newpw.pw_passwd = strdup (crypt (buf, salt)); + } diff --git a/yp-tools-3.3-no-nss-nis6.patch b/yp-tools-3.3-no-nss-nis6.patch deleted file mode 100644 index 5abab57..0000000 --- a/yp-tools-3.3-no-nss-nis6.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -ru yp-tools-3.3-orig/Makefile.am yp-tools-3.3/Makefile.am ---- yp-tools-3.3-orig/Makefile.am 2014-10-29 15:28:02.000000000 +0100 -+++ yp-tools-3.3/Makefile.am 2014-12-10 18:47:11.864137423 +0100 -@@ -5,7 +5,7 @@ - # - AUTOMAKE_OPTIONS = 1.5 gnits dist-bzip2 - # --SUBDIRS = lib src nss_nis6 po man etc -+SUBDIRS = lib src po man etc - - CLEANFILES = *~ - -diff -ru yp-tools-3.3-orig/Makefile.in yp-tools-3.3/Makefile.in ---- yp-tools-3.3-orig/Makefile.in 2014-12-05 12:44:37.000000000 +0100 -+++ yp-tools-3.3/Makefile.in 2014-12-10 18:16:20.996550012 +0100 -@@ -382,7 +382,7 @@ - # - AUTOMAKE_OPTIONS = 1.5 gnits dist-bzip2 - # --SUBDIRS = lib src nss_nis6 po man etc -+SUBDIRS = lib src po man etc - CLEANFILES = *~ - ACLOCAL_AMFLAGS = -I m4 - M4_FILES = m4/getline.m4 diff --git a/yp-tools-4.2.2-strict-prototypes.patch b/yp-tools-4.2.2-strict-prototypes.patch deleted file mode 100644 index 546eb6a..0000000 --- a/yp-tools-4.2.2-strict-prototypes.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- yp-tools-yp-tools-4.2.2/src/yppasswd.c.strict-protorypes 2017-02-21 15:51:03.452034055 +0100 -+++ yp-tools-yp-tools-4.2.2/src/yppasswd.c 2017-02-21 15:51:14.996030455 +0100 -@@ -547,7 +547,7 @@ create_random_salt (char *salt, int num_ - * If other value is set or it is not set at all, SHA-512 is used. - */ - static int --get_env_hash_id() -+get_env_hash_id(void) - { - const char *v = getenv("YP_PASSWD_HASH"); - if (!v) diff --git a/yp-tools-4.2.3-yppasswd-exclamation_mark.patch b/yp-tools-4.2.3-yppasswd-exclamation_mark.patch deleted file mode 100644 index c85be96..0000000 --- a/yp-tools-4.2.3-yppasswd-exclamation_mark.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -ur yp-tools-4.2.3/src/yppasswd.c yp-tools-4.2.3/src/yppasswd.c ---- yp-tools-4.2.3/src/yppasswd.c 2018-03-27 15:47:48.000000000 +0200 -+++ yp-tools-4.2.3/src/yppasswd.c 2022-08-16 19:02:41.727441211 +0200 -@@ -689,6 +689,11 @@ - } - } - -+ if (strchr(pwd->pw_passwd, '!') != NULL || strchr(pwd->pw_passwd, '*') != NULL) { -+ printf("%s: The account is locked or has no password. Please unlock the account or set an initial password\n", progname); -+ return 1; -+ } -+ - /* Initialize password information */ - memset (&yppwd, '\0', sizeof (yppwd)); - yppwd.newpw.pw_passwd = pwd->pw_passwd; diff --git a/yp-tools-4.2.3-yppasswd.patch b/yp-tools-4.2.3-yppasswd.patch deleted file mode 100644 index 4c680e3..0000000 --- a/yp-tools-4.2.3-yppasswd.patch +++ /dev/null @@ -1,19 +0,0 @@ - author Filip Januš (fjanus@redhat.com) - date 29. 10. 2019 - - -diff -ur yp-tools-4.2.3/src/yppasswd.c yp-tools-master/src/yppasswd.c ---- yp-tools-4.2.3/src/yppasswd.c 2018-03-27 15:47:48.000000000 +0200 -+++ yp-tools-master/src/yppasswd.c 2019-10-29 12:00:29.000000000 +0100 -@@ -281,6 +281,11 @@ - CLIENT *clnt; - - clnt = clnt_create (master, YPPROG, YPVERS, "udp"); -+ -+ /* clnt_create can return NULL in some cases */ -+ if (clnt == NULL) -+ return NULL; -+ - clnt->cl_auth = authunix_create_default (); - - if (name == NULL) diff --git a/yp-tools.spec b/yp-tools.spec index 9e04312..aff31c6 100644 --- a/yp-tools.spec +++ b/yp-tools.spec @@ -1,30 +1,19 @@ -Summary: NIS (or YP) client programs +Summary: NIS (or YP) client programs. Name: yp-tools -Version: 4.2.3 -Release: 23%{?dist} -License: GPL-2.0-only - -URL: https://www.thkukuk.de/nis/nis/yp-tools/ -Source: https://github.com/thkukuk/yp-tools/archive/v%{version}.tar.gz - -Patch1: yp-tools-2.12-hash.patch -Patch2: yp-tools-2.12-crypt.patch -Patch3: yp-tools-2.12-adjunct.patch -Patch4: yp-tools-4.2.2-strict-prototypes.patch -Patch5: yp-tools-4.2.3-yppasswd.patch -Patch6: yp-tools-4.2.3-yppasswd-exclamation_mark.patch - -BuildRequires: make -BuildRequires: libxcrypt-devel -BuildRequires: autoconf, automake, gettext-devel, libtool, libtirpc-devel, libnsl2-devel -Requires: ypbind >= 3:2.4-2 -Requires: glibc - -%global __filter_GLIBC_PRIVATE 1 +Version: 2.9 +Release: 4 +License: GPLv2 +Group: System Environment/Base +Source: ftp://ftp.kernel.org/pub/linux/utils/net/NIS/yp-tools-%{version}.tar.bz2 +Url: http://www.linux-nis.org/nis/yp-tools/index.html +Patch1: yp-tools-2.7-md5.patch +Obsoletes: yppasswd, yp-clients +Requires: ypbind +Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description The Network Information Service (NIS) is a system which provides -network information (login names, passwords, home directories, groupinformation) to all of the machines on a network. NIS can enable +network information (login names, passwords, home directories, group information) to all of the machines on a network. NIS can enable users to login on any machine on the network, as long as the machine has the NIS client programs running and the user's password is @@ -42,245 +31,34 @@ on your network. You will also need to install the ypbind package on every machine running NIS client programs. If you need an NIS server, you'll need to install the ypserv package on one machine on the network. -%package devel -Summary: NIS (or YP) client programs -Requires: yp-tools - -%description devel -Install yp-tools-devel package for developing applications that use yp-tools - - %prep -%autosetup -n %{name}-%{version} -p1 - -autoreconf -i -f -v +%setup -q +%patch1 -p1 -b .md5 %build - -export CFLAGS="$CFLAGS %{optflags} -Wno-cast-function-type" - -# If needed the yppasswd can be deprecated by --enable-call-passwd %configure --disable-domainname - -%make_build +make %install +rm -rf $RPM_BUILD_ROOT make DESTDIR="$RPM_BUILD_ROOT" INSTALL_PROGRAM=install install %find_lang %name +%clean +rm -rf $RPM_BUILD_ROOT + %files -f %{name}.lang +%defattr(-,root,root) %doc AUTHORS COPYING README ChangeLog NEWS etc/nsswitch.conf -%doc THANKS -%{_bindir}/* - - +%doc THANKS TODO +/usr/bin/* %{_mandir}/*/* -%{_sbindir}/* +/usr/sbin/* /var/yp/nicknames +%dir /var/yp %changelog -* Fri Jul 17 2026 Fedora Release Engineering - 4.2.3-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild - -* Sat Jan 17 2026 Fedora Release Engineering - 4.2.3-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild - -* Fri Jul 25 2025 Fedora Release Engineering - 4.2.3-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Sat Feb 01 2025 Björn Esser - 4.2.3-20 -- Add explicit BR: libxcrypt-devel - -* Sun Jan 19 2025 Fedora Release Engineering - 4.2.3-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Sat Jul 20 2024 Fedora Release Engineering - 4.2.3-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Tue Jan 30 2024 Ondrej Sloup - 4.2.3-17 -- Update license tag to the SPDX format (GPL-2.0-only) -- Fix /etc/passwd flags for locked and deactivated account (rhbz#2093381) - -* Sat Jan 27 2024 Fedora Release Engineering - 4.2.3-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sat Jul 22 2023 Fedora Release Engineering - 4.2.3-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Sat Jan 21 2023 Fedora Release Engineering - 4.2.3-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Sat Jul 23 2022 Fedora Release Engineering - 4.2.3-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Sat Jan 22 2022 Fedora Release Engineering - 4.2.3-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Nov 12 2021 Björn Esser - 4.2.3-11 -- Rebuild(libnsl2) - -* Fri Jul 23 2021 Fedora Release Engineering - 4.2.3-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Thu Jan 28 2021 Fedora Release Engineering - 4.2.3-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Jul 29 2020 Fedora Release Engineering - 4.2.3-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Fri Jan 31 2020 Fedora Release Engineering - 4.2.3-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Oct 29 2019 Filip Januš - 4.2.3-6 -- Add yppasswd patch -- Bug https://bugzilla.redhat.com/show_bug.cgi?id=1671452 -- Pull request https://github.com/thkukuk/yp-tools/pull/7 - -* Sat Jul 27 2019 Fedora Release Engineering - 4.2.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sun Feb 03 2019 Fedora Release Engineering - 4.2.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Mon Jan 14 2019 Björn Esser - 4.2.3-3 -- Rebuilt for libcrypt.so.2 (#1666033) - -* Sat Jul 14 2018 Fedora Release Engineering - 4.2.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Apr 19 2018 Petr Kubat - 4.2.3-1 -- Update to version 4.2.3 - -* Thu Mar 15 2018 Matej Mužila - 4.2.2-7 -- Disable cast-function-type warning - -* Fri Feb 09 2018 Fedora Release Engineering - 4.2.2-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sat Jan 20 2018 Björn Esser - 4.2.2-5 -- Rebuilt for switch to libxcrypt - -* Thu Aug 03 2017 Fedora Release Engineering - 4.2.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 4.2.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Mon May 29 2017 Matej Mužila - 4.2.2-2 -- Require ypbind >= 3:2.4-2 - -* Fri May 19 2017 Matej Mužila - 4.2.2-1 -- Update to version 4.2.2 supporting IPv6 - -* Sat Feb 11 2017 Fedora Release Engineering - 2.14-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Mon Nov 28 2016 Petr Kubat - 2.14-7 -- Modified passwd.adjunct patch by Gilbert E. Detillieux (#1297955) - -* Fri Feb 05 2016 Fedora Release Engineering - 2.14-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 2.14-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Aug 18 2014 Fedora Release Engineering - 2.14-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 2.14-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 2.14-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Mon May 06 2013 Honza Horak - 2.14-1 -- New upstream version 2.14 - -* Mon Mar 25 2013 Honza Horak - 2.12-13 -- Fix build for aarch64 - -* Fri Feb 15 2013 Fedora Release Engineering - 2.12-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Mon Sep 24 2012 Honza Horak - 2.12-12 -- Minor spec file fixes - -* Sun Jul 22 2012 Fedora Release Engineering - 2.12-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Wed Jul 11 2012 Honza Horak - 2.12-10 -- Minor spec file fixes - -* Mon Apr 23 2012 Honza Horak - 2.12-9 -- Do not check old passwords using passwd.adjunct feature -- Patch from Paul Wouters to handle crypt() returning NULL - Resolves: #814803 - -* Sat Jan 14 2012 Fedora Release Engineering - 2.12-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Fri Sep 09 2011 Honza Horak - 2.12-7 -- Added YP_PASSWD_HASH environment variable to set default - algorithm for hashing a new password - Resolves: #699666 - -* Wed May 04 2011 Honza Horak - 2.12-6 -- Applied -gethost patch to check return value - (rhbz#698619) - -* Fri Mar 18 2011 Honza Horak - 2.12-5 -- Applied -typo patch to fix a grammar mistake - (rhbz#668743) - -* Tue Feb 08 2011 Fedora Release Engineering - 2.12-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Tue Nov 23 2010 Karel Klic - 2.12-3 -- Reverted previous change - -* Tue Nov 23 2010 Karel Klic - 2.12-2 -- Added patch that removes ypclnt.c from being compiled into - ypmatch (rhbz#546149) - -* Fri Nov 19 2010 Karel Klic - 2.12-1 -- New upstream version - -* Fri Nov 19 2010 Karel Klic - 2.11-2 -- Added patch to fix yppasswd utility when used with shadow - passwords (rhbz#653921) -- Removed %%clean section - -* Tue Apr 20 2010 Karel Klic - 2.11-1 -- New upstream release -- MD5, SHA-2 passwords patch merged by upstream -- Removed BuildRoot tag - -* Thu Apr 15 2010 Karel Klic - 2.10-3 -- Added a new patch -passwords, which merges -md5 and -sha-2 patches - together, and adds proper MD5/SHA support to verifypassword() - #514061 - -* Mon Mar 01 2010 Karel Klic - 2.10-2 -- /var/yp is owned by the filesystem package (#569383) - -* Thu Dec 10 2009 Karel Klic - 2.10-1 -- Updated to new version -- Removed unnecessary obsoletes - -* Mon Aug 10 2009 Ville Skyttä - 2.9-8 -- Convert specfile to UTF-8. - -* Mon Jul 27 2009 Fedora Release Engineering - 2.9-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Mar 4 2009 Vitezslav Crhonek - 2.9-6 -- Add SHA-2 password hashes support - Resolves: #487607 - -* Wed Feb 25 2009 Fedora Release Engineering - 2.9-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - * Mon Aug 11 2008 Jason L Tibbitts III - 2.9-4 - Fix license tag. @@ -354,7 +132,7 @@ make DESTDIR="$RPM_BUILD_ROOT" INSTALL_PROGRAM=install install * Sun Jun 24 2001 Elliot Lee - Bump release + rebuild. -* Mon Feb 26 2001 Trond Eivind Glomsrød +* Mon Feb 26 2001 Trond Eivind Glomsrød - langify * Wed Sep 27 2000 Florian La Roche