alunduil 15/05/02 15:42:27 Modified: ChangeLog Added: docker-py-1.2.1.ebuild Log: add version 1.2.1 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.24 dev-python/docker-py/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 25 Apr 2015 21:28:31 -0000 1.23 +++ ChangeLog 2 May 2015 15:42:27 -0000 1.24 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/docker-py # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v 1.23 2015/04/25 21:28:31 alunduil Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v 1.24 2015/05/02 15:42:27 alunduil Exp $ + +*docker-py-1.2.1 (02 May 2015) + + 02 May 2015; Alex Brandt <[email protected]> +docker-py-1.2.1.ebuild: + add version 1.2.1 25 Apr 2015; Alex Brandt <[email protected]> -docker-py-1.0.0.ebuild: remove version 1.0.0 1.1 dev-python/docker-py/docker-py-1.2.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/docker-py-1.2.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/docker-py-1.2.1.ebuild?rev=1.1&content-type=text/plain Index: docker-py-1.2.1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/docker-py-1.2.1.ebuild,v 1.1 2015/05/02 15:42:27 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) inherit distutils-r1 vcs-snapshot DESCRIPTION="Python client for Docker." HOMEPAGE="https://github.com/docker/docker-py" SRC_URI="https://github.com/docker/${PN}/archive/${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/mkdocs-0.9[${PYTHON_USEDEP}] ) test? ( >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] ) " RDEPEND=" >=dev-python/requests-2.5.2[${PYTHON_USEDEP}] >=dev-python/six-1.3.0[${PYTHON_USEDEP}] $(python_gen_cond_dep '>=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}]' python2_7) " python_compile_all() { if use doc; then mkdocs build || die "docs failed to build" fi } python_test() { "${PYTHON}" tests/test.py || die "tests failed under ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( site/. ) distutils-r1_python_install_all }
