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: Tue, 17 Jul 2018 07:24:28
Message-Id: 1531812259.8228afae34028b31cfbf87382f916a48c98d2294.mgorny@gentoo
1 commit: 8228afae34028b31cfbf87382f916a48c98d2294
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 17 07:04:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 17 07:24:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8228afae
7
8 dev-util/catfish: Bump to 1.4.6
9
10 dev-util/catfish/Manifest | 1 +
11 dev-util/catfish/catfish-1.4.6.ebuild | 41 +++++++++++++++++++++++++++++++++++
12 2 files changed, 42 insertions(+)
13
14 diff --git a/dev-util/catfish/Manifest b/dev-util/catfish/Manifest
15 index b4544883a65..7da3eea211c 100644
16 --- a/dev-util/catfish/Manifest
17 +++ b/dev-util/catfish/Manifest
18 @@ -1 +1,2 @@
19 DIST catfish-1.2.2.tar.bz2 98956 BLAKE2B a04c7c62745eb5ac5bc8a169fa01e9a943e319cd0d96db44485b12367838f5ec587a7fdf2be4cba4c135f8d301fe2b72c26646f0f97cb69404b7e6b682f817cc SHA512 dad407f1e818b8d537b73e9f832c39ca4f9527b9d636da18493a685b03d2fab56982a11872382fd457b9a1a0ffb33d29ade4aa317561c3b2ee82c96728705e75
20 +DIST catfish-1.4.6.tar.bz2 150331 BLAKE2B fb59dfce5770ddfb7740f1f7b2deb22928f3bd49a1ac323827143fc6c41586adbe45521daae3b26bf748f14c859051bae43ea4f94a0be37c84b30f933f7a2bca SHA512 1c50375a9b36554123327a138c50de47abbbfd2fb334b91773312e9001e4bbc936550c2b23ad658b29fe9f1537d59997513b01bf4e2c31ce0286f5650776f8f7
21
22 diff --git a/dev-util/catfish/catfish-1.4.6.ebuild b/dev-util/catfish/catfish-1.4.6.ebuild
23 new file mode 100644
24 index 00000000000..034f5d1e462
25 --- /dev/null
26 +++ b/dev-util/catfish/catfish-1.4.6.ebuild
27 @@ -0,0 +1,41 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
33 +
34 +inherit distutils-r1 gnome2-utils xdg-utils
35 +
36 +DESCRIPTION="A frontend for find, (s)locate, doodle, tracker, beagle, strigi and pinot"
37 +HOMEPAGE="https://docs.xfce.org/apps/catfish/start"
38 +SRC_URI="https://archive.xfce.org/src/apps/catfish/${PV%.*}/${P}.tar.bz2"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +
44 +RDEPEND="
45 + dev-python/pexpect[${PYTHON_USEDEP}]
46 + dev-python/pygobject:3[${PYTHON_USEDEP}]
47 + x11-libs/gtk+:3[introspection]
48 + virtual/freedesktop-icon-theme
49 +"
50 +DEPEND="
51 + dev-python/python-distutils-extra[${PYTHON_USEDEP}]
52 + sys-devel/gettext
53 +"
54 +
55 +python_install() {
56 + distutils-r1_python_install
57 + rm -r "${ED%/}"/usr/share/doc/catfish || die
58 +}
59 +
60 +pkg_postinst() {
61 + gnome2_icon_cache_update
62 + xdg_desktop_database_update
63 +}
64 +
65 +pkg_postrm() {
66 + gnome2_icon_cache_update
67 + xdg_desktop_database_update
68 +}