diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-07-12 18:43:14 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-07-12 18:53:27 +0200 |
commit | d9a6c5db36eb31e1e45b6267ab2884c6d4e1d572 (patch) | |
tree | 57f4144ca88798d01945ae289f2e576c23642f11 | |
parent | dev-python/mpmath: Remove redundant versions (diff) | |
download | gentoo-d9a6c5db36eb31e1e45b6267ab2884c6d4e1d572.tar.gz gentoo-d9a6c5db36eb31e1e45b6267ab2884c6d4e1d572.tar.bz2 gentoo-d9a6c5db36eb31e1e45b6267ab2884c6d4e1d572.zip |
dev-python/msgpack: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/msgpack/Manifest | 1 | ||||
-rw-r--r-- | dev-python/msgpack/msgpack-0.5.6.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-python/msgpack/Manifest b/dev-python/msgpack/Manifest index b7aedd2bb422..b4c06acc7641 100644 --- a/dev-python/msgpack/Manifest +++ b/dev-python/msgpack/Manifest @@ -1,2 +1 @@ -DIST msgpack-0.5.6.tar.gz 138292 BLAKE2B 6a3b8472b785d77e142d21464b9e52c55166a8eff56009f63df5daa8cd5b6dbce4406a06ffa8d478cb44dfbdfab2f3b4b29cd11279ea82f67906b97d507f7eda SHA512 bdbd193bd3bd02e78d9c6e8d9d8fa687d13583dff2813bc77c5e6cbbe0d180765da3c9a80d176f9993589e35f548ad04973e3d523d0b6d41ef7916ecd86195aa DIST msgpack-0.6.2.tar.gz 119062 BLAKE2B 6b20a0d31b811ae66e66dbfaacec6f0cf2152b2937423b78f3e6244bfa49c87767788c5ee1db41b9020801b8777a4c15b1fe1853182718adf622bc7e1bff858e SHA512 95b92e3d35e0500dd4256d18bf76e586e57cc66319b4459ac5daef599277a5049177a89ad86e291dbdc4c7a918901a89d9218353ddc4a7d0b399e8a98afef363 diff --git a/dev-python/msgpack/msgpack-0.5.6.ebuild b/dev-python/msgpack/msgpack-0.5.6.ebuild deleted file mode 100644 index 50d4c3283466..000000000000 --- a/dev-python/msgpack/msgpack-0.5.6.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="MessagePack (de)serializer for Python" -HOMEPAGE="https://msgpack.org - https://github.com/msgpack/msgpack-python/ - https://pypi.org/project/msgpack/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 ppc x86" -IUSE="+native-extensions test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - native-extensions? ( - $(python_gen_cond_dep '>=dev-python/cython-0.16[${PYTHON_USEDEP}]' 'python*') - ) - test? ( - dev-python/six[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -python_prepare_all() { - # Remove pre-generated cython files - rm msgpack/{_packer,_unpacker}.cpp || die - - if ! use native-extensions ; then - sed -i -e "/have_cython/s:True:False:" ./setup.py || die - fi - distutils-r1_python_prepare_all -} - -python_test() { - py.test -v test || die "Tests fail with ${EPYTHON}" -} |