Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Archive-Zip-1.68-1.15 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: perl-Archive-Zip Distribution: openSUSE:Factory:zSystems
Version: 1.68 Vendor: openSUSE
Release: 1.15 Build date: Mon Aug 7 17:31:34 2023
Group: Development/Libraries/Perl Build host: s390zp25
Size: 298986 Source RPM: perl-Archive-Zip-1.68-1.15.src.rpm
Packager: https://bugs.opensuse.org
Url: https://metacpan.org/release/Archive-Zip
Summary: Provide an interface to ZIP archive files
The Archive::Zip module allows a Perl program to create, manipulate, read,
and write Zip archive files.

Zip archives can be created, or you can read from existing zip files.

Once created, they can be written to files, streams, or strings. Members
can be added, removed, extracted, replaced, rearranged, and enumerated.
They can also be renamed or have their dates, comments, or other attributes
queried or modified. Their data can be compressed or uncompressed as
needed.

Members can be created from members in existing Zip files, or from existing
directories, files, or strings.

This module uses the Compress::Raw::Zlib library to read and write the
compressed streams inside the files.

One can use Archive::Zip::MemberRead to read the zip file archive members
as if they were files.

Provides

Requires

License

Artistic-1.0 OR GPL-1.0-or-later

Changelog

* Fri Mar 13 2020 <timueller+perl@suse.de>
  - updated to 1.68
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.68 Thr 12 Mar 2020
    - Switched to GitHub as issue tracker
    - Replaced references to Test::MockModule in
      t/23_closed_handle.t with code from PR #32, RT #110087
    - Unixified line endings in t/23_closed_handle.t
    - Added documentation for Archive::Zip::Member::isSymbolicLink,
      RT #130524
    - Implemented other, unrelated doc fixes
    - Fixed examples/zipcheck.pl to skip symbolic links, RT #130525
    - Described version 1.59, RT #117371 (tagged important!)
    - Completely re-did test suite:
      . Created new test APIs in t/common.pm and documented them in
      t/README.md
      . Changed tests to be less dependent on OS-specific quirks of "unzip -t"
      . Changed tests to write more diagnostic information if executed in
      automated test environments
      . Normalized access to test data and to temporary results.  Removed
      references to obsolete temporary results (for example, those to
      directory "extracted").
      . Normalized test headers and brushed up tests in general
* Mon Oct 07 2019 Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
  - Update to 1.67
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.67 Sun 06 Oct 2019
    - Fixed compatibility issues with zip64 format (defined-or, pack)
    - Fixed hard-coded version fields introduced in version 1.66
    - Fixed merge glitch with tests 26 and 27
    - Fixed merge glitch with bzip passthrough
    - Updated bzip test file to avoid zip bomb detection
* Wed Sep 18 2019 <timueller+perl@suse.de>
  - updated to 1.66
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.66 Mon 16 Sep 2019
    - Refactored low-level methods for reading and writing zip files
      in zip64 format.  Added new parameters and return values to
      most of these.  Extended constants in Archive::Zip to cover
      zip64 formats and lengths.
    - Added public APIs
      Archive::Zip::Archive::zip64
      Archive::Zip::Archive::desiredZip64Mode
      Archive::Zip::Archive::versionMadeBy
      Archive::Zip::Archive::versionNeededToExtract
      Archive::Zip::Member::zip64
      Archive::Zip::Member::desiredZip64Mode
      and constants
      Archive::Zip::ZIP64_AS_NEEDED
      Archive::Zip::ZIP64_EOCD
      Archive::Zip::ZIP64_HEADERS
      plus POD on these.
    - Added tests for zip64 format in t/21_zip64.t and more test zip
      files below t/data.  Extended tests in t/02_main.t to perform
      all existing tests in all possible desired zip64 modes.
    - Extended methods
      Archive::Zip::Member::localExtraField
      Archive::Zip::Member::cdExtraField
      to perform format checks when called as setters and to reject
      any zip64 extended information extra fields passed by the user.
      Extended POD and tests in t/02_main.t accordingly.
    - Setting {'compressedSize'} after writing central directory
      header.
    - Added new optional parameter $noFormatError to method
      Archive::Zip::_readSignature to silence any format errros when
      testing for signatures.
    - Added error handling for potentially failed object conversion
      after calling method Archive::Zip::Member::_become.  Factored
      in method Archive::Zip::Member::_becomeDirectoryIfNecessary
      into caller.
    - Changed methods
      Archive::Zip::Archive::contents
      Archive::Zip::Member::contents
      (and all inheriting from these) to consistently return a pair
      ($contents, $status) when called in list context and a scalar
      $contents when called in scalar context.  Extended tests in
      t/02_main.t accordingly.
    - Changed method Archive::Zip::Member::extractToFileHandle to
      accept a file name instead of a file handle when extracting
      symbolic links.  Changed lower-level and higher-level methods
      to use that feature.  Cleaned up code related to the handling
      of symbolic links.  Added creation of intermediate directories
      in method Archive::Zip::Member::extractToFileNamed for symbolic
      links as well.  Reporting errors from symlink call as AZ-error.
      Added POD and test zip file t/data/symlink.zip and tests in
      t/26_symlinks.t for these changes.
    - Cleaned up code and added comment related to that highly
      dubious (?) {'wasWritten'} logic.
