Gentoo Archives: gentoo-commits

From: Andrey Utkin <andrey_utkin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/slixmpp/
Date: Wed, 28 Oct 2020 07:28:22
Message-Id: 1603870055.1c3e5f7ca303b6ccb4b7e5e8170bb3a0d8eb98c0.andrey_utkin@gentoo
1 commit: 1c3e5f7ca303b6ccb4b7e5e8170bb3a0d8eb98c0
2 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 28 07:04:54 2020 +0000
4 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 28 07:27:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c3e5f7c
7
8 dev-python/slixmpp: add 9999 live ebuild
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
12
13 dev-python/slixmpp/slixmpp-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 1 file changed, 34 insertions(+)
15
16 diff --git a/dev-python/slixmpp/slixmpp-9999.ebuild b/dev-python/slixmpp/slixmpp-9999.ebuild
17 new file mode 100644
18 index 00000000000..64f1fc02263
19 --- /dev/null
20 +++ b/dev-python/slixmpp/slixmpp-9999.ebuild
21 @@ -0,0 +1,34 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{7,8} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Python 3 library for XMPP"
32 +HOMEPAGE="https://lab.louiz.org/poezio/slixmpp"
33 +LICENSE="MIT"
34 +SLOT="0"
35 +
36 +if [[ "${PV}" == "9999" ]]; then
37 + EGIT_REPO_URI="https://lab.louiz.org/poezio/${PN}.git"
38 + inherit git-r3
39 +else
40 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 + KEYWORDS="~amd64"
42 +fi
43 +
44 +DEPEND="
45 + net-dns/libidn
46 +"
47 +RDEPEND="
48 + dev-python/aiodns[${PYTHON_USEDEP}]
49 + dev-python/aiohttp[${PYTHON_USEDEP}]
50 + dev-python/pyasn1-modules[${PYTHON_USEDEP}]
51 + dev-python/pyasn1[${PYTHON_USEDEP}]
52 + ${DEPEND}
53 +"
54 +
55 +distutils_enable_tests pytest