dev-python/thingspeak: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-02 23:58:58 +01:00 committed by Andreas Billmeier
parent 8ff468915f
commit f62c0e4829
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,3 @@
DIST thingspeak-1.0.0.tar.gz 7187 BLAKE2B feb1987f5185aa3c52a9b0b168741fc4f3a7a261c93e8ecf98c88e468ac0422f51a8063146878a2f3c0c8542d103706e3e31190bbf117aacd49b266e83d9f392 SHA512 b66304d5d8bcb7e740e94a6465712fd5887379a42b018384e90e41d3346f9da123a9a77d50f83e3418c74b0bf0a6e02c5bc4df59b3550c83c724da27e6bd93e5
EBUILD thingspeak-1.0.0.ebuild 699 BLAKE2B d88057a075e28e2b15270b92bdbd74fa23bd2253e064a8125edb88f8ac2e94055214e4df482429ed88ee0fb0e0c535720a7e11d451c394fed15935bd8d2da3b5 SHA512 355b96399ec74d995c9fe3064410d306e3242802d4c9ea09b2b0ec78d2ea41d2aa6f8a49d04133495ad4da574d35f42dcb6b13a58aaa7ae50e9eba967947df75
EBUILD thingspeak-1.0.0.ebuild 734 BLAKE2B 5199c61730c6b5e87e4ca36464637dbf58083f5dbbdcaddcf1138b4162b08247cb718c348d30ba114f46e6e3582cf1e9043da4e863c6403e836138039a71f0e1 SHA512 ad5accea45574613fafdb9b8c3ef84e482a6f6ad79149aacc5d5ac4bef802574d4a3b8bf0aa933643b5dd84cff4df177aa27d62bea503b32a78233b1e5256806
MISC metadata.xml 460 BLAKE2B 43153952e19059cb0220cc761289f77f6dd643a678f2e0251c6bb43535236621effe5c56f1a807902b5a9703bcc732c56a4e50d45e7a4f84441084582f5122cb SHA512 2582844f5c16a7c1efd0def8a0a6736e579ab491ca887f77f855ec202b5076af83cddecc4068264c2f25356f7f45ab53bb3af5390b4a8ca178ed5d770f6df3b6

View File

@ -1,15 +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=poetry
inherit distutils-r1 pypi
DESCRIPTION="Client library for the thingspeak.com API"
HOMEPAGE="https://thingspeak.readthedocs.io/ https://pypi.org/project/thingspeak/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
@ -21,11 +19,15 @@ DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
src_prepare() {
sed -i -e '/include = /c\' pyproject.toml || die
distutils-r1_src_prepare
}
python_test() {
py.test -v -v || die
}