pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/misc
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.
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@localhost
+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
Home |
Main Index |
Thread Index |
Old Index