alunduil 15/06/13 15:51:12 Modified: ChangeLog Added: dockerpty-0.3.4.ebuild Log: add version 0.3.4 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.5 dev-python/dockerpty/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dockerpty/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dockerpty/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dockerpty/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/dockerpty/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 7 Jun 2015 13:12:12 -0000 1.4 +++ ChangeLog 13 Jun 2015 15:51:12 -0000 1.5 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/dockerpty # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dockerpty/ChangeLog,v 1.4 2015/06/07 13:12:12 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/dockerpty/ChangeLog,v 1.5 2015/06/13 15:51:12 alunduil Exp $ + +*dockerpty-0.3.4 (13 Jun 2015) + + 13 Jun 2015; Alex Brandt <[email protected]> +dockerpty-0.3.4.ebuild: + add version 0.3.4 07 Jun 2015; Justin Lecher <[email protected]> metadata.xml: Add github to remote-id in metadata.xml 1.1 dev-python/dockerpty/dockerpty-0.3.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dockerpty/dockerpty-0.3.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dockerpty/dockerpty-0.3.4.ebuild?rev=1.1&content-type=text/plain Index: dockerpty-0.3.4.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/dockerpty/dockerpty-0.3.4.ebuild,v 1.1 2015/06/13 15:51:12 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) inherit distutils-r1 vcs-snapshot DESCRIPTION="Python library to use the pseudo-tty of a docker container" HOMEPAGE="https://github.com/d11wtq/dockerpty" SRC_URI="https://github.com/d11wtq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64" IUSE="test" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( >=dev-python/behave-1.2.4[${PYTHON_USEDEP}] >=dev-python/docker-py-0.7.1[${PYTHON_USEDEP}] >=dev-python/expects-0.4[${PYTHON_USEDEP}] >=dev-python/pytest-2.5.2[${PYTHON_USEDEP}] ) " RDEPEND=">=dev-python/six-1.3.0[${PYTHON_USEDEP}]" python_test() { local RUN_FEATURES=0 ewarn "${PN} tests require portage to be in the docker group!" getent group docker |& grep portage 1>/dev/null 2>&1 RUN_FEATURES+=${?} ewarn "${PN} tests require a running docker service!" which docker 1>/dev/null 2>&1 && docker info 1>/dev/null 2>&1 RUN_FEATURES+=${?} if [[ ${RUN_FEATURES} -eq 0 ]]; then behave || die "Feature tests failed under ${EPYTHON}" fi py.test tests || die "Tests failed under ${EPYTHON}" }
