[Python-modules-commits] [python-stdnum] branch master updated (8f2b770 -> b599faf)

Arthur de Jong adejong at moszumanska.debian.org
Tue Apr 11 21:04:10 UTC 2017


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

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

      from  8f2b770   Release 1.5-1
       new  79be675   Import python-stdnum_1.6.orig.tar.gz
       new  389b09e   New upstream release (1.6)
       new  09f9993   Update debian/copyright
       new  9e94e5b   Switch URLs to HTTPS
       new  b599faf   Release 1.6-1

The 5 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                                 |  144 +
 MANIFEST.in                               |    3 +-
 NEWS                                      |   21 +-
 PKG-INFO                                  |   11 +-
 README                                    |   10 +-
 debian/.git-dpm                           |   14 +-
 debian/changelog                          |   20 +
 debian/control                            |    2 +-
 debian/copyright                          |    7 +-
 debian/rules                              |    2 +-
 debian/watch                              |    2 +-
 docs/index.rst                            |    6 +
 docs/stdnum.ar.cbu.rst                    |    5 +
 docs/stdnum.eu.eic.rst                    |    5 +
 docs/stdnum.eu.nace.rst                   |    5 +
 docs/stdnum.lei.rst                       |    5 +
 docs/stdnum.mc.tva.rst                    |    5 +
 docs/stdnum.rs.pib.rst                    |    5 +
 getnace.py                                |   74 +
 online_check/README                       |   18 +
 online_check/check.js                     |   96 +
 online_check/jquery-1.7.1.js              | 9266 +++++++++++++++++++++++++++++
 online_check/jquery-1.7.1.min.js          |    4 +
 online_check/stdnum.wsgi                  |   87 +
 online_check/template.html                |   23 +
 python_stdnum.egg-info/PKG-INFO           |   11 +-
 python_stdnum.egg-info/SOURCES.txt        |   29 +-
 setup.cfg                                 |    1 -
 setup.py                                  |    1 +
 stdnum/__init__.py                        |   12 +-
 stdnum/{do/rnc.py => ar/cbu.py}           |   51 +-
 stdnum/au/tfn.py                          |    2 -
 stdnum/cn/loc.dat                         |    2 +-
 stdnum/cusip.py                           |    4 +-
 stdnum/ean.py                             |    4 +-
 stdnum/ec/ci.py                           |    4 +-
 stdnum/es/nie.py                          |    4 +-
 stdnum/es/referenciacatastral.py          |   17 +-
 stdnum/{gb/sedol.py => eu/eic.py}         |   70 +-
 stdnum/eu/nace.dat                        |  999 ++++
 stdnum/eu/nace.py                         |  109 +
 stdnum/fi/associationid.py                |    4 +-
 stdnum/fr/tva.py                          |    8 +-
 stdnum/iban.dat                           |   11 +-
 stdnum/iban.py                            |   25 +-
 stdnum/imsi.dat                           |  499 +-
 stdnum/isbn.dat                           |   22 +-
 stdnum/isin.py                            |    4 +-
 stdnum/iso7064/mod_97_10.py               |   17 +-
 stdnum/{de/wkn.py => lei.py}              |   58 +-
 stdnum/{dk => mc}/__init__.py             |    8 +-
 stdnum/{se/vat.py => mc/tva.py}           |   39 +-
 stdnum/meid.py                            |   14 +-
 stdnum/{dk => rs}/__init__.py             |    8 +-
 stdnum/{ee/kmkr.py => rs/pib.py}          |   32 +-
 stdnum/tr/tckimlik.py                     |    4 +-
 stdnum/us/ein.dat                         |    4 +-
 test_tckimlik.py                          |   43 -
 test_vies.py                              |   45 -
 tests/test_ar_cbu.doctest                 |   79 +
 tests/test_es_referenciacatastral.doctest |   24 +-
 tests/test_eu_eic.doctest                 |  118 +
 tests/test_eu_vat.doctest                 |   26 +-
 tests/test_lei.doctest                    |  134 +
 tests/test_mx_rfc.doctest                 |    2 +-
 tests/test_robustness.doctest             |    6 +-
 tests/test_rs_pib.doctest                 |  134 +
 tox.ini                                   |    9 +
 68 files changed, 12014 insertions(+), 523 deletions(-)
 create mode 100644 docs/stdnum.ar.cbu.rst
 create mode 100644 docs/stdnum.eu.eic.rst
 create mode 100644 docs/stdnum.eu.nace.rst
 create mode 100644 docs/stdnum.lei.rst
 create mode 100644 docs/stdnum.mc.tva.rst
 create mode 100644 docs/stdnum.rs.pib.rst
 create mode 100755 getnace.py
 create mode 100644 online_check/README
 create mode 100644 online_check/check.js
 create mode 100644 online_check/jquery-1.7.1.js
 create mode 100644 online_check/jquery-1.7.1.min.js
 create mode 100755 online_check/stdnum.wsgi
 create mode 100644 online_check/template.html
 copy stdnum/{do/rnc.py => ar/cbu.py} (56%)
 copy stdnum/{gb/sedol.py => eu/eic.py} (54%)
 create mode 100644 stdnum/eu/nace.dat
 create mode 100644 stdnum/eu/nace.py
 copy stdnum/{de/wkn.py => lei.py} (56%)
 copy stdnum/{dk => mc}/__init__.py (83%)
 copy stdnum/{se/vat.py => mc/tva.py} (63%)
 copy stdnum/{dk => rs}/__init__.py (83%)
 copy stdnum/{ee/kmkr.py => rs/pib.py} (71%)
 delete mode 100755 test_tckimlik.py
 delete mode 100755 test_vies.py
 create mode 100644 tests/test_ar_cbu.doctest
 create mode 100644 tests/test_eu_eic.doctest
 create mode 100644 tests/test_lei.doctest
 create mode 100644 tests/test_rs_pib.doctest
 create mode 100644 tox.ini

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