[Python-modules-commits] [python-aniso8601] branch master updated (fa39c16 -> 1681c85)

Jonathan Carter highvoltage-guest at moszumanska.debian.org
Sat Jan 2 15:41:27 UTC 2016


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

highvoltage-guest pushed a change to branch master
in repository python-aniso8601.

      from  fa39c16   git-dpm config
       new  1681c85   Beginning update to latest upstream version

The 1 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:
 .gitignore                                         |   9 -
 COPYING                                            | 675 ---------------------
 LICENSE                                            |  27 +
 MANIFEST.in                                        |   5 +-
 PKG-INFO                                           | 331 ++++++++++
 README.rst                                         |  99 ++-
 aniso8601.egg-info/PKG-INFO                        | 331 ++++++++++
 aniso8601.egg-info/SOURCES.txt                     |  24 +
 aniso8601.egg-info/dependency_links.txt            |   1 +
 aniso8601.egg-info/requires.txt                    |   1 +
 aniso8601.egg-info/top_level.txt                   |   1 +
 aniso8601/__init__.py                              |  13 +
 aniso8601/compat.py                                |  16 +
 {python2/aniso8601 => aniso8601}/date.py           | 172 ++++--
 {python3/aniso8601 => aniso8601}/duration.py       |  58 +-
 {python2/aniso8601 => aniso8601}/interval.py       |  60 +-
 aniso8601/resolution.py                            |  12 +
 .../aniso8601 => aniso8601}/tests/test_date.py     | 125 ++--
 .../aniso8601 => aniso8601}/tests/test_duration.py | 134 ++--
 .../aniso8601 => aniso8601}/tests/test_init.py     |  19 +-
 aniso8601/tests/test_interval.py                   | 217 +++++++
 .../aniso8601 => aniso8601}/tests/test_time.py     | 229 ++++++-
 .../aniso8601 => aniso8601}/tests/test_timezone.py |  58 +-
 aniso8601/time.py                                  | 231 +++++++
 {python2/aniso8601 => aniso8601}/timezone.py       |  49 +-
 debian/changelog                                   |   8 +-
 debian/control                                     |   2 +
 debian/files                                       |   2 +
 docs/Makefile                                      | 153 -----
 docs/conf.py                                       | 242 --------
 docs/index.rst                                     |   1 -
 docs/make.bat                                      | 190 ------
 python-aniso8601.spec                              |  88 ---
 python2/aniso8601/__init__.py                      |  22 -
 python2/aniso8601/duration.py                      | 164 -----
 python2/aniso8601/tests/test_duration.py           | 221 -------
 python2/aniso8601/tests/test_init.py               |  57 --
 python2/aniso8601/tests/test_interval.py           |  91 ---
 python2/aniso8601/time.py                          | 233 -------
 python3/aniso8601/__init__.py                      |  22 -
 python3/aniso8601/date.py                          | 205 -------
 python3/aniso8601/interval.py                      | 140 -----
 python3/aniso8601/tests/test_date.py               | 217 -------
 python3/aniso8601/tests/test_interval.py           |  91 ---
 python3/aniso8601/tests/test_time.py               | 325 ----------
 python3/aniso8601/tests/test_timezone.py           | 112 ----
 python3/aniso8601/time.py                          | 233 -------
 python3/aniso8601/timezone.py                      |  91 ---
 setup.cfg                                          |   5 +
 setup.py                                           |  16 +-
 50 files changed, 1939 insertions(+), 3889 deletions(-)
 delete mode 100644 .gitignore
 delete mode 100644 COPYING
 create mode 100644 LICENSE
 create mode 100644 PKG-INFO
 create mode 100644 aniso8601.egg-info/PKG-INFO
 create mode 100644 aniso8601.egg-info/SOURCES.txt
 create mode 100644 aniso8601.egg-info/dependency_links.txt
 create mode 100644 aniso8601.egg-info/requires.txt
 create mode 100644 aniso8601.egg-info/top_level.txt
 create mode 100644 aniso8601/__init__.py
 create mode 100644 aniso8601/compat.py
 rename {python2/aniso8601 => aniso8601}/date.py (62%)
 rename {python3/aniso8601 => aniso8601}/duration.py (67%)
 rename {python2/aniso8601 => aniso8601}/interval.py (70%)
 create mode 100644 aniso8601/resolution.py
 rename {python2/aniso8601 => aniso8601}/tests/test_date.py (66%)
 rename {python3/aniso8601 => aniso8601}/tests/test_duration.py (57%)
 rename {python3/aniso8601 => aniso8601}/tests/test_init.py (74%)
 create mode 100644 aniso8601/tests/test_interval.py
 rename {python2/aniso8601 => aniso8601}/tests/test_time.py (58%)
 rename {python2/aniso8601 => aniso8601}/tests/test_timezone.py (70%)
 create mode 100644 aniso8601/time.py
 rename {python2/aniso8601 => aniso8601}/timezone.py (57%)
 create mode 100644 debian/files
 delete mode 100644 docs/Makefile
 delete mode 100644 docs/conf.py
 delete mode 120000 docs/index.rst
 delete mode 100644 docs/make.bat
 delete mode 100644 python-aniso8601.spec
 delete mode 100644 python2/aniso8601/__init__.py
 delete mode 100644 python2/aniso8601/duration.py
 delete mode 100644 python2/aniso8601/tests/test_duration.py
 delete mode 100644 python2/aniso8601/tests/test_init.py
 delete mode 100644 python2/aniso8601/tests/test_interval.py
 delete mode 100644 python2/aniso8601/time.py
 delete mode 100644 python3/aniso8601/__init__.py
 delete mode 100644 python3/aniso8601/date.py
 delete mode 100644 python3/aniso8601/interval.py
 delete mode 100644 python3/aniso8601/tests/test_date.py
 delete mode 100644 python3/aniso8601/tests/test_interval.py
 delete mode 100644 python3/aniso8601/tests/test_time.py
 delete mode 100644 python3/aniso8601/tests/test_timezone.py
 delete mode 100644 python3/aniso8601/time.py
 delete mode 100644 python3/aniso8601/timezone.py
 create mode 100644 setup.cfg

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



More information about the Python-modules-commits mailing list