Gentoo Archives: gentoo-commits

From: Christoph Junghans <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cwdiff/
Date: Thu, 01 Oct 2015 22:26:06
Message-Id: 1443738362.523a9ececb4bb72e05c70ad2d73fe6514e8ada21.ottxor@gentoo
1 commit: 523a9ececb4bb72e05c70ad2d73fe6514e8ada21
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 22:25:39 2015 +0000
4 Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 22:26:02 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=523a9ece
7
8 version bump
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-util/cwdiff/Manifest | 1 +
13 dev-util/cwdiff/cwdiff-0.3.1.ebuild | 37 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-util/cwdiff/Manifest b/dev-util/cwdiff/Manifest
17 index 004e709..de12616 100644
18 --- a/dev-util/cwdiff/Manifest
19 +++ b/dev-util/cwdiff/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cwdiff-0.2.8.tar.gz 4246 SHA256 cdfd1489420591b36a56370c647b361f87c0c4074fed220e9c09f3e7ea8f2c22 SHA512 bb1fb3790cc2d8f4e5f199e7abc9bf6a999ded0d25fc9e62ca1e003505f1d33b6c8575b0172a2e55128c4e5c853147304c928d0f1094c5b30e6a015b9fbcae09 WHIRLPOOL 7dec074fa079bb1468179efe6f559010b2d8267343ea5c77ad72810301baf49cb63977c7617bdc41321c944fdd067c6202d8a87b6bd5200f561176fac2fc115a
22 DIST cwdiff-0.3.0.tar.gz 4666 SHA256 32c70aeae4e445a439aeed7f9b01395cc74645033533cc37b6974671cf2cfd9b SHA512 40401a0541209c83cd78ff55c62ce71dd362cf8674b07c1cdd56ad7a505741e818003f07c87fe0303cd2bfd911d99b8f560697612b32b6fee794a7671e7e86f0 WHIRLPOOL aad2e3c5c6d8dc94f70c8b272969598bf134f73bc0fc030d5f4087d341a2074736e5b409afc99c8039f250c2f0154b22d86b153e7ac3e4edc12f4c0642be2e76
23 +DIST cwdiff-0.3.1.tar.gz 4706 SHA256 c2b7d3a1ba7b6efae217f82773dbfc36a6bda862957ef69c67b2bcfa718c5909 SHA512 ffea1f699d333655eebfe96048dcc96c57408d42915d707e10b9231a27cc7a8803c3b47876227e24da67376ec18f9261739b9fb13889f8b47d336ca048cbfa72 WHIRLPOOL 83e8eb2cd9cf4647c54ecf6306e5f030c7760c8d1ece3fd588805b2b6cf7a302ef58078da176d2ffe1dbb4613d49572c3d7f5765d4e74aeba7599cf9dfa60c2d
24
25 diff --git a/dev-util/cwdiff/cwdiff-0.3.1.ebuild b/dev-util/cwdiff/cwdiff-0.3.1.ebuild
26 new file mode 100644
27 index 0000000..eaf721e
28 --- /dev/null
29 +++ b/dev-util/cwdiff/cwdiff-0.3.1.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +if [ "${PV}" = "9999" ]; then
38 + EGIT_REPO_URI="git://github.com/junghans/${PN}.git https://github.com/junghans/${PN}.git"
39 + inherit git-r3
40 + KEYWORDS=""
41 +else
42 + SRC_URI="https://github.com/junghans/cwdiff/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 + KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x64-macos ~x86-macos"
44 +fi
45 +
46 +DESCRIPTION="A script that wraps wdiff to support directories and colorize the output"
47 +HOMEPAGE="https://github.com/junghans/cwdiff"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +IUSE="a2ps mercurial"
52 +
53 +DEPEND="sys-apps/help2man
54 + sys-apps/coreutils"
55 +RDEPEND="
56 + sys-apps/sed
57 + app-shells/bash
58 + app-text/wdiff
59 + sys-apps/diffutils
60 + a2ps? ( app-text/a2ps )
61 + mercurial? ( dev-vcs/mercurial )
62 + "
63 +
64 +src_install() {
65 + emake DESTDIR="${ED}" $(usex mercurial '' 'HGRCDIR=') install
66 + dodoc README.md
67 +}