diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-03-14 05:44:40 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-03-14 05:44:40 +0100 |
commit | c7ca030dd82a046ce1f85ff416561e8c00c5bf20 (patch) | |
tree | fd17ba4b399ecf3ddbf642be13775fd37ded75e2 /dev-python/doublex | |
parent | dev-python/poetry-core: Bump to 1.5.2 (diff) | |
download | gentoo-c7ca030dd82a046ce1f85ff416561e8c00c5bf20.tar.gz gentoo-c7ca030dd82a046ce1f85ff416561e8c00c5bf20.tar.bz2 gentoo-c7ca030dd82a046ce1f85ff416561e8c00c5bf20.zip |
dev-python/doublex: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/doublex')
-rw-r--r-- | dev-python/doublex/Manifest | 1 | ||||
-rw-r--r-- | dev-python/doublex/doublex-1.9.2-r1.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/doublex/Manifest b/dev-python/doublex/Manifest index 4c74d171f9cc..c9bb57a8e4a2 100644 --- a/dev-python/doublex/Manifest +++ b/dev-python/doublex/Manifest @@ -1,3 +1,2 @@ -DIST doublex-1.9.2.tar.gz 80246 BLAKE2B 7fc1c4e6d117bee13e7125b634293aa7c9d1016c9cd5201f047143bcb1fae1e9607bf0a030cbaa2d6eb930474babe29aaf244433aba57ae4325a3a43af2fdf56 SHA512 0278f756930b0d5c3da676e3908ccc17b919c14f740aace3002f5117fa341ac52fe16fdaa2c3b36029757dd1dc2f36d8d35cdc8664fcfdbcafd4809d2fc969b0 DIST doublex-1.9.5.1.tar.gz 80508 BLAKE2B 3c3e233bbe4fcc3a122430bfb826ab9824d41472e80802f0e6d345da83cbe97bb33912a831bead550299942b0087063e86839f6bf3a29a08164b6e3bf641f437 SHA512 498e8a8076ed7d3585aae7a20edf54d4143e6875cd8e7af3b47f9f9cfc612a5217d7877092c2af7f1ac80c7aad7be89946671a836fc5817de06ec541c0cb1e06 DIST python-doublex-1.9.6.1.gh.tar.gz 81848 BLAKE2B 34aa108ba12f34f18f7a7b3d12fd2a539736d95097fd3ecf5344fdac551b16717d5348da1c6e2e10e19878b82de7e9195b9bd17d526156bc13e0ad2fd789b23e SHA512 c9779c5fcde43af653c2131894da44a878acf2cc81d53f6ab89a6fde071827a22aa97ec5a51561ad8861a98623d38c75f184be6234a6a5323c52e8e538c66710 diff --git a/dev-python/doublex/doublex-1.9.2-r1.ebuild b/dev-python/doublex/doublex-1.9.2-r1.ebuild deleted file mode 100644 index b42ef4b5aad5..000000000000 --- a/dev-python/doublex/doublex-1.9.2-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 vcs-snapshot - -DESCRIPTION="Python test doubles" -HOMEPAGE="https://bitbucket.org/DavidVilla/python-doublex" -SRC_URI="https://bitbucket.org/DavidVilla/python-${PN}/get/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 arm64" -IUSE="doc test" - -RDEPEND=" - dev-python/pyhamcrest[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -BDEPEND=" - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/nose[${PYTHON_USEDEP}] ) -" - -distutils_enable_tests setup.py - -PATCHES=( - # https://bitbucket.org/DavidVilla/python-doublex/pull-requests/1/support-python-310-by-using-collectionsabc - "${FILESDIR}/${P}-py310.patch" -) - -python_prepare_all() { - # Disable broken tests - # https://bitbucket.org/DavidVilla/python-doublex/issues/5/support-for-python-36-37-38-tests-failing - sed -i "s/test_*hamcrest_/_&/" doublex/test/report_tests.py || die - # https://bitbucket.org/DavidVilla/python-doublex/issues/6/more-failing-tests-with-python-39 - sed -i -r "s/test_(proxyspy_get_stubbed_property|stub_property|custom_equality_comparable_objects)/_&/" \ - doublex/test/unit_tests.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C docs -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - - distutils-r1_python_install_all - - rm "${ED}"/usr/README.rst || die "Couldn't remove spurious README.rst" -} |