Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/icdiff/files/, app-misc/icdiff/
Date: Sun, 31 May 2020 19:37:13
Message-Id: 1590953819.936f9af6ded55fccbaa72cba829766c20853bd03.chutzpah@gentoo
1 commit: 936f9af6ded55fccbaa72cba829766c20853bd03
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Sun May 31 19:36:50 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 19:36:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=936f9af6
7
8 app-misc/icdiff-1.9.5: Version bump (bug #713096)
9
10 Closes: https://bugs.gentoo.org/713096
11 Copyright: Sony Interactive Entertainment Inc.
12 Package-Manager: Portage-2.3.100, Repoman-2.3.22
13 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
14
15 app-misc/icdiff/Manifest | 1 +
16 app-misc/icdiff/files/icdiff-1.9.5-tests.patch | 29 ++++++++++++++++++++++++++
17 app-misc/icdiff/icdiff-1.9.5.ebuild | 28 +++++++++++++++++++++++++
18 3 files changed, 58 insertions(+)
19
20 diff --git a/app-misc/icdiff/Manifest b/app-misc/icdiff/Manifest
21 index 868fbc3812a..bbdd5ae7dfa 100644
22 --- a/app-misc/icdiff/Manifest
23 +++ b/app-misc/icdiff/Manifest
24 @@ -1 +1,2 @@
25 DIST icdiff-1.9.1.tar.gz 24387 BLAKE2B 482b128f03ac8af7e98db9b32ba7d9cf8bcd1a395eb50653a98ac186da26fea7933ee13f01840bb6c105e0f573a519a3e20ad83fbd8e513bfdd6c8c6d14b90c5 SHA512 f73108f6f3a4a2fc40e041bbe7b5934acd76684bb54a3fa544e9f146fd3c528528928378496f53ad92d649547ccc491a77296b6fa57e4534abb13d61c0df8d58
26 +DIST icdiff-1.9.5.tar.gz 31914 BLAKE2B 8d9b9b5104c3075addae2954b41c27ccebe3b4723b0e71ef88a214d7fa0ff7d8cb9ac52cada8ddec929d308a356daf37ef4463a52667f7e229a4a33d1d993e86 SHA512 f4c50da1e73a1af2fd63feabfd180125637a856a8757356eb3b48bbc21871f36a2c876acd2e2ba9d354c8f6e658f6e262fbbfd65fa4078d0adebc1353d87e40a
27
28 diff --git a/app-misc/icdiff/files/icdiff-1.9.5-tests.patch b/app-misc/icdiff/files/icdiff-1.9.5-tests.patch
29 new file mode 100644
30 index 00000000000..3e2467460d2
31 --- /dev/null
32 +++ b/app-misc/icdiff/files/icdiff-1.9.5-tests.patch
33 @@ -0,0 +1,29 @@
34 +diff --git a/test.sh b/test.sh
35 +index fd1679e..5b756f3 100755
36 +--- a/test.sh
37 ++++ b/test.sh
38 +@@ -86,6 +86,8 @@ function check_git_diff() {
39 + local gitdiff=tests/$1
40 + shift
41 +
42 ++ # does not work with newer versions of git
43 ++ if false; then
44 + echo " check_gitdiff $gitdiff matches git icdiff $@"
45 + # Check when using icdiff in git
46 + if $FIRST_TIME_CHECK_GIT_DIFF; then
47 +@@ -96,13 +98,14 @@ function check_git_diff() {
48 + export PATH=$PATH:"$(pwd)"
49 + fi
50 + local tmp=/tmp/git-icdiff.output
51 +- git icdiff $1 $2 &> $tmp
52 ++ git icdiff --no-index $1 $2 &> $tmp
53 + if ! diff $tmp $gitdiff; then
54 + echo "Got: ($tmp)"
55 + cat $tmp
56 + echo "Expected: ($gitdiff)"
57 + fail
58 + fi
59 ++ fi
60 + }
61 +
62 + check_gold gold-recursive.txt --recursive tests/{a,b} --cols=80
63
64 diff --git a/app-misc/icdiff/icdiff-1.9.5.ebuild b/app-misc/icdiff/icdiff-1.9.5.ebuild
65 new file mode 100644
66 index 00000000000..1b4fa11ae9d
67 --- /dev/null
68 +++ b/app-misc/icdiff/icdiff-1.9.5.ebuild
69 @@ -0,0 +1,28 @@
70 +# Copyright 1999-2020 Gentoo Authors
71 +# Distributed under the terms of the GNU General Public License v2
72 +
73 +EAPI=7
74 +
75 +DISTUTILS_USE_SETUPTOOLS=rdepend
76 +PYTHON_COMPAT=( python3_{6,7,8,9} )
77 +
78 +inherit distutils-r1
79 +
80 +DESCRIPTION="Colourized diff that supports side-by-side diffing"
81 +HOMEPAGE="https://www.jefftk.com/icdiff"
82 +SRC_URI="https://github.com/jeffkaufman/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
83 +S="${WORKDIR}/${PN}-release-${PV}"
84 +
85 +LICENSE="PSF-2"
86 +SLOT="0"
87 +KEYWORDS="~amd64"
88 +
89 +PATCHES=(
90 + "${FILESDIR}/icdiff-1.9.5-tests.patch"
91 +)
92 +
93 +DOCS=(README.md ChangeLog)
94 +
95 +python_test() {
96 + bash test.sh "${EPYTHON%.*}" || die "Tests failed with ${EPYTHON}"
97 +}