Date: Mon, 16 Apr 2018 12:06:03 +0000 (UTC) From: "Lev A. Serebryakov" <lev@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467479 - in head/security/pam_pwdfile: . files Message-ID: <201804161206.w3GC63ir067303@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lev Date: Mon Apr 16 12:06:03 2018 New Revision: 467479 URL: https://svnweb.freebsd.org/changeset/ports/467479 Log: Update to latest release 1.0. Reset maintainer to myself (maintainer approved). PR: 227494 Submitted by: lev Approved by: mschout@gkg.net Added: head/security/pam_pwdfile/files/patch-md5.c (contents, props changed) head/security/pam_pwdfile/files/patch-pam_pwdfile.c (contents, props changed) Deleted: head/security/pam_pwdfile/files/patch-bigcrypt.c Modified: head/security/pam_pwdfile/Makefile head/security/pam_pwdfile/distinfo Modified: head/security/pam_pwdfile/Makefile ============================================================================== --- head/security/pam_pwdfile/Makefile Mon Apr 16 11:53:03 2018 (r467478) +++ head/security/pam_pwdfile/Makefile Mon Apr 16 12:06:03 2018 (r467479) @@ -2,25 +2,28 @@ # $FreeBSD$ PORTNAME= pam_pwdfile -PORTVERSION= 0.99 -PORTREVISION= 1 +PORTVERSION= 1.0 CATEGORIES= security -MASTER_SITES= http://cpbotha.net/files/pam_pwdfile/ -MAINTAINER= mschout@gkg.net +MAINTAINER= lev@FreeBSD.org COMMENT= Pam module for authenticating with flat passwd files +USE_GITHUB= yes +GH_ACCOUNT= tiwe-de +GH_PROJECT= libpam-pwdfile +GH_TAGNAME= v${PORTVERSION} + USES= uidfix MAKEFILE= ${FILESDIR}/Makefile.bsd PLIST_FILES= lib/pam_pwdfile.so -PORTDOCS= README INSTALL changelog +PORTDOCS= README INSTALL CFLAGS+= -I${WRKSRC} OPTIONS_DEFINE= DOCS post-patch: - ${REINPLACE_CMD} -e 's|#include <features.h>||g' ${WRKSRC}/pam_pwdfile.c +# ${REINPLACE_CMD} -e 's|#include <features.h>||g' ${WRKSRC}/pam_pwdfile.c ${CP} ${FILESDIR}/_pam_macros.h ${WRKSRC} post-install: Modified: head/security/pam_pwdfile/distinfo ============================================================================== --- head/security/pam_pwdfile/distinfo Mon Apr 16 11:53:03 2018 (r467478) +++ head/security/pam_pwdfile/distinfo Mon Apr 16 12:06:03 2018 (r467479) @@ -1,2 +1,3 @@ -SHA256 (pam_pwdfile-0.99.tar.gz) = 973420f203976ac98508bb253b33a23d189cfbaf72143670964470e84085688e -SIZE (pam_pwdfile-0.99.tar.gz) = 16994 +TIMESTAMP = 1523618004 +SHA256 (tiwe-de-libpam-pwdfile-1.0-v1.0_GH0.tar.gz) = 5b8db1397cff9cadfd1bb96f53c134b787ab0e6a0fbedb71040541d340313ba2 +SIZE (tiwe-de-libpam-pwdfile-1.0-v1.0_GH0.tar.gz) = 13418 Added: head/security/pam_pwdfile/files/patch-md5.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pam_pwdfile/files/patch-md5.c Mon Apr 16 12:06:03 2018 (r467479) @@ -0,0 +1,20 @@ +--- md5.c.orig 2018-04-13 14:15:16.302782000 +0300 ++++ md5.c 2018-04-13 14:25:07.662155000 +0300 +@@ -17,7 +17,7 @@ + */ + + #include <string.h> +-#include <byteswap.h> ++#include <sys/endian.h> + #include "md5.h" + + #ifndef HIGHFIRST +@@ -25,7 +25,7 @@ + #else + static void byteReverse(unsigned char *buf, unsigned longs) { + for (; longs; --longs, buf +=4) +- *((uint32_t *) buf) = bswap_32(*((uint32_t *) buf)); ++ *((uint32_t *) buf) = bswap32(*((uint32_t *) buf)); + } + #endif + Added: head/security/pam_pwdfile/files/patch-pam_pwdfile.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pam_pwdfile/files/patch-pam_pwdfile.c Mon Apr 16 12:06:03 2018 (r467479) @@ -0,0 +1,33 @@ +--- pam_pwdfile.c.orig 2018-04-13 14:25:49.414568000 +0300 ++++ pam_pwdfile.c 2018-04-13 14:42:33.040919000 +0300 +@@ -38,18 +38,7 @@ + * OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +-#ifdef USE_CRYPT_R +-#define _GNU_SOURCE +-#include <crypt.h> +-#else +-#ifndef _XOPEN_SOURCE +-#define _XOPEN_SOURCE 700 +-#endif +-#ifndef _BSD_SOURCE +-#define _BSD_SOURCE +-#endif +-#endif +- ++#include <stdint.h> + #include <syslog.h> + #include <stdio.h> + #include <stdlib.h> +@@ -66,7 +55,9 @@ + + #define PAM_SM_AUTH + #include <security/pam_modules.h> +-#include <security/pam_ext.h> ++/* #include <security/pam_ext.h> */ ++ ++#define pam_syslog(H, C, ...) syslog(C, __VA_ARGS__) + + #include "md5.h" + #include "bigcrypt.h"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804161206.w3GC63ir067303>