[pybtex] branch master updated (120c72f -> 8ec0dcc)

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Sat Jul 22 21:04:53 UTC 2017


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

ghisvail-guest pushed a change to branch master
in repository pybtex.

      from  120c72f   Updated version 0.20.1 from 'upstream/0.20.1'
       new  0b69119   Upgrade watch file to version 4
       new  eb0f30f   Add missing gbp configuration
      adds  d98e6fd   New upstream version 0.21
       new  1e653b7   Merge tag 'upstream/0.21'
       new  26a7794   Drop the patch queue, no longer required
       new  d47e019   Run cme fix on control file
       new  167faee   Run cme fix on copyright file
       new  f7ff13c   Set the Source field to the PyPI URI
       new  50b0580   Use secure Homepage URI
       new  04af398   Filter egg-info directory with extend-diff-ignore
       new  e62eaa1   Run the tests in isolation from the source tree
       new  82cdb33   Add versioned dependency to latexcodec
       new  b2a7bd5   Provide separate packages for Python 2 and docs
       new  8c24c09   Provide a package for Python 3
       new  1311f2e   Build the docs using the upstream Makefile
       new  bd0a68e   Add support for the nocheck build profile
       new  e4137f9   Add support for the nodoc build profile
       new  5e8b750   Provide the alternative entry-point via symlinks
       new  5b0c4e6   Improve the autopkgtest suite
       new  512ee02   Adopt the package
       new  8ec0dcc   Release to unstable

