From owner-svn-ports-head@freebsd.org Sat Oct 15 07:18:21 2016 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 7253AC121A7; Sat, 15 Oct 2016 07:18:21 +0000 (UTC) (envelope-from woodsb02@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 25D7AD54; Sat, 15 Oct 2016 07:18:21 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9F7IKEu010536; Sat, 15 Oct 2016 07:18:20 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9F7IJok010531; Sat, 15 Oct 2016 07:18:19 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201610150718.u9F7IJok010531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 15 Oct 2016 07:18:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424005 - in head/textproc: . icdiff X-SVN-Group: ports-head 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: Sat, 15 Oct 2016 07:18:21 -0000 Author: woodsb02 Date: Sat Oct 15 07:18:19 2016 New Revision: 424005 URL: https://svnweb.freebsd.org/changeset/ports/424005 Log: Add new port textproc/icdiff, an improved colored diff utility. WWW: https://www.jefftk.com/icdiff Approved by: adamw (mentor, implicit) Added: head/textproc/icdiff/ head/textproc/icdiff/Makefile (contents, props changed) head/textproc/icdiff/distinfo (contents, props changed) head/textproc/icdiff/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Oct 15 07:02:05 2016 (r424004) +++ head/textproc/Makefile Sat Oct 15 07:18:19 2016 (r424005) @@ -323,6 +323,7 @@ SUBDIR += ibus-m17n SUBDIR += ibus-qt SUBDIR += ibus-table + SUBDIR += icdiff SUBDIR += id-aspell SUBDIR += id-hyphen SUBDIR += idnits Added: head/textproc/icdiff/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/icdiff/Makefile Sat Oct 15 07:18:19 2016 (r424005) @@ -0,0 +1,18 @@ +# Created by: Ben Woods +# $FreeBSD$ + +PORTNAME= icdiff +PORTVERSION= 1.8.5 +CATEGORIES= textproc +MASTER_SITES= CHEESESHOP + +MAINTAINER= woodsb02@FreeBSD.org +COMMENT= Improved colored diff + +LICENSE= PSFL + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/textproc/icdiff/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/icdiff/distinfo Sat Oct 15 07:18:19 2016 (r424005) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476449460 +SHA256 (icdiff-1.8.5.tar.gz) = d0fc55ff53f4ca1af6612dadeac9635a3f2ede269530ca5af6bbe22544d16e5c +SIZE (icdiff-1.8.5.tar.gz) = 8682 Added: head/textproc/icdiff/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/icdiff/pkg-descr Sat Oct 15 07:18:19 2016 (r424005) @@ -0,0 +1,10 @@ +Your terminal can display color, but most diff tools don't make good use of it. +By highlighting changes, icdiff can show you the differences between similar +files without getting in the way. This is especially helpful for identifying +and understanding small changes within existing lines. + +Instead of trying to be a diff replacement for all circumstances, the goal of +icdiff is to be a tool you can reach for to get a better picture of what +changed when it's not immediately obvious from diff. + +WWW: https://www.jefftk.com/icdiff