[Python-modules-commits] [python-icalendar] branch master updated (ad6a402 -> c0659de)
Christoph Egger
christoph at moszumanska.debian.org
Wed Nov 1 15:02:06 UTC 2017
This is an automated email from the git hooks/post-receive script.
christoph pushed a change to branch master
in repository python-icalendar.
from ad6a402 Fix debian/changelog typo.
adds 5c94845 Import python-icalendar_3.11.3.orig.tar.gz
adds 43a7eef record new upstream branch created by importing python-icalendar_3.11.3.orig.tar.gz and merge it
adds 69f3657 New upstream release.
adds 6d176c7 Ignore debhelper logfiles.
adds 3a66677 Bump debhelper version to 9.
adds 7b1da05 Bump standards version to 3.9.8 (no changes).
adds 7d7d8d5 debian/rules: Set PYTHONPATH for sphinx build.
adds 5e1c9b3 releasing package python-icalendar version 3.11.3-1
adds c0216eb * Fix python3 subsitution variable so correct python3 interpreter depends are provided (Closes: #867436)
adds 16f30b5 Delete obsolete python:Provides
adds 770e847 Changelog: release (experimental)
new de93400 Merge remote-tracking branch 'origin/experimental'
new 8a7192c Merge changelogs
new d607b6c Import python-icalendar_3.11.7.orig.tar.gz
new d041d24 record new upstream branch created by importing python-icalendar_3.11.7.orig.tar.gz and merge it
new b7adc61 change version to 3.11.7-1 (UNRELEASED) new upstream version
new a0bc7ec Add Rules-Requires-Root: no
new 35fe5b7 Bump debhelper compat to 10
new 5eca52c Bump standards version to 4.1.1
new 32b98a8 Use python3 version of sphinx for documentation buld
new 76a50eb Remove travis-ci webbug
new 0155c4f merge patched into master
new 888ede3 Remove travis webbug
new c0659de Upload to unstable
The 13 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.rst | 202 +++++++++-
CONTRIBUTING.rst | 2 +-
MANIFEST.in | 2 +-
PKG-INFO | 276 +++++++++++--
README.rst | 71 ++--
debian/.git-dpm | 14 +-
debian/.gitignore | 1 +
debian/changelog | 36 ++
debian/compat | 2 +-
debian/control | 12 +-
debian/patches/0001-Remove-travis-ci-webbug.patch | 25 ++
debian/patches/series | 1 +
debian/rules | 6 +-
docs/Makefile | 34 +-
docs/_themes/icalendar/layout.html | 14 -
docs/_themes/icalendar/static/icalendar.css | 428 ---------------------
docs/_themes/icalendar/theme.conf | 4 -
docs/about.rst | 4 +-
docs/api.rst | 14 +
docs/conf.py | 238 ++----------
docs/credits.rst | 25 +-
docs/index.rst | 2 +-
docs/install.rst | 23 +-
docs/usage.rst | 8 +-
setup.cfg | 17 +-
setup.py | 31 +-
src/icalendar.egg-info/PKG-INFO | 276 +++++++++++--
src/icalendar.egg-info/SOURCES.txt | 17 +-
src/icalendar.egg-info/requires.txt | 3 +-
src/icalendar/__init__.py | 3 +
src/icalendar/cal.py | 250 +++++++++---
src/icalendar/caselessdict.py | 9 +-
src/icalendar/compat.py | 1 +
src/icalendar/parser.py | 34 +-
src/icalendar/parser_tools.py | 1 +
src/icalendar/prop.py | 73 ++--
src/icalendar/tests/__init__.py | 1 +
src/icalendar/tests/america_new_york.ics | 61 +++
src/icalendar/tests/hypothesis/test_fuzzing.py | 35 ++
src/icalendar/tests/issue_53_parsing_failure.ics | 4 +-
src/icalendar/tests/pacific_fiji.ics | 52 +++
src/icalendar/tests/recurrence.ics | 2 +-
src/icalendar/tests/test_encoding.py | 3 +-
src/icalendar/tests/test_fixed_issues.py | 118 +++++-
src/icalendar/tests/test_fixed_issues.py~ | 298 --------------
src/icalendar/tests/test_icalendar.py | 70 +++-
src/icalendar/tests/test_multiple.py | 8 +-
src/icalendar/tests/test_property_params.py | 2 +-
src/icalendar/tests/test_recurrence.py | 6 +-
src/icalendar/tests/test_time.py | 1 +
src/icalendar/tests/test_timezoned.py | 237 +++++++++++-
src/icalendar/tests/test_unit_cal.py | 48 ++-
src/icalendar/tests/test_unit_cal.py~ | 421 --------------------
src/icalendar/tests/test_unit_caselessdict.py | 14 +-
src/icalendar/tests/test_unit_prop.py | 2 +-
src/icalendar/tests/test_unit_tools.py | 1 +
src/icalendar/tests/timezone_rdate.ics | 55 +++
src/icalendar/tests/timezone_same_start.ics | 27 ++
.../tests/timezone_same_start_and_offset.ics | 23 ++
src/icalendar/tests/x_location.ics | 48 +++
src/icalendar/timezone_cache.py | 3 +
src/icalendar/tools.py | 1 +
tox.ini | 8 +-
63 files changed, 2059 insertions(+), 1649 deletions(-)
create mode 100644 debian/.gitignore
create mode 100644 debian/patches/0001-Remove-travis-ci-webbug.patch
create mode 100644 debian/patches/series
delete mode 100644 docs/_themes/icalendar/layout.html
delete mode 100644 docs/_themes/icalendar/static/icalendar.css
delete mode 100644 docs/_themes/icalendar/theme.conf
create mode 100644 docs/api.rst
create mode 100644 src/icalendar/tests/america_new_york.ics
create mode 100644 src/icalendar/tests/hypothesis/test_fuzzing.py
create mode 100644 src/icalendar/tests/pacific_fiji.ics
delete mode 100644 src/icalendar/tests/test_fixed_issues.py~
delete mode 100644 src/icalendar/tests/test_unit_cal.py~
create mode 100644 src/icalendar/tests/timezone_rdate.ics
create mode 100644 src/icalendar/tests/timezone_same_start.ics
create mode 100644 src/icalendar/tests/timezone_same_start_and_offset.ics
create mode 100644 src/icalendar/tests/x_location.ics
create mode 100644 src/icalendar/timezone_cache.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-icalendar.git
More information about the Python-modules-commits
mailing list