diff options
author | 2020-11-15 08:46:58 +0100 | |
---|---|---|
committer | 2020-11-15 08:46:58 +0100 | |
commit | 838c50a205aabeb28f046279f7e0484490904c20 (patch) | |
tree | d0d58574dac24ea8c1b5d0b7cbb3347861dbc7e9 /dev-python/paste | |
parent | dev-python/markdown: Remove old (diff) | |
download | gentoo-838c50a205aabeb28f046279f7e0484490904c20.tar.gz gentoo-838c50a205aabeb28f046279f7e0484490904c20.tar.bz2 gentoo-838c50a205aabeb28f046279f7e0484490904c20.zip |
dev-python/paste: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/paste')
-rw-r--r-- | dev-python/paste/Manifest | 1 | ||||
-rw-r--r-- | dev-python/paste/paste-3.4.6.ebuild | 42 |
2 files changed, 0 insertions, 43 deletions
diff --git a/dev-python/paste/Manifest b/dev-python/paste/Manifest index 551b78b77e5b..ffb588bfb63d 100644 --- a/dev-python/paste/Manifest +++ b/dev-python/paste/Manifest @@ -1,2 +1 @@ -DIST Paste-3.4.6.tar.gz 630593 BLAKE2B c1bfa58be8bc182878f0e67c89b09896152e1be993f301bc3ff1fd2673439146f3e95b0e2247d6c3cf43c346f67c7fdaf8a7721dfd0967f71d6346fbf62bab4a SHA512 64cf2abdd40850704060b3a07d1999dcfd05e19bf27270f7918c5c8683a4b1638d04da13d09f9f671b8acf069e26872d5932d5f0ed7022fd5cdc6bbda7602433 DIST Paste-3.5.0.tar.gz 638021 BLAKE2B 6c8d856733245a7eef5782f8d6c1fe35093f5247cc76e86ab308f2d98a99ebaaef5309a9c402f1334707e042b52e52d7801723e9404ad0ae454b756b9df31dfb SHA512 a9f596d6fcd95f915990c16830caeb9c9a03412447597258c67a003fd485e2efd27798f2eb2de9978ac529292af4b55136de554bfb501e90f6185f55a6b0531b diff --git a/dev-python/paste/paste-3.4.6.ebuild b/dev-python/paste/paste-3.4.6.ebuild deleted file mode 100644 index ceb33d7884b9..000000000000 --- a/dev-python/paste/paste-3.4.6.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6..9} pypy3 ) - -inherit distutils-r1 - -MY_P="Paste-${PV}" -DESCRIPTION="Tools for using a Web Server Gateway Interface stack" -HOMEPAGE="https://pypi.org/project/Paste/" -SRC_URI="mirror://pypi/${MY_P::1}/${PN^}/${MY_P}.tar.gz" -S=${WORKDIR}/${MY_P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris" - -RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}] - >=dev-python/six-1.4.0[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest -distutils_enable_sphinx docs - -python_prepare_all() { - # TODO: 'Address already in use' - sed -e 's:test_address_family_v4:_&:' \ - -i tests/test_httpserver.py || die - - # Remove a test that runs against the paste website. - rm -f tests/test_proxy.py || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - - find "${D}" -name '*.pth' -delete || die -} |