Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/safeeyes/
Date: Wed, 21 Mar 2018 15:32:34
Message-Id: 1521646334.c4f0590739e98c86ed8867302ff589bf821194e9.sping@gentoo
1 commit: c4f0590739e98c86ed8867302ff589bf821194e9
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 21 15:30:20 2018 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 21 15:32:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4f05907
7
8 x11-misc/safeeyes: 2.0.5
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 x11-misc/safeeyes/Manifest | 1 +
13 x11-misc/safeeyes/safeeyes-2.0.5.ebuild | 50 +++++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest
17 index a2d3b953057..ccd61240421 100644
18 --- a/x11-misc/safeeyes/Manifest
19 +++ b/x11-misc/safeeyes/Manifest
20 @@ -1,2 +1,3 @@
21 DIST safeeyes-2.0.2.tar.gz 204210 BLAKE2B d2871b694c66746e7c931bad052fe48edfcda430b017de1d4a393b37d722be5fbaa4960bffa6dfb28920f7da261364374799775e539defd2df5aa86dd3658f83 SHA512 2b8e554e96f9b9e9b0513675bf2008f7f2d5308fa7af42a22ae91cbbf0b50a870d0a5c9db07233eb2eb3b03a064a12543d6b0ece95377f56713ecb72aac7c1e6
22 DIST safeeyes-2.0.4.tar.gz 215936 BLAKE2B 5d605319abfd3437e4a00814273d4911ff332f4ad87c9b079e67ee7dabf32773bbf6dbdd65118d323a30c80b19d93d3018f5a765bc396cf9f443830c666f0f41 SHA512 592e68396a2e3f77b0a26ab7480c14654748385b487228ed92a66422e223140c178261d4b72d99ad537d44c02c21b05e531e4e867c2c0e6b12dd62a2988465c6
23 +DIST safeeyes-2.0.5.tar.gz 220601 BLAKE2B 2e6df2eef91d588955632d6c82a8e1af019f5a06006dd00b338986060a9e7c568b1f4639450aabad67148cf2f3a2e7e2018b259bffac55c0bacd503e810a0d41 SHA512 ce9f5ffa828aa579012ef3855ac8676ff512a3040e77badcbb962d1ce8d4ccd568a9bab13f00df4f74c07eec6e5651c3e849f035cacca35f07c08f939a0255d9
24
25 diff --git a/x11-misc/safeeyes/safeeyes-2.0.5.ebuild b/x11-misc/safeeyes/safeeyes-2.0.5.ebuild
26 new file mode 100644
27 index 00000000000..ebf1e7c7347
28 --- /dev/null
29 +++ b/x11-misc/safeeyes/safeeyes-2.0.5.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python3_{4,5,6} )
37 +inherit gnome2-utils xdg distutils-r1
38 +
39 +DESCRIPTION="Linux alternative to EyeLeo"
40 +HOMEPAGE="https://github.com/slgobinath/SafeEyes"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="portaudio"
47 +
48 +CDEPEND="${PYTHON_DEPS}"
49 +DEPEND="${CDEPEND}
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + "
52 +RDEPEND="${CDEPEND}
53 + dev-libs/libappindicator:3
54 + dev-python/Babel[${PYTHON_USEDEP}]
55 + dev-python/dbus-python[${PYTHON_USEDEP}]
56 + dev-python/psutil[${PYTHON_USEDEP}]
57 + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] )
58 + dev-python/pygobject:3[${PYTHON_USEDEP}]
59 + dev-python/python-xlib[${PYTHON_USEDEP}]
60 + x11-apps/xprop
61 + x11-misc/xprintidle
62 + "
63 +
64 +DOCS=(
65 + README.md
66 +)
67 +
68 +pkg_preinst() {
69 + gnome2_icon_savelist
70 +}
71 +
72 +pkg_postinst() {
73 + xdg_desktop_database_update
74 + gnome2_icon_cache_update
75 +}
76 +
77 +pkg_postrm() {
78 + xdg_desktop_database_update
79 + gnome2_icon_cache_update
80 +}