homeassistant-0.83.1, and some more system-wide python libs.

This commit is contained in:
2018-11-30 18:59:41 +01:00
parent d7612f497f
commit 4102cf0f50
38 changed files with 1099 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
DIST envs-1.2.6.tar.gz 21086 BLAKE2B f691aa80c0eb47c2ea9e384f4daf503f8d9d78170f7bd565a329aa6c05d19f395db4ff3ba27921a4acb7ada072feb58da47c12371ccffe1d3bb0ab00bf0cdabf SHA512 49d9db6a81e46bf6534abb036938f3a149435e93551599fd31c441a6af2e0ad6ed16da87851f67a8efc28086398027c28f8c7a460f6b8bf862b8b662c4c0593a
EBUILD envs-1.2.6.ebuild 769 BLAKE2B a425ecf974447dcd52f0ea1080c2d5811f67e2bd0c7f939565fa7e456bba03f948cc297a177ef1d72ddb0c9c75cc2f82483601ac10cab3683432a4d202c61bd2 SHA512 bf5d0fbb14218d50e80021d358d89f5003af6d5ebd9b49b30e72b24d8212c1ce0c171352c078e9241af91d09801a1913ee7114e8b30376b5284b40e76819f6b0
+27
View File
@@ -0,0 +1,27 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Easy access of environment variables from Python with support for strings, booleans, list, tuples, and dicts."
HOMEPAGE="https://github.com/bjinwright/envs"
SRC_URI="https://files.pythonhosted.org/packages/34/f5/5277e967127581e5a63dca21dd42b43ab5d21ddd03cad0459649ee3c210a/envs-1.2.6.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
IUSE="test"
DEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)
"
python_test() {
py.test -v || die "Tests failed under ${EPYTHON}"
}