bump lightify-1.0.7.3

This commit is contained in:
Andreas Billmeier 2021-02-09 21:15:01 +01:00 committed by Andreas Billmeier
parent 1b5b59bde5
commit c9f04b4c9e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 0 deletions

View File

@ -14,6 +14,7 @@
* bump colorlog-4.7.2
* bump TwitterAPI-2.6.5
* bump sqlalchemy-1.3.23
* update lightify-1.0.7.3
2021-01-31 homeassistant-2021.1.5
* bump HATasmota-0.2.6 & HATasmota-0.2.7

View File

@ -1,3 +1,5 @@
DIST lightify-1.0.7.2.tar.gz 14452 BLAKE2B 6a063f94a544a4b59c5fe0b75810e4f487c76151e04bb603d899900c33bb8e3dcc215ea5148553d8c54bfb85cb3e2496df4ee322b0e724fa3d1352b5c4ab855d SHA512 ff606bf08f168e0834d7ed908650eebeeeed77840ed03bbfbe2eb6312d4cf761f7543f2d8d98f22183c0bc8117272cce57bb1bf8530b4a4ce93668f6d2f8875c
DIST lightify-1.0.7.3.tar.gz 16069 BLAKE2B 9be4ca616cdc72f4b9b3ac59f66a7798d85d2131e13642660a1b9ef4540a630162c1bcf891c896ca7565b32651bf4fd96b89efcfd0b59340bca3a07509db16e5 SHA512 71adfb0c8fd5ac0689c99bb38429b89f1fe9812dd9f276cd198ab4a2e7f2fd950774088a8801aca8080921bc2ac56f061906d33ca66f88950fe03cc9471a8b6f
EBUILD lightify-1.0.7.2.ebuild 697 BLAKE2B 6b50d4b137675a30d57d7b44d12c0deeb821eaaffeebc97ddfd91e6904c3666139a58383c15d09d4ec1e6fbb61baeff50d46a67d1a6a65c3e56e2468df823617 SHA512 d74d23fefbef04ee8ed41c4e9a298a3dd9a58ca5615c03b0e8beea1b85e0e4770afaf815b9ba9e973048d299541cd17338a67e3839495a8e63e985aeae74ca06
EBUILD lightify-1.0.7.3.ebuild 835 BLAKE2B 7045485263d5eb66496a9dffe3ca15047311c882a87ef7d59059ea5cfb8d8ef9b567fd5915dc496b008611b4da214f1ee605e4a3daad90eb54c6b5bcd42cf2d2 SHA512 ca60f5655950c1c0d478ed7503d1a8129f6992001a340d57dec3906ea6b9b6d6735c918cb3592e8c13ffc13c6d20985ffa04ad1d5e62f2b7266d44ee0c4ea9d2
MISC metadata.xml 459 BLAKE2B 6227ce61e7a33658570193035db69412e159e99c64b5d2d27e52c3ed37cf9c1e82728d427169e14904533d1d59bdc691b830f165dcc499fba1d878c89ed9bc52 SHA512 539df4e251f7e2707749043d1e4d5dca0c72db13da8fbf94b5eb90074ac3d1beed7aec9181cb5889c117046679110e0913e8badbb235c9d8b1e66de83114a0ae

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="A library to work with OSRAM lightify."
HOMEPAGE="https://github.com/tfriedel/python-lightify https://pypi.org/project/lightify/"
# no source on Pypi
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/tfriedel/python-lightify/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${P}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}