[Python-modules-commits] [yarl] 07/08: merge patched into master

Piotr Ożarowski piotr at moszumanska.debian.org
Thu Nov 30 13:19:16 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 3941d1159f9c1739ce5cb065efd49bcb930f6aa8
Merge: e684946 edc4e4d
Author: Piotr Ożarowski <piotr at debian.org>
Date:   Thu Nov 30 14:10:17 2017 +0100

    merge patched into master

 CHANGES.rst                                        |   23 +
 MANIFEST.in                                        |    1 +
 PKG-INFO                                           |   26 +-
 debian/.git-dpm                                    |    6 +-
 ...-do-not-add-changelog-to-long-description.patch |    2 +-
 debian/patches/0002-docs-disable-intersphinx.patch |    2 +-
 ...0003-docs-disable-sidebar_collapse-option.patch |    2 +-
 ...ble-privacy-breach-links-in-documentation.patch |    2 +-
 docs/api.rst                                       |   11 +
 tests/test_pickle.py                               |    1 -
 tests/test_quoting.py                              |   39 +-
 tests/test_update_query.py                         |    1 +
 tests/test_url.py                                  |   11 +
 tests/test_url_update_netloc.py                    |    7 +
 yarl.egg-info/PKG-INFO                             |   26 +-
 yarl/__init__.py                                   |  132 +-
 yarl/__init__.pyi                                  |   15 +-
 yarl/_quoting.c                                    | 1974 +++++++++-----------
 yarl/_quoting.pyx                                  |   80 +-
 yarl/quoting.py                                    |   36 +-
 20 files changed, 1171 insertions(+), 1226 deletions(-)

diff --cc debian/.git-dpm
index 6d706b1,0000000..27ca276
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
- 024b5ce486807e428ddc5b9d5cbf9ffb86cfc079
- 024b5ce486807e428ddc5b9d5cbf9ffb86cfc079
- e408f9248fb467da0cf7adea1f8804f2128f12a4
++edc4e4d7bf7ea9f4343be8efe7e2b3e8a9f36cbc
++edc4e4d7bf7ea9f4343be8efe7e2b3e8a9f36cbc
++cdf0cb6c02f578a77a7b02ac763295ca80e5c7ac
 +cdf0cb6c02f578a77a7b02ac763295ca80e5c7ac
 +yarl_0.15.0.orig.tar.gz
 +483d95339fe72fd292c69c25532660792e24669b
 +135867
 +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 16cee0b,0000000..feedbaf
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 8007d4a8ba74bde6ff862f20b04f112ea857622d Mon Sep 17 00:00:00 2001
++From f6eb9686aa154e011fa102fbdc43ddcd91d29193 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 4ab4004..272be95 100644
 +--- a/setup.py
 ++++ b/setup.py
 +@@ -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 893008e,0000000..594b935
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 6d099e6ab30512023172e4c80d228ef86eb4bdda Mon Sep 17 00:00:00 2001
++From ccf9756196dbed3898b46a0b51318bb355e78e0b 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 196c4ad..aba4128 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 ba8545a,0000000..a08fcf8
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 dd7b7fa24c6474656590da95f18eedbe82e60a1b Mon Sep 17 00:00:00 2001
++From 7d67d593cadf6af2f7e9269f638f2c07f645386a 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 aba4128..c27f4a7 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
diff --cc debian/patches/0004-disable-privacy-breach-links-in-documentation.patch
index b3d319c,0000000..0790f60
mode 100644,000000..100644
--- a/debian/patches/0004-disable-privacy-breach-links-in-documentation.patch
+++ b/debian/patches/0004-disable-privacy-breach-links-in-documentation.patch
@@@ -1,34 -1,0 +1,34 @@@
- From 024b5ce486807e428ddc5b9d5cbf9ffb86cfc079 Mon Sep 17 00:00:00 2001
++From edc4e4d7bf7ea9f4343be8efe7e2b3e8a9f36cbc Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <piotr at debian.org>
 +Date: Tue, 20 Jun 2017 20:13:42 +0200
 +Subject: disable privacy breach links in documentation
 +
 +---
 + docs/conf.py | 14 +++++++-------
 + 1 file changed, 7 insertions(+), 7 deletions(-)
 +
 +diff --git a/docs/conf.py b/docs/conf.py
 +index c27f4a7..afd4f69 100644
 +--- a/docs/conf.py
 ++++ b/docs/conf.py
 +@@ -155,13 +155,13 @@ html_theme = 'alabaster'
 + html_theme_options = {
 +     'logo': 'yarl-icon-128x128.png',
 +     'description': 'Yet another URL library',
 +-    'github_user': 'aio-libs',
 +-    'github_repo': 'yarl',
 +-    'github_button': True,
 +-    'github_type': 'star',
 +-    'github_banner': True,
 +-    'travis_button': True,
 +-    'codecov_button': True,
 ++#     'github_user': 'aio-libs',
 ++#     'github_repo': 'yarl',
 ++#     'github_button': True,
 ++#     'github_type': 'star',
 ++#     'github_banner': True,
 ++#     'travis_button': True,
 ++#     'codecov_button': True,
 +     'pre_bg': '#FFF6E5',
 +     'note_bg': '#E5ECD1',
 +     'note_border': '#BFCF8C',

-- 
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