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 229C91A9217 for ; Fri, 30 Oct 2020 10:23:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8E8F784D4C; Fri, 30 Oct 2020 10:23:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 165A584D29 for ; Fri, 30 Oct 2020 10:23:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id wSJS7qAOTfjV for ; Fri, 30 Oct 2020 10:23:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 928BD84CDA for ; Fri, 30 Oct 2020 10:23:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8B58AFB28; Fri, 30 Oct 2020 10:23:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1604053422209860" MIME-Version: 1.0 Date: Fri, 30 Oct 2020 10:23:42 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/net/tinydyndns-run To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20201030102342.8B58AFB28@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. --_----------=_1604053422209860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Fri Oct 30 10:23:42 UTC 2020 Modified Files: pkgsrc/net/tinydyndns-run: Makefile pkgsrc/net/tinydyndns-run/files: tinydyndns-pop3d.sh Log Message: Instead of a fiddly shell script, use nopop3d as the fake POP3 server. Bump version. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/tinydyndns-run/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/tinydyndns-run/files/tinydyndns-pop3d.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1604053422209860 Content-Disposition: inline Content-Length: 1676 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/tinydyndns-run/Makefile diff -u pkgsrc/net/tinydyndns-run/Makefile:1.3 pkgsrc/net/tinydyndns-run/Makefile:1.4 --- pkgsrc/net/tinydyndns-run/Makefile:1.3 Tue Oct 27 10:25:33 2020 +++ pkgsrc/net/tinydyndns-run/Makefile Fri Oct 30 10:23:42 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2020/10/27 10:25:33 schmonz Exp $ +# $NetBSD: Makefile,v 1.4 2020/10/30 10:23:42 schmonz Exp $ # -DISTNAME= tinydyndns-run-20201027 +DISTNAME= tinydyndns-run-20201030 CATEGORIES= net MASTER_SITES= # empty DISTFILES= # empty @@ -10,6 +10,7 @@ MAINTAINER= schmonz@NetBSD.org COMMENT= Configures tinydyndns to serve and update records LICENSE= 2-clause-bsd +DEPENDS+= nopop3d-[0-9]*:../../mail/nopop3d DEPENDS+= qmail-[0-9]*:../../mail/qmail DEPENDS+= tinydyndns-[0-9]*:../../net/tinydyndns DEPENDS+= cvm-[0-9]*:../../security/cvm Index: pkgsrc/net/tinydyndns-run/files/tinydyndns-pop3d.sh diff -u pkgsrc/net/tinydyndns-run/files/tinydyndns-pop3d.sh:1.2 pkgsrc/net/tinydyndns-run/files/tinydyndns-pop3d.sh:1.3 --- pkgsrc/net/tinydyndns-run/files/tinydyndns-pop3d.sh:1.2 Mon Oct 19 07:15:55 2020 +++ pkgsrc/net/tinydyndns-run/files/tinydyndns-pop3d.sh Fri Oct 30 10:23:42 2020 @@ -1,22 +1,7 @@ #!@SH@ # -# $NetBSD: tinydyndns-pop3d.sh,v 1.2 2020/10/19 07:15:55 schmonz Exp $ +# $NetBSD: tinydyndns-pop3d.sh,v 1.3 2020/10/30 10:23:42 schmonz Exp $ # # @PKGNAME@ fake POP3 server. -main() { - echo '+OK ' - read input - if [ "$input" = 'LIST' ]; then - echo '+OK' - echo '.' - elif [ "$input" = 'STAT' ]; then - echo '+OK 0 0' - fi - read input - echo '+OK' - return 0 -} - -main "$@" -exit $? +exec @PREFIX@/bin/nopop3d "$@" --_----------=_1604053422209860--