[Python-modules-commits] [python3-proselint] 04/09: merge patched into master

Víctor Cuadrado Juan viccuad-guest at moszumanska.debian.org
Mon Feb 27 19:15:50 UTC 2017


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

viccuad-guest pushed a commit to branch master
in repository python3-proselint.

commit 73de561ca9111e3ecf68530d03fc6cddf0adc997
Merge: 2a6f947 d828682
Author: Víctor Cuadrado Juan <me at viccuad.me>
Date:   Mon Feb 27 16:41:49 2017 +0100

    merge patched into master

 CHANGELOG.md                                       | 509 +++++++++++++++++++++
 MANIFEST.in                                        |   2 +-
 PKG-INFO                                           |   4 +-
 README.md                                          |  50 +-
 debian/.git-dpm                                    |   6 +-
 ...001-Remove-debug-clearcache-functionality.patch |   6 +-
 proselint.egg-info/PKG-INFO                        |   4 +-
 proselint.egg-info/SOURCES.txt                     |  68 ++-
 proselint/.proselintrc                             |   3 +
 proselint/__main__.py                              |  10 +
 proselint/checks/cliches/misc.py                   |   2 +-
 proselint/checks/misc/but.py                       |   2 +-
 proselint/checks/misc/debased.py                   |   2 +-
 proselint/checks/misc/institution_name.py          |  33 ++
 proselint/checks/misc/phrasal_adjectives.py        |   9 +-
 proselint/checks/misc/pretension.py                |   2 +-
 proselint/checks/misc/punctuation.py               |   2 +-
 proselint/checks/misc/suddenly.py                  |   4 +-
 proselint/checks/oxymorons/misc.py                 |   2 +-
 proselint/checks/redundancy/ras_syndrome.py        |   2 +-
 proselint/checks/sexism/misc.py                    |  34 +-
 proselint/checks/skunked_terms/misc.py             |   2 +-
 proselint/checks/spelling/able_atable.py           |   4 +-
 proselint/checks/spelling/able_ible.py             |   2 +-
 proselint/checks/spelling/em_im_en_in.py           |   2 +-
 proselint/checks/spelling/er_or.py                 |   2 +-
 proselint/checks/spelling/in_un.py                 |   2 +-
 proselint/checks/terms/denizen_labels.py           |   2 +-
 proselint/checks/weasel_words/very.py              |   2 +-
 proselint/command_line.py                          |  43 +-
 proselint/version.py                               |   2 +-
 setup.cfg                                          |   2 +-
 tests/test_clear_cache.py                          | 166 +++++++
 tests/test_junge_but.py                            |  56 ---
 tests/test_malaproprisms.py                        |  22 +
 tests/test_misc_apologizing.py                     |  22 +
 tests/test_misc_back_formations.py                 |  22 +
 tests/test_misc_bureaucratese.py                   |  23 +
 tests/test_misc_but.py                             |  22 +
 tests/test_misc_capitalization.py                  |  32 ++
 tests/test_misc_chatspeak.py                       |  22 +
 tests/test_misc_commercialese.py                   |  22 +
 tests/test_misc_composition.py                     |  22 +
 tests/test_misc_currency.py                        |  22 +
 tests/test_misc_debased.py                         |  22 +
 tests/test_misc_false_plurals.py                   |  27 ++
 tests/test_misc_greylist.py                        |  22 +
 tests/test_misc_illogic.py                         |  36 ++
 tests/test_misc_inferior_superior.py               |  23 +
 tests/test_misc_latin.py                           |  22 +
 tests/test_misc_many_a.py                          |  23 +
 tests/test_misc_metaconcepts.py                    |  21 +
 tests/test_misc_metadiscourse.py                   |  22 +
 tests/test_misc_narcissism.py                      |  24 +
 tests/test_misc_not_guilty.py                      |  23 +
 tests/test_misc_phrasal_adjectives.py              |  29 ++
 tests/test_misc_preferred_forms.py                 |  22 +
 tests/test_misc_pretension.py                      |  22 +
 tests/test_misc_professions.py                     |  22 +
 tests/test_misc_punctuation.py                     |  22 +
 tests/test_misc_scare_quotes.py                    |  22 +
 tests/test_misc_suddenly.py                        |  22 +
 tests/test_misc_tense_present.py                   |  22 +
 tests/test_misc_usage.py                           |  21 +
 tests/test_misc_waxed.py                           |  22 +
 tests/test_misc_whence.py                          |  22 +
 tests/test_mixed_metaphors.py                      |  31 ++
 tests/test_mondegreens.py                          |  23 +
 tests/test_needless_variants.py                    |  22 +
 tests/test_nonwords.py                             |  22 +
 tests/test_oxymorons.py                            |  22 +
 tests/test_psychology.py                           |  38 ++
 tests/test_redundancy_misc.py                      |  43 ++
 tests/test_redundancy_ras_syndrome.py              |  22 +
 tests/test_security_credit_card.py                 |  26 ++
 tests/test_security_password.py                    |  23 +
 tests/test_sexism.py                               |  23 +
 tests/test_skunked_terms.py                        |  23 +
 tests/test_spelling_able_atable.py                 |  22 +
 tests/test_spelling_able_ible.py                   |  22 +
 tests/test_spelling_athletes.py                    |  22 +
 tests/test_spelling_em_im_en_in.py                 |  22 +
 tests/test_spelling_er_or.py                       |  22 +
 tests/test_spelling_in_un.py                       |  22 +
 tests/test_spelling_misc.py                        |  22 +
 tests/test_terms_animal_adjectives.py              |  22 +
 tests/test_terms_denizen_labels.py                 |  22 +
 tests/test_terms_eponymous_adjectives.py           |  22 +
 tests/test_terms_venery.py                         |  22 +
 tests/test_typography_diacritical_marks.py         |  22 +
 tests/test_typography_exclamation.py               |  37 ++
 tests/test_typography_symbols.py                   |  50 ++
 tests/test_uncomparables.py                        |  22 +
 tests/test_weasel_words_misc.py                    |  25 +
 tests/test_weasel_words_very.py                    |  22 +
 95 files changed, 2404 insertions(+), 121 deletions(-)

