floppym 14/05/03 16:51:59 Modified: ChangeLog Added: cherrypy-3.3.0.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path 1.61 dev-python/cherrypy/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/ChangeLog?rev=1.61&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/ChangeLog?rev=1.61&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/ChangeLog?r1=1.60&r2=1.61 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/cherrypy/ChangeLog,v retrieving revision 1.60 retrieving revision 1.61 diff -u -r1.60 -r1.61 --- ChangeLog 5 Apr 2014 21:07:43 -0000 1.60 +++ ChangeLog 3 May 2014 16:51:59 -0000 1.61 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/cherrypy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/ChangeLog,v 1.60 2014/04/05 21:07:43 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/ChangeLog,v 1.61 2014/05/03 16:51:59 floppym Exp $ + +*cherrypy-3.3.0 (03 May 2014) + + 03 May 2014; Mike Gilbert <flop...@gentoo.org> +cherrypy-3.3.0.ebuild, + +files/cherrypy-3.3.0-test_config.patch: + Version bump. 05 Apr 2014; Mike Gilbert <flop...@gentoo.org> +files/cherrypy-3.2.5-issue1234.patch, cherrypy-3.2.5.ebuild: 1.1 dev-python/cherrypy/cherrypy-3.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/cherrypy-3.3.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/cherrypy/cherrypy-3.3.0.ebuild?rev=1.1&content-type=text/plain Index: cherrypy-3.3.0.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/cherrypy/cherrypy-3.3.0.ebuild,v 1.1 2014/05/03 16:51:59 floppym Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 ) inherit distutils-r1 MY_P="CherryPy-${PV}" DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework" HOMEPAGE="http://www.cherrypy.org/ http://pypi.python.org/pypi/CherryPy" SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] )" RDEPEND="" S="${WORKDIR}/${MY_P}" DISTUTILS_IN_SOURCE_BUILD=1 PATCHES=( "${FILESDIR}/${PN}-3.3.0-test_config.patch" ) python_prepare_all() { # Prevent interactive failures (hangs) in the test suite sed -i -e "s/interactive = True/interactive = False/" cherrypy/test/webtest.py || die distutils-r1_python_prepare_all } python_test() { local exclude=( # https://bitbucket.org/cherrypy/cherrypy/issue/1306 -e test_session # https://bitbucket.org/cherrypy/cherrypy/issue/1308 -e test_file_stream # https://bitbucket.org/cherrypy/cherrypy/issue/1315 -e test_HTTP11_pipelining ) # This really doesn't sit well with multiprocessing nosetests "${exclude[@]}" < /dev/tty || die "Testing failed with ${EPYTHON}" } src_test() { DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test }