diff options
author | Alex Brandt <alunduil@gentoo.org> | 2015-05-02 16:00:58 +0000 |
---|---|---|
committer | Alex Brandt <alunduil@gentoo.org> | 2015-05-02 16:00:58 +0000 |
commit | 0c46291c2fa2aa43c8e13cbf45eb7fb8ba560bf1 (patch) | |
tree | f69ed9be1523dc84dfa4365f862bbf25c4a5e947 /app-emulation/docker-compose | |
parent | Remove after last-riting, bug 540796 (diff) | |
download | gentoo-2-0c46291c2fa2aa43c8e13cbf45eb7fb8ba560bf1.tar.gz gentoo-2-0c46291c2fa2aa43c8e13cbf45eb7fb8ba560bf1.tar.bz2 gentoo-2-0c46291c2fa2aa43c8e13cbf45eb7fb8ba560bf1.zip |
remove version 1.2.0_rc3
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Diffstat (limited to 'app-emulation/docker-compose')
-rw-r--r-- | app-emulation/docker-compose/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/docker-compose/docker-compose-1.2.0_rc3.ebuild | 57 |
2 files changed, 5 insertions, 58 deletions
diff --git a/app-emulation/docker-compose/ChangeLog b/app-emulation/docker-compose/ChangeLog index 4eb098e765c0..5a0f912e6b95 100644 --- a/app-emulation/docker-compose/ChangeLog +++ b/app-emulation/docker-compose/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/docker-compose # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v 1.9 2015/05/02 15:59:55 alunduil Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v 1.10 2015/05/02 16:00:58 alunduil Exp $ + + 02 May 2015; Alex Brandt <alunduil@gentoo.org> + -docker-compose-1.2.0_rc3.ebuild: + remove version 1.2.0_rc3 *docker-compose-1.2.0-r1 (02 May 2015) diff --git a/app-emulation/docker-compose/docker-compose-1.2.0_rc3.ebuild b/app-emulation/docker-compose/docker-compose-1.2.0_rc3.ebuild deleted file mode 100644 index ed3b0fbf9f99..000000000000 --- a/app-emulation/docker-compose/docker-compose-1.2.0_rc3.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/docker-compose-1.2.0_rc3.ebuild,v 1.1 2015/04/05 03:34:14 alunduil Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit bash-completion-r1 distutils-r1 vcs-snapshot - -MY_PV="${PV//_/}" - -DESCRIPTION="Multi-container orchestration for Docker" -HOMEPAGE="https://www.docker.com/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" - -CDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/dockerpty-0.3.2[${PYTHON_USEDEP}] - <dev-python/dockerpty-0.4[${PYTHON_USEDEP}] - >=dev-python/docker-py-1.0.0[${PYTHON_USEDEP}] - <dev-python/docker-py-1.2[${PYTHON_USEDEP}] - >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}] - <dev-python/docopt-0.7[${PYTHON_USEDEP}] - >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] - <dev-python/pyyaml-4[${PYTHON_USEDEP}] - >=dev-python/requests-2.2.1[${PYTHON_USEDEP}] - <dev-python/requests-2.6[${PYTHON_USEDEP}] - >=dev-python/six-1.3.0[${PYTHON_USEDEP}] - <dev-python/six-2[${PYTHON_USEDEP}] - >=dev-python/texttable-0.8.1[${PYTHON_USEDEP}] - <dev-python/texttable-0.9[${PYTHON_USEDEP}] - >=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}] - <dev-python/websocket-client-1.0[${PYTHON_USEDEP}] -" -DEPEND=" - test? ( - ${CDEPEND} - >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - ) -" -RDEPEND="${CDEPEND}" - -python_test() { - nosetests tests/unit || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - newbashcomp contrib/completion/bash/docker-compose ${PN} - - distutils-r1_python_install_all -} |