Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/diffuse/
Date: Mon, 30 Jan 2023 15:52:23
Message-Id: 1675093903.5c9447eca4abd8acf080938192a3d0eda3fc4516.grozin@gentoo
1 commit: 5c9447eca4abd8acf080938192a3d0eda3fc4516
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 30 15:51:43 2023 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 15:51:43 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9447ec
7
8 dev-util/diffuse: bump to 0.7.7
9
10 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
11
12 dev-util/diffuse/Manifest | 1 +
13 dev-util/diffuse/diffuse-0.7.7.ebuild | 52 +++++++++++++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/dev-util/diffuse/Manifest b/dev-util/diffuse/Manifest
17 index 7b0d98557a35..5b0592b6f66d 100644
18 --- a/dev-util/diffuse/Manifest
19 +++ b/dev-util/diffuse/Manifest
20 @@ -1 +1,2 @@
21 DIST diffuse-0.7.5.tar.gz 509048 BLAKE2B f69d9afea243069bdb9d313059556cc83283cd037e2f32de4b1221a2b53c493cb8a0a9bf8b4fc4d8a50e94fc60fe6043d30e3b5e7b7ceb2cec8529d8e136db0f SHA512 466cdc834e1103ad794979a287838b5005379712ee1d77e400d5fe71dcf5e79097decb39e26b213669077a4a2a525444db99b5587929f01b8b2df9f31ec190fd
22 +DIST diffuse-0.7.7.tar.gz 620577 BLAKE2B 5c6cf09519e177404dd4d0fd8b27d176581ac08fb9d6dac5b4a90b130f7c28fce0f0f3802a99c7b3078e608f967a36851532d43f5e661854755242b5b23a64e8 SHA512 bf9576734ebd696252732b3b0ce6f1f18508a800520388459d9f27482a43251db879c2198c3a279bad9528afc08cf8e7f23a3253b58edad049db9b1c697fd6e0
23
24 diff --git a/dev-util/diffuse/diffuse-0.7.7.ebuild b/dev-util/diffuse/diffuse-0.7.7.ebuild
25 new file mode 100644
26 index 000000000000..4b47edc65ee9
27 --- /dev/null
28 +++ b/dev-util/diffuse/diffuse-0.7.7.ebuild
29 @@ -0,0 +1,52 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +PYTHON_COMPAT=( python3_{9..11} )
35 +PLOCALES="cs de es fr it ja ko pl pt pt_BR ru sv th zh_CN zh_TW"
36 +inherit meson plocale python-r1 xdg
37 +
38 +DESCRIPTION="A graphical tool to compare and merge text files"
39 +HOMEPAGE="http://diffuse.sourceforge.net/ https://github.com/MightyCreak/diffuse/"
40 +SRC_URI="https://github.com/MightyCreak/diffuse/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 +
48 +DEPEND="${PYTHON_DEPS}"
49 +RDEPEND="${DEPEND}
50 + $(python_gen_cond_dep '
51 + dev-python/pygobject:3[${PYTHON_USEDEP},cairo]
52 + ')
53 + x11-libs/gtk+:3[introspection]"
54 +# file collision, bug #279018
55 +DEPEND="${DEPEND}
56 + !sci-chemistry/tinker"
57 +
58 +src_prepare() {
59 + default
60 + plocale_find_changes po '' '.po'
61 +
62 + rm_locale() {
63 + rm -f po/${1}.po
64 + rm -rf data/usr/share/man/${1}
65 + rm -rf data/usr/share/gnome/help/${PN}/$1
66 + rm -f data/usr/share/omf/${PN}/${PN}-$1.omf
67 + sed -e "/^${1}/d" -i po/LINGUAS
68 + }
69 +
70 + plocale_for_each_disabled_locale rm_locale
71 +}
72 +
73 +src_install() {
74 + meson_src_install
75 + rm "${D}"/usr/bin/${PN} || die "rm ${PN} failed"
76 + python_foreach_impl python_doscript ../${P}-build/src/${PN}/${PN}
77 + mkdir "${D}"/usr/share/metainfo || die "mkdir metainfo failed"
78 + mv "${D}"/usr/share/appdata/* "${D}"/usr/share/metainfo/ \
79 + || die "mv appdata -> metainfo failed"
80 + dodoc AUTHORS CHANGELOG.md README.md
81 +}