diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-07-08 20:25:09 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-07-08 21:22:25 +0200 |
commit | f3186fb1c56839e822d29079080edfa0b27e75f2 (patch) | |
tree | 3dc9c4e74eb306402442ff374b5e0e87c6ca4f0f /dev-python/dissononce | |
parent | dev-python/transitions: Enable py3.13 (diff) | |
download | gentoo-f3186fb1c56839e822d29079080edfa0b27e75f2.tar.gz gentoo-f3186fb1c56839e822d29079080edfa0b27e75f2.tar.bz2 gentoo-f3186fb1c56839e822d29079080edfa0b27e75f2.zip |
dev-python/dissononce: Enable py3.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/dissononce')
-rw-r--r-- | dev-python/dissononce/dissononce-0.34.3-r3.ebuild | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/dev-python/dissononce/dissononce-0.34.3-r3.ebuild b/dev-python/dissononce/dissononce-0.34.3-r3.ebuild index 572f8f4c5e0e..cfe8c24a6af6 100644 --- a/dev-python/dissononce/dissononce-0.34.3-r3.ebuild +++ b/dev-python/dissononce/dissononce-0.34.3-r3.ebuild @@ -4,13 +4,19 @@ EAPI=8 DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 DESCRIPTION="A python implementation for Noise Protocol Framework" -HOMEPAGE="https://github.com/tgalal/dissononce" -SRC_URI="https://github.com/tgalal/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" +HOMEPAGE=" + https://github.com/tgalal/dissononce/ + https://pypi.org/project/dissononce/ +" +SRC_URI=" + https://github.com/tgalal/dissononce/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" LICENSE="MIT" SLOT="0" @@ -21,10 +27,13 @@ RDEPEND=" dev-python/cryptography[${PYTHON_USEDEP}] dev-python/transitions[${PYTHON_USEDEP}] " +BDEPEND=" + ${RDEPEND} +" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${P}-fix-test-requirements.patch" ) +PATCHES=( + "${FILESDIR}/${P}-fix-test-requirements.patch" +) distutils_enable_tests pytest |