dev-python/pypoint: add 2.3.2

Closes: #2296
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-01 11:09:58 +01:00 committed by Andreas Billmeier
parent 6623512530
commit ee84699cb1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 7 deletions

View File

@ -1,3 +1,5 @@
DIST pypoint-2.3.0.tar.gz 5872 BLAKE2B fd5d933b8afe99e2bf7bb5d87a15ad0eccf7585fd9fe6a637900f14af3d49b466d94fa66afa654ce6c987c3552054780263f9a8e35b8ac43f31198b042344360 SHA512 69f25f9e8062765b1aba67849d8c6b50a40c896509d6c28f0564da38df6c8380b0390b637ea2495e2f8d0edbd1d3e547f44eaf4bc7af7568dc57f5f006a34898
EBUILD pypoint-2.3.0.ebuild 715 BLAKE2B b0fa8f4e2e9c8acf900a0eeadeba1a174fd6d17321fda04940964dcbb68cbe278cb6d0d5debc9aa7f825ee564e62c6af4ff583fb1582c5baaf55870df1037dca SHA512 29cc48682d277238d1e7ca5e58c8a2a771a8442d3fecd92231f240c5bdbce93a4c4ee04b935560d2ff83d5219a250a05e26f3e2b5695f266dcdc8e377cdabdfa
DIST pypoint-2.3.2.tar.gz 5905 BLAKE2B 6acfd5bf59ef6f869feb492816705ddb3fcf3d261252ea0e1614e90b145212ccab83a5bbbade86ce028984779ce89769f5775eb1a071de9dd4cda6cb07aa0de8 SHA512 e68ec45d90300018d3fdb8cc830a22855732631f39ad48c1c093abacc7af9317cc8dfcfeff3b2a8b28f97ad78e70bf58ab9aed650e7f632db54e3677033eb8fc
EBUILD pypoint-2.3.0.ebuild 660 BLAKE2B 0e4af1102f87fc186d0662a34da0ccac0995fba6cd9cf8da580c59d78663e1701cdeb90f6149703737db8e7c0ef794f2146038c5865b85045921916771604270 SHA512 31f6ec80033c9a2a40d3ed14ef8f595b1d13ce5a0eb72d219954f12d151b4aba3ff804ab9e87dc4bbd85e58f33d8c0061471d0046b6a2b399eb38a6506b6dcba
EBUILD pypoint-2.3.2.ebuild 660 BLAKE2B 0e4af1102f87fc186d0662a34da0ccac0995fba6cd9cf8da580c59d78663e1701cdeb90f6149703737db8e7c0ef794f2146038c5865b85045921916771604270 SHA512 31f6ec80033c9a2a40d3ed14ef8f595b1d13ce5a0eb72d219954f12d151b4aba3ff804ab9e87dc4bbd85e58f33d8c0061471d0046b6a2b399eb38a6506b6dcba
MISC metadata.xml 515 BLAKE2B a2ed75d873100d14d7a8650d3a9c5602b2731a75205ec4c650c0ca77930b6d60af0c93021c456c53e7e7eae1e311ddc6cea5d6b7c604e5f41e9f4a3e11f9fd05 SHA512 dc371fa7a8283efa7d0a441534d27be4abb70733a95a6f639af3edde99f861f59fe3cafe1b71795b8850c4401a0dce7ad08680ee21bdd2cc0af4dff46ef45c0c

View File

@ -1,15 +1,14 @@
# 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="API for Minut Point"
HOMEPAGE="https://github.com/fredrike/pypoint https://pypi.org/project/pypoint/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
@ -22,7 +21,6 @@ DOCS="README.md"
RDEPEND=">=dev-python/httpx-0.19.0[${PYTHON_USEDEP}]
dev-python/Authlib[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"

View File

@ -0,0 +1,32 @@
# 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
inherit distutils-r1 pypi
DESCRIPTION="API for Minut Point"
HOMEPAGE="https://github.com/fredrike/pypoint https://pypi.org/project/pypoint/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/httpx-0.19.0[${PYTHON_USEDEP}]
dev-python/Authlib[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest