public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/traitlets/
Date: Wed, 16 May 2018 15:58:17 +0000 (UTC)	[thread overview]
Message-ID: <1526486217.45fc170a3bfb5f31395bddb718f44ec72fa66cde.asturm@gentoo> (raw)

commit:     45fc170a3bfb5f31395bddb718f44ec72fa66cde
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 13:41:54 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 16 15:56:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45fc170a

dev-python/traitlets: Drop old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-python/traitlets/Manifest               |  4 ---
 dev-python/traitlets/traitlets-4.0.0.ebuild | 53 ---------------------------
 dev-python/traitlets/traitlets-4.1.0.ebuild | 52 ---------------------------
 dev-python/traitlets/traitlets-4.2.2.ebuild | 56 -----------------------------
 dev-python/traitlets/traitlets-4.3.1.ebuild | 56 -----------------------------
 5 files changed, 221 deletions(-)

diff --git a/dev-python/traitlets/Manifest b/dev-python/traitlets/Manifest
index 2229ff8a661..43f72f19e77 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 68a55b3690a..00000000000
--- 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 729d7cbd000..00000000000
--- 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 9b2c4e64fb3..00000000000
--- 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 4e4ef72acb8..00000000000
--- 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
-}


             reply	other threads:[~2018-05-16 15:58 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-16 15:58 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-16 20:45 [gentoo-commits] repo/gentoo:master commit in: dev-python/traitlets/ Michał Górny
2024-05-12 17:13 Michał Górny
2024-05-04  7:43 Michał Górny
2024-05-04  7:18 Arthur Zamarin
2024-04-19 19:17 Arthur Zamarin
2024-03-30 14:19 Michał Górny
2024-03-30 14:14 Michał Górny
2024-03-12 17:51 Michał Górny
2024-01-18 18:46 Michał Górny
2024-01-18 18:03 Arthur Zamarin
2024-01-03  8:35 Michał Górny
2023-12-15 12:40 Michał Górny
2023-12-15 11:23 Arthur Zamarin
2023-11-28  5:26 Michał Górny
2023-11-25 10:35 Michał Górny
2023-11-25  8:38 Sam James
2023-11-16 15:22 Michał Górny
2023-10-30 18:10 Michał Górny
2023-10-25  7:43 Michał Górny
2023-10-18 15:50 Michał Górny
2023-10-18  9:02 Sam James
2023-10-04  5:51 Michał Górny
2023-09-26 16:56 Michał Górny
2023-09-14 15:39 Michał Górny
2023-06-06  6:13 Michał Górny
2023-03-19 17:36 Arthur Zamarin
2023-03-02  5:13 Michał Górny
2023-02-16 20:32 Michał Górny
2023-02-16 17:22 Arthur Zamarin
2023-01-31 11:22 Michał Górny
2023-01-10  6:21 Michał Górny
2023-01-08  5:12 Michał Górny
2023-01-07 18:42 Arthur Zamarin
2022-12-20  8:07 Michał Górny
2022-12-14  6:31 Michał Górny
2022-12-09 13:56 Michał Górny
2022-11-29 20:18 Arthur Zamarin
2022-10-22 15:58 Michał Górny
2022-10-22 15:50 Arthur Zamarin
2022-10-19 11:49 Michał Górny
2022-10-18 18:07 Arthur Zamarin
2022-09-22 12:15 Michał Górny
2022-07-24 20:33 Michał Górny
2022-07-24 19:13 Sam James
2022-06-17  6:02 Michał Górny
2022-06-13  8:23 Michał Górny
2022-06-13  7:07 Agostino Sarubbo
2022-06-01  7:21 Michał Górny
2022-05-17  6:54 Michał Górny
2022-05-11  8:05 Michał Górny
2022-03-15 13:31 Jakov Smolić
2022-01-30 13:09 Michał Górny
2022-01-16 20:29 Arthur Zamarin
2021-11-26  4:24 Sam James
2021-10-25 22:39 Michał Górny
2021-10-17  9:41 Michał Górny
2021-09-08 16:19 Sam James
2021-07-01 14:45 Michał Górny
2021-06-29  5:53 Yixun Lan
2020-11-19  9:36 Michał Górny
2020-11-17  0:08 Michał Górny
2020-11-16 23:38 Sam James
2020-11-16  0:20 Michał Górny
2020-11-02  9:47 Sam James
2020-10-20  7:02 Sergei Trofimovich
2020-10-18 18:51 Thomas Deutschmann
2020-10-17 23:49 Sam James
2020-10-16  7:42 Michał Górny
2020-09-18 15:53 Michał Górny
2020-09-07  9:17 Michał Górny
2020-09-04  3:30 Michał Górny
2020-09-02 22:05 Michał Górny
2020-08-22  7:13 Michał Górny
2020-08-03  3:11 Sam James
2020-07-31  0:50 Sam James
2020-07-07 20:01 Michał Górny
2020-06-10  8:11 Michał Górny
2020-06-08 17:36 Michał Górny
2020-03-19 17:49 Michał Górny
2020-03-19 16:58 Michał Górny
2020-03-17  8:08 Michał Górny
2020-02-05 14:38 Michał Górny
2018-10-15 22:01 Virgil Dupras
2018-05-16 12:28 Agostino Sarubbo
2018-04-22  1:35 Thomas Deutschmann
2018-03-21 20:24 Markus Meier
2018-03-12  0:51 Matt Turner
2018-03-04 22:40 Sergei Trofimovich
2017-03-11  3:15 Zac Medico
2017-02-25 14:18 David Seifert
2017-01-13 22:56 Patrice Clement
2016-11-03 17:37 David Seifert
2016-10-14 18:21 David Seifert
2016-10-14 18:21 David Seifert
2016-09-20 21:12 David Seifert
2016-07-23 11:46 David Seifert
2016-07-23 11:46 David Seifert
2016-07-23 11:46 David Seifert
2016-04-02  8:18 David Seifert
2016-02-28  6:43 Matt Thode
2016-01-21  8:33 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1526486217.45fc170a3bfb5f31395bddb718f44ec72fa66cde.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox