[Python-modules-commits] [python-stdnum] branch master updated (e5d527c -> 1edb033)

Arthur de Jong adejong at moszumanska.debian.org
Sat Jan 6 18:30:50 UTC 2018


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

adejong pushed a change to branch master
in repository python-stdnum.

      from  e5d527c   Release 1.7-1
       new  9cacf49   Import python-stdnum_1.8.1.orig.tar.gz
       new  bc1686e   New upstream release (1.8.1)
       new  bc50e1e   Use Python3 version to build Sphinx documentation
       new  ad68e1d   Update package description with all formats
       new  b8a1913   Upgrade to standards-version 4.1.3 (no changes needed)
       new  1edb033   Release 1.8.1-1

The 6 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:
 ChangeLog                                          | 265 +++++++++++++++
 MANIFEST.in                                        |   3 +-
 NEWS                                               |  31 ++
 PKG-INFO                                           | 371 ++++++++++++---------
 README                                             |  49 ++-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  26 ++
 debian/control                                     | 114 ++++++-
 debian/rules                                       |   4 +-
 docs/conf.py                                       |   8 +-
 docs/index.rst                                     |  58 ++--
 docs/stdnum.bic.rst                                |   5 +
 docs/stdnum.casrn.rst                              |   5 +
 docs/stdnum.do.ncf.rst                             |   5 +
 docs/stdnum.eu.banknote.rst                        |   5 +
 docs/stdnum.in_.aadhaar.rst                        |   5 +
 docs/stdnum.in_.pan.rst                            |   5 +
 docs/stdnum.is_.kennitala.rst                      |   4 +-
 docs/stdnum.is_.vsk.rst                            |   4 +-
 docs/stdnum.iso9362.rst                            |   5 -
 online_check/check.js                              |  37 +-
 online_check/stdnum.wsgi                           |   6 +-
 python_stdnum.egg-info/PKG-INFO                    | 371 ++++++++++++---------
 python_stdnum.egg-info/SOURCES.txt                 |  42 ++-
 python_stdnum.egg-info/requires.txt                |   7 +-
 setup.cfg                                          |   3 +
 setup.py                                           |  15 +-
 stdnum/__init__.py                                 | 146 +-------
 stdnum/{iso9362.py => bic.py}                      |   5 +-
 stdnum/{sk/dph.py => casrn.py}                     |  58 ++--
 stdnum/cn/loc.dat                                  |   2 +-
 stdnum/do/cedula.py                                | 171 +++++-----
 stdnum/do/ncf.py                                   | 132 ++++++++
 stdnum/do/rnc.py                                   | 118 ++++++-
 stdnum/eu/at_02.py                                 |   6 +-
 stdnum/{fi/alv.py => eu/banknote.py}               |  42 +--
 stdnum/eu/nace.dat                                 |   2 +-
 stdnum/eu/vat.py                                   |  21 +-
 stdnum/imsi.dat                                    | 173 +++++-----
 stdnum/{ch => in_}/__init__.py                     |   6 +-
 stdnum/{do/rnc.py => in_/aadhaar.py}               |  71 ++--
 stdnum/in_/pan.py                                  | 120 +++++++
 stdnum/isbn.dat                                    |  34 +-
 stdnum/iso9362.py                                  |  72 +---
 stdnum/tr/tckimlik.py                              |  17 +-
 stdnum/us/ein.dat                                  |   2 +-
 stdnum/util.py                                     |  73 ++--
 tests/test_casrn.doctest                           | 105 ++++++
 tests/test_do_cedula.doctest                       |   1 +
 tests/test_do_ncf.doctest                          | 159 +++++++++
 tests/test_do_ncf.py                               |  56 ++++
 tests/test_do_rnc.doctest                          |   4 +-
 tests/test_do_rnc.py                               |  76 +++++
 ...test_ec_ci.doctest => test_eu_banknote.doctest} |  72 ++--
 tests/test_eu_vat.py                               |  49 +++
 tests/{test_ch_ssn.doctest => test_in_pan.doctest} |  31 +-
 tests/test_util.doctest                            |  19 ++
 tox.ini                                            |  13 +-
 update/README                                      |   3 +
 getcnloc.py => update/cn_loc.py                    |  13 +-
 update/do_whitelists.py                            |  93 ++++++
 getnace.py => update/eu_nace.py                    |  41 +--
 getiban.py => update/iban.py                       |  12 +-
 getimsi.py => update/imsi.py                       |  36 +-
 getisbn.py => update/isbn.py                       |  39 +--
 getisil.py => update/isil.py                       |  26 +-
 getmybp.py => update/my_bp.py                      |  29 +-
 getnumlist.py => update/numlist.py                 |  45 ++-
 update/requirements.txt                            |   2 +
 69 files changed, 2589 insertions(+), 1073 deletions(-)
 create mode 100644 docs/stdnum.bic.rst
 create mode 100644 docs/stdnum.casrn.rst
 create mode 100644 docs/stdnum.do.ncf.rst
 create mode 100644 docs/stdnum.eu.banknote.rst
 create mode 100644 docs/stdnum.in_.aadhaar.rst
 create mode 100644 docs/stdnum.in_.pan.rst
 delete mode 100644 docs/stdnum.iso9362.rst
 copy stdnum/{iso9362.py => bic.py} (94%)
 copy stdnum/{sk/dph.py => casrn.py} (50%)
 create mode 100644 stdnum/do/ncf.py
 copy stdnum/{fi/alv.py => eu/banknote.py} (60%)
 copy stdnum/{ch => in_}/__init__.py (85%)
 copy stdnum/{do/rnc.py => in_/aadhaar.py} (51%)
 create mode 100644 stdnum/in_/pan.py
 create mode 100644 tests/test_casrn.doctest
 create mode 100644 tests/test_do_ncf.doctest
 create mode 100644 tests/test_do_ncf.py
 create mode 100644 tests/test_do_rnc.py
 copy tests/{test_ec_ci.doctest => test_eu_banknote.doctest} (51%)
 create mode 100644 tests/test_eu_vat.py
 copy tests/{test_ch_ssn.doctest => test_in_pan.doctest} (62%)
 create mode 100644 update/README
 rename getcnloc.py => update/cn_loc.py (88%)
 create mode 100755 update/do_whitelists.py
 rename getnace.py => update/eu_nace.py (68%)
 rename getiban.py => update/iban.py (89%)
 rename getimsi.py => update/imsi.py (87%)
 rename getisbn.py => update/isbn.py (76%)
 rename getisil.py => update/isil.py (80%)
 rename getmybp.py => update/my_bp.py (78%)
 rename getnumlist.py => update/numlist.py (64%)
 create mode 100644 update/requirements.txt

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



More information about the Python-modules-commits mailing list