dev-python/asyncio-mqtt: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-06-10 14:44:57 +02:00 committed by Andreas Billmeier
parent bd0968286c
commit 67787e5b33
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 8 additions and 16 deletions

View File

@ -1,5 +1,5 @@
DIST asyncio-mqtt-0.12.1.tar.gz 14396 BLAKE2B 867e0f00b8bc8f992cbb436acc1a64c6e3237e6353cc6adc0ba7dcaefb577535993d7f77b2dcf00f56c731e9a66a4208259ecefc491a8715529195489b649a6a SHA512 dfc37301e9d1364a5c41689cf1bf468c88b87572be38953f6ee6a99b939894eb4f962eddaef238c48b06c512d866bd5758d12df8092d6307a077141b68ce5e30
DIST asyncio_mqtt-0.12.1.tar.gz 14396 BLAKE2B 867e0f00b8bc8f992cbb436acc1a64c6e3237e6353cc6adc0ba7dcaefb577535993d7f77b2dcf00f56c731e9a66a4208259ecefc491a8715529195489b649a6a SHA512 dfc37301e9d1364a5c41689cf1bf468c88b87572be38953f6ee6a99b939894eb4f962eddaef238c48b06c512d866bd5758d12df8092d6307a077141b68ce5e30
DIST asyncio_mqtt-0.16.1.tar.gz 32949 BLAKE2B 3a4701f616898d1daf2902b7aba09db958e5dfa7c441cd1a71a2b54215ef2acf6bb122cd9bde3366f76201d6ebc5c2f8350ac390f33aa34df9c58e6a915e5d41 SHA512 7592146d5d60196bed7f792e4f3931aeb44bafb28913eb8d23248b53ee963150e310bfb6251012622472cfac745b62b31826f0691d38c1933ca336bc6485a42f
EBUILD asyncio-mqtt-0.12.1.ebuild 791 BLAKE2B 24f4c8dcfb92f727c789157a5a72ede074b268039c4ee36c62d74a443cf51204773b8ad2d69a481c9e411b7b9560d9ee2bc6d9cb477f62f08f88c3970f2d5b06 SHA512 7bc59b098950e9941df772401b3dc65839d5e38ee3c8978fd0205c200d9feb7b8d7a4c9981250a472bc70b2162a05adc7b30d74bc140c3bf5b1568107efd8282
EBUILD asyncio-mqtt-0.16.1.ebuild 732 BLAKE2B f40c68e8f188731af3698ad541eab11a287ab3acf9b959120e7b9adef2b15418a4babb1a9e62ed7df33869fb80fcad011806490f96819c8efc7727da83e9260c SHA512 53e3e8cc105f29d232b22240d5ce9182be2bfbe463c8c2b610bb731e9c49776d8d0ad5b5690f937404d5b094f386f4fda9935a3215d59b0393f1dc0c83fe3c67
EBUILD asyncio-mqtt-0.12.1.ebuild 663 BLAKE2B 72b0aa3333509b469b80417da2b0990665ca7ba1f11148febae2a946ad8fa5d196aca434227300acaddaf044e488fde87830eacd8cadadb362d7e2a5cc2698ce SHA512 76b699b76d2b39f3ba362d90e69c83a912e154fdc902097ba350e90d3547db69800f258cb731d28efe1bb47d6d8950f82ae17ac7d1b4d2b30e29475a8a056958
EBUILD asyncio-mqtt-0.16.1.ebuild 663 BLAKE2B 72b0aa3333509b469b80417da2b0990665ca7ba1f11148febae2a946ad8fa5d196aca434227300acaddaf044e488fde87830eacd8cadadb362d7e2a5cc2698ce SHA512 76b699b76d2b39f3ba362d90e69c83a912e154fdc902097ba350e90d3547db69800f258cb731d28efe1bb47d6d8950f82ae17ac7d1b4d2b30e29475a8a056958
MISC metadata.xml 532 BLAKE2B 009ea1b4d763b3c746bf7d2f162303b7fb89596f791a469dafd6e76936c5a81c106452a5424f506f200a4feb75ef8b49d01d899192918c58ef721e46bd8a7d84 SHA512 3508fb506c6189d94622d60d0391a6d52c5aed61f1223d47e37eac96f2d0aba647a7f71b9a3d8e63c995c02ba7a087595ed423044059888459561c4ac7058435

View File

@ -1,17 +1,13 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Idomatic asyncio wrapper around paho-mqtt."
HOMEPAGE="https://github.com/sbtinstruments/asyncio-mqtt https://pypi.org/project/asyncio-mqtt/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="BSD"
SLOT="0"
@ -23,7 +19,6 @@ DOCS="README.md"
RDEPEND=">=dev-python/paho-mqtt-1.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"

View File

@ -3,13 +3,11 @@
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Idomatic asyncio wrapper around paho-mqtt."
HOMEPAGE="https://github.com/sbtinstruments/asyncio-mqtt https://pypi.org/project/asyncio-mqtt/"
SRC_URI="$(pypi_sdist_url)"
LICENSE="BSD"
SLOT="0"
@ -21,7 +19,6 @@ DOCS="README.md"
RDEPEND=">=dev-python/paho-mqtt-1.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"