summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Brandt <alunduil@gentoo.org>2015-07-23 16:20:11 +0000
committerAlex Brandt <alunduil@gentoo.org>2015-07-23 16:20:11 +0000
commite3929170c40410559f6aaab34f2d1a4dc838b205 (patch)
tree078fe3687905e6d9c45e469401b4c666e295882f /dev-python/torment
parentadd version 2.0.1 (diff)
downloadgentoo-2-e3929170c40410559f6aaab34f2d1a4dc838b205.tar.gz
gentoo-2-e3929170c40410559f6aaab34f2d1a4dc838b205.tar.bz2
gentoo-2-e3929170c40410559f6aaab34f2d1a4dc838b205.zip
remove version 1.0.0
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Diffstat (limited to 'dev-python/torment')
-rw-r--r--dev-python/torment/ChangeLog5
-rw-r--r--dev-python/torment/torment-1.0.0.ebuild46
2 files changed, 4 insertions, 47 deletions
diff --git a/dev-python/torment/ChangeLog b/dev-python/torment/ChangeLog
index 3101f8c8b81a..c0edad52912c 100644
--- a/dev-python/torment/ChangeLog
+++ b/dev-python/torment/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/torment
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/torment/ChangeLog,v 1.4 2015/07/23 16:05:11 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/torment/ChangeLog,v 1.5 2015/07/23 16:20:11 alunduil Exp $
+
+ 23 Jul 2015; Alex Brandt <alunduil@gentoo.org> -torment-1.0.0.ebuild:
+ remove version 1.0.0
*torment-2.0.1 (23 Jul 2015)
diff --git a/dev-python/torment/torment-1.0.0.ebuild b/dev-python/torment/torment-1.0.0.ebuild
deleted file mode 100644
index d0b9231f5edf..000000000000
--- a/dev-python/torment/torment-1.0.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/torment/torment-1.0.0.ebuild,v 1.1 2015/07/18 02:10:53 alunduil Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python3_3 python3_4 )
-
-inherit distutils-r1
-
-DESCRIPTION="A Study in Fixture Based Testing Frameworking"
-HOMEPAGE="https://github.com/kumoru/torment"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="dev-python/mypy[${PYTHON_USEDEP}]"
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? (
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
- )
- test? (
- ${CDEPEND}
- dev-python/coverage[${PYTHON_USEDEP}]
- dev-python/nose[${PYTHON_USEDEP}]
- )
-"
-RDEPEND="${CDEPEND}"
-
-python_compile_all() {
- use doc && esetup.py build_sphinx
-}
-
-python_test() {
- nosetests || die "Tests failed on ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}