idella4 14/05/22 10:35:32 Modified: ChangeLog Added: webob-1.4.ebuild Log: bump; drop py2.6 pypy2_0 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.88 dev-python/webob/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?rev=1.88&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?rev=1.88&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/ChangeLog?r1=1.87&r2=1.88 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v retrieving revision 1.87 retrieving revision 1.88 diff -u -r1.87 -r1.88 --- ChangeLog 2 Apr 2014 21:14:58 -0000 1.87 +++ ChangeLog 22 May 2014 10:35:32 -0000 1.88 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/webob # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v 1.87 2014/04/02 21:14:58 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/ChangeLog,v 1.88 2014/05/22 10:35:32 idella4 Exp $ + +*webob-1.4 (22 May 2014) + + 22 May 2014; Ian Delaney <[email protected]> +webob-1.4.ebuild: + bump; drop py2.6 pypy2_0 02 Apr 2014; Tim Harder <[email protected]> webob-1.3.1.ebuild: Add python3_4 support. 1.1 dev-python/webob/webob-1.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webob/webob-1.4.ebuild?rev=1.1&content-type=text/plain Index: webob-1.4.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/webob/webob-1.4.ebuild,v 1.1 2014/05/22 10:35:32 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) inherit distutils-r1 MY_PN=WebOb MY_P=${MY_PN}-${PV} DESCRIPTION="WSGI request and response object" HOMEPAGE="http://webob.org/ http://pypi.python.org/pypi/WebOb" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/coverage[${PYTHON_USEDEP}] )" RDEPEND="" S=${WORKDIR}/${MY_P} python_compile_all() { if use doc; then "${PYTHON}" setup.py build_sphinx || die fi } python_test() { nosetests -w tests || die "Tests fail with ${EPYTHON}" } python_install_all() { use doc && local HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. ) distutils-r1_python_install_all }