* Tue Sep 10 2019 <timueller+perl@suse.de>
  - updated to 1.65
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.65 Sat 7 Sep 2019
    - Fix for members using bzip compression [github/pmqs]
    - NetBSD doesn't mind empty zips [github/pmqs]
    - Solaris test failure, Add diag to failing test to collect data [github/pmqs]
    - Test for presence of Test::MockModule [github/pmqs]
    - Fix skip line for Windows [github/pmqs]
    - Skip tests that assume /tmp on Windows [github/pmqs]
* Mon Sep 24 2018 pmonrealgonzalez@suse.com
  - updated to 1.64
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.64 Wed 12 Sep 2018
    - Fix for year 2030
  - Cleaned with spec-cleaner
* Thu Aug 23 2018 coolo@suse.com
  - updated to 1.63
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.63 Wed 21 Aug 2018
    - Restore missing META.yml deps (needed updated MB)
    - Symlink traversal test fix [github/haarg]
    - Added missing prereq Encode as suggested by CPANTS [github/manwar]
* Tue Aug 21 2018 coolo@suse.com
  - updated to 1.62
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
* Wed Dec 20 2017 coolo@suse.com
  - updated to 1.60
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.60 Tue 19 Dec 2017
    - RT 123913 Wrong shell bang in examples/selfex.pl
* Fri Aug 12 2016 coolo@suse.com
  - updated to 1.59
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
* Wed Aug 03 2016 coolo@suse.com
  - updated to 1.58
    see /usr/share/doc/packages/perl-Archive-Zip/Changes
    1.58 Tue 2 Aug 2016
    - avoid relying on . being in @INC [github/karenetheridge]
    - update MANIFEST.SKIP [github/haarg]

Files

/usr/bin/crc32
/usr/lib/perl5/vendor_perl/5.38.0/Archive
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/Archive.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/BufferedFileHandle.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/DirectoryMember.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/FAQ.pod
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/FileMember.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/Member.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/MemberRead.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/MockFileHandle.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/NewFileMember.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/StringMember.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/Tree.pm
/usr/lib/perl5/vendor_perl/5.38.0/Archive/Zip/ZipFileMember.pm
/usr/share/doc/packages/perl-Archive-Zip
/usr/share/doc/packages/perl-Archive-Zip/Changes
/usr/share/doc/packages/perl-Archive-Zip/README.md
/usr/share/doc/packages/perl-Archive-Zip/examples
/usr/share/doc/packages/perl-Archive-Zip/examples/calcSizes.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/copy.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/extract.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/mailZip.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/mfh.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/readScalar.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/selfex.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/unzipAll.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/updateTree.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/updateZip.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/writeScalar.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/writeScalar2.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/zip.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/zipGrep.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/zipcheck.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/zipinfo.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/ziprecent.pl
/usr/share/doc/packages/perl-Archive-Zip/examples/ziptest.pl
/usr/share/man/man3/Archive::Zip.3pm.gz
/usr/share/man/man3/Archive::Zip::FAQ.3pm.gz
/usr/share/man/man3/Archive::Zip::MemberRead.3pm.gz
/usr/share/man/man3/Archive::Zip::Tree.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:39:58 2024