31 lines
633 B
Bash
31 lines
633 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=8
|
|
PYTHON_COMPAT=( python3_{9..12} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Python library to create a system tray icon"
|
|
HOMEPAGE="https://pythonhosted.org/pystray/"
|
|
|
|
SLOT="0"
|
|
LICENSE="MIT"
|
|
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
|
|
RDEPEND="
|
|
dev-python/pillow
|
|
>=dev-python/python-xlib-0.17
|
|
dev-python/six
|
|
"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
>=dev-python/sphinx-1.3.1
|
|
"
|