a3537d9682
Scrapy 1.6.0: Highlights: * better Windows support; * Python 3.7 compatibility; * big documentation improvements, including a switch from .extract_first() + .extract() API to .get() + .getall() API; * feed exports, FilePipeline and MediaPipeline improvements; * better extensibility: :signal:item_error and :signal:request_reached_downloader signals; from_crawler support for feed exporters, feed storages and dupefilters. * scrapy.contracts fixes and new features; * telnet console security improvements, first released as a backport in :ref:release-1.5.2; * clean-up of the deprecated code; * various bug fixes, small new features and usability improvements across the codebase.
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2019/01/31 09:07:46 adam Exp $
|
|
|
|
DISTNAME= Scrapy-1.6.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=S/Scrapy/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://scrapy.org/
|
|
COMMENT= High-level Web Crawling and Web Scraping framework
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.13.1:../../security/py-OpenSSL
|
|
DEPENDS+= ${PYPKGPREFIX}-cssselect>=0.9:../../textproc/py-cssselect
|
|
DEPENDS+= ${PYPKGPREFIX}-lxml>=3.2.4:../../textproc/py-lxml
|
|
DEPENDS+= ${PYPKGPREFIX}-parsel>=1.5:../../www/py-parsel
|
|
DEPENDS+= ${PYPKGPREFIX}-pydispatcher>=2.0.5:../../devel/py-pydispatcher
|
|
DEPENDS+= ${PYPKGPREFIX}-queuelib>=1.1.1:../../devel/py-queuelib
|
|
DEPENDS+= ${PYPKGPREFIX}-service_identity-[0-9]*:../../security/py-service_identity
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.5.2:../../lang/py-six
|
|
DEPENDS+= ${PYPKGPREFIX}-twisted>=17.9.0:../../net/py-twisted
|
|
DEPENDS+= ${PYPKGPREFIX}-w3lib>=1.17.0:../../www/py-w3lib
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} scrapy scrapy-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|