From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 78049158091 for ; Sun, 5 Jun 2022 14:11:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51516E08A2; Sun, 5 Jun 2022 14:11:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36841E08A2 for ; Sun, 5 Jun 2022 14:11:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4913534195B for ; Sun, 5 Jun 2022 14:11:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C209471 for ; Sun, 5 Jun 2022 14:11:48 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1654438305.38d56ebb4981650a8e3ae27e5b77670ecc0454c4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/catfish/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/catfish/catfish-4.16.3-r1.ebuild X-VCS-Directories: dev-util/catfish/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 38d56ebb4981650a8e3ae27e5b77670ecc0454c4 X-VCS-Branch: master Date: Sun, 5 Jun 2022 14:11:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c1204ce6-f27f-41cc-bab2-34547c543986 X-Archives-Hash: 8469b7dc2210120537e186ef646c12cb commit: 38d56ebb4981650a8e3ae27e5b77670ecc0454c4 Author: Michał Górny gentoo org> AuthorDate: Sun Jun 5 14:06:15 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jun 5 14:11:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d56ebb dev-util/catfish: Use PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-util/catfish/catfish-4.16.3-r1.ebuild | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/dev-util/catfish/catfish-4.16.3-r1.ebuild b/dev-util/catfish/catfish-4.16.3-r1.ebuild new file mode 100644 index 000000000000..4f81700a37f0 --- /dev/null +++ b/dev-util/catfish/catfish-4.16.3-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 xdg-utils + +DESCRIPTION="A frontend for find, (s)locate, doodle, tracker, beagle, strigi and pinot" +HOMEPAGE="https://docs.xfce.org/apps/catfish/start" +SRC_URI="https://archive.xfce.org/src/apps/catfish/${PV%.*}/${P}.tar.bz2" + +# yep, GPL-2 only +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=" + >=dev-libs/glib-2.42 + dev-libs/gobject-introspection + 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.22:3[introspection] + x11-libs/pango[introspection] + >=xfce-base/xfconf-4.14[introspection] + virtual/freedesktop-icon-theme +" +BDEPEND=" + dev-python/python-distutils-extra[${PYTHON_USEDEP}] + sys-devel/gettext +" + +src_install() { + distutils-r1_src_install + rm -r "${ED}"/usr/share/doc/catfish || die +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update +}