Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/diffuse/
Date: Mon, 09 Mar 2020 20:22:26
Message-Id: 1583785320.22f5993c12748ad15f5ffc38665fa9ba12fe22d6.asturm@gentoo
1 commit: 22f5993c12748ad15f5ffc38665fa9ba12fe22d6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 9 20:19:56 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 9 20:22:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22f5993c
7
8 dev-util/diffuse: Drop 0.4.8-r1
9
10 Closes: https://bugs.gentoo.org/708074
11 Package-Manager: Portage-2.3.93, Repoman-2.3.20
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 dev-util/diffuse/Manifest | 1 -
15 dev-util/diffuse/diffuse-0.4.8-r1.ebuild | 59 --------------------------------
16 2 files changed, 60 deletions(-)
17
18 diff --git a/dev-util/diffuse/Manifest b/dev-util/diffuse/Manifest
19 index 9700495ff27..1ed6f939a32 100644
20 --- a/dev-util/diffuse/Manifest
21 +++ b/dev-util/diffuse/Manifest
22 @@ -1,2 +1 @@
23 -DIST diffuse-0.4.8.tar.bz2 557966 BLAKE2B 97879c41db390c9e3f0b0634ab34b33021013aaa8e28b0afe98a1131772803129fa81ccc6532a921d28f0eee51c4ccfbecb400645ed4141e6d2fe669e552014e SHA512 0c62976526804a328f1cc1775f842e9575fab50309cc964171af5ee89d8f303d4cbdf66a078ed64bb8826f5a57c2cc7fc59afc1ee87646ece340212d34f2514e
24 DIST diffuse-0.5.0_alpha7.tar.xz 531124 BLAKE2B e97b8dd1b24253c4049dd4dc0f185049f030163945d822c3dbf6763f14eff270ed6bea82ae55b6cecaaa0f90976aab286db53c3f69d54f708e403832f8b2b1c1 SHA512 280d2c3c698affbf91b0e25ba658133999ea9b0199d8c165e2cef05210386f0fb3ff8611710903c1a3cb13aed01a648d04b3b8b13227f96803b74adbebf62adf
25
26 diff --git a/dev-util/diffuse/diffuse-0.4.8-r1.ebuild b/dev-util/diffuse/diffuse-0.4.8-r1.ebuild
27 deleted file mode 100644
28 index 5a0d5a3968a..00000000000
29 --- a/dev-util/diffuse/diffuse-0.4.8-r1.ebuild
30 +++ /dev/null
31 @@ -1,59 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit fdo-mime python-single-r1
39 -
40 -DESCRIPTION="A graphical tool to compare and merge text files"
41 -HOMEPAGE="http://diffuse.sourceforge.net/"
42 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86 ~x64-solaris"
47 -IUSE=""
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -DEPEND="${PYTHON_DEPS}"
51 -RDEPEND="${DEPEND}
52 - $(python_gen_cond_dep '
53 - dev-python/pygtk[${PYTHON_MULTI_USEDEP}]
54 - ')"
55 -# file collision, bug #279018
56 -DEPEND="${DEPEND}
57 - !sci-chemistry/tinker"
58 -
59 -src_prepare() {
60 - local i p
61 -
62 - # linguas handling wrt #406433
63 - if [[ -n "${LINGUAS+x}" ]] ; then
64 - for i in $(for p in translations/*.po ; do echo ${p%.po} ; done) ; do
65 - if ! has ${i##*/} ${LINGUAS} ; then
66 - rm "${S}"/${i}.po || die
67 - fi
68 - done
69 - fi
70 -
71 - python_fix_shebang src/usr/bin/diffuse
72 -}
73 -
74 -src_install() {
75 - "${PYTHON}" install.py \
76 - --prefix="${EPREFIX}"/usr \
77 - --sysconfdir="${EPREFIX}"/etc \
78 - --files-only \
79 - --destdir="${D}" \
80 - || die "Installation failed"
81 - dodoc AUTHORS ChangeLog README
82 -}
83 -
84 -pkg_postinst() {
85 - fdo-mime_desktop_database_update
86 -}
87 -
88 -pkg_postrm() {
89 - fdo-mime_desktop_database_update
90 -}