Received: by mail.netbsd.org (Postfix, from userid 605) id 76A3384E1E; Thu, 29 Aug 2019 13:43:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF4A284D3A for ; Thu, 29 Aug 2019 13:43:27 +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 87zU7ar6YC9z for ; Thu, 29 Aug 2019 13:43:27 +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 6450A84CDC for ; Thu, 29 Aug 2019 13:43:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 535EBFBF4; Thu, 29 Aug 2019 13:43:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1567086207192770" MIME-Version: 1.0 Date: Thu, 29 Aug 2019 13:43:27 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/devel/go-gox To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20190829134327.535EBFBF4@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. --_----------=_1567086207192770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Thu Aug 29 13:43:27 UTC 2019 Added Files: pkgsrc/devel/go-gox: DESCR Makefile PLIST distinfo Log Message: Add go-gox version 1.0.1. Gox is a simple, no-frills tool for Go cross compilation that behaves a lot like standard go build. Gox will parallelize builds for multiple platforms. Gox will also build the cross-compilation toolchain for you. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-gox/DESCR pkgsrc/devel/go-gox/Makefile \ pkgsrc/devel/go-gox/PLIST pkgsrc/devel/go-gox/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1567086207192770 Content-Disposition: inline Content-Length: 2060 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/go-gox/DESCR diff -u /dev/null pkgsrc/devel/go-gox/DESCR:1.1 --- /dev/null Thu Aug 29 13:43:27 2019 +++ pkgsrc/devel/go-gox/DESCR Thu Aug 29 13:43:27 2019 @@ -0,0 +1,4 @@ +Gox is a simple, no-frills tool for Go cross compilation that +behaves a lot like standard go build. Gox will parallelize builds +for multiple platforms. Gox will also build the cross-compilation +toolchain for you. Index: pkgsrc/devel/go-gox/Makefile diff -u /dev/null pkgsrc/devel/go-gox/Makefile:1.1 --- /dev/null Thu Aug 29 13:43:27 2019 +++ pkgsrc/devel/go-gox/Makefile Thu Aug 29 13:43:27 2019 @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 2019/08/29 13:43:27 he Exp $ +# + +NAME= gox +DISTNAME= ${NAME}-1.0.1 +PKGNAME= go-${DISTNAME} +GITHUB_PROJECT= ${NAME} +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=mitchellh/} +GITHUB_TAG= v1.0.1 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/mitchellh/gox +COMMENT= Tool for go cross compilation +LICENSE= mpl-2.0 + +GO_SRCPATH= github.com/mitchellh/gox +GO_DIST_BASE= ${DISTNAME}* + +DEPENDS+= go-iochan-[0-9]*:../../devel/go-iochan + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/go-gox/PLIST diff -u /dev/null pkgsrc/devel/go-gox/PLIST:1.1 --- /dev/null Thu Aug 29 13:43:27 2019 +++ pkgsrc/devel/go-gox/PLIST Thu Aug 29 13:43:27 2019 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2019/08/29 13:43:27 he Exp $ +bin/gox Index: pkgsrc/devel/go-gox/distinfo diff -u /dev/null pkgsrc/devel/go-gox/distinfo:1.1 --- /dev/null Thu Aug 29 13:43:27 2019 +++ pkgsrc/devel/go-gox/distinfo Thu Aug 29 13:43:27 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/29 13:43:27 he Exp $ + +SHA1 (gox-1.0.1.tar.gz) = c78d456bc15a5551d6ce4540664775d954a7e1fe +RMD160 (gox-1.0.1.tar.gz) = 403fb22b914fb9ef6a5744fc6ee38fe0577e9cdc +SHA512 (gox-1.0.1.tar.gz) = cfcad670d9b752fe629de26db0a7f02a72f183f1c6acaf232d4908085f27a297453ab35f5c9a3ede209cb9143fd9ed7a8b5d9c182c8796f3fe4d023cb5294497 +Size (gox-1.0.1.tar.gz) = 30819 bytes --_----------=_1567086207192770--