[pybtex] 108/108: Updated version 0.20.1 from 'upstream/0.20.1'

Daniel Stender stender at moszumanska.debian.org
Fri Jul 21 10:18:35 UTC 2017


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

stender pushed a commit to branch master
in repository pybtex.

commit 120c72ff4ceb631df7e3d1395560ac957d4a4d96
Merge: c376b07 c790e48
Author: Daniel Stender <stender at debian.org>
Date:   Fri Jul 21 12:14:23 2017 +0200

    Updated version 0.20.1 from 'upstream/0.20.1'
    
    with Debian dir ef716db8b04a4ea0e7aa04ab225a92af89526ad7

 CHANGES                                            |   464 +
 COPYING                                            |    20 +
 MANIFEST.in                                        |    15 +
 PKG-INFO                                           |    70 +
 README                                             |    49 +
 custom_fixers/__init__.py                          |     0
 custom_fixers/fix_alt_unicode.py                   |    14 +
 docs/Makefile                                      |   207 +
 docs/generate_manpages.py                          |     8 +
 docs/make.bat                                      |   242 +
 docs/man1/pybtex-convert.1                         |    53 +
 docs/man1/pybtex-format.1                          |    68 +
 docs/man1/pybtex.1                                 |    79 +
 docs/pybtex_doctools/__init__.py                   |    30 +
 docs/pybtex_doctools/man.py                        |   147 +
 docs/pybtex_doctools/pygments.py                   |   217 +
 docs/site/conf.py                                  |   286 +
 docs/site/index.rst                                |    70 +
 docs/source/api/formatting.rst                     |   243 +
 docs/source/api/index.rst                          |    12 +
 docs/source/api/parsing.rst                        |   101 +
 docs/source/api/plugins.rst                        |   101 +
 docs/source/api/styles.rst                         |   198 +
 docs/source/cmdline.rst                            |   154 +
 docs/source/conf.py                                |   289 +
 docs/source/formats.rst                            |   120 +
 docs/source/history.rst                            |     5 +
 docs/source/index.rst                              |    15 +
 docs/theme/layout.html                             |   181 +
 docs/theme/static/master.css                       |   259 +
 docs/theme/static/print.css                        |     9 +
 docs/theme/static/site.css                         |    25 +
 docs/theme/theme.conf                              |     7 +
 examples/make.sh                                   |    10 +
 examples/sample_plugins/README                     |     9 +
 examples/sample_plugins/setup.py                   |    13 +
 examples/sample_plugins/toyplugins.py              |    54 +
 examples/tugboat/README                            |     3 +
 examples/tugboat/tugboat.aux                       |  2724 ++
 examples/tugboat/tugboat.bib                       | 43987 +++++++++++++++++++
 examples/xampl.bib                                 |   361 +
 examples/xampl.bibtexml                            |   654 +
 examples/xampl.tex                                 |     6 +
 examples/xampl.yaml                                |   421 +
 pybtex/__init__.py                                 |   195 +
 pybtex/__main__.py                                 |   117 +
 pybtex/__version__.py                              |    27 +
 pybtex/auxfile.py                                  |   137 +
 pybtex/backends/__init__.py                        |   110 +
 pybtex/backends/html.py                            |    89 +
 pybtex/backends/latex.py                           |   106 +
 pybtex/backends/markdown.py                        |   124 +
 pybtex/backends/plaintext.py                       |    42 +
 pybtex/bibtex/__init__.py                          |   117 +
 pybtex/bibtex/bst.py                               |   166 +
 pybtex/bibtex/builtins.py                          |   317 +
 pybtex/bibtex/exceptions.py                        |    25 +
 pybtex/bibtex/interpreter.py                       |   315 +
 pybtex/bibtex/names.py                             |   366 +
 pybtex/bibtex/utils.py                             |   551 +
 pybtex/charwidths/__init__.py                      |  2250 +
 pybtex/charwidths/make_charwidths.py               |   184 +
 pybtex/cmdline.py                                  |   230 +
 pybtex/database/__init__.py                        |   880 +
 pybtex/database/convert/__init__.py                |    53 +
 pybtex/database/convert/__main__.py                |    90 +
 pybtex/database/format/__init__.py                 |    57 +
 pybtex/database/format/__main__.py                 |    84 +
 pybtex/database/input/__init__.py                  |    80 +
 pybtex/database/input/bibtex.py                    |   385 +
 pybtex/database/input/bibtexml.py                  |    81 +
 pybtex/database/input/bibyaml.py                   |    99 +
 pybtex/database/output/__init__.py                 |    57 +
 pybtex/database/output/bibtex.py                   |   130 +
 pybtex/database/output/bibtexml.py                 |   133 +
 pybtex/database/output/bibyaml.py                  |    89 +
 pybtex/errors.py                                   |    79 +
 pybtex/exceptions.py                               |    36 +
 pybtex/io.py                                       |    97 +
 pybtex/kpathsea.py                                 |    29 +
 pybtex/markup/__init__.py                          |    67 +
 pybtex/plugin/__init__.py                          |   183 +
 pybtex/richtext.py                                 |  1013 +
 pybtex/scanner.py                                  |   180 +
 pybtex/style/__init__.py                           |    46 +
 pybtex/style/formatting/__init__.py                |    79 +
 pybtex/style/formatting/alpha.py                   |    27 +
 pybtex/style/formatting/plain.py                   |    26 +
 pybtex/style/formatting/unsrt.py                   |   466 +
 pybtex/style/formatting/unsrtalpha.py              |    26 +
 pybtex/style/labels/__init__.py                    |    32 +
 pybtex/style/labels/alpha.py                       |   176 +
 pybtex/style/labels/number.py                      |    30 +
 pybtex/style/names/__init__.py                     |    53 +
 pybtex/style/names/lastfirst.py                    |    62 +
 pybtex/style/names/plain.py                        |    66 +
 pybtex/style/sorting/__init__.py                   |    36 +
 pybtex/style/sorting/author_year_title.py          |    52 +
 pybtex/style/sorting/none.py                       |    28 +
 pybtex/style/template.py                           |   343 +
 pybtex/tests/__init__.py                           |    27 +
 pybtex/tests/bibtex_parser_test.py                 |   497 +
 pybtex/tests/bst_parser_test/__init__.py           |     0
 pybtex/tests/bst_parser_test/apacite.py            |  2204 +
 pybtex/tests/bst_parser_test/bst_parser_test.py    |    26 +
 pybtex/tests/bst_parser_test/jurabib.py            |  2003 +
 pybtex/tests/bst_parser_test/plain.py              |   956 +
 pybtex/tests/data/IEEEtran.aux                     |     9 +
 pybtex/tests/data/IEEEtran.bib                     |    47 +
 pybtex/tests/data/IEEEtran.bst                     |  2425 +
 pybtex/tests/data/IEEEtran_IEEEtran.bibtex.bbl     |    49 +
 pybtex/tests/data/__init__.py                      |     0
 pybtex/tests/data/alpha.bst                        |  1257 +
 pybtex/tests/data/apacite.bst                      |  5234 +++
 pybtex/tests/data/cyrillic.bib                     |    44 +
 pybtex/tests/data/cyrillic_alpha.bibtex.bbl        |    25 +
 pybtex/tests/data/cyrillic_alpha.pybtex.bbl        |    26 +
 pybtex/tests/data/cyrillic_plain.pybtex.bbl        |    26 +
 pybtex/tests/data/cyrillic_unsrt.bibtex.bbl        |    25 +
 pybtex/tests/data/cyrillic_unsrt.pybtex.bbl        |    26 +
 pybtex/tests/data/extrafields.bib                  |    16 +
 pybtex/tests/data/extrafields_unsrt.pybtex.bbl     |     9 +
 pybtex/tests/data/jurabib.bst                      |  2894 ++
 pybtex/tests/data/plain.bst                        |  1097 +
 pybtex/tests/data/unsrt.bst                        |   951 +
 pybtex/tests/data/unsrt_mixed.bst                  |   951 +
 pybtex/tests/data/xampl.bib                        |   361 +
 pybtex/tests/data/xampl_alpha.bibtex.bbl           |   216 +
 pybtex/tests/data/xampl_jurabib.bibtex.bbl         |   548 +
 pybtex/tests/data/xampl_mixed.bib                  |   361 +
 pybtex/tests/data/xampl_mixed_unsrt_mixed.aux      |    38 +
 .../tests/data/xampl_mixed_unsrt_mixed.bibtex.bbl  |   216 +
 pybtex/tests/data/xampl_plain.bibtex.bbl           |   216 +
 pybtex/tests/data/xampl_unsrt.bibtex.bbl           |   216 +
 pybtex/tests/database_test/__init__.py             |     0
 pybtex/tests/database_test/data.py                 |    55 +
 pybtex/tests/database_test/database_test.py        |   153 +
 pybtex/tests/general_engine_test.py                |   133 +
 pybtex/tests/io_test.py                            |   127 +
 pybtex/tests/parse_name_test.py                    |   184 +
 pybtex/tests/plugin_test.py                        |   155 +
 pybtex/tests/richtext_test.py                      |  1228 +
 pybtex/tests/run_bibtex.py                         |   119 +
 pybtex/textutils.py                                |   164 +
 pybtex/utils.py                                    |   424 +
 setup.cfg                                          |    12 +
 setup.py                                           |   174 +
 test_requirements.txt                              |     2 +
 tox.ini                                            |     4 +
 149 files changed, 88848 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pybtex.git



More information about the debian-science-commits mailing list