summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Brandt <alunduil@gentoo.org>2015-07-04 20:48:58 +0000
committerAlex Brandt <alunduil@gentoo.org>2015-07-04 20:48:58 +0000
commita141553a104896f95a0eaa5267a760478d98ba10 (patch)
tree5fe3ee21ab15cee9e6a8f61a19855e8c90b67df7 /dev-python/expects
parentversion bump (diff)
downloadgentoo-2-a141553a104896f95a0eaa5267a760478d98ba10.tar.gz
gentoo-2-a141553a104896f95a0eaa5267a760478d98ba10.tar.bz2
gentoo-2-a141553a104896f95a0eaa5267a760478d98ba10.zip
remove version 0.7.0
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Diffstat (limited to 'dev-python/expects')
-rw-r--r--dev-python/expects/ChangeLog5
-rw-r--r--dev-python/expects/expects-0.7.0.ebuild38
2 files changed, 4 insertions, 39 deletions
diff --git a/dev-python/expects/ChangeLog b/dev-python/expects/ChangeLog
index a6f452d7ffea..85a469e607de 100644
--- a/dev-python/expects/ChangeLog
+++ b/dev-python/expects/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/expects
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.14 2015/07/04 20:43:14 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.15 2015/07/04 20:48:58 alunduil Exp $
+
+ 04 Jul 2015; Alex Brandt <alunduil@gentoo.org> -expects-0.7.0.ebuild:
+ remove version 0.7.0
*expects-0.7.2 (04 Jul 2015)
diff --git a/dev-python/expects/expects-0.7.0.ebuild b/dev-python/expects/expects-0.7.0.ebuild
deleted file mode 100644
index 1e83771aef00..000000000000
--- a/dev-python/expects/expects-0.7.0.ebuild
+++ /dev/null
@@ -1,38 +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/expects/expects-0.7.0.ebuild,v 1.1 2015/03/08 15:31:04 alunduil Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1
-
-DESCRIPTION="Expressive and extensible TDD/BDD assertion library for Python"
-HOMEPAGE="https://github.com/jaimegildesagredo/expects"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( dev-python/mamba[${PYTHON_USEDEP}] )
-"
-RDEPEND=""
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- mamba || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}