[Python-modules-commits] [yarl] 06/13: merge patched into master

Piotr Ożarowski piotr at moszumanska.debian.org
Tue Jun 20 18:21:33 UTC 2017


This is an automated email from the git hooks/post-receive script.

piotr pushed a commit to branch master
in repository yarl.

commit 4a23e9e69fede06450a0c5ed8bf5eb8c85221e4c
Merge: db5597b e449195
Author: Piotr Ożarowski <piotr at debian.org>
Date:   Tue Jun 20 20:05:47 2017 +0200

    merge patched into master

 CHANGES.rst                                        |   99 +-
 PKG-INFO                                           |  112 +-
 README.rst                                         |   10 +-
 debian/.git-dpm                                    |    6 +-
 ...-do-not-add-changelog-to-long-description.patch |    6 +-
 debian/patches/0002-docs-disable-intersphinx.patch |    2 +-
 ...0003-docs-disable-sidebar_collapse-option.patch |    2 +-
 docs/api.rst                                       |  113 +-
 docs/index.rst                                     |   10 +-
 setup.cfg                                          |    2 +-
 setup.py                                           |    8 +-
 tests/test_quoting.py                              |   54 +-
 tests/test_url.py                                  |  253 ++-
 yarl.egg-info/PKG-INFO                             |  112 +-
 yarl/__init__.py                                   |  207 +-
 yarl/__init__.pyi                                  |    5 +
 yarl/_quoting.c                                    | 2217 +++++++++++++-------
 yarl/_quoting.pyx                                  |   89 +-
 yarl/quoting.py                                    |   50 +-
 19 files changed, 2513 insertions(+), 844 deletions(-)

diff --cc debian/.git-dpm
index 2981c47,0000000..767e18d
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- a4ced1666a049c3449810edc24928eb4b81f9236
- a4ced1666a049c3449810edc24928eb4b81f9236
- 6865bfe0a98dfd7d8728744eaee4ed065edf6669
++e449195279f3870e3e47fc5575b1cc32b9ee2dee
++e449195279f3870e3e47fc5575b1cc32b9ee2dee
++33967f05b1739049ccfff67ed06a1a8d2c0fa2a6
 +33967f05b1739049ccfff67ed06a1a8d2c0fa2a6
 +yarl_0.10.3.orig.tar.gz
 +a87472ef1d2161679e4088e258738dde01c4e961
 +127867
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"
diff --cc debian/patches/0001-do-not-add-changelog-to-long-description.patch
index 4bed5d3,0000000..717ad83
mode 100644,000000..100644
--- a/debian/patches/0001-do-not-add-changelog-to-long-description.patch
+++ b/debian/patches/0001-do-not-add-changelog-to-long-description.patch
@@@ -1,26 -1,0 +1,26 @@@
- From 00a08911c833e5eb3943ae97543ad20b460955a6 Mon Sep 17 00:00:00 2001
++From 2a4f07e122b37db25d918e18d3ba30a563a9f031 Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <ozarow at gmail.com>
 +Date: Sun, 6 Nov 2016 22:11:09 +0100
 +Subject: do not add changelog to long description
 +
 +it contains non-ascii characters (and thus FTBFS) and we install it via
 +separate file anyway
 +---
 + setup.py | 4 ++--
 + 1 file changed, 2 insertions(+), 2 deletions(-)
 +
 +diff --git a/setup.py b/setup.py
- index dc133d3..71d0696 100644
++index 4ab4004..272be95 100644
 +--- a/setup.py
 ++++ b/setup.py
- @@ -76,8 +76,8 @@ args = dict(
++@@ -75,8 +75,8 @@ args = dict(
 +     name='yarl',
 +     version=version,
 +     description=("Yet another URL library"),
 +-    long_description='\n\n'.join([read('README.rst'),
 +-                                  read('CHANGES.rst')]),
 ++    #long_description='\n\n'.join([read('README.rst'),
 ++    #                              read('CHANGES.rst')]),
 +     classifiers=[
 +         'License :: OSI Approved :: Apache Software License',
 +         'Intended Audience :: Developers',
diff --cc debian/patches/0002-docs-disable-intersphinx.patch
index ab0f704,0000000..6e77262
mode 100644,000000..100644
--- a/debian/patches/0002-docs-disable-intersphinx.patch
+++ b/debian/patches/0002-docs-disable-intersphinx.patch
@@@ -1,22 -1,0 +1,22 @@@
- From ed281990d6e97e94f00f999840aed7ce93969b5d Mon Sep 17 00:00:00 2001
++From 6424e6ad01903560e5bdb95e73953a7dcd46ba15 Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <ozarow at gmail.com>
 +Date: Sun, 6 Nov 2016 22:12:57 +0100
 +Subject: docs: disable intersphinx
 +
 +---
 + docs/conf.py | 2 +-
 + 1 file changed, 1 insertion(+), 1 deletion(-)
 +
 +diff --git a/docs/conf.py b/docs/conf.py
 +index b53d5a4..4599902 100644
 +--- a/docs/conf.py
 ++++ b/docs/conf.py
 +@@ -50,7 +50,7 @@ with _version_path.open() as fp:
 + # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 + # ones.
 + extensions = [
 +-    'sphinx.ext.intersphinx',
 ++    #'sphinx.ext.intersphinx',
 +     'sphinx.ext.coverage',
 +     'sphinx.ext.doctest',
 +     'sphinx.ext.viewcode',
diff --cc debian/patches/0003-docs-disable-sidebar_collapse-option.patch
index 899a50f,0000000..1833024
mode 100644,000000..100644
--- a/debian/patches/0003-docs-disable-sidebar_collapse-option.patch
+++ b/debian/patches/0003-docs-disable-sidebar_collapse-option.patch
@@@ -1,23 -1,0 +1,23 @@@
- From a4ced1666a049c3449810edc24928eb4b81f9236 Mon Sep 17 00:00:00 2001
++From e449195279f3870e3e47fc5575b1cc32b9ee2dee Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <ozarow at gmail.com>
 +Date: Sun, 6 Nov 2016 22:14:54 +0100
 +Subject: docs: disable sidebar_collapse option
 +
 +theme packaged in Debian doesn't have this option
 +---
 + docs/conf.py | 2 +-
 + 1 file changed, 1 insertion(+), 1 deletion(-)
 +
 +diff --git a/docs/conf.py b/docs/conf.py
 +index 4599902..3de0fb6 100644
 +--- a/docs/conf.py
 ++++ b/docs/conf.py
 +@@ -168,7 +168,7 @@ html_theme_options = {
 +     'body_text': '#482C0A',
 +     'sidebar_text': '#49443E',
 +     'sidebar_header': '#4B4032',
 +-    'sidebar_collapse': False,
 ++    #'sidebar_collapse': False,
 + }
 + 
 + # Theme options are theme-specific and customize the look and feel of a theme

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/yarl.git



More information about the Python-modules-commits mailing list