aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Brehler <marbre@linux.sungazer.de>2015-11-28 18:49:12 +0100
committerMarius Brehler <marbre@linux.sungazer.de>2015-11-28 18:49:12 +0100
commit4fa991736a8bd2d0d405ffa52b0fc91f9c4eae91 (patch)
treed87207a1cf225991f7dbf2af49be122be9a7ba46
parentdev-python/ipython_genutils: Moved to tree (diff)
downloadsci-4fa99173.tar.gz
sci-4fa99173.tar.bz2
sci-4fa99173.zip
dev-python/traitlets: Moved to tree
Package-Manager: portage-2.2.20.1
-rw-r--r--dev-python/traitlets/ChangeLog4
-rw-r--r--dev-python/traitlets/Manifest1
-rw-r--r--dev-python/traitlets/traitlets-4.0.0.ebuild54
3 files changed, 4 insertions, 55 deletions
diff --git a/dev-python/traitlets/ChangeLog b/dev-python/traitlets/ChangeLog
index a3b105eb4..74f857f12 100644
--- a/dev-python/traitlets/ChangeLog
+++ b/dev-python/traitlets/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 28 Nov 2015; Marius Brehler <marbre@linux.sungazer.de> -Manifest,
+ -traitlets-4.0.0.ebuild:
+ dev-python/traitlets: Moved to tree
+
21 Sep 2015; Marius Brehler <marbre@linux.sungazer.de> traitlets-9999.ebuild:
dev-python/traitlets: Add ~x86 to KEYWORDS
diff --git a/dev-python/traitlets/Manifest b/dev-python/traitlets/Manifest
deleted file mode 100644
index 76dd32ce4..000000000
--- a/dev-python/traitlets/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST traitlets-4.0.0.tar.gz 63701 SHA256 0b140b4a94a4f1951887d9bce4650da211f79600fc9fdb422acc90c5bbe0233b SHA512 559730dbe9f5f0e75c867cd514c91a3e862a23a9e019d3883b4be66b6208980a583f39cceca4f20e409bd44335a367e7fd5654db0128bb7a735311e6b2c32f24 WHIRLPOOL 492a7a561649ea1a43ce5f45abf13e74d8ace7937e2cf0956b00fe1f650a541af8da0df5d8327bb071c4f03650a44c7ca548e8c61ccf95cea557516fa6d5b862
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 5a9720663..000000000
--- a/dev-python/traitlets/traitlets-4.0.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,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
-}