summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-29 21:40:54 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-29 21:40:54 +0000
commit2f0e14c4ce8d1c3c95444f3780791839d9bc1901 (patch)
tree6d460d3072e4156fdee0b9023514bc27693e47a5 /dev-python
parentRemove old. (diff)
downloadgentoo-2-2f0e14c4ce8d1c3c95444f3780791839d9bc1901.tar.gz
gentoo-2-2f0e14c4ce8d1c3c95444f3780791839d9bc1901.tar.bz2
gentoo-2-2f0e14c4ce8d1c3c95444f3780791839d9bc1901.zip
Remove old. Fix repoman warning.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/scrapy/ChangeLog8
-rw-r--r--dev-python/scrapy/scrapy-0.24.2.ebuild63
-rw-r--r--dev-python/scrapy/scrapy-0.25.1.ebuild4
3 files changed, 8 insertions, 67 deletions
diff --git a/dev-python/scrapy/ChangeLog b/dev-python/scrapy/ChangeLog
index c410b6557f92..50a8f3ff51f6 100644
--- a/dev-python/scrapy/ChangeLog
+++ b/dev-python/scrapy/ChangeLog
@@ -1,6 +1,10 @@
# 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.28 2014/10/09 01:54:48 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/ChangeLog,v 1.29 2015/05/29 21:40:54 mrueg Exp $
+
+ 29 May 2015; Manuel Rüger <mrueg@gentoo.org> -scrapy-0.24.2.ebuild,
+ scrapy-0.25.1.ebuild:
+ Remove old. Fix repoman warning.
09 Oct 2014; Ian Delaney <idella4@gentoo.org> +files/0.25.1-setup.patch,
-files/scrapy-0.14.3-runtests.patch, -scrapy-0.19.0.ebuild,
diff --git a/dev-python/scrapy/scrapy-0.24.2.ebuild b/dev-python/scrapy/scrapy-0.24.2.ebuild
deleted file mode 100644
index fbc83eea3cae..000000000000
--- a/dev-python/scrapy/scrapy-0.24.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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.2.ebuild,v 1.2 2015/04/02 18:39:29 mr_bones_ 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.6[${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.
-# Testsuite currently survives without it, so appears optional
-
-REQUIRED_USE="test? ( ssl boto )"
-
-python_compile_all() {
- if use doc; then
- PYTHONPATH="${S}" emake -C docs html || die "emake html failed"
- fi
-}
-
-python_test() {
- py.test ${PN} || die "tests failed"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/scrapy/scrapy-0.25.1.ebuild b/dev-python/scrapy/scrapy-0.25.1.ebuild
index 11628b96be99..05c4e552c869 100644
--- a/dev-python/scrapy/scrapy-0.25.1.ebuild
+++ b/dev-python/scrapy/scrapy-0.25.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.25.1.ebuild,v 1.3 2015/04/02 18:39:29 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scrapy/scrapy-0.25.1.ebuild,v 1.4 2015/05/29 21:40:54 mrueg Exp $
EAPI=5