Received: by mail.netbsd.org (Postfix, from userid 605) id 4C89C85BCF; Wed, 1 Aug 2018 07:10:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4259B84F17 for ; Wed, 1 Aug 2018 07:10:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id IjZ5qK0zyVUV for ; Wed, 1 Aug 2018 07:10:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7E0B984D9D for ; Wed, 1 Aug 2018 07:10:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74FD7FBEC; Wed, 1 Aug 2018 07:10:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1533107427276370" MIME-Version: 1.0 Date: Wed, 1 Aug 2018 07:10:27 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mail/qmail To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20180801071027.74FD7FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1533107427276370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Wed Aug 1 07:10:27 UTC 2018 Modified Files: pkgsrc/mail/qmail: Makefile options.mk Log Message: Depend on new enough sysutils/checkpassword{,-pam} such that qmail-run can (by itself depending on pkgtools/pkg_alternatives) expect to find "nbcheckpassword". Remove 'qmail-rejectutils' option, which will become an unconditional dependency in qmail-run. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.96 -r1.97 pkgsrc/mail/qmail/Makefile cvs rdiff -u -r1.50 -r1.51 pkgsrc/mail/qmail/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1533107427276370 Content-Disposition: inline Content-Length: 2171 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/qmail/Makefile diff -u pkgsrc/mail/qmail/Makefile:1.96 pkgsrc/mail/qmail/Makefile:1.97 --- pkgsrc/mail/qmail/Makefile:1.96 Sun Jul 29 23:26:44 2018 +++ pkgsrc/mail/qmail/Makefile Wed Aug 1 07:10:27 2018 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.96 2018/07/29 23:26:44 schmonz Exp $ +# $NetBSD: Makefile,v 1.97 2018/08/01 07:10:27 schmonz Exp $ # DISTNAME= netqmail-1.06 PKGNAME= qmail-1.03 -PKGREVISION= 35 +PKGREVISION= 36 CATEGORIES= mail MASTER_SITES= http://qmail.org/ Index: pkgsrc/mail/qmail/options.mk diff -u pkgsrc/mail/qmail/options.mk:1.50 pkgsrc/mail/qmail/options.mk:1.51 --- pkgsrc/mail/qmail/options.mk:1.50 Sun Jul 29 23:26:44 2018 +++ pkgsrc/mail/qmail/options.mk Wed Aug 1 07:10:27 2018 @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.50 2018/07/29 23:26:44 schmonz Exp $ +# $NetBSD: options.mk,v 1.51 2018/08/01 07:10:27 schmonz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.qmail PKG_SUPPORTED_OPTIONS+= eai inet6 pam sasl syncdir tls -PKG_SUPPORTED_OPTIONS+= qmail-customerror qmail-rejectutils qmail-srs +PKG_SUPPORTED_OPTIONS+= qmail-customerror qmail-srs PKG_SUGGESTED_OPTIONS+= eai sasl syncdir tls -PKG_SUGGESTED_OPTIONS+= qmail-customerror qmail-rejectutils qmail-srs +PKG_SUGGESTED_OPTIONS+= qmail-customerror qmail-srs # Formerly optional patches, now unconditionally applied: QMAILPATCHES= netqmail:${DEFAULT_DISTFILES} @@ -66,9 +66,9 @@ PATCH_DIST_STRIP.${EAI_PATCH}= -p1 .endif .if !empty(PKG_OPTIONS:Mpam) -DEPENDS+= checkpassword-pam-[0-9]*:../../sysutils/checkpassword-pam +DEPENDS+= checkpassword-pam>=0.99nb1:../../sysutils/checkpassword-pam .else -DEPENDS+= checkpassword-[0-9]*:../../sysutils/checkpassword +DEPENDS+= checkpassword>=0.90nb1:../../sysutils/checkpassword .endif .if !empty(PKG_OPTIONS:Mqmail-customerror) @@ -79,10 +79,6 @@ SITES.${CUSTOMERROR_PATCH}= https://note PATCH_DIST_STRIP.${CUSTOMERROR_PATCH}=-p1 .endif -.if !empty(PKG_OPTIONS:Mqmail-rejectutils) -DEPENDS+= qmail-rejectutils-[0-9]*:../../mail/qmail-rejectutils -.endif - PLIST_VARS+= srs .if !empty(PKG_OPTIONS:Mqmail-srs) . include "../../mail/libsrs2/buildlink3.mk" --_----------=_1533107427276370--