diff options
author | Florian Schmaus <flow@gentoo.org> | 2022-11-13 12:06:07 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-11-13 12:06:21 +0100 |
commit | cfed4940a901879b99a287b9ab781a7061bec7f5 (patch) | |
tree | a7e53f84948fadd94d01590ad45d4449c25f6bba /dev-python/slixmpp | |
parent | dev-ada/e3-testsuite: rm pth files (diff) | |
download | gentoo-cfed4940a901879b99a287b9ab781a7061bec7f5.tar.gz gentoo-cfed4940a901879b99a287b9ab781a7061bec7f5.tar.bz2 gentoo-cfed4940a901879b99a287b9ab781a7061bec7f5.zip |
dev-python/slixmpp: add 1.8.3
Bug: https://bugs.gentoo.org/881181
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'dev-python/slixmpp')
-rw-r--r-- | dev-python/slixmpp/Manifest | 1 | ||||
-rw-r--r-- | dev-python/slixmpp/slixmpp-1.8.3.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/slixmpp/Manifest b/dev-python/slixmpp/Manifest index 40fb9ac6a697..cbffe8a7fdbb 100644 --- a/dev-python/slixmpp/Manifest +++ b/dev-python/slixmpp/Manifest @@ -1 +1,2 @@ DIST slixmpp-1.8.2.tar.gz 535672 BLAKE2B 8af0329083d5e8bb630bfbedddbe67a78eadcbcb25ed5c9b9b0ddbfbedf973702110d2b3558f5bcf25257d6a7029b1e6afba87c57a37c1f0d4d36305b246979b SHA512 243223754a7c84b653d0282b38f4df58fb5905865635c210bc78b444e85c3b8b964feda7d42b66e9c414ea7a07ecadfc3206c446cc1d9fa625308e783e3d3be5 +DIST slixmpp-1.8.3.tar.gz 1053891 BLAKE2B cecf307406f093e8b069a70485edf38a95054b2d299b0a34064e582c20243d8f90ea557079cde9b22bb1b3b9e3e7d452347625bb2c21def461193360290b4d62 SHA512 2d499c106bcb8d86a8522e617d855f5c6aeb5e3e7f3757331baef1bcfa4e81d24ef6a554e760e323ab1b542c168dae4cb99ea56db92f5539542045ac6c8b9c9d diff --git a/dev-python/slixmpp/slixmpp-1.8.3.ebuild b/dev-python/slixmpp/slixmpp-1.8.3.ebuild new file mode 100644 index 000000000000..a4b3ead83d1d --- /dev/null +++ b/dev-python/slixmpp/slixmpp-1.8.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Python 3 library for XMPP" +HOMEPAGE="https://lab.louiz.org/poezio/slixmpp" +LICENSE="MIT" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://lab.louiz.org/poezio/${PN}.git" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~riscv" +fi + +DEPEND=" + net-dns/libidn:= +" +RDEPEND=" + dev-python/aiodns[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + dev-python/defusedxml[${PYTHON_USEDEP}] + dev-python/pyasn1-modules[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}] + ${DEPEND} +" + +distutils_enable_tests unittest |