From owner-svn-ports-head@freebsd.org Fri Oct 27 11:58:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E802CE41D19; Fri, 27 Oct 2017 11:58:21 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B9C2E1DF2; Fri, 27 Oct 2017 11:58:21 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9RBwKgv030750; Fri, 27 Oct 2017 11:58:20 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9RBwKvc030746; Fri, 27 Oct 2017 11:58:20 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201710271158.v9RBwKvc030746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 27 Oct 2017 11:58:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452971 - in head/devel: . hexd X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel: . hexd X-SVN-Commit-Revision: 452971 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Oct 2017 11:58:22 -0000 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 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 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/