svn commit: r535330 - in branches/2020Q2/security/pwauth: . files
Rene Ladan
rene at FreeBSD.org
Fri May 15 19:49:51 UTC 2020
Author: rene
Date: Fri May 15 19:49:50 2020
New Revision: 535330
URL: https://svnweb.freebsd.org/changeset/ports/535330
Log:
MFH: r535006
security/pwauth: fix fetch and undeprecate
PR: 243650 [1]
PR: 244289 [2]
Submitted by: Benjamin Lutz [1]
Submitted by: ian [2]
Approved by: maintainer
Approved by: ports-secteam (joneum)
Added:
branches/2020Q2/security/pwauth/files/patch-fail__check.c
- copied unchanged from r535006, head/security/pwauth/files/patch-fail__check.c
branches/2020Q2/security/pwauth/files/patch-pwauth.h
- copied unchanged from r535006, head/security/pwauth/files/patch-pwauth.h
Deleted:
branches/2020Q2/security/pwauth/files/patch-utmpx
Modified:
branches/2020Q2/security/pwauth/Makefile
branches/2020Q2/security/pwauth/files/patch-checkfaillog.c
branches/2020Q2/security/pwauth/files/patch-config.h
Directory Properties:
branches/2020Q2/ (props changed)
Modified: branches/2020Q2/security/pwauth/Makefile
==============================================================================
--- branches/2020Q2/security/pwauth/Makefile Fri May 15 19:49:09 2020 (r535329)
+++ branches/2020Q2/security/pwauth/Makefile Fri May 15 19:49:50 2020 (r535330)
@@ -4,12 +4,11 @@
PORTNAME= pwauth
PORTVERSION= 2.3.11
CATEGORIES= security www
-MASTER_SITES= http://www.unixpapa.com/software/
+MASTER_SITES= http://www.unixpapa.com/software/ \
+ https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/pwauth/
MAINTAINER= eg at fbsd.lt
COMMENT= Unix Web Authenticator
-
-BROKEN= unfetchable
LICENSE= BSD3CLAUSE
Modified: branches/2020Q2/security/pwauth/files/patch-checkfaillog.c
==============================================================================
--- branches/2020Q2/security/pwauth/files/patch-checkfaillog.c Fri May 15 19:49:09 2020 (r535329)
+++ branches/2020Q2/security/pwauth/files/patch-checkfaillog.c Fri May 15 19:49:50 2020 (r535330)
@@ -1,10 +1,13 @@
---- checkfaillog.c.orig 2012-02-11 13:22:09.000000000 +0200
-+++ checkfaillog.c 2012-02-11 13:22:42.000000000 +0200
-@@ -32,6 +32,7 @@
+--- checkfaillog.c.orig 2020-04-11 16:27:51 UTC
++++ checkfaillog.c
+@@ -32,8 +32,9 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <sys/types.h>
- #include <utmp.h>
+-#include <utmp.h>
++#include <utmpx.h>
#include <pwd.h>
+
+ #include "config.h"
Modified: branches/2020Q2/security/pwauth/files/patch-config.h
==============================================================================
--- branches/2020Q2/security/pwauth/files/patch-config.h Fri May 15 19:49:09 2020 (r535329)
+++ branches/2020Q2/security/pwauth/files/patch-config.h Fri May 15 19:49:50 2020 (r535330)
@@ -1,5 +1,5 @@
---- config.h.orig 2012-02-11 15:52:24.000000000 +0200
-+++ config.h 2012-02-11 15:52:06.000000000 +0200
+--- config.h.orig 2013-10-04 13:59:08 UTC
++++ config.h
@@ -123,7 +123,7 @@
/* #define SHADOW_NONE /**/
@@ -29,7 +29,7 @@
/* If NOLOGIN_FILE is defined to the full path name of a file, then the
-@@ -278,7 +278,7 @@
+@@ -279,7 +279,7 @@
* to change the uid list.
*/
@@ -38,7 +38,7 @@
/* If MIN_UNIX_UID is defined to an integer, logins with uid numbers less than
-@@ -290,7 +290,7 @@
+@@ -291,7 +291,7 @@
* given value will be accepted).
*/
Copied: branches/2020Q2/security/pwauth/files/patch-fail__check.c (from r535006, head/security/pwauth/files/patch-fail__check.c)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2020Q2/security/pwauth/files/patch-fail__check.c Fri May 15 19:49:50 2020 (r535330, copy of r535006, head/security/pwauth/files/patch-fail__check.c)
@@ -0,0 +1,11 @@
+--- fail_check.c.orig 2020-04-11 16:28:08 UTC
++++ fail_check.c
+@@ -35,7 +35,7 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
+-#include <utmp.h>
++#include <utmpx.h>
+
+ #include "config.h"
+ #include "fail_log.h"
Copied: branches/2020Q2/security/pwauth/files/patch-pwauth.h (from r535006, head/security/pwauth/files/patch-pwauth.h)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2020Q2/security/pwauth/files/patch-pwauth.h Fri May 15 19:49:50 2020 (r535330, copy of r535006, head/security/pwauth/files/patch-pwauth.h)
@@ -0,0 +1,11 @@
+--- pwauth.h.orig 2020-04-11 16:28:30 UTC
++++ pwauth.h
+@@ -73,7 +73,7 @@
+
+ #ifdef UNIX_LASTLOG
+ # define NEED_UID
+-# include <utmp.h>
++# include <utmpx.h>
+ # ifdef HAVE_LASTLOG_H
+ # include <lastlog.h>
+ # endif
More information about the svn-ports-all
mailing list