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: Sun, 11 Aug 2019 19:02:34
Message-Id: 1565550145.76726d3efbf58a4a9b9b78c4f70d0369d7550788.mgorny@gentoo
1 commit: 76726d3efbf58a4a9b9b78c4f70d0369d7550788
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 11 18:49:38 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 11 19:02:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76726d3e
7
8 dev-util/catfish: Bump to 1.4.9
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/catfish/Manifest | 1 +
13 dev-util/catfish/catfish-1.4.9.ebuild | 46 +++++++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-util/catfish/Manifest b/dev-util/catfish/Manifest
17 index 72a62f6ab4c..eeb6e43f8a1 100644
18 --- a/dev-util/catfish/Manifest
19 +++ b/dev-util/catfish/Manifest
20 @@ -1,2 +1,3 @@
21 DIST catfish-1.4.7.tar.bz2 162289 BLAKE2B 2f24485f0f059a177a8544632ab583acad1149f96921f8b10027e5788adb2eaf4da0911f3363174feef570c8f75615ec1f943a2d5d2e8622efd4be9892a0fcd2 SHA512 cafa8eaaa40522f50111b3bb9c09a116ebad827532b0cfc88bc643fb2e2d89edee53057fbbed23719f4091ca384d7ea025633e571e160d7dfced008f788a3ffd
22 DIST catfish-1.4.8.tar.bz2 181027 BLAKE2B c03270832cb2e6bdc39528801d257d37c52f0c6f361c9225002c31a258a18a1c98cf7af640ca15a4f6e32ac4ac802bda84327123a7bf13d47a1410e67988bfab SHA512 46c9e9112116e0f8ee7957c5a71d16ecdde8c16a60a030f3339933a6f9e73d61d360fed52d5904b0fff21448050cc17df5af63f6254476404760fe9166dfad00
23 +DIST catfish-1.4.9.tar.bz2 182247 BLAKE2B 343a9a83bed73a5f0416fa2ec61869dd3fdb13b8bc45a46dba7d4901c36d97b17e9f32f616baae8cceece566f4e529d34e55f81cb071504b750f4edda048185b SHA512 c62596a09ed481eac5a4544dcfcc71c02177c115b6bf050b1f2421a575ef589c0c1569ef26d6864e472f2331f0561c7f1146c58bc7873af8036d6e7350465c3d
24
25 diff --git a/dev-util/catfish/catfish-1.4.9.ebuild b/dev-util/catfish/catfish-1.4.9.ebuild
26 new file mode 100644
27 index 00000000000..8833b3e2974
28 --- /dev/null
29 +++ b/dev-util/catfish/catfish-1.4.9.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python{2_7,3_5,3_6} )
36 +
37 +inherit distutils-r1 xdg-utils
38 +
39 +DESCRIPTION="A frontend for find, (s)locate, doodle, tracker, beagle, strigi and pinot"
40 +HOMEPAGE="https://docs.xfce.org/apps/catfish/start"
41 +SRC_URI="https://archive.xfce.org/src/apps/catfish/${PV%.*}/${P}.tar.bz2"
42 +
43 +# yep, GPL-2 only
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc ~x86"
47 +
48 +RDEPEND="
49 + dev-libs/gobject-introspection
50 + dev-python/dbus-python[${PYTHON_USEDEP}]
51 + dev-python/pexpect[${PYTHON_USEDEP}]
52 + dev-python/pygobject:3[${PYTHON_USEDEP}]
53 + x11-libs/gdk-pixbuf[introspection]
54 + x11-libs/gtk+:3[introspection]
55 + x11-libs/pango[introspection]
56 + virtual/freedesktop-icon-theme
57 +"
58 +DEPEND="
59 + dev-python/python-distutils-extra[${PYTHON_USEDEP}]
60 + sys-devel/gettext
61 +"
62 +
63 +python_install() {
64 + distutils-r1_python_install
65 + rm -r "${ED%/}"/usr/share/doc/catfish || die
66 +}
67 +
68 +pkg_postinst() {
69 + xdg_icon_cache_update
70 + xdg_desktop_database_update
71 +}
72 +
73 +pkg_postrm() {
74 + xdg_icon_cache_update
75 + xdg_desktop_database_update
76 +}