summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Brandt <alunduil@gentoo.org>2015-06-13 17:23:58 +0000
committerAlex Brandt <alunduil@gentoo.org>2015-06-13 17:23:58 +0000
commit93b1ffb6653bf38b907cacb807a90875029d098a (patch)
treecaa593a46ec31cf90b78ac4ccf1e1944e472bc8c /dev-python
parentremove version 0.5.0 (diff)
downloadgentoo-2-93b1ffb6653bf38b907cacb807a90875029d098a.tar.gz
gentoo-2-93b1ffb6653bf38b907cacb807a90875029d098a.tar.bz2
gentoo-2-93b1ffb6653bf38b907cacb807a90875029d098a.zip
remove version 0.6.1
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/expects/ChangeLog5
-rw-r--r--dev-python/expects/expects-0.6.1.ebuild38
2 files changed, 4 insertions, 39 deletions
diff --git a/dev-python/expects/ChangeLog b/dev-python/expects/ChangeLog
index 03ef60d55b89..15550e7f77bd 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.11 2015/06/13 17:23:17 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.12 2015/06/13 17:23:58 alunduil Exp $
+
+ 13 Jun 2015; Alex Brandt <alunduil@gentoo.org> -expects-0.6.1.ebuild:
+ remove version 0.6.1
13 Jun 2015; Alex Brandt <alunduil@gentoo.org> -expects-0.5.0.ebuild:
remove version 0.5.0
diff --git a/dev-python/expects/expects-0.6.1.ebuild b/dev-python/expects/expects-0.6.1.ebuild
deleted file mode 100644
index a9deeb4445cf..000000000000
--- a/dev-python/expects/expects-0.6.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/expects-0.6.1.ebuild,v 1.1 2014/12/07 20:01:01 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-0.8.2[${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
-}