From lists@eitanadler.com  Wed Oct 20 18:24:17 2010
Return-Path: <lists@eitanadler.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id CAF3D106566B
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 20 Oct 2010 18:24:17 +0000 (UTC)
	(envelope-from lists@eitanadler.com)
Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54])
	by mx1.freebsd.org (Postfix) with ESMTP id ABFB08FC08
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 20 Oct 2010 18:24:17 +0000 (UTC)
Received: by pzk33 with SMTP id 33so20115pzk.13
        for <FreeBSD-gnats-submit@freebsd.org>; Wed, 20 Oct 2010 11:24:17 -0700 (PDT)
Received: by 10.142.82.8 with SMTP id f8mr6227763wfb.317.1287599056359;
        Wed, 20 Oct 2010 11:24:16 -0700 (PDT)
Received: from  ([149.125.211.106])
        by mx.google.com with ESMTPS id x26sm243378vbw.8.2010.10.20.11.24.13
        (version=TLSv1/SSLv3 cipher=RC4-MD5);
        Wed, 20 Oct 2010 11:24:15 -0700 (PDT)
Received: by  (sSMTP sendmail emulation); Wed, 20 Oct 2010 14:23:17 -0400
Message-Id: <4cbf33cf.9a9ce60a.0751.181a@mx.google.com>
Date: Wed, 20 Oct 2010 14:23:17 -0400
From: Eitan Adler <lists@eitanadler.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] sysutils/hextools: Useful tools for dealing with hex files
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         151607
>Category:       ports
>Synopsis:       [NEW PORT] sysutils/hextools: Useful tools for dealing with hex files
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    ohauer
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Oct 20 18:30:10 UTC 2010
>Closed-Date:    Mon Nov 01 14:13:16 UTC 2010
>Last-Modified:  Mon Nov  1 14:20:08 UTC 2010
>Originator:     Eitan Adler
>Release:        FreeBSD 8.1-RELEASE i386
>Organization:
>Environment:
>Description:
reversible hexdump is a hexdump/hex2bin-toolkit that dumps to a special
readable and reversible hexadecimal byte-dump,where you can not only change
bytes, but also insert or delete bytes. It has a flush-switch, where it will
output hexbytes for each single char it reads. This is especially useful for
watching output from slow devices (e.g., serial devices like mice). The
hex2bin-utility (the reverse-hexdump) not only accepts hexbytes for input,
but also double-quoted strings with most of the escape-chars known
from C and makes good attempts at undumping even hexdumps with repetition-lines
(a "*" on its own line). It's written in ANSI C. 

