summaryrefslogtreecommitdiff
blob: eda476f4a614e2b3b5a59c586adb9b17bcd8c7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
PYTHON_COMPAT=(python2_7 python3_4 python3_5)

inherit distutils-r1

DESCRIPTION="Colourized diff that supports side-by-side diffing"
HOMEPAGE="http://www.jefftk.com/icdiff"
SRC_URI="https://github.com/jeffkaufman/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64"

DOCS=(README.md ChangeLog)

S="${WORKDIR}/${PN}-release-${PV}"

python_test() {
	./test.sh "${EPYTHON%.*}" || die "Tests failed"
}