idella4 14/04/20 04:33:27 Modified: ChangeLog Added: pyquery-1.2.8.ebuild Log: bump; drop py26 py3.2 support, upgrade deps, test phase, closes Bug #507548 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.43 dev-python/pyquery/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyquery/ChangeLog?rev=1.43&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyquery/ChangeLog?rev=1.43&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyquery/ChangeLog?r1=1.42&r2=1.43 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyquery/ChangeLog,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- ChangeLog 18 Jan 2014 15:59:28 -0000 1.42 +++ ChangeLog 20 Apr 2014 04:33:27 -0000 1.43 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyquery # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyquery/ChangeLog,v 1.42 2014/01/18 15:59:28 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyquery/ChangeLog,v 1.43 2014/04/20 04:33:27 idella4 Exp $ + +*pyquery-1.2.8 (20 Apr 2014) + + 20 Apr 2014; Ian Delaney <[email protected]> +pyquery-1.2.8.ebuild: + bump; drop py26 py3.2 support, upgrade deps, test phase, closes Bug #507548 18 Jan 2014; Markus Meier <[email protected]> pyquery-1.2.4.ebuild: arm stable, bug #450174 1.1 dev-python/pyquery/pyquery-1.2.8.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyquery/pyquery-1.2.8.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyquery/pyquery-1.2.8.ebuild?rev=1.1&content-type=text/plain Index: pyquery-1.2.8.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyquery/pyquery-1.2.8.ebuild,v 1.1 2014/04/20 04:33:27 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3} ) inherit distutils-r1 DESCRIPTION="A jQuery-like library for python" HOMEPAGE="https://github.com/gawel/pyquery" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="beautifulsoup3 test" RDEPEND=">=dev-python/lxml-2.1[beautifulsoup3?,${PYTHON_USEDEP}] dev-python/cssselect[${PYTHON_USEDEP}] >=dev-python/webob-1.2[${PYTHON_USEDEP}] dev-python/webtest[${PYTHON_USEDEP}]" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] app-arch/unzip test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] )" REQUIRED_USE="test? ( beautifulsoup3 )" python_prepare_all() { # rm known failing tests and tests dependent on restkit # https://github.com/gawel/pyquery/pull/63/files sed -e "s/test_proxy/_&/" \ -e "s/test_replaceWith/_&/" \ -i tests/test_pyquery.py || die rm docs/ajax.rst || die distutils-r1_python_prepare_all } python_test() { # The suite, it appears, requires this hard setting of PYTHONPATH! PYTHONPATH=. nosetests || die "Tests fail with ${EPYTHON}" }
