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: Sat, 10 Feb 2018 15:46:33
Message-Id: 1518277578.0ad249cfd7e579992ec9849ad4a8cbee6ce55060.sping@gentoo
1 commit: 0ad249cfd7e579992ec9849ad4a8cbee6ce55060
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 10 15:28:19 2018 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 10 15:46:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad249cf
7
8 x11-misc/safeeyes: 2.0.4
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.4.ebuild | 50 +++++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-misc/safeeyes/Manifest b/x11-misc/safeeyes/Manifest
17 index 26af421a664..a2d3b953057 100644
18 --- a/x11-misc/safeeyes/Manifest
19 +++ b/x11-misc/safeeyes/Manifest
20 @@ -1 +1,2 @@
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
24 diff --git a/x11-misc/safeeyes/safeeyes-2.0.4.ebuild b/x11-misc/safeeyes/safeeyes-2.0.4.ebuild
25 new file mode 100644
26 index 00000000000..ebf1e7c7347
27 --- /dev/null
28 +++ b/x11-misc/safeeyes/safeeyes-2.0.4.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python3_{4,5,6} )
36 +inherit gnome2-utils xdg distutils-r1
37 +
38 +DESCRIPTION="Linux alternative to EyeLeo"
39 +HOMEPAGE="https://github.com/slgobinath/SafeEyes"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="portaudio"
46 +
47 +CDEPEND="${PYTHON_DEPS}"
48 +DEPEND="${CDEPEND}
49 + dev-python/setuptools[${PYTHON_USEDEP}]
50 + "
51 +RDEPEND="${CDEPEND}
52 + dev-libs/libappindicator:3
53 + dev-python/Babel[${PYTHON_USEDEP}]
54 + dev-python/dbus-python[${PYTHON_USEDEP}]
55 + dev-python/psutil[${PYTHON_USEDEP}]
56 + portaudio? ( dev-python/pyaudio[${PYTHON_USEDEP}] )
57 + dev-python/pygobject:3[${PYTHON_USEDEP}]
58 + dev-python/python-xlib[${PYTHON_USEDEP}]
59 + x11-apps/xprop
60 + x11-misc/xprintidle
61 + "
62 +
63 +DOCS=(
64 + README.md
65 +)
66 +
67 +pkg_preinst() {
68 + gnome2_icon_savelist
69 +}
70 +
71 +pkg_postinst() {
72 + xdg_desktop_database_update
73 + gnome2_icon_cache_update
74 +}
75 +
76 +pkg_postrm() {
77 + xdg_desktop_database_update
78 + gnome2_icon_cache_update
79 +}