The 20 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:
 CHANGES                                         |  31 +++++-
 COPYING                                         |   2 +-
 PKG-INFO                                        |   6 +-
 README                                          |   2 +-
 debian/changelog                                |  36 +++++++
 debian/clean                                    |   1 -
 debian/control                                  | 123 ++++++++++++++++++++----
 debian/copyright                                |  45 ++++-----
 debian/doc-base                                 |   8 --
 debian/docs                                     |   1 -
 debian/gbp.conf                                 |   7 ++
 debian/patches/hardcode-copyright-year.patch    |  16 ---
 debian/patches/series                           |   1 -
 debian/pybtex.links                             |   2 +
 debian/{manpages => pybtex.manpages}            |   0
 debian/{postinst => pybtex.postinst}            |   0
 debian/{prerm => pybtex.prerm}                  |   0
 debian/python-pybtex-doc.doc-base               |   9 ++
 debian/python-pybtex-doc.docs                   |   1 +
 debian/{examples => python-pybtex-doc.examples} |   0
 debian/rules                                    |  38 +++++---
 debian/source/options                           |   1 +
 debian/tests/control                            |  23 ++++-
 debian/tests/pybtex                             |   3 -
 debian/watch                                    |   5 +-
 docs/Makefile                                   |   4 +-
 docs/man1/pybtex-convert.1                      |   8 +-
 docs/man1/pybtex-format.1                       |   8 +-
 docs/man1/pybtex.1                              |   8 +-
 docs/pybtex_doctools/__init__.py                |   2 +-
 docs/pybtex_doctools/man.py                     |   6 +-
 docs/pybtex_doctools/pygments.py                |   2 +-
 docs/site/conf.py                               |   2 +-
 docs/source/api/plugins.rst                     |   2 +-
 docs/source/conf.py                             |   4 +-
 docs/theme/layout.html                          |   2 +-
 examples/sample_plugins/toyplugins.py           |   2 +-
 examples/xampl.yaml                             |  60 ++++++------
 pybtex/__init__.py                              |   4 +-
 pybtex/__main__.py                              |   2 +-
 pybtex/__version__.py                           |   4 +-
 pybtex/auxfile.py                               |   2 +-
 pybtex/backends/__init__.py                     |   2 +-
 pybtex/backends/html.py                         |   5 +-
 pybtex/backends/latex.py                        |  14 +--
 pybtex/backends/markdown.py                     |   2 +-
 pybtex/backends/plaintext.py                    |   2 +-
 pybtex/bibtex/__init__.py                       |   2 +-
 pybtex/bibtex/bst.py                            |   2 +-
 pybtex/bibtex/builtins.py                       |   7 +-
 pybtex/bibtex/exceptions.py                     |   2 +-
 pybtex/bibtex/interpreter.py                    |   7 +-
 pybtex/bibtex/names.py                          |   2 +-
 pybtex/bibtex/utils.py                          |   2 +-
 pybtex/charwidths/make_charwidths.py            |  25 ++---
 pybtex/cmdline.py                               |   4 +-
 pybtex/database/__init__.py                     |   2 +-
 pybtex/database/convert/__init__.py             |   2 +-
 pybtex/database/convert/__main__.py             |   2 +-
 pybtex/database/format/__init__.py              |   2 +-
 pybtex/database/format/__main__.py              |   2 +-
 pybtex/database/input/__init__.py               |   4 +-
 pybtex/database/input/bibtex.py                 |   4 +-
 pybtex/database/input/bibtexml.py               |   2 +-
 pybtex/database/input/bibyaml.py                |   4 +-
 pybtex/database/output/__init__.py              |   2 +-
 pybtex/database/output/bibtex.py                | 106 +++++++++++++-------
 pybtex/database/output/bibtexml.py              |   2 +-
 pybtex/database/output/bibyaml.py               |   2 +-
 pybtex/errors.py                                |   5 +-
 pybtex/exceptions.py                            |   6 +-
 pybtex/io.py                                    |   6 +-
 pybtex/kpathsea.py                              |   2 +-
 pybtex/markup/__init__.py                       |   2 +-
 pybtex/plugin/__init__.py                       |   2 +-
 pybtex/richtext.py                              |  12 +--
 pybtex/scanner.py                               |   2 +-
 pybtex/style/__init__.py                        |   2 +-
 pybtex/style/formatting/__init__.py             |   2 +-
 pybtex/style/formatting/alpha.py                |   2 +-
 pybtex/style/formatting/plain.py                |   2 +-
 pybtex/style/formatting/unsrt.py                |  42 ++++----
 pybtex/style/formatting/unsrtalpha.py           |   2 +-
 pybtex/style/labels/__init__.py                 |   2 +-
 pybtex/style/labels/alpha.py                    |   2 +-
 pybtex/style/labels/number.py                   |   2 +-
 pybtex/style/names/__init__.py                  |  13 +--
 pybtex/style/names/lastfirst.py                 |   6 +-
 pybtex/style/names/plain.py                     |  19 ++--
 pybtex/style/sorting/__init__.py                |   2 +-
 pybtex/style/sorting/author_year_title.py       |   2 +-
 pybtex/style/sorting/none.py                    |   2 +-
 pybtex/style/template.py                        |  21 ++--
 pybtex/tests/__init__.py                        |   2 +-
 pybtex/tests/bibtex_parser_test.py              |   2 +-
 pybtex/tests/data/cyrillic.bib                  |  12 ++-
 pybtex/tests/data/cyrillic_alpha.bibtex.bbl     |   5 +
 pybtex/tests/data/cyrillic_alpha.pybtex.bbl     |  12 ++-
 pybtex/tests/data/cyrillic_plain.pybtex.bbl     |  14 ++-
 pybtex/tests/data/cyrillic_unsrt.bibtex.bbl     |   5 +
 pybtex/tests/data/cyrillic_unsrt.pybtex.bbl     |  12 ++-
 pybtex/tests/data/extrafields_unsrt.pybtex.bbl  |   2 +-
 pybtex/tests/database_test/database_test.py     |   2 +-
 pybtex/tests/io_test.py                         |   2 +-
 pybtex/tests/richtext_test.py                   |   2 +-
 pybtex/tests/run_bibtex.py                      |   7 +-
 pybtex/textutils.py                             |  10 +-
 pybtex/utils.py                                 |   2 +-
 setup.cfg                                       |   2 +-
 setup.py                                        |   6 +-
 110 files changed, 603 insertions(+), 353 deletions(-)
 delete mode 100644 debian/clean
 delete mode 100644 debian/doc-base
 delete mode 100644 debian/docs
 create mode 100644 debian/gbp.conf
 delete mode 100644 debian/patches/hardcode-copyright-year.patch
 delete mode 100644 debian/patches/series
 create mode 100644 debian/pybtex.links
 rename debian/{manpages => pybtex.manpages} (100%)
 rename debian/{postinst => pybtex.postinst} (100%)
 rename debian/{prerm => pybtex.prerm} (100%)
 create mode 100644 debian/python-pybtex-doc.doc-base
 create mode 100644 debian/python-pybtex-doc.docs
 rename debian/{examples => python-pybtex-doc.examples} (100%)
 create mode 100644 debian/source/options
 delete mode 100644 debian/tests/pybtex

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