[DRE-commits] [ruby-zip] branch master updated (e4a0a0a -> ecc607c)

Sruthi Chandran srud-guest at moszumanska.debian.org
Fri Aug 26 14:57:09 UTC 2016


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

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

      from  e4a0a0a   Drop MIA Uploaders
      adds  5c04a75   Imported Upstream version 1.2.0
       new  20e46ce   Merge tag 'upstream/1.2.0'
       new  ee97fc7   New upstream release
       new  ecc607c   Refresh patch

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:
 .gitignore                                   |   2 +
 .rubocop.yml                                 |   2 +
 .rubocop_rubyzip.yml                         | 137 ++++++++
 .travis.yml                                  |   1 +
 Changelog.md                                 |   2 +-
 README.md                                    | 101 ++++--
 Rakefile                                     |   7 +-
 debian/changelog                             |   7 +
 debian/patches/fix-random-tests-failures     |  12 +-
 lib/zip.rb                                   |   8 +-
 lib/zip/central_directory.rb                 |  14 +-
 lib/zip/compressor.rb                        |   0
 lib/zip/constants.rb                         |   4 +-
 lib/zip/crypto/null_encryption.rb            |   6 +-
 lib/zip/crypto/traditional_encryption.rb     |  10 +-
 lib/zip/decompressor.rb                      |   4 +-
 lib/zip/deflater.rb                          |  14 +-
 lib/zip/dos_time.rb                          |   9 +-
 lib/zip/entry.rb                             | 148 ++++-----
 lib/zip/entry_set.rb                         |  22 +-
 lib/zip/errors.rb                            |   1 +
 lib/zip/extra_field.rb                       |  12 +-
 lib/zip/extra_field/generic.rb               |  14 +-
 lib/zip/extra_field/ntfs.rb                  |  30 +-
 lib/zip/extra_field/old_unix.rb              |  19 +-
 lib/zip/extra_field/universal_time.rb        |  28 +-
 lib/zip/extra_field/unix.rb                  |  17 +-
 lib/zip/extra_field/zip64.rb                 |  23 +-
 lib/zip/extra_field/zip64_placeholder.rb     |   2 +-
 lib/zip/file.rb                              |  94 +++---
 lib/zip/filesystem.rb                        | 267 ++++++++--------
 lib/zip/inflater.rb                          |   6 +-
 lib/zip/input_stream.rb                      |  20 +-
 lib/zip/ioextras.rb                          |   4 +-
 lib/zip/ioextras/abstract_input_stream.rb    |  14 +-
 lib/zip/ioextras/abstract_output_stream.rb   |   2 -
 lib/zip/null_compressor.rb                   |   4 +-
 lib/zip/null_decompressor.rb                 |   6 +-
 lib/zip/null_input_stream.rb                 |   0
 lib/zip/output_stream.rb                     |  17 +-
 lib/zip/pass_thru_compressor.rb              |   8 +-
 lib/zip/pass_thru_decompressor.rb            |   5 +-
 lib/zip/streamable_directory.rb              |   4 +-
 lib/zip/streamable_stream.rb                 |   4 +-
 lib/zip/version.rb                           |   2 +-
 rubyzip.gemspec                              |  12 +-
 samples/example.rb                           |  68 ++--
 samples/example_filesystem.rb                |  34 +-
 samples/example_recursive.rb                 |  57 ++--
 samples/{gtkRubyzip.rb => gtk_ruby_zip.rb}   |  48 ++-
 samples/qtzip.rb                             |  43 +--
 samples/write_simple.rb                      |  25 +-
 samples/zipfind.rb                           |  56 ++--
 test/basic_zip_file_test.rb                  |  26 +-
 test/case_sensitivity_test.rb                |  69 ++++
 test/central_directory_entry_test.rb         |  66 ++--
 test/central_directory_test.rb               |  96 +++---
 test/crypto/null_encryption_test.rb          |   4 +-
 test/crypto/traditional_encryption_test.rb   |  10 +-
 test/data/notzippedruby.rb                   |   2 +-
 test/data/oddExtraField.zip                  | Bin 0 -> 4034 bytes
 test/data/test.xls                           | Bin 0 -> 188416 bytes
 test/deflater_test.rb                        |  22 +-
 test/encryption_test.rb                      |   4 +-
 test/entry_set_test.rb                       |  62 ++--
 test/entry_test.rb                           | 154 +++++----
 test/errors_test.rb                          |   2 -
 test/extra_field_test.rb                     |  40 ++-
 test/file_extract_directory_test.rb          |  26 +-
 test/file_extract_test.rb                    |  73 ++---
 test/file_permissions_test.rb                |  69 ++++
 test/file_split_test.rb                      |  51 ++-
 test/file_test.rb                            | 344 ++++++++++----------
 test/filesystem/dir_iterator_test.rb         |  30 +-
 test/filesystem/directory_test.rb            | 170 +++++-----
 test/filesystem/file_mutating_test.rb        | 114 +++----
 test/filesystem/file_nonmutating_test.rb     | 450 +++++++++++++--------------
 test/filesystem/file_stat_test.rb            |  36 +--
 test/gentestfiles.rb                         |  98 +++---
 test/inflater_test.rb                        |   2 +-
 test/input_stream_test.rb                    |  72 +++--
 test/ioextras/abstract_input_stream_test.rb  |  43 ++-
 test/ioextras/abstract_output_stream_test.rb |  64 ++--
 test/local_entry_test.rb                     |  72 +++--
 test/output_stream_test.rb                   |  41 ++-
 test/pass_thru_compressor_test.rb            |  11 +-
 test/pass_thru_decompressor_test.rb          |   1 -
 test/samples/example_recursive_test.rb       |  37 +++
 test/settings_test.rb                        |  33 +-
 test/test_helper.rb                          |  81 +++--
 test/unicode_file_names_and_comments_test.rb |  12 +-
 test/zip64_full_test.rb                      |  20 +-
 test/zip64_support_test.rb                   |   1 -
 93 files changed, 2104 insertions(+), 1860 deletions(-)
 create mode 100644 .rubocop.yml
 create mode 100644 .rubocop_rubyzip.yml
 mode change 100755 => 100644 lib/zip/central_directory.rb
 mode change 100755 => 100644 lib/zip/compressor.rb
 mode change 100755 => 100644 lib/zip/decompressor.rb
 mode change 100755 => 100644 lib/zip/deflater.rb
 mode change 100755 => 100644 lib/zip/dos_time.rb
 mode change 100755 => 100644 lib/zip/entry.rb
 mode change 100755 => 100644 lib/zip/entry_set.rb
 mode change 100755 => 100644 lib/zip/extra_field.rb
 mode change 100755 => 100644 lib/zip/file.rb
 mode change 100755 => 100644 lib/zip/filesystem.rb
 mode change 100755 => 100644 lib/zip/inflater.rb
 mode change 100755 => 100644 lib/zip/input_stream.rb
 mode change 100755 => 100644 lib/zip/ioextras.rb
 mode change 100755 => 100644 lib/zip/null_compressor.rb
 mode change 100755 => 100644 lib/zip/null_decompressor.rb
 mode change 100755 => 100644 lib/zip/null_input_stream.rb
 mode change 100755 => 100644 lib/zip/output_stream.rb
 mode change 100755 => 100644 lib/zip/pass_thru_compressor.rb
 mode change 100755 => 100644 lib/zip/pass_thru_decompressor.rb
 mode change 100755 => 100644 lib/zip/streamable_directory.rb
 mode change 100755 => 100644 lib/zip/streamable_stream.rb
 rename samples/{gtkRubyzip.rb => gtk_ruby_zip.rb} (68%)
 create mode 100644 test/case_sensitivity_test.rb
 create mode 100644 test/data/oddExtraField.zip
 create mode 100644 test/data/test.xls
 create mode 100644 test/file_permissions_test.rb
 create mode 100644 test/samples/example_recursive_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