radhermit 14/04/15 04:58:28 Modified: ChangeLog Added: pexpect-3.2.ebuild Log: Version bump, run testsuite. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.68 dev-python/pexpect/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?rev=1.68&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?rev=1.68&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/ChangeLog?r1=1.67&r2=1.68 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v retrieving revision 1.67 retrieving revision 1.68 diff -u -r1.67 -r1.68 --- ChangeLog 1 Apr 2014 05:06:00 -0000 1.67 +++ ChangeLog 15 Apr 2014 04:58:28 -0000 1.68 @@ -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.67 2014/04/01 05:06:00 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pexpect/ChangeLog,v 1.68 2014/04/15 04:58:28 radhermit Exp $ + +*pexpect-3.2 (15 Apr 2014) + + 15 Apr 2014; Tim Harder <[email protected]> +pexpect-3.2.ebuild: + Version bump, run testsuite. 01 Apr 2014; Mike Gilbert <[email protected]> pexpect-3.1.ebuild: Add python3.4. 1.1 dev-python/pexpect/pexpect-3.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/pexpect-3.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pexpect/pexpect-3.2.ebuild?rev=1.1&content-type=text/plain Index: pexpect-3.2.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.2.ebuild,v 1.1 2014/04/15 04:58:28 radhermit Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,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" 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" DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" python_compile_all() { use doc && emake -C doc html } python_test() { . test.env || die "${PYTHON}" tools/testall.py || 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 }
