diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-24 09:31:11 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-24 09:45:32 +0100 |
commit | c5b4ebf9d4260aa7d633805487059f85e2e4e79a (patch) | |
tree | d85aff1f22c3b7b22388b7ec7de06b94c6c5483d /dev-python/fakeredis | |
parent | dev-ruby/webmock: add 3.11.0 (diff) | |
download | gentoo-c5b4ebf9d4260aa7d633805487059f85e2e4e79a.tar.gz gentoo-c5b4ebf9d4260aa7d633805487059f85e2e4e79a.tar.bz2 gentoo-c5b4ebf9d4260aa7d633805487059f85e2e4e79a.zip |
dev-python/fakeredis: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/fakeredis')
-rw-r--r-- | dev-python/fakeredis/Manifest | 1 | ||||
-rw-r--r-- | dev-python/fakeredis/fakeredis-1.4.4.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-python/fakeredis/Manifest b/dev-python/fakeredis/Manifest index da15d3e30829..da5d1c5cd15a 100644 --- a/dev-python/fakeredis/Manifest +++ b/dev-python/fakeredis/Manifest @@ -1,2 +1 @@ -DIST fakeredis-1.4.4.gh.tar.gz 65483 BLAKE2B 500346bb96d2c1308d0565a006ca037784ff25670fd313c94df13f0ceb6d90dbec044c71c95bdabbd593823e26b47a8f8f2a2f7f5b3fa9307b9ccea407b2872c SHA512 04b85675b088e698f11edf8727b88544640cac0caa0048f009371a4c9a9ebc17443d8f03c9ead20ca40608f618c4d394cd6ba4c9d1e5e59b058713756856e450 DIST fakeredis-1.4.5.gh.tar.gz 66197 BLAKE2B f0f36d1e209673f7722849e835c2a33fac9f7e8bfb1294ecf2e69478295f14af514d0fc4a5732a20ce099333b136d682591fef031ce90d6262fa8c9025cbfa2e SHA512 e16ae5c5947a924b0c9c40ae68efebad5cccea9f88d1b5c3f1677e1ccb8c1fa75dbafc9b413c2359b774f3043c387ff91ecd4e2e21204036883175944338d59b diff --git a/dev-python/fakeredis/fakeredis-1.4.4.ebuild b/dev-python/fakeredis/fakeredis-1.4.4.ebuild deleted file mode 100644 index 989b57bc2d0b..000000000000 --- a/dev-python/fakeredis/fakeredis-1.4.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{6..9} ) -inherit distutils-r1 - -DESCRIPTION="Fake implementation of redis API for testing purposes" -HOMEPAGE=" - https://github.com/jamesls/fakeredis/ - https://pypi.org/project/fakeredis/" -SRC_URI=" - https://github.com/jamesls/fakeredis/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" - -RDEPEND=" - dev-python/redis-py[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/sortedcontainers[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/hypothesis[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -python_test() { - local excludes=( - # tests for use with aioredis, not packaged in ::gentoo - --ignore test/test_aioredis.py - # tests requiring lupa (lua support) - -k 'not test_eval and not test_lua and not test_script' - ) - - pytest -vv "${excludes[@]}" || die "Tests failed with ${EPYTHON}" -} |