homeassistant-full 2024.10.2 full dependencies update

(not compiled yet :ouch: )
This commit is contained in:
Xavier FORESTIER
2024-10-21 13:59:57 +02:00
parent df5f5d139f
commit ec8d5a03b1
293 changed files with 6057 additions and 84 deletions

View File

@@ -0,0 +1,3 @@
DIST python-gitlab-1.6.0.tar.gz 110201 BLAKE2B 7df304e82e463404ae59f49b9056ae4f29f0cb05cd8ce411c675c735c05aaac8c3ccb6fb8648f32c7f8097c9834906b409cbb533968a458953632ee74d2679fb SHA512 b567845ccb3f7e759ec1718398b9f224da089c2033e346cda47ac4dc0b63e6302c48ee38e2b06b0df1976be483746f63d7d2375381f03f219cf4479a40baa9d1
EBUILD python-gitlab-1.6.0.ebuild 654 BLAKE2B 48dd2e7227ee98a4d72feb8714701415b2d1edbb424fa81e2775a571df3386fc4361d0b7a4f910e2569eec247001b8ead38f6b1ac36861719c5133255a4486e1 SHA512 55964a6181cf623ea3a5d7d7387be419bcc2f52d0cdc8e0eabc40fe4495fb91e73a8a5f168c4cadf2230847b738b72c7e50e31772d8615d91854c780b22c485b
MISC metadata.xml 531 BLAKE2B 22475ce48520247da25c3fd381125b6b8e2843acb7dfa09447b998690f5c27b8d83afc9d6fdeb976b0a67b7e4e338b603f91b61851b09aa7aafd493c695226fb SHA512 91407727c0653dcf917ef48f05854635cf6eec525e118567f3b9e517d88588f723cd815bce47f2964a13c4fee1d1c61bdc34a751427fd98f4b777f144bf4438e

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">python-gitlab</remote-id>
<remote-id type="github">python-gitlab/python-gitlab</remote-id>
<maintainer status="unknown">
<email>gauvain@pocentek.net</email>
<name>Gauvain Pocentek</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
inherit distutils-r1 pypi
DESCRIPTION="Interact with GitLab API"
HOMEPAGE="https://github.com/python-gitlab/python-gitlab https://pypi.org/project/python-gitlab/"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-python/six[${PYTHON_USEDEP}]
>=dev-python/requests-2.4.2[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}