summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2017-03-13 19:11:50 +0100
committerManuel Rüger <mrueg@gentoo.org>2017-03-13 19:13:45 +0100
commitc43de15b40b63a21d76abfc39db70924a33fd0dd (patch)
tree2c26f5f4c2a22454b2e5c50351e3cec3d4606ff3 /dev-python/mamba
parentx11-plugins/wmgtemp: drop old (diff)
downloadgentoo-c43de15b40b63a21d76abfc39db70924a33fd0dd.tar.gz
gentoo-c43de15b40b63a21d76abfc39db70924a33fd0dd.tar.bz2
gentoo-c43de15b40b63a21d76abfc39db70924a33fd0dd.zip
dev-python/mamba: Remove old
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'dev-python/mamba')
-rw-r--r--dev-python/mamba/Manifest2
-rw-r--r--dev-python/mamba/mamba-0.8.4.ebuild52
-rw-r--r--dev-python/mamba/mamba-0.8.5.ebuild36
3 files changed, 0 insertions, 90 deletions
diff --git a/dev-python/mamba/Manifest b/dev-python/mamba/Manifest
index 8e9a99825633..ccb348560a4c 100644
--- a/dev-python/mamba/Manifest
+++ b/dev-python/mamba/Manifest
@@ -1,3 +1 @@
-DIST mamba-0.8.4.tar.gz 14781 SHA256 2fc3eb17a1d051438ca844ad9086f6ad8d27d7a262153cb9e740416b01b7d46d SHA512 31a58a6ee43500b6e059598ff45ffb0e89e385a10fc47a41222cce2a2fee3987bd84dc4484151d46a7062244437973afaddc2c74aa7df21c0e175a33ce8a630c WHIRLPOOL dc26692c8e46ab1f2226099b051fd1236fc7006b0f3ce93f70cca4a685c209e71de256ae6ed21695df9ccb299bf2edc1f9975c2f98ee906e8067ab3a9ccb2383
-DIST mamba-0.8.5.tar.gz 15265 SHA256 c90428c3cae331caf1887b62af89236bac14c7e8d078ea94e068a4b0d9f2cb85 SHA512 e8b5539f66c77bbec9001be6dd13914a17c1a23e6e1d9219d509b8e27664b65d16f5d5e992c284fb2e21e8e92f82a503bda5905baedb0e695b384f7280885a5a WHIRLPOOL a6a9e332b84b0c3a91d1376bf517eb67ced3f5ade8b294a949f5e951279c9c006b5d7718cadf27df5c073dd1fe7507485e10d1f69f81c62338a9fdbe8da24265
DIST mamba-0.8.6.tar.gz 10430 SHA256 8770551c694f8be14c71710b2201d8a64fc630295f77eefce6f23050e0cd644b SHA512 f35396bcb607c2eb10caa99f4c82924b0c75c2eeddb3d18ed5db3d5e38dca41917c23f1fcd7003b596576436cea6a02f40c352e6a11f63e472144e0ae0575198 WHIRLPOOL cd542f776d4e3056476caeccbc3a11c62c8df18468f88b6ba22791ff54e4ff79618237a7ccae08dcac652e711e6bbcc450f53c1bde55625e9bf4962a6dc4c5e4
diff --git a/dev-python/mamba/mamba-0.8.4.ebuild b/dev-python/mamba/mamba-0.8.4.ebuild
deleted file mode 100644
index db4ca0208430..000000000000
--- a/dev-python/mamba/mamba-0.8.4.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-inherit distutils-r1
-
-DESCRIPTION="The definitive testing tool for Python. Born under the banner of Behavior Driven Development"
-HOMEPAGE="http://nestorsalceda.github.io/mamba"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- >=dev-python/doublex-expects-0.4[${PYTHON_USEDEP}]
- <dev-python/doublex-expects-0.5[${PYTHON_USEDEP}]
- >=dev-python/expects-0.4.2[${PYTHON_USEDEP}]
- <dev-python/expects-0.5[${PYTHON_USEDEP}]
- ~dev-python/mock-1.0.1[${PYTHON_USEDEP}]
- )
-"
-RDEPEND="
- ~dev-python/clint-0.3.1[${PYTHON_USEDEP}]
- >=dev-python/coverage-3.7[${PYTHON_USEDEP}]
- ~dev-python/watchdog-0.8.1[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
- ebegin 'patching requirements.txt'
- sed \
- -e '2s/==/>=/' \
- -i requirements.txt
- STATUS=${?}
- eend ${STATUS}
- [[ ${STATUS} -gt 0 ]] && die
-
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- rm -f "${HOME}"/.pydistutils.cfg || die "Couldn't remove pydistutils.cfg"
-
- distutils_install_for_testing
-
- "${TEST_DIR}"/scripts/mamba || die "Tests failed under ${EPYTHON}"
-}
diff --git a/dev-python/mamba/mamba-0.8.5.ebuild b/dev-python/mamba/mamba-0.8.5.ebuild
deleted file mode 100644
index c294fb30bdb4..000000000000
--- a/dev-python/mamba/mamba-0.8.5.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-inherit distutils-r1
-
-DESCRIPTION="The definitive testing tool for Python. Born under the banner of Behavior Driven Development"
-HOMEPAGE="http://nestorsalceda.github.io/mamba"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="
- ${CDEPEND}
- test? (
- ~dev-python/doublex-expects-0.7.0_rc1[${PYTHON_USEDEP}]
- ~dev-python/expects-0.8.0_rc2[${PYTHON_USEDEP}]
- ~dev-python/mock-1.0.1[${PYTHON_USEDEP}]
- )
-"
-RDEPEND="
- ${CDEPEND}
- ~dev-python/clint-0.3.1[${PYTHON_USEDEP}]
- ~dev-python/coverage-3.7.1[${PYTHON_USEDEP}]
- ~dev-python/watchdog-0.8.1[${PYTHON_USEDEP}]
-"
-
-python_test() {
- "${PYTHON}" -m mamba.cli || die "Tests failed under ${EPYTHON}"
-}