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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5B80E158089 for ; Sun, 5 Nov 2023 22:08:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F8A42BC021; Sun, 5 Nov 2023 22:08:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 74FD02BC015 for ; Sun, 5 Nov 2023 22:08:03 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94B10335CCD for ; Sun, 5 Nov 2023 22:08:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F5F0AAD for ; Sun, 5 Nov 2023 22:08:01 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1699222056.c004e47374d840b93b534cf6fd304292586ad0c9.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild X-VCS-Directories: x11-misc/safeeyes/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: c004e47374d840b93b534cf6fd304292586ad0c9 X-VCS-Branch: master Date: Sun, 5 Nov 2023 22:08:01 +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: 9edb066c-47a9-4c59-8b1e-cb7d45a6079b X-Archives-Hash: 8c380ec07afbd8e07846f3b7f9eaf012 commit: c004e47374d840b93b534cf6fd304292586ad0c9 Author: Sebastian Pipping gentoo org> AuthorDate: Sun Nov 5 22:07:26 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Nov 5 22:07:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c004e473 x11-misc/safeeyes: Python 3.12 + EmptyGlobalAssignment Signed-off-by: Sebastian Pipping gentoo.org> x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild new file mode 100644 index 000000000000..02c1bee35ae8 --- /dev/null +++ b/x11-misc/safeeyes/safeeyes-2.1.6-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_REQ_USE="tk" # for site-packages/Xlib/ext/randr.py +DISTUTILS_USE_PEP517=setuptools + +inherit xdg distutils-r1 pypi + +DESCRIPTION="Linux alternative to EyeLeo" +HOMEPAGE="https://github.com/slgobinath/SafeEyes" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +RDEPEND=" + dev-libs/libayatana-appindicator + dev-python/Babel[${PYTHON_USEDEP}] + dev-python/croniter[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-sound/alsa-utils + x11-apps/xprop + x11-libs/gtk+:3[introspection] + x11-libs/libnotify[introspection] + x11-misc/xprintidle + " + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}