summaryrefslogtreecommitdiff
path: root/archivers/ruby-zip/PLIST
AgeCommit message (Collapse)AuthorFilesLines
2020-03-15archivers/ruby-zip: update to 2.3.0taca1-75/+2
Update ruby-zip to 2.3.0. pkgsrc change: Add "USE_LANGUAGES= # none". 2.0.0 (2019-09-25) Security * Default the validate_entry_sizes option to true, so that callers can trust an entry's reported size when using extract #403 o This option defaulted to false in 1.3.0 for backward compatibility, but it now defaults to true. If you are using an older version of ruby and can't yet upgrade to 2.x, you can still use 1.3.0 and set the option to true. Tooling / Documentation * Remove test files from the gem to avoid problems with antivirus detections on the test files #405 / #384 * Drop support for unsupported ruby versions #406 2.1.0 (2020-01-25) * Fix (at least partially) the restore_times and restore_permissions options to Zip::File.new #413 o Previously, neither option did anything, regardless of what it was set to. We have therefore defaulted them to false to preserve the current behavior, for the time being. If you have explicitly set either to true, it will now have an effect. o Fix handling of UniversalTime (mtime, atime, ctime) fields. #421 o Previously, Zip::File did not pass the options to Zip::Entry in some cases. #423 o Note that restore_times in this release does nothing on Windows and only restores mtime, not atime or ctime. * Allow Zip::File.open to take an options hash like Zip::File.new #418 * Always print warnings with warn, instead of a mix of puts and warn #416 * Create temporary files in the system temporary directory instead of the directory of the zip file #411 * Drop unused tmpdir requirement #411 Tooling * Move CI to xenial and include jruby on JDK11 #419 2.2.0 (2020-02-01) * Add support for decompression plugin gems #427 2.3.0 (2020-03-14) * Fix frozen string literal error #431 * Set OutputStream.write_buffer's buffer to binmode #439 * Upgrade rubocop and fix various linting complaints #437 #440 Tooling: * Add a bin/console script for development #420 * Update rake requirement (development dependency only) to fix a security alert.
2019-06-15archivers/ruby-zip: update to 1.2.3taca1-1/+2
Update ruby-zip to 1.2.3, here is release note. 1.2.3 (2019-05-23) * Allow tilde in zip entry names #391 (fixes regression in 1.2.2 from #376) * Support frozen string literals in more files #390 * Require pathname explicitly #388 (fixes regression in 1.2.2 from #376) Tooling / Documentation: * CI updates #392, #394 - Bump supported ruby versions and add 2.6 - JRuby failures are no longer ignored (reverts #375 / part of #371) * Add changelog entry that was missing for last release #387 * Comment cleanup #385 Since the GitHub release information for 1.2.2 is missing, I will also include it here: 1.2.2 (2018-09-01) NB: This release drops support for extracting symlinks, because there was no clear way to support this securely. See #376 (comment) for details. * Fix CVE-2018-1000544 #376 / #371 * Fix NoMethodError: undefined method `glob' #363 * Fix handling of stored files (i.e. files not using compression) with general purpose bit 3 set #358 * Fix close on StringIO-backed zip file #353 * Add Zip.force_entry_names_encoding option #340 * Update rubocop, apply auto-fixes, and fix regressions caused by said auto-fixes #332, #355 * Save temporary files to temporary directory (rather than current directory) #325 Tooling / Documentation: * Turn off all terminal output in all tests #361 * Several CI updates #346, #347, #350, #352 * Several README improvements #345, #326, #321
2018-09-23archivers/ruby-zip: update to 1.2.2taca1-1/+17
Various small bug fixes including CVE-2018-1000544 (absolute path traversal).
2016-03-08Update rubyzip to 1.2.0.taca1-3/+7
* Don't enable JRuby objectspace #252 * Fixes an exception thrown when decoding some weird .zip files #248 * Use duck typing with IO methods #244 * Added error for empty (zero bit) zip file #242 * Accept StringIO in Zip.open_buffer #238 * Do something more expected with new file permissions #237 * Case insensitivity option for #find_entry #222 * Fixes in documentation and examples
2015-02-03Update ruby-zip to 1.1.7.taca1-2/+12
1.1.7 * Fix UTF-8 support for comments * Zip.sort_entries working for zip output * Prevent tempfile path from being unlinked by garbage collection * NTFS Extra Field (0x000a) support * Use String#tr instead of String#gsub * Ability to not show warning about incorrect date * Be smarter about handling buffer file modes. * Support for Traditional Encryption (ZipCrypto)
2015-02-01Update ruby-zip to 1.1.6.taca1-2/+48
1.1.6 Revert "Return created zip file from Zip::File.open when supplied a block" 1.1.5 Treat empty file as non-exists (@layerssss) Revert regression commit Return created zip file from Zip::File.open when supplied a block (@tpickett66) Zip::Entry::DEFLATED is forced on every file (@mehmetc) Add InputStream#ungetc (@zacstewart) Alias for legacy error names (@orien)
2014-06-20Some package i'm working on needs this >=1.0.0. Since nothing depends on it,rodent1-15/+23
i don't see this update breaking anything. rubygems says that package requires ruby>=1.9.2, so removing 1.8 from supported versions. This package needs to be renamed to ruby-rubyzip, because there is a ruby-zip which is not this package. From Changelog.md: 1.1.4 Don't send empty string to stream (@mrloop) Zip::Entry::DEFLATED was forced on every file (@mehmetc) Alias for legacy error names (@orien) 1.1.3 Fix compatibility of ::OutputStream::write_buffer (@orien) Clean up tempfiles from output stream (@iangreenleaf) 1.1.2 Fix compatibility of ::Zip::File.write_buffer 1.1.1 Speedup deflater (@loadhigh) Less Arrays and Strings allocations (@srawlins) Fix Zip64 writting support (@mrjamesriley) Fix StringIO support (@simonoff) Posibility to change default compression level Make Zip64 write support optional via configuration 1.1.0 StringIO Support Zip64 Support Better jRuby Support Order of files in the archive can be sorted Other small fixes 1.0.0 Removed support for Ruby 1.8 Changed the API for gem. Now it can be used without require param in Gemfile. Added read-only support for Zip64 files. Added support for setting Unicode file names.
2012-04-28Update ruby-zip package to 0.9.8.taca1-1/+2
pkgsrc change: Update HOMEPAGE. = Version 0.9.8 Fixed: "Unitialized constant NullInputStream" error
2012-03-18Update ruby-zip package to 0.9.6.1.taca1-2/+2
Exact changes are unknown.
2011-12-14Update ruby-zip package to 0.9.5.taca1-22/+24
Exact changes are unknown.
2009-06-14Don't create documentation diectoryjoerg1-2/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-7/+1
2008-04-04Install as a gem using the pkgsrc rubygem.mk framework instead ofjlam1-19/+43
directly into site_ruby.
2007-01-28Update ruby-zip package to 0.9.1.taca1-1/+12
Also install some documents and examples. = Version 0.9.1 Added symlink support and support for unix file permissions. Reduced memory usage during decompression. New methods ZipFile::[follow_symlinks, restore_times, restore_permissions, restore_ownership]. New methods ZipEntry::unix_perms, ZipInputStream::eof?. Added documentation and test for new ZipFile::extract. Added some of the API suggestions from sf.net #1281314. Applied patch for sf.net bug #1446926. Applied patch for sf.net bug #1459902. Rework ZipEntry and delegate classes.
2006-03-30Import ruby-zip.minskim1-0/+8
rubyzip is a ruby module for reading and writing zip files.