[Python-modules-commits] [python-scrapy] branch debian/master updated (0b6827b -> 31695f1)
Michael Fladischer
fladi at moszumanska.debian.org
Tue Jan 9 14:16:21 UTC 2018
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch debian/master
in repository python-scrapy.
from 0b6827b Upload to unstable (Closes: #871385).
new e9b9aaa Always use pristine-tar.
new f128f14 New upstream version 1.5.0
new 0326ac9 Update upstream source from tag 'upstream/1.5.0'
new 5b76fff New upstream release.
new 2a205a8 Bump debhelper compatibility and version to 11.
new 152ea31 Bump Standards-Version to 4.1.3.
new c3a2d40 Run wrap-and-sort -bast to reduce diff size of future changes.
new 8e13d34 Enable autopkgtest-pkg-python testsuite.
new 31695f1 Remove debian/python-scrapy.examples as upstream no longer provides the related files.
The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.bumpversion.cfg | 2 +-
.travis.yml | 34 ++--
CONTRIBUTING.md | 4 +-
INSTALL | 2 +-
README.rst | 35 +++--
artwork/README.rst | 4 +-
debian/changelog | 13 ++
debian/compat | 2 +-
debian/control | 171 +++++++++++----------
debian/gbp.conf | 1 +
debian/python-scrapy.examples | 1 -
docs/conf.py | 4 +-
docs/contributing.rst | 80 ++++++++--
docs/faq.rst | 6 +-
docs/index.rst | 10 +-
docs/intro/install.rst | 50 ++++--
docs/intro/overview.rst | 4 +-
docs/intro/tutorial.rst | 6 +-
docs/news.rst | 116 +++++++++++++-
docs/topics/autothrottle.rst | 1 +
docs/topics/broad-crawls.rst | 6 +-
docs/topics/commands.rst | 8 +-
docs/topics/debug.rst | 2 +-
docs/topics/deploy.rst | 12 +-
docs/topics/downloader-middleware.rst | 22 +++
docs/topics/email.rst | 4 +-
docs/topics/exceptions.rst | 8 +
docs/topics/exporters.rst | 62 ++++----
docs/topics/extensions.rst | 10 +-
docs/topics/firebug.rst | 2 +-
docs/topics/firefox.rst | 8 +-
docs/topics/item-pipeline.rst | 4 +-
docs/topics/items.rst | 2 +-
docs/topics/jobs.rst | 2 +-
docs/topics/loaders.rst | 4 +-
docs/topics/logging.rst | 4 +-
docs/topics/media-pipeline.rst | 29 +++-
docs/topics/practices.rst | 8 +-
docs/topics/request-response.rst | 12 +-
docs/topics/scrapyd.rst | 2 +-
docs/topics/selectors.rst | 6 +-
docs/topics/settings.rst | 8 +-
docs/topics/shell.rst | 14 +-
docs/topics/signals.rst | 10 +-
docs/topics/spider-middleware.rst | 21 ++-
docs/topics/spiders.rst | 11 +-
docs/topics/ubuntu.rst | 2 +-
docs/utils/linkfix.py | 2 +-
extras/coverage-report.sh | 2 +-
extras/qpsclient.py | 2 +-
requirements-py3.txt | 2 +-
scrapy/VERSION | 2 +-
scrapy/_monkeypatches.py | 4 +-
scrapy/cmdline.py | 8 +-
scrapy/commands/edit.py | 3 +-
scrapy/commands/parse.py | 30 +++-
scrapy/commands/version.py | 43 +-----
scrapy/core/downloader/contextfactory.py | 4 +-
scrapy/core/downloader/handlers/http11.py | 48 +++++-
scrapy/crawler.py | 16 +-
scrapy/downloadermiddlewares/chunked.py | 2 +-
scrapy/downloadermiddlewares/httpcache.py | 2 +-
scrapy/downloadermiddlewares/redirect.py | 4 +-
scrapy/exporters.py | 2 +-
scrapy/extensions/httpcache.py | 13 +-
scrapy/extensions/telnet.py | 2 +-
scrapy/http/request/__init__.py | 4 +
scrapy/http/response/text.py | 9 +-
scrapy/linkextractors/__init__.py | 2 +-
scrapy/mail.py | 22 ++-
scrapy/pipelines/files.py | 49 +++++-
scrapy/pipelines/images.py | 3 +
scrapy/resolver.py | 3 +-
scrapy/settings/default_settings.py | 4 +-
scrapy/shell.py | 2 +-
scrapy/signalmanager.py | 2 +-
scrapy/spidermiddlewares/offsite.py | 10 ++
scrapy/spiders/__init__.py | 2 +-
scrapy/spiders/sitemap.py | 2 +-
scrapy/templates/project/module/items.py.tmpl | 2 +-
.../templates/project/module/middlewares.py.tmpl | 49 +++++-
scrapy/templates/project/module/pipelines.py.tmpl | 2 +-
scrapy/templates/project/module/settings.py.tmpl | 22 +--
scrapy/templates/project/scrapy.cfg | 2 +-
scrapy/utils/console.py | 12 +-
scrapy/utils/defer.py | 2 +-
scrapy/utils/deprecate.py | 12 +-
scrapy/utils/http.py | 2 +-
scrapy/utils/log.py | 13 +-
scrapy/utils/python.py | 38 ++++-
scrapy/utils/test.py | 15 ++
scrapy/utils/url.py | 2 +-
scrapy/utils/versions.py | 50 ++++++
sep/sep-001.rst | 2 +-
sep/sep-006.rst | 8 +-
sep/sep-013.rst | 2 +-
sep/sep-017.rst | 2 +-
sep/sep-020.rst | 2 +-
setup.py | 29 +++-
tests/__init__.py | 2 +-
tests/keys/example-com.conf | 4 +-
tests/test_cmdline/__init__.py | 2 +-
tests/test_command_parse.py | 39 +++++
tests/test_command_version.py | 2 +-
tests/test_commands.py | 21 +++
tests/test_downloader_handlers.py | 88 +++++------
tests/test_downloadermiddleware_cookies.py | 20 +--
tests/test_downloadermiddleware_defaultheaders.py | 6 +-
tests/test_downloadermiddleware_downloadtimeout.py | 8 +-
tests/test_downloadermiddleware_httpauth.py | 4 +-
tests/test_downloadermiddleware_httpcache.py | 1 +
tests/test_downloadermiddleware_httpcompression.py | 2 +-
tests/test_downloadermiddleware_httpproxy.py | 48 +++---
tests/test_downloadermiddleware_redirect.py | 20 ++-
tests/test_downloadermiddleware_useragent.py | 6 +-
tests/test_http_cookies.py | 2 +-
tests/test_http_request.py | 24 ++-
tests/test_http_response.py | 8 +-
tests/test_item.py | 2 +-
tests/test_loader.py | 20 +--
tests/test_pipeline_files.py | 28 +++-
tests/test_pipeline_images.py | 16 +-
tests/test_selector.py | 2 +-
tests/test_spider.py | 47 +++++-
tests/test_spidermiddleware_depth.py | 8 +-
tests/test_spidermiddleware_httperror.py | 24 +--
tests/test_spidermiddleware_offsite.py | 18 ++-
tests/test_spidermiddleware_referer.py | 10 +-
tests/test_spidermiddleware_urllength.py | 2 +-
tests/test_squeues.py | 30 ++--
tests/test_urlparse_monkeypatches.py | 8 +-
tests/test_utils_datatypes.py | 8 +-
tests/test_utils_defer.py | 2 +-
tests/test_utils_iterators.py | 4 +-
tests/test_utils_misc/__init__.py | 8 +-
tests/test_utils_project.py | 8 +-
tests/test_utils_python.py | 48 ++++--
tests/test_utils_reqser.py | 6 +-
tests/test_utils_signal.py | 2 +-
tests/test_webclient.py | 28 ++--
tox.ini | 24 +--
141 files changed, 1425 insertions(+), 637 deletions(-)
delete mode 100644 debian/python-scrapy.examples
create mode 100644 scrapy/utils/versions.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-scrapy.git
More information about the Python-modules-commits
mailing list