[Python-modules-commits] [python-rarfile] branch master updated (4868182 -> d293673)
Hugo Lefeuvre
hle at moszumanska.debian.org
Fri Aug 4 16:30:25 UTC 2017
This is an automated email from the git hooks/post-receive script.
hle pushed a change to branch master
in repository python-rarfile.
from 4868182 Minor copyright update, update synopsis in d/control.
new 92cc366 New upstream version 3.0
new 5c774a0 Updated version 3.0 from 'upstream/3.0'
new d293673 New upstream release.
The 3 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:
Makefile | 22 +-
PKG-INFO | 15 +-
README.rst | 13 +-
debian/changelog | 7 +
doc/api.rst | 5 +-
doc/conf.py | 8 +-
doc/index.rst | 18 +-
doc/news.rst | 42 +
dumprar.py | 355 +++-
PKG-INFO => rarfile.egg-info/PKG-INFO | 15 +-
rarfile.egg-info/SOURCES.txt | 95 ++
rarfile.egg-info/dependency_links.txt | 1 +
rarfile.egg-info/top_level.txt | 1 +
rarfile.py | 2465 +++++++++++++++++++--------
setup.cfg | 5 +
setup.py | 12 +-
test/Makefile | 9 -
test/files/ctime0.rar.exp | 8 +-
test/files/ctime1.rar.exp | 10 +-
test/files/ctime2.rar.exp | 10 +-
test/files/ctime3.rar.exp | 10 +-
test/files/ctime4.rar.exp | 10 +-
test/files/rar15-comment-lock.rar.exp | 10 +-
test/files/rar15-comment.rar.exp | 10 +-
test/files/rar202-comment-nopsw.rar.exp | 10 +-
test/files/rar202-comment-psw.rar.exp | 10 +-
test/files/rar3-comment-hpsw.rar.exp | 14 +-
test/files/rar3-comment-plain.rar.exp | 14 +-
test/files/rar3-comment-psw.rar.exp | 14 +-
test/files/rar3-old.rar | Bin 0 -> 102400 bytes
test/files/rar3-old.rar.exp | 13 +
test/files/rar3-vols.part1.rar | Bin 0 -> 102400 bytes
test/files/rar3-vols.part1.rar.exp | 13 +
test/files/rar3-vols.part2.rar | Bin 0 -> 102400 bytes
test/files/rar3-vols.part2.rar.exp | 2 +
test/files/rar3-vols.part3.rar | Bin 0 -> 2572 bytes
test/files/rar3-vols.part3.rar.exp | 2 +
test/files/{seektest.rar => rar5-blake.rar} | Bin 2253 -> 2349 bytes
test/files/rar5-blake.rar.exp | 22 +
test/files/{seektest.rar => rar5-crc.rar} | Bin 2253 -> 2285 bytes
test/files/rar5-crc.rar.exp | 22 +
test/files/rar5-dups.rar | Bin 0 -> 594 bytes
test/files/rar5-dups.rar.exp | 90 +
test/files/rar5-hlink.rar | Bin 0 -> 230 bytes
test/files/rar5-hlink.rar.exp | 30 +
test/files/rar5-hpsw.rar | Bin 0 -> 2590 bytes
test/files/rar5-hpsw.rar.exp | 24 +
test/files/rar5-psw-blake.rar | Bin 0 -> 2472 bytes
test/files/rar5-psw-blake.rar.exp | 24 +
test/files/rar5-psw.rar | Bin 0 -> 2403 bytes
test/files/rar5-psw.rar.exp | 24 +
test/files/rar5-quick-open.rar | Bin 0 -> 326 bytes
test/files/rar5-quick-open.rar.exp | 19 +
test/files/rar5-solid-qo.rar | Bin 0 -> 508 bytes
test/files/rar5-solid-qo.rar.exp | 37 +
test/files/rar5-solid.rar | Bin 0 -> 169 bytes
test/files/rar5-solid.rar.exp | 15 +
test/files/rar5-times.rar | Bin 0 -> 132 bytes
test/files/rar5-times.rar.exp | 11 +
test/files/rar5-times2.rar | Bin 0 -> 73 bytes
test/files/rar5-times2.rar.exp | 10 +
test/files/rar5-vols.part1.rar | Bin 0 -> 102400 bytes
test/files/rar5-vols.part1.rar.exp | 19 +
test/files/rar5-vols.part2.rar | Bin 0 -> 102400 bytes
test/files/rar5-vols.part2.rar.exp | 2 +
test/files/rar5-vols.part3.rar | Bin 0 -> 11384 bytes
test/files/rar5-vols.part3.rar.exp | 2 +
test/files/seektest.rar.exp | 14 +-
test/files/unicode.rar.exp | 10 +-
test/files/unicode2.rar | Bin 0 -> 152 bytes
test/files/unicode2.rar.exp | 11 +
test/run_dump.sh | 43 +
test/run_dump_all.sh | 18 +
test/test1.sh | 32 -
test/test2.sh | 19 -
test/test_api.py | 233 +++
test/test_crypto.py | 44 +
test/test_format.py | 223 +++
test/test_hashing.py | 78 +
test/test_korrupt.py | 50 +
test/test_reading.py | 150 ++
test/test_seek.py | 93 +
test/testcorrupt.py | 85 -
test/testio.py | 35 -
test/testseek.py | 103 --
85 files changed, 3584 insertions(+), 1256 deletions(-)
copy PKG-INFO => rarfile.egg-info/PKG-INFO (88%)
create mode 100644 rarfile.egg-info/SOURCES.txt
create mode 100644 rarfile.egg-info/dependency_links.txt
create mode 100644 rarfile.egg-info/top_level.txt
create mode 100644 setup.cfg
delete mode 100644 test/Makefile
create mode 100644 test/files/rar3-old.rar
create mode 100644 test/files/rar3-old.rar.exp
create mode 100644 test/files/rar3-vols.part1.rar
create mode 100644 test/files/rar3-vols.part1.rar.exp
create mode 100644 test/files/rar3-vols.part2.rar
create mode 100644 test/files/rar3-vols.part2.rar.exp
create mode 100644 test/files/rar3-vols.part3.rar
create mode 100644 test/files/rar3-vols.part3.rar.exp
copy test/files/{seektest.rar => rar5-blake.rar} (87%)
create mode 100644 test/files/rar5-blake.rar.exp
copy test/files/{seektest.rar => rar5-crc.rar} (89%)
create mode 100644 test/files/rar5-crc.rar.exp
create mode 100644 test/files/rar5-dups.rar
create mode 100644 test/files/rar5-dups.rar.exp
create mode 100644 test/files/rar5-hlink.rar
create mode 100644 test/files/rar5-hlink.rar.exp
create mode 100644 test/files/rar5-hpsw.rar
create mode 100644 test/files/rar5-hpsw.rar.exp
create mode 100644 test/files/rar5-psw-blake.rar
create mode 100644 test/files/rar5-psw-blake.rar.exp
create mode 100644 test/files/rar5-psw.rar
create mode 100644 test/files/rar5-psw.rar.exp
create mode 100644 test/files/rar5-quick-open.rar
create mode 100644 test/files/rar5-quick-open.rar.exp
create mode 100644 test/files/rar5-solid-qo.rar
create mode 100644 test/files/rar5-solid-qo.rar.exp
create mode 100644 test/files/rar5-solid.rar
create mode 100644 test/files/rar5-solid.rar.exp
create mode 100644 test/files/rar5-times.rar
create mode 100644 test/files/rar5-times.rar.exp
create mode 100644 test/files/rar5-times2.rar
create mode 100644 test/files/rar5-times2.rar.exp
create mode 100644 test/files/rar5-vols.part1.rar
create mode 100644 test/files/rar5-vols.part1.rar.exp
create mode 100644 test/files/rar5-vols.part2.rar
create mode 100644 test/files/rar5-vols.part2.rar.exp
create mode 100644 test/files/rar5-vols.part3.rar
create mode 100644 test/files/rar5-vols.part3.rar.exp
create mode 100644 test/files/unicode2.rar
create mode 100644 test/files/unicode2.rar.exp
create mode 100755 test/run_dump.sh
create mode 100755 test/run_dump_all.sh
delete mode 100755 test/test1.sh
delete mode 100755 test/test2.sh
create mode 100644 test/test_api.py
create mode 100644 test/test_crypto.py
create mode 100644 test/test_format.py
create mode 100644 test/test_hashing.py
create mode 100644 test/test_korrupt.py
create mode 100644 test/test_reading.py
create mode 100644 test/test_seek.py
delete mode 100755 test/testcorrupt.py
delete mode 100755 test/testio.py
delete mode 100755 test/testseek.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-rarfile.git
More information about the Python-modules-commits
mailing list