Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Oct 2017 11:58:20 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r452971 - in head/devel: . hexd
Message-ID:  <201710271158.v9RBwKvc030746@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710271158.v9RBwKvc030746>