update mcstatus-5.1.1

This commit is contained in:
Andreas Billmeier 2021-03-14 16:42:32 +01:00 committed by Andreas Billmeier
parent d01e006034
commit 92f225ef94
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 44 additions and 0 deletions

View File

@ -56,6 +56,7 @@
* bump HAP-python-3.3.2
* update spotipy-2.17.1
* udpate asyncio-dgram-1.2.0
* update mcstatus-5.1.1
2021-02-17
* bump HATasmota-0.2.9

View File

@ -1,3 +1,5 @@
DIST mcstatus-2.3.0.tar.gz 7002 BLAKE2B 33f3e0b7b9ecfb7520b21869e645a32571cbe6a47e05f272dda1badb6b3ddf47a50ceacea8506f4ede7a80ece335fcf9c5281980c3c4efc5cd677e3322a2d0a5 SHA512 0be0e464ccdb32a675d15ea504b6fa2005d81b898fba70769eb38e956f14f28da2e6e486c2bb5c8e818e6f63e5bbfbe255d8ed3b2420b04e090041c820e3b94e
DIST mcstatus-5.1.1.tar.gz 10541 BLAKE2B bf98f8d0ec23412ec6b8f6f7f976600469add23e58e1c32af42d62195189409331c69864e6e6aa6771862ccf1c474c2ea101192fd845508c5df704fe9650c287 SHA512 4c69b26997e10e311d5e06868a06118f4f89207e363248170f6156f6324bffc0b9c76e028e2b2979500d7d520dfcd4ffe7fbcb10a4db570df4bb3950dc9dae0a
EBUILD mcstatus-2.3.0.ebuild 724 BLAKE2B 38874ec10b2e3f8c3b6afbcd1d1907728e980fd417d1a3305803475e49f020db0575d96ac3761d64054a4a98d73ce00562a1804e5a43c4a3825ff55754d02592 SHA512 a40aeed12746eabee640f4c6c5296129d2bf55bdc86d5441dc4bd26bde9659924f6a902563ff80e7d20b2e360cdf164f140bb4f033f0ec95af466806eb21f912
EBUILD mcstatus-5.1.1.ebuild 1136 BLAKE2B ce6a99dce301954a56d83793678987e2d34dfc6a1eaadcaa72c0555d1dfffbc38e1fa731ee729f2cdcd3e5d8b2e9303d3ab4db199a49380ab565101b0caf6ae0 SHA512 f5268dac315796ad3f17dcf226736ab1e26aedc71a254aa3c97f5e3d93b79440cb65b66e00e77ef45113421804337b9c843f3ec293a3c8e38853e28c32ddab08
MISC metadata.xml 458 BLAKE2B 1c03b8ab211a7fcddfc3f783579ac3dfb09aa49f36f5599b4efae7a2e4da85e2059a79627306a216605fac25b2cce746ae40fe127b6d5e53574fc4325e086ec1 SHA512 7ebb7a9ae75e9024dbac144dbc00e45dd098e04d7ffd52268ee127f261e7f497d5ac629070e2416ac5ea2db4fa30d160a709d8f15dd42c0d83da0a3ae3854677

View File

@ -0,0 +1,41 @@
# 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 query Minecraft Servers for their status and capabilities."
HOMEPAGE="https://github.com/Dinnerbone/mcstatus https://pypi.python.org/pypi/mcstatus https://pypi.org/project/mcstatus/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/asyncio-dgram-1.2.0[${PYTHON_USEDEP}]
>=dev-python/click-7.1.1[${PYTHON_USEDEP}]
>=dev-python/dnspython-1.15.0[${PYTHON_USEDEP}]
>=dev-python/six-1.14.0[${PYTHON_USEDEP}]"
BDEPEND="
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
}
src_prepare() {
echo "asyncio-dgram>=1.2.0\nclick>=7.1.1\ndnspython3>=1.15.0\nsix>=1.14.0" > requirements.txt
echo "-r requirements.txt" > test-requirements.txt
eapply_user
}