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.18.4.ebuild ChangeLog
Date: Tue, 03 Jun 2014 06:58:16
Message-Id: 20140603065812.821C82004E@flycatcher.gentoo.org
1 idella4 14/06/03 06:58:12
2
3 Modified: ChangeLog
4 Added: scrapy-0.18.4.ebuild
5 Log:
6 bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.20 dev-python/scrapy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 26 May 2014 07:34:16 -0000 1.19
24 +++ ChangeLog 3 Jun 2014 06:58:12 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/scrapy
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.19 2014/05/26 07:34:16 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.20 2014/06/03 06:58:12 idella4 Exp $
30 +
31 +*scrapy-0.18.4 (03 Jun 2014)
32 +
33 + 03 Jun 2014; Ian Delaney <idella4@g.o> +scrapy-0.18.4.ebuild:
34 + bump
35
36 *scrapy-0.18.3 (26 May 2014)
37
38
39
40
41 1.1 dev-python/scrapy/scrapy-0.18.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/scrapy-0.18.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/scrapy/scrapy-0.18.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: scrapy-0.18.4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.18.4.ebuild,v 1.1 2014/06/03 06:58:12 idella4 Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 )
55 PYTHON_REQ_USE="sqlite(+)"
56
57 inherit vcs-snapshot distutils-r1
58
59 DESCRIPTION="A high-level Python Screen Scraping framework"
60 HOMEPAGE="http://scrapy.org http://pypi.python.org/pypi/Scrapy/"
61 SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="BSD-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="boto doc ibl test ssl"
67
68 RDEPEND="dev-python/six[${PYTHON_USEDEP}]
69 dev-libs/libxml2[python,${PYTHON_USEDEP}]
70 virtual/python-imaging[${PYTHON_USEDEP}]
71 dev-python/lxml[${PYTHON_USEDEP}]
72 ibl? ( dev-python/numpy[${PYTHON_USEDEP}] )
73 ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
74 boto? ( dev-python/boto[${PYTHON_USEDEP}] )
75 dev-python/twisted-core[${PYTHON_USEDEP}]
76 dev-python/twisted-conch[${PYTHON_USEDEP}]
77 dev-python/twisted-mail[${PYTHON_USEDEP}]
78 dev-python/twisted-web[${PYTHON_USEDEP}]
79 >=dev-python/w3lib-1.2[${PYTHON_USEDEP}]
80 dev-python/queuelib[${PYTHON_USEDEP}]"
81 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
82 dev-python/six[${PYTHON_USEDEP}]
83 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
84 test? ( ${RDEPEND}
85 dev-python/boto[${PYTHON_USEDEP}]
86 dev-python/django[${PYTHON_USEDEP}]
87 net-ftp/vsftpd
88 dev-python/pillow[${PYTHON_USEDEP}] )"
89
90 REQUIRED_USE="test? ( ssl )"
91
92 python_prepare_all() {
93 # Skip failing tests; https://github.com/scrapy/scrapy/issues/725
94 sed -e s':test_validation:_&:' \
95 -i scrapy/tests/test_djangoitem/__init__.py || die
96 sed -e s':test_process_parallel_failure:_&:' \
97 -i scrapy/tests/test_utils_defer.py || die
98 distutils-r1_python_prepare_all
99 }
100
101 python_compile_all() {
102 if use doc; then
103 PYTHONPATH="${S}" emake -C docs html || die "emake html failed"
104 fi
105 }
106
107 python_test() {
108 PYTHONPATH="${PWD}" bin/runtests.sh || die
109 }
110
111 python_install_all() {
112 use doc && local HTML_DOCS=( docs/build/html/. )
113 distutils-r1_python_install_all
114 }