summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <ottxor@gentoo.org>2015-03-13 20:12:37 +0000
committerChristoph Junghans <ottxor@gentoo.org>2015-03-13 20:12:37 +0000
commitdd935319acdd77763e120479ce11016247dc4fb6 (patch)
treecd8581abfb404ff4588058171e9a3392821d46aa /dev-util/cwdiff
parentia64 stable wrt bug #530662 (diff)
downloadgentoo-2-dd935319acdd77763e120479ce11016247dc4fb6.tar.gz
gentoo-2-dd935319acdd77763e120479ce11016247dc4fb6.tar.bz2
gentoo-2-dd935319acdd77763e120479ce11016247dc4fb6.zip
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'dev-util/cwdiff')
-rw-r--r--dev-util/cwdiff/ChangeLog7
-rw-r--r--dev-util/cwdiff/cwdiff-0.2.8.ebuild33
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-util/cwdiff/ChangeLog b/dev-util/cwdiff/ChangeLog
index 25bbb8f2806a..f3cdb6292c27 100644
--- a/dev-util/cwdiff/ChangeLog
+++ b/dev-util/cwdiff/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/cwdiff
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cwdiff/ChangeLog,v 1.9 2015/03/09 22:51:50 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cwdiff/ChangeLog,v 1.10 2015/03/13 20:12:37 ottxor Exp $
+
+*cwdiff-0.2.8 (13 Mar 2015)
+
+ 13 Mar 2015; Christoph Junghans <ottxor@gentoo.org> +cwdiff-0.2.8.ebuild:
+ version bump
*cwdiff-0.2.7 (09 Mar 2015)
diff --git a/dev-util/cwdiff/cwdiff-0.2.8.ebuild b/dev-util/cwdiff/cwdiff-0.2.8.ebuild
new file mode 100644
index 000000000000..a7310185e0e7
--- /dev/null
+++ b/dev-util/cwdiff/cwdiff-0.2.8.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cwdiff/cwdiff-0.2.8.ebuild,v 1.1 2015/03/13 20:12:37 ottxor Exp $
+
+EAPI=5
+
+DESCRIPTION="A script that wraps wdiff to support directories and colorize the output"
+HOMEPAGE="https://github.com/junghans/cwdiff"
+SRC_URI="https://github.com/junghans/cwdiff/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x64-macos ~x86-macos"
+IUSE="a2ps mercurial"
+
+DEPEND=""
+RDEPEND="
+ sys-apps/sed
+ app-shells/bash
+ app-text/wdiff
+ sys-apps/diffutils
+ a2ps? ( app-text/a2ps )
+ mercurial? ( dev-vcs/mercurial )
+ "
+
+src_install () {
+ dobin "${PN}"
+ if use mercurial ; then
+ insinto /etc/mercurial/hgrc.d
+ doins hgrc.d/"${PN}".rc
+ fi
+ dodoc README.md
+}