svn commit: r452971 - in head/devel: . hexd
Tobias Kortkamp
tobik at FreeBSD.org
Fri Oct 27 11:58:22 UTC 2017
Author: tobik
Date: Fri Oct 27 11:58:20 2017
New Revision: 452971
URL: https://svnweb.freebsd.org/changeset/ports/452971
Log:
New port: devel/hexd
hexd prints a human-readable hexdump of the specified files, or
standard input if omitted. Its main distinguishing feature is the use
of colours to visually indicate which range of values an octet belongs
to, aiding in spotting patterns in binary data.
WWW: https://github.com/FireyFly/hexd/
PR: 219719
Submitted by: Dhananjay Balan <mail at dbalan.in>
Added:
head/devel/hexd/
head/devel/hexd/Makefile (contents, props changed)
head/devel/hexd/distinfo (contents, props changed)
head/devel/hexd/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Oct 27 10:39:40 2017 (r452970)
+++ head/devel/Makefile Fri Oct 27 11:58:20 2017 (r452971)
@@ -891,6 +891,7 @@
SUBDIR += hapy
SUBDIR += hcs12mem
SUBDIR += hexcompare
+ SUBDIR += hexd
SUBDIR += hg-git
SUBDIR += hgreviewboard
SUBDIR += hgsvn
Added: head/devel/hexd/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/hexd/Makefile Fri Oct 27 11:58:20 2017 (r452971)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME= hexd
+PORTVERSION= g20170531
+CATEGORIES= devel
+
+MAINTAINER= mail at dbalan.in
+COMMENT= Colourful, human-friendly hexdump tool
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= gmake
+USE_GITHUB= yes
+GH_ACCOUNT= FireyFly
+GH_TAGNAME= 934a506
+
+PLIST_FILES= bin/hexd \
+ man/man1/hexd.1.gz
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/hexd ${STAGEDIR}${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/hexd.1 ${STAGEDIR}${PREFIX}/man/man1
+
+.include <bsd.port.mk>
Added: head/devel/hexd/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/hexd/distinfo Fri Oct 27 11:58:20 2017 (r452971)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1509079149
+SHA256 (FireyFly-hexd-g20170531-934a506_GH0.tar.gz) = f9f74bf6165c281c997df823e9781a329bd9eadc0a66a14b47dae91144799db5
+SIZE (FireyFly-hexd-g20170531-934a506_GH0.tar.gz) = 27322
Added: head/devel/hexd/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/hexd/pkg-descr Fri Oct 27 11:58:20 2017 (r452971)
@@ -0,0 +1,6 @@
+hexd prints a human-readable hexdump of the specified files, or
+standard input if omitted. Its main distinguishing feature is the use
+of colours to visually indicate which range of values an octet belongs
+to, aiding in spotting patterns in binary data.
+
+WWW: https://github.com/FireyFly/hexd/
More information about the svn-ports-head
mailing list