radhermit 14/06/26 07:11:15 Modified: ChangeLog Added: pexpect-3.3.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.69 dev-python/pexpect/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?rev=1.69&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?rev=1.69&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?r1=1.68&r2=1.69 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v retrieving revision 1.68 retrieving revision 1.69 diff -u -r1.68 -r1.69 --- ChangeLog 15 Apr 2014 04:58:28 -0000 1.68 +++ ChangeLog 26 Jun 2014 07:11:15 -0000 1.69 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pexpect # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v 1.68 2014/04/15 04:58:28 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v 1.69 2014/06/26 07:11:15 radhermit Exp $ + +*pexpect-3.3 (26 Jun 2014) + + 26 Jun 2014; Tim Harder <[email protected]> +pexpect-3.3.ebuild: + Version bump. *pexpect-3.2 (15 Apr 2014) 1.1 dev-python/pexpect/pexpect-3.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/pexpect-3.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/pexpect-3.3.ebuild?rev=1.1&content-type=text/plain Index: pexpect-3.3.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/pexpect-3.3.ebuild,v 1.1 2014/06/26 07:11:15 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="Python module for spawning child applications and responding to expected patterns" HOMEPAGE="http://pexpect.sourceforge.net/ http://pypi.python.org/pypi/pexpect/ https://github.com/pexpect/pexpect/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~amd64-fbsd ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples test" DEPEND=" doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/pytest[${PYTHON_USEDEP}] ) " python_compile_all() { use doc && emake -C doc html } python_test() { py.test tests || die "Tests fail with ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( doc/_build/html/. ) use examples && local EXAMPLES=( examples/. ) distutils-r1_python_install_all }
