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/u-msgpack/
Date: Sun, 29 Mar 2020 10:30:26
Message-Id: 1585477769.a440337ab5545ba8ab189bbbce30aa6f893bf1c0.mgorny@gentoo
1 commit: a440337ab5545ba8ab189bbbce30aa6f893bf1c0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 10:22:22 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 10:29:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a440337a
7
8 dev-python/u-msgpack: Remove redundant versions
9
10 Closes: https://bugs.gentoo.org/714546
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/u-msgpack/Manifest | 1 -
14 dev-python/u-msgpack/u-msgpack-2.4.1.ebuild | 33 -----------------------------
15 2 files changed, 34 deletions(-)
16
17 diff --git a/dev-python/u-msgpack/Manifest b/dev-python/u-msgpack/Manifest
18 index db233f75de1..b8ec9d19510 100644
19 --- a/dev-python/u-msgpack/Manifest
20 +++ b/dev-python/u-msgpack/Manifest
21 @@ -1,2 +1 @@
22 -DIST u-msgpack-2.4.1.tar.gz 12026 BLAKE2B d8f9c5558daba3afda53c4c1b8e10edd6baa08a58c82796171ae0752c10c638b76abc608349e2ba090e83b2df66611a5c0c03febd38c2a13c45fb617b6bcf74f SHA512 4c3edb72455e8eb8fa7a4ed9b6ef4461755b782391f2c362d52d0fafda3e790fb40d0d239d05ba99beb3ad4cfd9e200175e2a1917cd64ee1e5d8cc3c4e8b3f25
23 DIST u-msgpack-2.5.2.tar.gz 17641 BLAKE2B 643984fd9ed2f87ad0cce9e64aaa064465048067098bf01bd844a04bc1b870d6688eac6bc9f1dddf9bf705fb14bc332796f06b8b59d0dfe79261e85ba11b60d1 SHA512 cefba7ed86d2b7c37b0d92e3a4fb4ec62c89dffee0be078c783010638413e6ce1af7ab959b43dfedb6fd8cf2943185c18fc2201a4a9764c423e8242bcedf21a9
24
25 diff --git a/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild b/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild
26 deleted file mode 100644
27 index 2f6ac9d42b3..00000000000
28 --- a/dev-python/u-msgpack/u-msgpack-2.4.1.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="${PN}-python"
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="A portable, lightweight MessagePack serializer and deserializer"
43 -HOMEPAGE="https://github.com/vsergeev/u-msgpack-python https://pypi.org/project/u-msgpack-python/"
44 -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
49 -IUSE="test"
50 -
51 -RDEPEND=""
52 -DEPEND="${RDEPEND}
53 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
54 -
55 -RESTRICT="!test? ( test )"
56 -
57 -S=${WORKDIR}/${MY_P}
58 -
59 -PATCHES=("${FILESDIR}"/${P}-little-endian.patch)
60 -
61 -python_test() {
62 - py.test -v || die "Tests fail with ${EPYTHON}"
63 -}