Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3DAC01A921F for ; Fri, 16 Oct 2020 10:33:31 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D4F4A84D80; Fri, 16 Oct 2020 10:33:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A77D84D5F for ; Fri, 16 Oct 2020 10:33:30 +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 GsmQD2t211Lq for ; Fri, 16 Oct 2020 10:33:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AF5E184D2E for ; Fri, 16 Oct 2020 10:33:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ABF11FB28; Fri, 16 Oct 2020 10:33:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1602844409123460" MIME-Version: 1.0 Date: Fri, 16 Oct 2020 10:33:29 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/net/tinydyndns To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20201016103329.ABF11FB28@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. --_----------=_1602844409123460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Fri Oct 16 10:33:29 UTC 2020 Modified Files: pkgsrc/net/tinydyndns: Makefile Log Message: Since the DNS service is tinydns(8), add dependency on djbdns. Since the POP3 service doesn't need qmail-pop3d(8), just qmail-popup(8) -- or the equivalent authup(8) -- tighten qmail dependency to qmail-acceptutils. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/tinydyndns/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1602844409123460 Content-Disposition: inline Content-Length: 984 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/tinydyndns/Makefile diff -u pkgsrc/net/tinydyndns/Makefile:1.2 pkgsrc/net/tinydyndns/Makefile:1.3 --- pkgsrc/net/tinydyndns/Makefile:1.2 Thu Oct 8 20:20:26 2020 +++ pkgsrc/net/tinydyndns/Makefile Fri Oct 16 10:33:29 2020 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2020/10/08 20:20:26 schmonz Exp $ +# $NetBSD: Makefile,v 1.3 2020/10/16 10:33:29 schmonz Exp $ DISTNAME= tinydyndns-0.4.2 DJBDNS_DISTNAME= djbdns-1.05 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${HOMEPAGE} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DJBDNS_DISTNAME}${EXTRACT_SUFX} @@ -12,7 +13,8 @@ HOMEPAGE= http://smarden.org/tinydyndns COMMENT= Simple and powerful dynamic DNS solution LICENSE= modified-bsd -DEPENDS+= qmail-[0-9]*:../../mail/qmail +DEPENDS+= qmail-acceptutils-[0-9]*:../../mail/qmail-acceptutils +DEPENDS+= djbdns-[0-9]*:../../net/djbdns DEPENDS+= cvm-[0-9]*:../../security/cvm DEPENDS+= daemontools-[0-9]*:../../sysutils/daemontools --_----------=_1602844409123460--