summaryrefslogtreecommitdiff
path: root/dev-util/catfish
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-12-27 06:30:35 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-12-27 06:30:35 +0000
commit721e451ec418e1712f6962404e111f0ebd487389 (patch)
treeaab5b35236af464349c2522312c63b664273465c /dev-util/catfish
parente80134587e8d959a88dba7dd3784895372e205c8 (diff)
gentoo auto-resync : 27:12:2024 - 06:30:34
Diffstat (limited to 'dev-util/catfish')
-rw-r--r--dev-util/catfish/Manifest2
-rw-r--r--dev-util/catfish/catfish-4.20.0.ebuild57
2 files changed, 59 insertions, 0 deletions
diff --git a/dev-util/catfish/Manifest b/dev-util/catfish/Manifest
index cc4a21d4558d..6b7bde216f38 100644
--- a/dev-util/catfish/Manifest
+++ b/dev-util/catfish/Manifest
@@ -1,3 +1,5 @@
DIST catfish-4.18.0.tar.bz2 295952 BLAKE2B bf05a8f272217936b8f010157c585ab90a9b5858c06a72c6145da62999221725a990d544c67a8469b08d3accbcf28af59bc59a6585e3c8781fb88dc48fb026c0 SHA512 57a3cc5043281bd9527e4faa6a3afcba2e8948fb6dc9e8d93d26ceb0358a84850b3e892105f81b4f2a30bb2964d65b2083fd07b55f145f3ae6ea653acd098539
+DIST catfish-4.20.0.tar.bz2 230923 BLAKE2B 2d2224c7d6cdc4bfa91fb7e2f89162eff3d67b53be06693e1b55cbeccca65b061981cb88768c7fb0d5555ae8ccc65911980a590513d2607745e143ffcea8246b SHA512 982676e9f3a11f0faba25e3e238c51bdbc6f172effc368e747627e87c2bf362fae631d23c10cd99fae3449256b3911240691df304d7415ec925a138688b4c913
EBUILD catfish-4.18.0.ebuild 1209 BLAKE2B ce7f2e09d61af5b401e420019d03aedf95cee3300cd1bcf171806a080f2634512d80ba0f09417a0ac072b2a060a6d85c5a6918c8fcc8471fc409f3e4f18265f0 SHA512 e36a6aad4fb03f9bc7c8f66e6fafd853b0f10c6b85355916b91f20f3752198a9469fbdab845c6fcac2692918b541f4b614eabb1c601d91d41e149d98d2411dc1
+EBUILD catfish-4.20.0.ebuild 1286 BLAKE2B 54cb385acdccecfa04085daf4ef035ac3f683cff7282148f02a2382ec8ec05c7359f416e39cddff32e65a24c24a2d418d2cf277d6e91c3be39772745de4af81f SHA512 44db64552735e727a7a7ff9ef3ba70bfd55679f8b19bf2d3c8c88e67b4d7eaec6d4bc8bfc2f1471daece26a51c36b82b100edc29513f30d4819469e065116e98
MISC metadata.xml 217 BLAKE2B dbd6f28308a539b2f2d27b9b2bb6d44ce324db803a3ed7218ac091711f3cfcd5f01f505c084c0b714f19257af70483906135c68caa1964252b6a9c9fe71b4ac7 SHA512 ba66b524e0287ac4326c527d973ed2ff6a40e330f38f3f1333db2c66a7672e6b24a6212ddf430ee454ed943d89d04a12e42eb670f3dcf1567f59c6e51d5677aa
diff --git a/dev-util/catfish/catfish-4.20.0.ebuild b/dev-util/catfish/catfish-4.20.0.ebuild
new file mode 100644
index 000000000000..658bb2efb1b0
--- /dev/null
+++ b/dev-util/catfish/catfish-4.20.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit meson python-single-r1 xdg-utils
+
+DESCRIPTION="A frontend for find, (s)locate, doodle, tracker, beagle, strigi and pinot"
+HOMEPAGE="
+ https://docs.xfce.org/apps/catfish/start
+ https://gitlab.xfce.org/apps/catfish/
+"
+SRC_URI="https://archive.xfce.org/src/apps/catfish/${PV%.*}/${P}.tar.bz2"
+
+# yep, GPL-2 only
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="
+ ${PYTHON_DEPS}
+ dev-libs/glib
+ dev-libs/gobject-introspection
+ $(python_gen_cond_dep '
+ dev-python/dbus-python[${PYTHON_USEDEP}]
+ dev-python/pexpect[${PYTHON_USEDEP}]
+ dev-python/pygobject:3[${PYTHON_USEDEP}]
+ ')
+ x11-libs/gdk-pixbuf[introspection]
+ >=x11-libs/gtk+-3.10.0:3[introspection]
+ x11-libs/pango[introspection]
+ >=xfce-base/xfconf-4.14[introspection]
+ virtual/freedesktop-icon-theme
+"
+BDEPEND="
+ sys-devel/gettext
+"
+
+src_install() {
+ meson_src_install
+ # stupid meson
+ rm -r "${ED}/usr/share/doc/catfish" || die
+ python_optimize
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+ xdg_desktop_database_update
+}