Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/scrapy: scrapy-0.24.1.ebuild ChangeLog
Date: Tue, 08 Jul 2014 14:28:07
Message-Id: 20140708142804.25C812004E@flycatcher.gentoo.org
1 idella4 14/07/08 14:28:04
2
3 Modified: scrapy-0.24.1.ebuild ChangeLog
4 Log:
5 from fix by /issues/788 by owner @ github, update dep w3lib, delete superfluous python_prepare_all(), correction to test phase
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/scrapy/scrapy-0.24.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild?r1=1.1&r2=1.2
15
16 Index: scrapy-0.24.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- scrapy-0.24.1.ebuild 8 Jul 2014 08:54:41 -0000 1.1
23 +++ scrapy-0.24.1.ebuild 8 Jul 2014 14:28:03 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild,v 1.1 2014/07/08 08:54:41 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.24.1.ebuild,v 1.2 2014/07/08 14:28:03 idella4 Exp $
29
30 EAPI=5
31
32 @@ -29,7 +29,7 @@
33 >=dev-python/twisted-conch-10.0.0[${PYTHON_USEDEP}]
34 >=dev-python/twisted-mail-10.0.0[${PYTHON_USEDEP}]
35 >=dev-python/twisted-web-10.0.0[${PYTHON_USEDEP}]
36 - >=dev-python/w3lib-1.2[${PYTHON_USEDEP}]
37 + >=dev-python/w3lib-1.6[${PYTHON_USEDEP}]
38 dev-python/queuelib[${PYTHON_USEDEP}]
39 >=dev-python/cssselect-0.9[${PYTHON_USEDEP}]"
40 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
41 @@ -42,18 +42,11 @@
42 dev-python/mock[${PYTHON_USEDEP}]
43 >=net-proxy/mitmproxy-0.10[${PYTHON_USEDEP}]
44 net-ftp/vsftpd )"
45 -# pytest-twisted listed as a test dep but not in portage
46 +# pytest-twisted listed as a test dep but not in portage.
47 +# Testsuite currently survives without it, so appears optional
48
49 REQUIRED_USE="test? ( ssl boto )"
50
51 -python_prepare_all() {
52 - # Skip failing tests; https://github.com/scrapy/scrapy/issues/788
53 - # There's 1 doctest failure that remains on being run.
54 - sed -e s':test_ajax_url:_&:' -i scrapy/tests/test_http_request.py || die
55 -
56 - distutils-r1_python_prepare_all
57 -}
58 -
59 python_compile_all() {
60 if use doc; then
61 PYTHONPATH="${S}" emake -C docs html || die "emake html failed"
62 @@ -61,7 +54,7 @@
63 }
64
65 python_test() {
66 - py.test --twisted ${PN} || die "tests failed"
67 + py.test ${PN} || die "tests failed"
68 }
69
70 python_install_all() {
71
72
73
74 1.24 dev-python/scrapy/ChangeLog
75
76 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/ChangeLog?rev=1.24&view=markup
77 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/ChangeLog?rev=1.24&content-type=text/plain
78 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/ChangeLog?r1=1.23&r2=1.24
79
80 Index: ChangeLog
81 ===================================================================
82 RCS file: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v
83 retrieving revision 1.23
84 retrieving revision 1.24
85 diff -u -r1.23 -r1.24
86 --- ChangeLog 8 Jul 2014 08:54:41 -0000 1.23
87 +++ ChangeLog 8 Jul 2014 14:28:03 -0000 1.24
88 @@ -1,6 +1,10 @@
89 # ChangeLog for dev-python/scrapy
90 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
91 -# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.23 2014/07/08 08:54:41 idella4 Exp $
92 +# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.24 2014/07/08 14:28:03 idella4 Exp $
93 +
94 + 08 Jul 2014; Ian Delaney <idella4@g.o> scrapy-0.24.1.ebuild:
95 + from fix by /issues/788 by owner @ github, update dep w3lib, delete
96 + superfluous python_prepare_all(), correction to test phase
97
98 *scrapy-0.24.1 (08 Jul 2014)