Received: by mail.netbsd.org (Postfix, from userid 605) id 69E2E84F60; Sun, 15 Jul 2018 16:12:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8E24E84F60 for ; Sun, 15 Jul 2018 16:10:33 +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 pAOSR2ruKpjW for ; Sun, 15 Jul 2018 16:10:32 +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 C175584E3C for ; Sun, 15 Jul 2018 16:10:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BE25BFBEC; Sun, 15 Jul 2018 16:10:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153167103220770" MIME-Version: 1.0 Date: Sun, 15 Jul 2018 16:10:32 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/net To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20180715161032.BE25BFBEC@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. --_----------=_153167103220770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sun Jul 15 16:10:32 UTC 2018 Modified Files: pkgsrc/net: Makefile Added Files: pkgsrc/net/dnscrypt-proxy2: DESCR Makefile PLIST distinfo Log Message: Add a package for dnscrypt-proxy2. PR pkg/53384 by Nia Alarie. A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTP/2. To generate a diff of this commit: cvs rdiff -u -r1.1218 -r1.1219 pkgsrc/net/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/net/dnscrypt-proxy2/DESCR \ pkgsrc/net/dnscrypt-proxy2/Makefile pkgsrc/net/dnscrypt-proxy2/PLIST \ pkgsrc/net/dnscrypt-proxy2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153167103220770 Content-Disposition: inline Content-Length: 2781 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/Makefile diff -u pkgsrc/net/Makefile:1.1218 pkgsrc/net/Makefile:1.1219 --- pkgsrc/net/Makefile:1.1218 Sat Jul 7 12:37:52 2018 +++ pkgsrc/net/Makefile Sun Jul 15 16:10:32 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1218 2018/07/07 12:37:52 bsiegert Exp $ +# $NetBSD: Makefile,v 1.1219 2018/07/15 16:10:32 bsiegert Exp $ # COMMENT= Networking tools @@ -107,6 +107,7 @@ SUBDIR+= djbdns-run SUBDIR+= dlint SUBDIR+= dnscap SUBDIR+= dnscheck +SUBDIR+= dnscrypt-proxy2 SUBDIR+= dnsdist SUBDIR+= dnsmasq SUBDIR+= dnstop Added files: Index: pkgsrc/net/dnscrypt-proxy2/DESCR diff -u /dev/null pkgsrc/net/dnscrypt-proxy2/DESCR:1.1 --- /dev/null Sun Jul 15 16:10:32 2018 +++ pkgsrc/net/dnscrypt-proxy2/DESCR Sun Jul 15 16:10:32 2018 @@ -0,0 +1,2 @@ +A flexible DNS proxy, with support for modern encrypted DNS protocols +such as DNSCrypt v2 and DNS-over-HTTP/2. Index: pkgsrc/net/dnscrypt-proxy2/Makefile diff -u /dev/null pkgsrc/net/dnscrypt-proxy2/Makefile:1.1 --- /dev/null Sun Jul 15 16:10:32 2018 +++ pkgsrc/net/dnscrypt-proxy2/Makefile Sun Jul 15 16:10:32 2018 @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2018/07/15 16:10:32 bsiegert Exp $ + +PKGNAME= dnscrypt-proxy2-2.0.15 +DISTNAME= dnscrypt-proxy-${PKGVERSION_NOREV} +CATEGORIES= net security +MASTER_SITES= ${MASTER_SITE_GITHUB:=jedisct1/} +GITHUB_PROJECT= dnscrypt-proxy +GITHUB_TAG= ${PKGVERSION_NOREV} + +HOMEPAGE= https://github.com/jedisct1/dnscrypt-proxy +COMMENT= DNS proxy with support for encrypted protocols +LICENSE= isc + +EXTRACT_USING= bsdtar +USE_TOOLS+= pax + +GO_SRCPATH= github.com/jedisct1/dnscrypt-proxy/ +GO_DIST_BASE= ${DISTNAME} + +do-install: + ${RUN} cd ${WRKDIR}; [ ! -d bin ] || ${PAX} -rw bin ${DESTDIR}${PREFIX} + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/dnscrypt-proxy2/PLIST diff -u /dev/null pkgsrc/net/dnscrypt-proxy2/PLIST:1.1 --- /dev/null Sun Jul 15 16:10:32 2018 +++ pkgsrc/net/dnscrypt-proxy2/PLIST Sun Jul 15 16:10:32 2018 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2018/07/15 16:10:32 bsiegert Exp $ +bin/dnscrypt-proxy Index: pkgsrc/net/dnscrypt-proxy2/distinfo diff -u /dev/null pkgsrc/net/dnscrypt-proxy2/distinfo:1.1 --- /dev/null Sun Jul 15 16:10:32 2018 +++ pkgsrc/net/dnscrypt-proxy2/distinfo Sun Jul 15 16:10:32 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/07/15 16:10:32 bsiegert Exp $ + +SHA1 (dnscrypt-proxy-2.0.15.tar.gz) = f348d81d32ebc80638ab494692a6f08e3eabd79f +RMD160 (dnscrypt-proxy-2.0.15.tar.gz) = c4a1b4babe7cac742c61031dab5c4f13238cf4c5 +SHA512 (dnscrypt-proxy-2.0.15.tar.gz) = 4517ab7b7eb1474f8c9e133a289caf6c02f472b51b910f1fbe1e5ffd6d389943626c8878e68f7f27a47b00301a427dfe9c563bc82b67cafab32f4ab3bc4c84b9 +Size (dnscrypt-proxy-2.0.15.tar.gz) = 2887764 bytes --_----------=_153167103220770--