diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-07-08 08:54:41 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-07-08 08:54:41 +0000 |
commit | b77bee77b62c4c86f7cdae4337846a10b120bd27 (patch) | |
tree | b3b4b0848fab3f0800e6fba4f1d514ad4e47a1c9 /dev-python | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-b77bee77b62c4c86f7cdae4337846a10b120bd27.tar.gz gentoo-2-b77bee77b62c4c86f7cdae4337846a10b120bd27.tar.bz2 gentoo-2-b77bee77b62c4c86f7cdae4337846a10b120bd27.zip |
bump; update deps, test phase
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/scrapy/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/scrapy/scrapy-0.24.1.ebuild | 70 |
2 files changed, 76 insertions, 1 deletions
diff --git a/dev-python/scrapy/ChangeLog b/dev-python/scrapy/ChangeLog index dbd208cabdc5..8bd5f5f0b388 100644 --- a/dev-python/scrapy/ChangeLog +++ b/dev-python/scrapy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/scrapy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.22 2014/06/25 04:57:58 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.23 2014/07/08 08:54:41 idella4 Exp $ + +*scrapy-0.24.1 (08 Jul 2014) + + 08 Jul 2014; Ian Delaney <idella4@gentoo.org> +scrapy-0.24.1.ebuild: + bump; update deps, test phase *scrapy-0.20.0 (25 Jun 2014) diff --git a/dev-python/scrapy/scrapy-0.24.1.ebuild b/dev-python/scrapy/scrapy-0.24.1.ebuild new file mode 100644 index 000000000000..ae68fdc624b3 --- /dev/null +++ b/dev-python/scrapy/scrapy-0.24.1.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild,v 1.1 2014/07/08 08:54:41 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="sqlite(+)" + +inherit vcs-snapshot distutils-r1 + +DESCRIPTION="A high-level Python Screen Scraping framework" +HOMEPAGE="http://scrapy.org http://pypi.python.org/pypi/Scrapy/" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="boto doc ibl test ssl" + +RDEPEND=">=dev-python/six-1.5.2[${PYTHON_USEDEP}] + dev-libs/libxml2[python,${PYTHON_USEDEP}] + virtual/python-imaging[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + ibl? ( dev-python/numpy[${PYTHON_USEDEP}] ) + ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] ) + boto? ( dev-python/boto[${PYTHON_USEDEP}] ) + >=dev-python/twisted-core-10.0.0[${PYTHON_USEDEP}] + >=dev-python/twisted-conch-10.0.0[${PYTHON_USEDEP}] + >=dev-python/twisted-mail-10.0.0[${PYTHON_USEDEP}] + >=dev-python/twisted-web-10.0.0[${PYTHON_USEDEP}] + >=dev-python/w3lib-1.2[${PYTHON_USEDEP}] + dev-python/queuelib[${PYTHON_USEDEP}] + >=dev-python/cssselect-0.9[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( ${RDEPEND} + dev-python/boto[${PYTHON_USEDEP}] + dev-python/django[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + >=net-proxy/mitmproxy-0.10[${PYTHON_USEDEP}] + net-ftp/vsftpd )" +# pytest-twisted listed as a test dep but not in portage + +REQUIRED_USE="test? ( ssl boto )" + +python_prepare_all() { + # Skip failing tests; https://github.com/scrapy/scrapy/issues/788 + # There's 1 doctest failure that remains on being run. + sed -e s':test_ajax_url:_&:' -i scrapy/tests/test_http_request.py || die + + distutils-r1_python_prepare_all +} + +python_compile_all() { + if use doc; then + PYTHONPATH="${S}" emake -C docs html || die "emake html failed" + fi +} + +python_test() { + py.test --twisted ${PN} || die "tests failed" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/build/html/. ) + distutils-r1_python_install_all +} |