[DRE-commits] [ruby-zip] branch master updated (0f8c3a2 -> 609bd03)

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Sat Aug 29 04:39:46 UTC 2015


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

praveen pushed a change to branch master
in repository ruby-zip.

      from  0f8c3a2   debian/control add `Testsuite: autopkgtest-pkg-perl`
      adds  a593a5d   Imported Upstream version 1.1.7
       new  d53e46f   Merge tag 'upstream/1.1.7'
       new  136e7e5   update changelog
       new  8cea431   refresh patch
       new  3100f4e   upload to unstable
       new  609bd03   bump standards

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:
 .gitignore                                      |  15 ----
 .travis.yml                                     |  17 ++--
 Changelog.md                                    |  12 +++
 Gemfile                                         |   4 -
 Guardfile                                       |   6 ++
 README.md                                       |  79 +++++++++++++++----
 debian/changelog                                |   9 +++
 debian/control                                  |   2 +-
 debian/patches/fix-random-tests-failures        |  52 ++-----------
 lib/zip.rb                                      |   6 +-
 lib/zip/central_directory.rb                    |   2 +-
 lib/zip/{compressor.rb => crypto/encryption.rb} |   7 +-
 lib/zip/crypto/null_encryption.rb               |  45 +++++++++++
 lib/zip/crypto/traditional_encryption.rb        |  99 ++++++++++++++++++++++++
 lib/zip/deflater.rb                             |   9 ++-
 lib/zip/entry.rb                                |  16 ++--
 lib/zip/entry_set.rb                            |  11 ++-
 lib/zip/extra_field.rb                          |   1 +
 lib/zip/extra_field/ntfs.rb                     |  92 ++++++++++++++++++++++
 lib/zip/file.rb                                 |  12 ++-
 lib/zip/filesystem.rb                           |   4 +
 lib/zip/inflater.rb                             |   7 +-
 lib/zip/input_stream.rb                         |  14 +++-
 lib/zip/output_stream.rb                        |  19 +++--
 lib/zip/version.rb                              |   2 +-
 rubyzip.gemspec                                 |   6 ++
 test/basic_zip_file_test.rb                     |   2 +-
 test/central_directory_entry_test.rb            |   2 +-
 test/central_directory_test.rb                  |   6 +-
 test/crypto/null_encryption_test.rb             |  53 +++++++++++++
 test/crypto/traditional_encryption_test.rb      |  80 +++++++++++++++++++
 test/data/WarnInvalidDate.zip                   | Bin 0 -> 29204 bytes
 test/data/ntfs.zip                              | Bin 0 -> 165 bytes
 test/data/zipWithEncryption.zip                 | Bin 0 -> 612 bytes
 test/deflater_test.rb                           |  23 +++---
 test/encryption_test.rb                         |  42 ++++++++++
 test/entry_set_test.rb                          |  15 +++-
 test/entry_test.rb                              |   4 +-
 test/errors_test.rb                             |   2 +-
 test/extra_field_test.rb                        |  11 ++-
 test/file_extract_directory_test.rb             |   5 +-
 test/file_extract_test.rb                       |   4 +-
 test/file_split_test.rb                         |   4 +-
 test/file_test.rb                               |  29 +++----
 test/filesystem/dir_iterator_test.rb            |   2 +-
 test/filesystem/directory_test.rb               |   2 +-
 test/filesystem/file_mutating_test.rb           |   2 +-
 test/filesystem/file_nonmutating_test.rb        |  11 ++-
 test/filesystem/file_stat_test.rb               |   2 +-
 test/inflater_test.rb                           |   2 +-
 test/input_stream_test.rb                       |   2 +-
 test/ioextras/abstract_input_stream_test.rb     |   2 +-
 test/ioextras/abstract_output_stream_test.rb    |   2 +-
 test/ioextras/fake_io_test.rb                   |   2 +-
 test/local_entry_test.rb                        |  25 +++---
 test/output_stream_test.rb                      |  21 ++++-
 test/pass_thru_compressor_test.rb               |   4 +-
 test/pass_thru_decompressor_test.rb             |   2 +-
 test/settings_test.rb                           |  25 +++++-
 test/test_helper.rb                             |   2 +-
 test/unicode_file_names_and_comments_test.rb    |  20 ++++-
 test/zip64_full_test.rb                         |   6 +-
 test/zip64_support_test.rb                      |   2 +-
 63 files changed, 773 insertions(+), 193 deletions(-)
 create mode 100644 Guardfile
 copy lib/zip/{compressor.rb => crypto/encryption.rb} (76%)
 mode change 100755 => 100644
 create mode 100644 lib/zip/crypto/null_encryption.rb
 create mode 100644 lib/zip/crypto/traditional_encryption.rb
 create mode 100644 lib/zip/extra_field/ntfs.rb
 create mode 100644 test/crypto/null_encryption_test.rb
 create mode 100644 test/crypto/traditional_encryption_test.rb
 create mode 100644 test/data/WarnInvalidDate.zip
 create mode 100644 test/data/ntfs.zip
 create mode 100644 test/data/zipWithEncryption.zip
 create mode 100644 test/encryption_test.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-zip.git



More information about the Pkg-ruby-extras-commits mailing list