WWW: http://gnuwin32.sourceforge.net/packages/hextools.htm

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- hextools-1.1.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	hextools
#	hextools/Makefile
#	hextools/pkg-descr
#	hextools/distinfo
#
echo c - hextools
mkdir -p hextools > /dev/null 2>&1
echo x - hextools/Makefile
sed 's/^X//' >hextools/Makefile << '1f1d757eead3e2491c5890f3e68c1e2c'
X# New ports collection makefile for:	hextools
X# Date created:				19 Oct 2010
X# Whom:					Eitan Adler
X#
X# $FreeBSD$
X#
X
XPORTNAME=	hextools
XPORTVERSION=	1.1
XCATEGORIES=	sysutils
XMASTER_SITES=	http://avl.enemy.org/utils/hextools/
X
XMAINTAINER=	ports@eitanadler.com
XCOMMENT=	Useful tools for dealing with hex files
X
XNO_WRKSUBDIR=yes
X
XMAN1=		bin2hex.1 hex2bin.1
XPLIST_FILES=	bin/hex2bin bin/bin2hex
XALL_TARGET=	build
X
X#not strictly true - it uses a self-styled license
X#LICENSE=BSD
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/hex2bin ${PREFIX}/bin/hex2bin
X	${INSTALL_PROGRAM} ${WRKSRC}/hexdump ${PREFIX}/bin/bin2hex
X.if !defined(NO_INSTALL_MANPAGES)
X	${INSTALL_MAN} ${WRKSRC}/hex2bin.1 ${MANPREFIX}/man/man1/hex2bin.1
X	${INSTALL_MAN} ${WRKSRC}/hexdump.1 ${MANPREFIX}/man/man1/bin2hex.1
X.endif
X
X.include <bsd.port.mk>
1f1d757eead3e2491c5890f3e68c1e2c
echo x - hextools/pkg-descr
sed 's/^X//' >hextools/pkg-descr << '204ea49e2cc6d4dca13dc581bad84006'
Xreversible hexdump is a hexdump/hex2bin-toolkit that dumps to a special
Xreadable and reversible hexadecimal byte-dump,where you can not only change
Xbytes, but also insert or delete bytes. It has a flush-switch, where it will
Xoutput hexbytes for each single char it reads. This is especially useful for
Xwatching output from slow devices (e.g., serial devices like mice). The
Xhex2bin-utility (the reverse-hexdump) not only accepts hexbytes for input,
Xbut also double-quoted strings with most of the escape-chars known
Xfrom C and makes good attempts at undumping even hexdumps with repetition-lines
X(a "*" on its own line). It's written in ANSI C. 
X
XWWW: http://gnuwin32.sourceforge.net/packages/hextools.htm
204ea49e2cc6d4dca13dc581bad84006
echo x - hextools/distinfo
sed 's/^X//' >hextools/distinfo << 'b9d0aebabf79df6eb8ba72d5cb15d2bc'
XMD5 (hextools-1.1.tar.gz) = 4fbaf367e9a34bcbcb010e45ffa63679
XSHA256 (hextools-1.1.tar.gz) = f85c64dd2aedb1e924bc9ea11c90eaf8ea4eeef8167b00a7c34be22b3c21318b
XSIZE (hextools-1.1.tar.gz) = 7640
b9d0aebabf79df6eb8ba72d5cb15d2bc
echo 'This could have been rm -rf /* be careful'
exit
--- hextools-1.1.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->ohauer 
Responsible-Changed-By: ohauer 
Responsible-Changed-When: Mon Nov 1 13:30:21 UTC 2010 
Responsible-Changed-Why:  
I'll take it 

http://www.freebsd.org/cgi/query-pr.cgi?pr=151607 
State-Changed-From-To: open->closed 
State-Changed-By: ohauer 
State-Changed-When: Mon Nov 1 14:12:46 UTC 2010 
State-Changed-Why:  
comitted, 
Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=151607 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/151607: commit references a PR
Date: Mon,  1 Nov 2010 14:11:25 +0000 (UTC)

 ohauer      2010-11-01 14:11:20 UTC
 
   FreeBSD ports repository
 
   Modified files:
     sysutils             Makefile 
   Added files:
     sysutils/hextools    Makefile distinfo pkg-descr 
   Log:
   PR:             151607
   Submitted by:   Eitan Adler <lists _at_ eitanadler.com>
   Approved by:    glarkin (mentor, implicit)
   
   reversible hexdump is a hexdump/hex2bin-toolkit that dumps to a special
   readable and reversible hexadecimal byte-dump,where you can not only change
   bytes, but also insert or delete bytes. It has a flush-switch, where it will
   output hexbytes for each single char it reads. This is especially useful for
   watching output from slow devices (e.g., serial devices like mice). The
   hex2bin-utility (the reverse-hexdump) not only accepts hexbytes for input,
   but also double-quoted strings with most of the escape-chars known
   from C and makes good attempts at undumping even hexdumps with repetition-lines
   (a "*" on its own line). It's written in ANSI C.
   
   WWW: http://gnuwin32.sourceforge.net/packages/hextools.htm
   
   Revision  Changes    Path
   1.1244    +1 -0      ports/sysutils/Makefile
   1.1       +33 -0     ports/sysutils/hextools/Makefile (new)
   1.1       +2 -0      ports/sysutils/hextools/distinfo (new)
   1.1       +11 -0     ports/sysutils/hextools/pkg-descr (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
