From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7D1B6138359 for ; Wed, 28 Oct 2020 07:28:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0A21E081B; Wed, 28 Oct 2020 07:28:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9761FE081B for ; Wed, 28 Oct 2020 07:28:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FF6D340E1E for ; Wed, 28 Oct 2020 07:28:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32C8D39F for ; Wed, 28 Oct 2020 07:28:19 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1603870055.1c3e5f7ca303b6ccb4b7e5e8170bb3a0d8eb98c0.andrey_utkin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/slixmpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/slixmpp/slixmpp-9999.ebuild X-VCS-Directories: dev-python/slixmpp/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: 1c3e5f7ca303b6ccb4b7e5e8170bb3a0d8eb98c0 X-VCS-Branch: master Date: Wed, 28 Oct 2020 07:28:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7974be63-dc56-4ea4-a4bb-1c11307b941e X-Archives-Hash: 428d10ab5d19f684762e9c672fde0275 commit: 1c3e5f7ca303b6ccb4b7e5e8170bb3a0d8eb98c0 Author: Andrey Utkin gentoo org> AuthorDate: Wed Oct 28 07:04:54 2020 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Wed Oct 28 07:27:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c3e5f7c dev-python/slixmpp: add 9999 live ebuild Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Andrey Utkin gentoo.org> dev-python/slixmpp/slixmpp-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-python/slixmpp/slixmpp-9999.ebuild b/dev-python/slixmpp/slixmpp-9999.ebuild new file mode 100644 index 00000000000..64f1fc02263 --- /dev/null +++ b/dev-python/slixmpp/slixmpp-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8} ) + +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" +fi + +DEPEND=" + net-dns/libidn +" +RDEPEND=" + dev-python/aiodns[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/pyasn1-modules[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}] + ${DEPEND} +" + +distutils_enable_tests pytest