diff --cc debian/.git-dpm
index 98ed9d2,0000000..2fda390
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
- dc12beecfb861d8b32ca56bbc53ecf4d000ffce5
- dc12beecfb861d8b32ca56bbc53ecf4d000ffce5
- 9431fd0ca51f1b07831deb1b450eac806989cc1a
++d8286825636271f2c37ca893ba9ace905f87b53a
++d8286825636271f2c37ca893ba9ace905f87b53a
++0824c24ca19e0f659e501a88f524f9372d0a901c
 +0824c24ca19e0f659e501a88f524f9372d0a901c
 +python3-proselint_0.8.0.orig.tar.gz
 +d3f6237e979166b74ac7b451063a5788795499ce
 +94169
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"
diff --cc debian/patches/0001-Remove-debug-clearcache-functionality.patch
index 64264f1,0000000..220a0a1
mode 100644,000000..100644
--- a/debian/patches/0001-Remove-debug-clearcache-functionality.patch
+++ b/debian/patches/0001-Remove-debug-clearcache-functionality.patch
@@@ -1,24 -1,0 +1,24 @@@
- From dc12beecfb861d8b32ca56bbc53ecf4d000ffce5 Mon Sep 17 00:00:00 2001
++From d8286825636271f2c37ca893ba9ace905f87b53a Mon Sep 17 00:00:00 2001
 +From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= <me at viccuad.me>
 +Date: Thu, 16 Jun 2016 09:38:57 +0200
 +Subject: Remove `--debug` clearcache functionality
 +
 +Fixes #821886
 +---
 + proselint/command_line.py | 3 ---
 + 1 file changed, 3 deletions(-)
 +
 +diff --git a/proselint/command_line.py b/proselint/command_line.py
- index d7efb69..1a33a6e 100644
++index 47e159c..538815b 100644
 +--- a/proselint/command_line.py
 ++++ b/proselint/command_line.py
- @@ -97,9 +97,6 @@ def proselint(paths=None, version=None, clean=None, debug=None,
++@@ -120,9 +120,6 @@ def proselint(paths=None, version=None, clean=None, debug=None,
 +         click.echo(timing_test())
 +         return
 + 
 +-    # In debug or clean mode, delete cache & *.pyc files before running.
 +-    if debug or clean:
 +-        clear_cache()
 + 
 +     # Use the demo file by default.
 +     if demo:

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



More information about the Python-modules-commits mailing list