Received: by mail.netbsd.org (Postfix, from userid 605) id CD6ED84E7B; Mon, 13 Jan 2020 22:30:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 565D484E76 for ; Mon, 13 Jan 2020 22:30:35 +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 1DBUYZa_eLYG for ; Mon, 13 Jan 2020 22:30:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BFB7184C8B for ; Mon, 13 Jan 2020 22:30:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B781CFBF4; Mon, 13 Jan 2020 22:30:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157895463412760" MIME-Version: 1.0 Date: Mon, 13 Jan 2020 22:30:34 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/misc To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200113223034.B781CFBF4@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. --_----------=_157895463412760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jan 13 22:30:34 UTC 2020 Modified Files: pkgsrc/misc: Makefile Added Files: pkgsrc/misc/pixd: DESCR Makefile PLIST distinfo Log Message: misc: Add pixd. pixd is a tool for visualizing binary data using a colour palette. It is in a lot of ways akin to a hexdump tool, except using coloured squares to represent each octet. pixd uses 24-bit color SGR escape sequences. For a list of terminal emulators with support for these, see XVilka's list of supporting terminal emulators: https://gist.github.com/XVilka/8346728 To generate a diff of this commit: cvs rdiff -u -r1.530 -r1.531 pkgsrc/misc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/misc/pixd/DESCR pkgsrc/misc/pixd/Makefile \ pkgsrc/misc/pixd/PLIST pkgsrc/misc/pixd/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157895463412760 Content-Disposition: inline Content-Length: 2804 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/Makefile diff -u pkgsrc/misc/Makefile:1.530 pkgsrc/misc/Makefile:1.531 --- pkgsrc/misc/Makefile:1.530 Mon Jan 13 22:29:24 2020 +++ pkgsrc/misc/Makefile Mon Jan 13 22:30:34 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.530 2020/01/13 22:29:24 nia Exp $ +# $NetBSD: Makefile,v 1.531 2020/01/13 22:30:34 nia Exp $ # COMMENT= Miscellaneous utilities @@ -241,6 +241,7 @@ SUBDIR+= pdmenu SUBDIR+= php-orangehrm SUBDIR+= pick SUBDIR+= pinfo +SUBDIR+= pixd SUBDIR+= ppower SUBDIR+= pty-redir SUBDIR+= py-anita Added files: Index: pkgsrc/misc/pixd/DESCR diff -u /dev/null pkgsrc/misc/pixd/DESCR:1.1 --- /dev/null Mon Jan 13 22:30:34 2020 +++ pkgsrc/misc/pixd/DESCR Mon Jan 13 22:30:34 2020 @@ -0,0 +1,7 @@ +pixd is a tool for visualizing binary data using a colour palette. It is in +a lot of ways akin to a hexdump tool, except using coloured squares to +represent each octet. + +pixd uses 24-bit color SGR escape sequences. For a list of terminal emulators +with support for these, see XVilka's list of supporting terminal emulators: +https://gist.github.com/XVilka/8346728 Index: pkgsrc/misc/pixd/Makefile diff -u /dev/null pkgsrc/misc/pixd/Makefile:1.1 --- /dev/null Mon Jan 13 22:30:34 2020 +++ pkgsrc/misc/pixd/Makefile Mon Jan 13 22:30:34 2020 @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 2020/01/13 22:30:34 nia Exp $ + +DISTNAME= pixd-1.0.0 +CATEGORIES= misc +MASTER_SITES= ${MASTER_SITE_GITHUB:=FireyFly/} +GITHUB_PROJECT= pixd +GITHUB_TAG= v${PKGVERSION_NOREV} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/FireyFly/pixd +COMMENT= Colourful visualization tool for binary files +LICENSE= mit + +USE_TOOLS+= gmake + +INSTALLATION_DIRS+= bin +INSTALLATION_DIRS+= ${PKGMANDIR}/man1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pixd ${DESTDIR}${PREFIX}/bin/pixd + ${INSTALL_DATA} ${WRKSRC}/pixd.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/pixd.1 + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/misc/pixd/PLIST diff -u /dev/null pkgsrc/misc/pixd/PLIST:1.1 --- /dev/null Mon Jan 13 22:30:34 2020 +++ pkgsrc/misc/pixd/PLIST Mon Jan 13 22:30:34 2020 @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1 2020/01/13 22:30:34 nia Exp $ +bin/pixd +man/man1/pixd.1 Index: pkgsrc/misc/pixd/distinfo diff -u /dev/null pkgsrc/misc/pixd/distinfo:1.1 --- /dev/null Mon Jan 13 22:30:34 2020 +++ pkgsrc/misc/pixd/distinfo Mon Jan 13 22:30:34 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/01/13 22:30:34 nia Exp $ + +SHA1 (pixd-1.0.0.tar.gz) = 55df5a553a9a9e4a3d726bcfa255ea6c3a47fb11 +RMD160 (pixd-1.0.0.tar.gz) = 2453c6da9dbdac618ff0a3fafbf19f31e41c8de9 +SHA512 (pixd-1.0.0.tar.gz) = 35549ff4602123bb7b63cf22334bd67a3960dbdf8b18652d3627baa0f792aa2fa8a1a451032f4165a20e98157d4a7d2be79e5a1aad4df84cfc9b563cd28c6757 +Size (pixd-1.0.0.tar.gz) = 207124 bytes --_----------=_157895463412760--