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 AE3C21A9217 for ; Sun, 6 Dec 2020 16:14:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E7B7C84D8C; Sun, 6 Dec 2020 16:14:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2DDD584D6C for ; Sun, 6 Dec 2020 16:14:08 +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 eYO9gR1yVWq2 for ; Sun, 6 Dec 2020 16:14:07 +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 8725C84CE3 for ; Sun, 6 Dec 2020 16:14:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74445FA9D; Sun, 6 Dec 2020 16:14:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160727124749520" MIME-Version: 1.0 Date: Sun, 6 Dec 2020 16:14:07 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20201206161407.74445FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160727124749520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sun Dec 6 16:14:07 UTC 2020 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/asmfmt: DESCR Makefile PLIST distinfo Log Message: New package, asmfmt-1.2.1. asmfmt will format your assembler code in a similar way that gofmt formats your Go code. The main goals where: - It should provide predictable formatting. - Be as un-intrusive as possible. - Tab setting should not affect alignment. To generate a diff of this commit: cvs rdiff -u -r1.3284 -r1.3285 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/asmfmt/DESCR pkgsrc/devel/asmfmt/Makefile \ pkgsrc/devel/asmfmt/PLIST pkgsrc/devel/asmfmt/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160727124749520 Content-Disposition: inline Content-Length: 2701 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3284 pkgsrc/devel/Makefile:1.3285 --- pkgsrc/devel/Makefile:1.3284 Sat Dec 5 03:22:34 2020 +++ pkgsrc/devel/Makefile Sun Dec 6 16:14:07 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3284 2020/12/05 03:22:34 riastradh Exp $ +# $NetBSD: Makefile,v 1.3285 2020/12/06 16:14:07 bsiegert Exp $ # COMMENT= Development utilities @@ -126,6 +126,7 @@ SUBDIR+= as31 SUBDIR+= asio SUBDIR+= aslc86k SUBDIR+= asm2html +SUBDIR+= asmfmt SUBDIR+= astyle SUBDIR+= at-spi SUBDIR+= at-spi2-atk Added files: Index: pkgsrc/devel/asmfmt/DESCR diff -u /dev/null pkgsrc/devel/asmfmt/DESCR:1.1 --- /dev/null Sun Dec 6 16:14:07 2020 +++ pkgsrc/devel/asmfmt/DESCR Sun Dec 6 16:14:07 2020 @@ -0,0 +1,6 @@ +asmfmt will format your assembler code in a similar way that gofmt formats your +Go code. The main goals where: + +- It should provide predictable formatting. +- Be as un-intrusive as possible. +- Tab setting should not affect alignment. Index: pkgsrc/devel/asmfmt/Makefile diff -u /dev/null pkgsrc/devel/asmfmt/Makefile:1.1 --- /dev/null Sun Dec 6 16:14:07 2020 +++ pkgsrc/devel/asmfmt/Makefile Sun Dec 6 16:14:07 2020 @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2020/12/06 16:14:07 bsiegert Exp $ + +GITHUB_TAG= v${PKGVERSION_NOREV} +DISTNAME= asmfmt-1.2.1 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=klauspost/} + +MAINTAINER= bsiegert@NetBSD.org +HOMEPAGE= https://github.com/klauspost/asmfmt/ +COMMENT= Go assembler formatter +LICENSE= mit + +GO_SRCPATH= github.com/klauspost/asmfmt +GO_DIST_BASE= ${DISTNAME} +GO_BUILD_PATTERN= github.com/klauspost/asmfmt/cmd/asmfmt + +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/bin/asmfmt ${DESTDIR}${PREFIX}/bin + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/asmfmt/PLIST diff -u /dev/null pkgsrc/devel/asmfmt/PLIST:1.1 --- /dev/null Sun Dec 6 16:14:07 2020 +++ pkgsrc/devel/asmfmt/PLIST Sun Dec 6 16:14:07 2020 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2020/12/06 16:14:07 bsiegert Exp $ +bin/asmfmt Index: pkgsrc/devel/asmfmt/distinfo diff -u /dev/null pkgsrc/devel/asmfmt/distinfo:1.1 --- /dev/null Sun Dec 6 16:14:07 2020 +++ pkgsrc/devel/asmfmt/distinfo Sun Dec 6 16:14:07 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/12/06 16:14:07 bsiegert Exp $ + +SHA1 (asmfmt-1.2.1.tar.gz) = 9a802ce284fa9a118671ee27202d1fe204f44554 +RMD160 (asmfmt-1.2.1.tar.gz) = 501665de6d967d95bdf8f821c42b0a768d9fd8ed +SHA512 (asmfmt-1.2.1.tar.gz) = e85dc0a9204a9243276ee0ebea07254b5d5ba930484ef96212dfcca83be6e3b3923b0f5c9e184e639ce8759bde74a5e9035ad5a28537cb3bb2f3eaa4c6d939c0 +Size (asmfmt-1.2.1.tar.gz) = 159411 bytes --_----------=_160727124749520--