Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/imediff2/
Date: Tue, 01 Sep 2020 16:16:27
Message-Id: 1598976978.48e7133b98ccbfd0cf5d3d4fdc1b41674aa1f517.grknight@gentoo
1 commit: 48e7133b98ccbfd0cf5d3d4fdc1b41674aa1f517
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 16:15:02 2020 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 16:16:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48e7133b
7
8 dev-util/imediff2: Revbump for 3.8 support
9
10 Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
11
12 dev-util/imediff2/imediff2-1.1.2-r6.ebuild | 39 ++++++++++++++++++++++++++++++
13 1 file changed, 39 insertions(+)
14
15 diff --git a/dev-util/imediff2/imediff2-1.1.2-r6.ebuild b/dev-util/imediff2/imediff2-1.1.2-r6.ebuild
16 new file mode 100644
17 index 00000000000..53ef872d434
18 --- /dev/null
19 +++ b/dev-util/imediff2/imediff2-1.1.2-r6.ebuild
20 @@ -0,0 +1,39 @@
21 +# Copyright 1999-2020 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +PYTHON_COMPAT=( python3_{6,7,8} )
27 +PYTHON_REQ_USE="ncurses"
28 +
29 +inherit python-single-r1
30 +
31 +MY_P="${PN}_$(ver_rs 3 -)"
32 +
33 +DESCRIPTION="An interactive, user friendly 2-way merge tool in text mode"
34 +HOMEPAGE="https://elonen.iki.fi/code/imediff/"
35 +SRC_URI="mirror://debian/pool/main/i/${PN}/${MY_P}.orig.tar.gz"
36 +
37 +LICENSE="GPL-2"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~arm ~x86"
40 +IUSE=""
41 +
42 +DEPEND="${PYTHON_DEPS}"
43 +RDEPEND="${DEPEND}"
44 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
45 +
46 +S="${WORKDIR}/${PN}"
47 +
48 +PATCHES=( "${FILESDIR}/${PV}-python-3.patch" )
49 +
50 +src_compile() {
51 + # Otherwise the docs get regenerated :)
52 + :
53 +}
54 +
55 +src_install() {
56 + python_doscript imediff2
57 + dodoc AUTHORS README
58 + doman imediff2.1
59 +}