diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-16 15:41:54 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-16 17:56:57 +0200 |
commit | 45fc170a3bfb5f31395bddb718f44ec72fa66cde (patch) | |
tree | 9ecc35538575f5a9c357d656bce807b760601fae /dev-python/traitlets | |
parent | dev-python/notebook: Drop old (diff) | |
download | gentoo-45fc170a3bfb5f31395bddb718f44ec72fa66cde.tar.gz gentoo-45fc170a3bfb5f31395bddb718f44ec72fa66cde.tar.bz2 gentoo-45fc170a3bfb5f31395bddb718f44ec72fa66cde.zip |
dev-python/traitlets: Drop old
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'dev-python/traitlets')
-rw-r--r-- | dev-python/traitlets/Manifest | 4 | ||||
-rw-r--r-- | dev-python/traitlets/traitlets-4.0.0.ebuild | 53 | ||||
-rw-r--r-- | dev-python/traitlets/traitlets-4.1.0.ebuild | 52 | ||||
-rw-r--r-- | dev-python/traitlets/traitlets-4.2.2.ebuild | 56 | ||||
-rw-r--r-- | dev-python/traitlets/traitlets-4.3.1.ebuild | 56 |
5 files changed, 0 insertions, 221 deletions
diff --git a/dev-python/traitlets/Manifest b/dev-python/traitlets/Manifest index 2229ff8a661e..43f72f19e773 100644 --- a/dev-python/traitlets/Manifest +++ b/dev-python/traitlets/Manifest @@ -1,5 +1 @@ -DIST traitlets-4.0.0.tar.gz 63701 BLAKE2B 101ada3d4597c0cea2b4a3776f45f9a717dd768f9e31f7e172fbc3ffcc915ec558bc4bfbceab7d53840ec86b28cf4ddcd6784347bdeba4d43232b1636dfedf53 SHA512 559730dbe9f5f0e75c867cd514c91a3e862a23a9e019d3883b4be66b6208980a583f39cceca4f20e409bd44335a367e7fd5654db0128bb7a735311e6b2c32f24 -DIST traitlets-4.1.0.tar.gz 76828 BLAKE2B 4a79729d2d5e578629aa020c1d9fa50d50f0a9a595349767bd3a1dedf8f3f22944cf59a9ae9b519cdc80b1d8aa937c48411dabfb6c37ec88aa06db9674fb995f SHA512 4000ca3014b3916a16735b0c96b4290ca25a750bc97ae1d65ed7932e84db1d414ae6d0955192a806e878fb4e6769763296474cadf153673fcae7b41f5887a235 -DIST traitlets-4.2.2.tar.gz 79332 BLAKE2B 527509530d1d9c32b8cbcca2735a239b2e6775c0c78fc4daf02f21b5b310120dc57609d618e4f832c3d7aba61253898d1cbc8c3340ed56d45ef7f03cb8c0c5d5 SHA512 1deff1dea59d4f0616510f2f80bc990db3626b83c32784658f3f273ed093221760ca9832bbdbaa15a85cb8cd5c89a795f941b439b244bfd5d390da826f7a69a5 -DIST traitlets-4.3.1.tar.gz 88108 BLAKE2B 1a2ba6627dba1d2e49a9c500f25f355187e7f65617ebbfa8e0fe4a3eb37be92539af490d864ef335008431f6d2d0026b315738940fc34f71a6e7e9108c9e611d SHA512 f68f381c3233a7703d8888a2eda15ccae6ca70a8d0e93d03eb6d646205fe24d03a116c8f1f8ee6d4470eb6267880e8e91c9e2354f1b551b798b6e1b2d80deed5 DIST traitlets-4.3.2.tar.gz 88173 BLAKE2B 51848cc4405521872391e2e4e55bb6c32ac939125337118bdc6282f4e7eacb116ddc94ff901fec18c2cf023af5d39aec77e6737bee2f915b28b4032611257860 SHA512 4f3239bc31af224814c8181dd1ac0fe5287160aee48b2b0f54afae841c8a9d7eaed010082044b6d16f91cd970bf0aa1eeba57d4503dd919fc8c4613ac5150ca9 diff --git a/dev-python/traitlets/traitlets-4.0.0.ebuild b/dev-python/traitlets/traitlets-4.0.0.ebuild deleted file mode 100644 index 68a55b3690af..000000000000 --- a/dev-python/traitlets/traitlets-4.0.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -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 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/decorator[${PYTHON_USEDEP}] - dev-python/ipython_genutils[${PYTHON_USEDEP}] - " -DEPEND=" - doc? ( - dev-python/ipython_genutils[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ) - test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/coverage[${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() { - use doc && emake -C docs html -} - -python_test() { - nosetests --with-coverage --cover-package traitlets traitlets || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/traitlets/traitlets-4.1.0.ebuild b/dev-python/traitlets/traitlets-4.1.0.ebuild deleted file mode 100644 index 729d7cbd0002..000000000000 --- a/dev-python/traitlets/traitlets-4.1.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -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 ~arm64 ~x86" -IUSE="doc 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/nose[${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() { - use doc && emake -C docs html -} - -python_test() { - nosetests --verbosity=3 traitlets || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/traitlets/traitlets-4.2.2.ebuild b/dev-python/traitlets/traitlets-4.2.2.ebuild deleted file mode 100644 index 9b2c4e64fb37..000000000000 --- a/dev-python/traitlets/traitlets-4.2.2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) - -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 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/decorator[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7) - 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? ( - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - dev-python/pytest-cov[${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() { - use doc && emake -C docs html -} - -python_test() { - py.test --cov traitlets -v traitlets || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/build/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/traitlets/traitlets-4.3.1.ebuild b/dev-python/traitlets/traitlets-4.3.1.ebuild deleted file mode 100644 index 4e4ef72acb87..000000000000 --- a/dev-python/traitlets/traitlets-4.3.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) - -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 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/decorator[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7) - 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? ( - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - dev-python/pytest-cov[${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() { - use doc && emake -C docs html -} - -python_test() { - py.test --cov traitlets -v traitlets || die -} - -python_install_all() { - use doc && HTML_DOCS=( docs/build/html/. ) - distutils-r1_python_install_all -} |