diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-08-22 09:08:54 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-08-22 09:08:54 +0200 |
commit | f87361dd872558788828639f12f0098f3da1a1cb (patch) | |
tree | b2ec6ce53e7d86742c5a20a9fde8109beb027c4a /dev-python/traitlets | |
parent | dev-python/tqdm: Remove redundant versions (diff) | |
download | gentoo-f87361dd872558788828639f12f0098f3da1a1cb.tar.gz gentoo-f87361dd872558788828639f12f0098f3da1a1cb.tar.bz2 gentoo-f87361dd872558788828639f12f0098f3da1a1cb.zip |
dev-python/traitlets: Remove redundant versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/traitlets')
-rw-r--r-- | dev-python/traitlets/Manifest | 1 | ||||
-rw-r--r-- | dev-python/traitlets/traitlets-4.3.2.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-python/traitlets/Manifest b/dev-python/traitlets/Manifest index a7f78b2c6407..d72781f93c9b 100644 --- a/dev-python/traitlets/Manifest +++ b/dev-python/traitlets/Manifest @@ -1,2 +1 @@ -DIST traitlets-4.3.2.tar.gz 88173 BLAKE2B 51848cc4405521872391e2e4e55bb6c32ac939125337118bdc6282f4e7eacb116ddc94ff901fec18c2cf023af5d39aec77e6737bee2f915b28b4032611257860 SHA512 4f3239bc31af224814c8181dd1ac0fe5287160aee48b2b0f54afae841c8a9d7eaed010082044b6d16f91cd970bf0aa1eeba57d4503dd919fc8c4613ac5150ca9 DIST traitlets-4.3.3.tar.gz 89838 BLAKE2B 04b50fabdc312c427f0cff6d4e8be0a5afcafe6d5a7a5804fb37e6f92b867e6a9c6401c23b7cdd7b0a6372eadaf3e8350018db5d21c5cbc546390138932a2820 SHA512 a7ae0276e5234d6d428908e1ec74c0b92f2b1b73e37402ad154151c41ef6e4aaaad53e8990d4233d8023c31d919e4ea66f100a82324abcb0e6ffb92283fd3c9e diff --git a/dev-python/traitlets/traitlets-4.3.2.ebuild b/dev-python/traitlets/traitlets-4.3.2.ebuild deleted file mode 100644 index c99abaa62359..000000000000 --- a/dev-python/traitlets/traitlets-4.3.2.ebuild +++ /dev/null @@ -1,53 +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="A configuration system for Python applications" -HOMEPAGE="https://github.com/ipython/traitlets" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/decorator[${PYTHON_USEDEP}] - dev-python/ipython_genutils[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - " -DEPEND=" - doc? ( - dev-python/ipython_genutils[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ) - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - ) - " - -python_prepare_all() { - # Prevent un-needed download during build - if use doc; then - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/build/html/. ) - fi -} - -python_test() { - pytest -vv traitlets || die -} |