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: Mon, 26 Oct 2020 16:49:00
Message-Id: 1603730918.c6ebedbe1bcf3d9c953a1795fe1b20c7cc655cc1.mgorny@gentoo
1 commit: c6ebedbe1bcf3d9c953a1795fe1b20c7cc655cc1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 26 09:20:40 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 26 16:48:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6ebedbe
7
8 dev-util/catfish: Bump to 4.15.0
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.15.0.ebuild | 51 ++++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/dev-util/catfish/Manifest b/dev-util/catfish/Manifest
17 index efdc9cb7b77..9633f52d436 100644
18 --- a/dev-util/catfish/Manifest
19 +++ b/dev-util/catfish/Manifest
20 @@ -1 +1,2 @@
21 DIST catfish-1.4.13.tar.bz2 221999 BLAKE2B b487947954832c691a5a1b3bd2a49e7ae1aedecbe2084b86b9ae1c8bd7c95f6d3746f80723d351bed3abac0e2396fcce134072345a908f5ba9f0dfebdd95108f SHA512 a90c695e7c1a2172ea7a5f7f1a292e95aa290693a24f3988a68f2fb4597183ff7526c98925fb3ef8517fbca508a1c3853e0de87ec023be9424d994d63e29c886
22 +DIST catfish-4.15.0.tar.bz2 256897 BLAKE2B 98ac6c1f5af7a48276438c08e0259eaae7f9a7d4f043a8c89b945d1d0a18e10f2faf3a210363cf46a97b4becc7492a6c1ce6b8e499b168729ce18ff80d5da828 SHA512 d2415194e3d803a99b1a0d80763db6f4e95c810d2bc679057e54105bb906ec1a0de32b64d8c0b2a36aad11d689401111c3466b1e8ad41760f4d6b67f979a81a3
23
24 diff --git a/dev-util/catfish/catfish-4.15.0.ebuild b/dev-util/catfish/catfish-4.15.0.ebuild
25 new file mode 100644
26 index 00000000000..123c750a72e
27 --- /dev/null
28 +++ b/dev-util/catfish/catfish-4.15.0.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DISTUTILS_USE_SETUPTOOLS=no
36 +PYTHON_COMPAT=( python3_{6..9} )
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 +}