summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Brandt <alunduil@gentoo.org>2015-06-13 17:23:17 +0000
committerAlex Brandt <alunduil@gentoo.org>2015-06-13 17:23:17 +0000
commit19488fdccefae876d334c3806931ee06457287c6 (patch)
treed13168c8daf8e1f16636914c45fea564ff12e6d7 /dev-python
parentThe CGI module is no longer part of core Perl and has been moved to dev-perl (diff)
downloadgentoo-2-19488fdccefae876d334c3806931ee06457287c6.tar.gz
gentoo-2-19488fdccefae876d334c3806931ee06457287c6.tar.bz2
gentoo-2-19488fdccefae876d334c3806931ee06457287c6.zip
remove version 0.5.0
(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.5.0.ebuild38
2 files changed, 4 insertions, 39 deletions
diff --git a/dev-python/expects/ChangeLog b/dev-python/expects/ChangeLog
index b4c4332510a2..03ef60d55b89 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.10 2015/06/13 17:16:40 alunduil Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/expects/ChangeLog,v 1.11 2015/06/13 17:23:17 alunduil Exp $
+
+ 13 Jun 2015; Alex Brandt <alunduil@gentoo.org> -expects-0.5.0.ebuild:
+ remove version 0.5.0
*expects-0.7.1 (13 Jun 2015)
diff --git a/dev-python/expects/expects-0.5.0.ebuild b/dev-python/expects/expects-0.5.0.ebuild
deleted file mode 100644
index d0746bc054f4..000000000000
--- a/dev-python/expects/expects-0.5.0.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.5.0.ebuild,v 1.2 2014/11/28 10:25:22 pacho Exp $
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Expressive and extensible TDD/BDD assertion library for Python"
-HOMEPAGE="https://github.com/jaimegildesagredo/expects"
-SRC_URI="https://github.com/jaimegildesagredo/${PN}/archive/v${PV}.tar.gz -> ${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
-}