[Python-modules-commits] [fabulous] branch master updated (c4a7c74 -> 8e4f200)
Ondřej Nový
onovy at moszumanska.debian.org
Sun Aug 14 10:40:06 UTC 2016
This is an automated email from the git hooks/post-receive script.
onovy pushed a change to branch master
in repository fabulous.
from c4a7c74 Bump watch file version to 4
new 643b47a d/watch: Moved to github, pypi doesn't have docs
new 029edf1 record new upstream branch created by importing fabulous_0.3.0+dfsg1.orig.tar.gz
new 36bec92 Import fabulous_0.3.0+dfsg1.orig.tar.gz
new 617afcc Look for the default xterm256.so instead of building one's own
new a631f40 Use local objects.inv for intersphinx mapping
new e6d041d merge patched into master
new e255f67 New upstream release
new 2d354b1 Added python-sphinxcontrib.programoutput to build depends
new f5967e0 d/watch: Added dversion mangle
new 4d61828 Fixed d/copyright for new release and install AUTHORS file
new 09f27d5 Added fonts-noto-hinted to recommends (Closes: #805473)
new c389b69 Install examples into docs examples directory
new f8ce35c d/changelog: Cleanup
new 53fecbd d/copyright: Added myself for Debian part
new 8e4f200 Upstream relicensed to Apache-2
The 15 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:
.hgignore => .gitignore | 5 -
.hgtags | 7 -
.travis.yml | 35 +
AUTHORS | 13 +
CONTRIBUTORS | 11 +
COPYING | 20 -
LICENSE.txt | 202 ++
MANIFEST.in | 10 +
PKG-INFO | 169 --
README | 148 --
README.rst | 18 +
debian/.git-dpm | 14 +-
debian/changelog | 20 +-
debian/control | 4 +-
debian/copyright | 19 +-
debian/docs | 1 +
debian/examples | 2 +
...ocal-objects.inv-for-intersphinx-mapping.patch} | 4 +-
debian/patches/build_xterm256_ext | 6 +-
debian/patches/fix_except | 47 -
debian/patches/remove_ez_setup | 26 -
debian/patches/series | 4 +-
debian/rules | 3 +
debian/watch | 5 +-
docs/conf.py | 6 +-
docs/images/fabulous-demo.png | Bin 0 -> 94726 bytes
docs/index.rst | 269 ++-
ez_setup.py | 7 +-
fabulous.egg-info/PKG-INFO | 169 --
fabulous.egg-info/SOURCES.txt | 33 -
fabulous.egg-info/dependency_links.txt | 1 -
fabulous.egg-info/not-zip-safe | 1 -
fabulous.egg-info/requires.txt | 1 -
fabulous.egg-info/top_level.txt | 1 -
fabulous/__init__.py | 18 +-
fabulous/_xterm256.c | 16 +
fabulous/balls.png | Bin 0 -> 54588 bytes
fabulous/casts.py | 42 +
fabulous/color.py | 766 +++++++-
fabulous/compatibility.py | 30 +
fabulous/debug.py | 26 +-
fabulous/demo.py | 194 +-
fabulous/experimental/__init__.py | 13 +
fabulous/experimental/canvas.py | 13 +
fabulous/gotham.py | 54 +-
fabulous/grapefruit.py | 2053 ++++++++++++++++++++
fabulous/image.py | 52 +-
fabulous/logs.py | 34 +-
fabulous/prompt.py | 197 ++
fabulous/queries.py | 22 +
fabulous/rlcomplete.py | 131 ++
fabulous/rotating_cube.py | 35 +-
fabulous/term.py | 933 +++++++++
fabulous/test_transientlogging.py | 29 +-
fabulous/text.py | 205 +-
fabulous/utils.py | 56 +-
fabulous/widget.py | 223 +++
fabulous/xterm256.py | 37 +-
python-fabulous.spec | 65 +
setup.cfg | 5 -
setup.py | 54 +-
tests/casts_test.py | 36 +
tests/doctests.txt | 10 +
tests/manual/clear.py | 19 +
tests/manual/colors.py | 52 +
tests/manual/convulsions.py | 31 +
tests/manual/filechooser.py | 20 +
tests/manual/info.py | 23 +
tests/manual/longtimedprogressbar.py | 32 +
tests/manual/move.py | 32 +
tests/manual/progressbar.py | 36 +
tests/manual/spinner.py | 23 +
tests/manual/timedprogressbar.py | 25 +
tests/manual/title.py | 21 +
tests/rlcomplete_test.py | 40 +
tests/term_test.py | 66 +
update-gh-pages.sh | 35 +
77 files changed, 5996 insertions(+), 1089 deletions(-)
rename .hgignore => .gitignore (73%)
delete mode 100644 .hgtags
create mode 100644 .travis.yml
create mode 100644 AUTHORS
create mode 100644 CONTRIBUTORS
delete mode 100644 COPYING
create mode 100644 LICENSE.txt
create mode 100644 MANIFEST.in
delete mode 100644 PKG-INFO
delete mode 100644 README
create mode 100644 README.rst
create mode 100644 debian/docs
create mode 100644 debian/examples
rename debian/patches/{0004-Use-local-objects.inv-for-intersphinx-mapping.patch => 0002-Use-local-objects.inv-for-intersphinx-mapping.patch} (86%)
delete mode 100644 debian/patches/fix_except
delete mode 100644 debian/patches/remove_ez_setup
create mode 100644 docs/images/fabulous-demo.png
delete mode 100644 fabulous.egg-info/PKG-INFO
delete mode 100644 fabulous.egg-info/SOURCES.txt
delete mode 100644 fabulous.egg-info/dependency_links.txt
delete mode 100644 fabulous.egg-info/not-zip-safe
delete mode 100644 fabulous.egg-info/requires.txt
delete mode 100644 fabulous.egg-info/top_level.txt
create mode 100644 fabulous/balls.png
create mode 100644 fabulous/casts.py
create mode 100644 fabulous/compatibility.py
create mode 100644 fabulous/grapefruit.py
create mode 100644 fabulous/prompt.py
create mode 100644 fabulous/queries.py
create mode 100644 fabulous/rlcomplete.py
create mode 100644 fabulous/term.py
create mode 100644 fabulous/widget.py
create mode 100644 python-fabulous.spec
delete mode 100644 setup.cfg
create mode 100755 tests/casts_test.py
create mode 100644 tests/doctests.txt
create mode 100644 tests/manual/clear.py
create mode 100644 tests/manual/colors.py
create mode 100755 tests/manual/convulsions.py
create mode 100755 tests/manual/filechooser.py
create mode 100644 tests/manual/info.py
create mode 100755 tests/manual/longtimedprogressbar.py
create mode 100644 tests/manual/move.py
create mode 100755 tests/manual/progressbar.py
create mode 100644 tests/manual/spinner.py
create mode 100755 tests/manual/timedprogressbar.py
create mode 100644 tests/manual/title.py
create mode 100755 tests/rlcomplete_test.py
create mode 100755 tests/term_test.py
create mode 100755 update-gh-pages.sh
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/fabulous.git
More information about the Python-modules-commits
mailing list