Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/catfish/
Date: Sat, 31 Jul 2021 21:41:10
Message-Id: 1627767644.00d6eb085b6496f532e7ce95959371d30825e86c.mgorny@gentoo
1 commit: 00d6eb085b6496f532e7ce95959371d30825e86c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 31 21:40:44 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 31 21:40:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00d6eb08
7
8 dev-util/catfish: Bump to 4.16.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/catfish/Manifest | 1 +
13 dev-util/catfish/catfish-4.16.2.ebuild | 51 ++++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/dev-util/catfish/Manifest b/dev-util/catfish/Manifest
17 index 17bb3afae0d..65ec1876056 100644
18 --- a/dev-util/catfish/Manifest
19 +++ b/dev-util/catfish/Manifest
20 @@ -1 +1,2 @@
21 DIST catfish-4.16.0.tar.bz2 261252 BLAKE2B b495814857cb551c00dff8b92d2b24df876b1ab269bcb0ba468c791b97f3e962b875c5a687010472c5d47719475c99131d5ee6df3ce642af147b199976eb3538 SHA512 926318d3b2387386a5141347cf23b7e1505f83c48dac3804dc9c51aeeede2ef71d6d70e61bd5f608145249ccb4d3d87662bdab0c0a88dc69608b2edee55ddc19
22 +DIST catfish-4.16.2.tar.bz2 270051 BLAKE2B 41048edc3933664af389ae7120e6f2b25f6c92632a4d00b999eef4e26e0f6eeeed70320ed740f26a0649e423e3b8316e33b8c671a282ae1a4474b3cc6bbc4824 SHA512 a1dc2839106d55e11e537478402b44d3794cdcf326c5984bd95d0d5a8bad52d91df1be22ba347d23f030d0c62fdf2b90a507e2abc30ed4b4d1804ab8dbde1dbe
23
24 diff --git a/dev-util/catfish/catfish-4.16.2.ebuild b/dev-util/catfish/catfish-4.16.2.ebuild
25 new file mode 100644
26 index 00000000000..e20eafa63bd
27 --- /dev/null
28 +++ b/dev-util/catfish/catfish-4.16.2.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_SETUPTOOLS=no
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1 xdg-utils
39 +
40 +DESCRIPTION="A frontend for find, (s)locate, doodle, tracker, beagle, strigi and pinot"
41 +HOMEPAGE="https://docs.xfce.org/apps/catfish/start"
42 +SRC_URI="https://archive.xfce.org/src/apps/catfish/${PV%.*}/${P}.tar.bz2"
43 +
44 +# yep, GPL-2 only
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~x86"
48 +
49 +RDEPEND="
50 + >=dev-libs/glib-2.42
51 + dev-libs/gobject-introspection
52 + dev-python/dbus-python[${PYTHON_USEDEP}]
53 + dev-python/pexpect[${PYTHON_USEDEP}]
54 + dev-python/pygobject:3[${PYTHON_USEDEP}]
55 + x11-libs/gdk-pixbuf[introspection]
56 + >=x11-libs/gtk+-3.22:3[introspection]
57 + x11-libs/pango[introspection]
58 + >=xfce-base/xfconf-4.14[introspection]
59 + virtual/freedesktop-icon-theme
60 +"
61 +BDEPEND="
62 + dev-python/python-distutils-extra[${PYTHON_USEDEP}]
63 + sys-devel/gettext
64 +"
65 +
66 +python_install() {
67 + distutils-r1_python_install
68 + python_optimize
69 + rm -r "${ED}"/usr/share/doc/catfish || die
70 +}
71 +
72 +pkg_postinst() {
73 + xdg_icon_cache_update
74 + xdg_desktop_database_update
75 +}
76 +
77 +pkg_postrm() {
78 + xdg_icon_cache_update
79 + xdg_desktop_database_update
80 +}