-> requirements.txt is not read by setup.py
This commit is contained in:
Andreas Billmeier 2020-08-30 18:22:27 +02:00 committed by Andreas Billmeier
parent 8bfc3ec678
commit 479c04ea19
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 0 deletions

View File

@ -58,6 +58,9 @@
* fix 2 RDEPEND typos
* update homeassistant-0.114.4, 3 new useflags by request (https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/20)
* fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/39
-> requirements.txt is not read by setup.py
2020-08-26
* fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/18#issuecomment-124
* add deepmerge-0.1.0, fix BDEPS

View File

@ -5,5 +5,6 @@ DIST pynuki-1.3.8.tar.gz 5885 BLAKE2B 95b9ed46d51067c4a957ec5437c67a9d801d621cab
EBUILD pynuki-1.3.2.ebuild 897 BLAKE2B b097cd190f82f719eafc4c40a49bb73fdf404318054f595fc2bc2cd2836477af97c98e5d1b9895e3566becf946d68436d47d8db8991f0f1196d01735637f14c9 SHA512 633fb114d4c353e8ca0337dc19905b002f3f44fdab8aaa300d7a8e515fc1aed1a0c299b78d24cda8ad6b7b9956359db019f9449b4186668eef7336106559b506
EBUILD pynuki-1.3.3.ebuild 905 BLAKE2B 2add31f10f4bedd33cc6a22ccbedbbc76a6a3bc52da8ef16caeb2fafe922a7ae5ab715256bf604f02f611c0a475dae6b5067b1c6370d58e564d392e629a06251 SHA512 f4d68c5a8d6ba040eea359cd52b9b00e97c453bb6504803f712114b0fadd23c6f10994868fe2cfd358e9b0143559d494f970c97517900857f3561a699c7466e7
EBUILD pynuki-1.3.7.ebuild 905 BLAKE2B 357399eb5b06594d183f188be8c0fd581574b638969508a15106673f901f2d37a47adf3be7615c953fbc31d542d21d1788f77193e07e56085c14caf62f3b5303 SHA512 eceb3567d8dd543347c56a04e151c4bad4f01d20ddc0e9fcd5cd6c926858f6b28d5d1b877187697648afcb7690c1874d6dc9a6bac2991159e8a7e2bd83af6133
EBUILD pynuki-1.3.8-r1.ebuild 1002 BLAKE2B 3ac6e376459132d16635739b6b7c1a8f4b4c64a2666b7a3f2631bff47aae38d67dd77fbe03d13325fa04650307bab658ba2043047a45b4323fecd37291b90867 SHA512 2767dfb1d12d901f2afded527e6c63b4e55a0bafa2dcb4d1be15b671f3759e27996955536d64a7de8298f03c28bfa3241681c61167013813228a30fd229e3af1
EBUILD pynuki-1.3.8.ebuild 905 BLAKE2B 357399eb5b06594d183f188be8c0fd581574b638969508a15106673f901f2d37a47adf3be7615c953fbc31d542d21d1788f77193e07e56085c14caf62f3b5303 SHA512 eceb3567d8dd543347c56a04e151c4bad4f01d20ddc0e9fcd5cd6c926858f6b28d5d1b877187697648afcb7690c1874d6dc9a6bac2991159e8a7e2bd83af6133
MISC metadata.xml 252 BLAKE2B 507e0ddc9d50b879ff374b903b142f85d020dfd6c486aba2af84fe082c878e780edbb79188ae10104d57db0eb775c86814cc8c06891a3854c9da840a4d377050 SHA512 9470ac9c8a5a4f80e3f767e7aa198addc7b21866c63b2a310e9f41ce65817672fb77423117bdd619e99cb62322025aeadf50717e23eafabf99080fcc106820af

View File

@ -0,0 +1,38 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python bindings for nuki.io bridges"
HOMEPAGE="https://github.com/pschmitt/pynuki https://pypi.org/project/pynuki/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
# seems that requirements.txt is not read at all
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
# RDEPEND="~dev-python/appdirs-1.4.4[${PYTHON_USEDEP}]
# ~dev-python/packaging-20.4[${PYTHON_USEDEP}]
# ~dev-python/pyparsing-2.4.7[${PYTHON_USEDEP}]
# dev-python/requests[${PYTHON_USEDEP}]
# >=dev-python/six-1.14.0[${PYTHON_USEDEP}]"
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
}