Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/slixmpp/
Date: Sun, 29 Mar 2020 08:20:34
Message-Id: 1585469963.694eeedb1e059e2baffdae80808377fa1b861eff.mgorny@gentoo
1 commit: 694eeedb1e059e2baffdae80808377fa1b861eff
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 08:00:15 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 08:19:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=694eeedb
7
8 dev-python/slixmpp: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/slixmpp/Manifest | 1 -
13 dev-python/slixmpp/slixmpp-1.4.0.ebuild | 37 ---------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/slixmpp/Manifest b/dev-python/slixmpp/Manifest
17 index 3089e031977..df5a662ffbc 100644
18 --- a/dev-python/slixmpp/Manifest
19 +++ b/dev-python/slixmpp/Manifest
20 @@ -1,2 +1 @@
21 -DIST slixmpp-1.4.0.tar.gz 862826 BLAKE2B 940c6c66f7f98574c88da6fbfaadf7103c4469cd198e096fbad57978f5e206c53b86933a930a24a8b891415b961c4a255d4c9c25885a8bd630f5d6185486fb6e SHA512 586fa5156641d786f9e45df8e6a1a20b8cb2dc2b9baef2a0713daa9ab8a3321202fd4b31d5753cf2659cc9311a4842bee9991a7fc295e62dfd78a869d8619d20
22 DIST slixmpp-1.4.2.tar.gz 864608 BLAKE2B 9689b274a9c787174248c094329ea33783627a45ef39708a611013454953de4fa8799ca5a35950a3f3ed49bebf5c56f6f2bea079bcc2a3dce7d2648bfd812371 SHA512 3b3356352af8d7ec8cca15210c0524ce0bb5e313d8c5455bec13e82aec261f6d094a99df9f08642418a0e4abea4ee1ff607e42e1c166b9be1c26534b690c330b
23
24 diff --git a/dev-python/slixmpp/slixmpp-1.4.0.ebuild b/dev-python/slixmpp/slixmpp-1.4.0.ebuild
25 deleted file mode 100644
26 index 890b6d12d3d..00000000000
27 --- a/dev-python/slixmpp/slixmpp-1.4.0.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_6 )
35 -
36 -inherit eutils distutils-r1
37 -
38 -DESCRIPTION="Python 3 library for XMPP"
39 -HOMEPAGE="https://dev.louiz.org/projects/slixmpp"
40 -LICENSE="MIT"
41 -SLOT="0"
42 -IUSE="test"
43 -RESTRICT="!test? ( test )"
44 -
45 -if [[ "${PV}" == "9999" ]]; then
46 - EGIT_REPO_URI="https://lab.louiz.org/poezio/${PN}.git"
47 - inherit git-r3
48 -else
49 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
50 - KEYWORDS="~amd64"
51 -fi
52 -
53 -RDEPEND="
54 - dev-python/aiodns[${PYTHON_USEDEP}]
55 - dev-python/pyasn1-modules[${PYTHON_USEDEP}]
56 - dev-python/pyasn1[${PYTHON_USEDEP}]
57 -"
58 -DEPEND="
59 - dev-python/setuptools[${PYTHON_USEDEP}]
60 - net-dns/libidn
61 - test? ( $RDEPEND )
62 -"
63 -
64 -python_test() {
65 - esetup.py test
66 -}