The NetBSD Project

CVS log for pkgsrc/archivers/p5-Archive-Zip/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / archivers / p5-Archive-Zip

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.71 / (download) - annotate - [select for diffs], Thu Jul 6 09:38:08 2023 UTC (8 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, HEAD
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored) to selected 1.35 (colored)

*: recursive bump for perl 5.38

Revision 1.70 / (download) - annotate - [select for diffs], Tue Jun 6 12:40:15 2023 UTC (9 months, 3 weeks ago) by riastradh
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base, pkgsrc-2023Q2
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored) to selected 1.35 (colored)

Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.

Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).

No change to BUILD_DEPENDS as used correctly inside buildlink3.

As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html

Revision 1.69 / (download) - annotate - [select for diffs], Tue Jun 28 11:30:52 2022 UTC (21 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3
Changes since 1.68: +2 -2 lines
Diff to previous 1.68 (colored) to selected 1.35 (colored)

*: recursive bump for perl 5.36

Revision 1.68 / (download) - annotate - [select for diffs], Mon May 24 19:49:03 2021 UTC (2 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.67: +2 -1 lines
Diff to previous 1.67 (colored) to selected 1.35 (colored)

*: recursive bump for perl 5.34

Revision 1.67 / (download) - annotate - [select for diffs], Sun Sep 6 12:12:14 2020 UTC (3 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3
Changes since 1.66: +2 -3 lines
Diff to previous 1.66 (colored) to selected 1.35 (colored)

p5-Archive-Zip: update to 1.68.

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

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

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.

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]

Revision 1.66 / (download) - annotate - [select for diffs], Mon Aug 31 18:06:31 2020 UTC (3 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored) to selected 1.35 (colored)

*: bump PKGREVISION for perl-5.32.

Revision 1.65 / (download) - annotate - [select for diffs], Sun Aug 11 13:17:51 2019 UTC (4 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.64: +2 -1 lines
Diff to previous 1.64 (colored) to selected 1.35 (colored)

Bump PKGREVISIONs for perl 5.30.0

Revision 1.64 / (download) - annotate - [select for diffs], Sun Jun 30 20:14:13 2019 UTC (4 years, 8 months ago) by nia
Branch: MAIN
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored) to selected 1.35 (colored)

Update packages using a search.cpan.org HOMEPAGE to metacpan.org.

The former now redirects to the latter.

This covers the most simple cases where http://search.cpan.org/dist/name
can be changed to https://metacpan.org/release/name.

Reviewed by hand to hopefully make sure no unwanted changes sneak in.

Revision 1.63 / (download) - annotate - [select for diffs], Sat Nov 24 03:44:18 2018 UTC (5 years, 4 months ago) by wen
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored) to selected 1.35 (colored)

Update to 1.64

Upstream changes:
1.64 Wed 12 Sep 2018
    - Fix for year 2030

Revision 1.62 / (download) - annotate - [select for diffs], Sun Aug 26 06:11:29 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base, pkgsrc-2018Q3
Changes since 1.61: +2 -2 lines
Diff to previous 1.61 (colored) to selected 1.35 (colored)

p5-Archive-Zip: update to 1.63.

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]

Revision 1.61 / (download) - annotate - [select for diffs], Fri Aug 24 06:10:19 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.60: +4 -5 lines
Diff to previous 1.60 (colored) to selected 1.35 (colored)

p5-Archive-Zip: update to 1.62.

Use TEST_DEPENDS

1.62 Sun 19 Aug 2018
    - Add link-samename.zip to MANIFEST

Revision 1.60 / (download) - annotate - [select for diffs], Wed Aug 22 09:42:53 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.59: +2 -1 lines
Diff to previous 1.59 (colored) to selected 1.35 (colored)

Recursive bump for perl5-5.28.0

Revision 1.59 / (download) - annotate - [select for diffs], Tue Aug 21 09:44:35 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.58: +2 -2 lines
Diff to previous 1.58 (colored) to selected 1.35 (colored)

p5-Archive-Zip: update to 1.61.

1.61 Sat 18 Aug 2018
    - File::Find will not untaint [github/ThisUsedToBeAnEmail]
    - Prevent from traversing symlinks and parent directories when extracting [github/ppisar]

Revision 1.58 / (download) - annotate - [select for diffs], Sat Dec 30 13:14:17 2017 UTC (6 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1
Changes since 1.57: +4 -3 lines
Diff to previous 1.57 (colored) to selected 1.35 (colored)

p5-Archive-Zip: update to 1.60.

1.60 Tue 19 Dec 2017
    - RT 123913 Wrong shell bang in examples/selfex.pl

Revision 1.57 / (download) - annotate - [select for diffs], Mon Jun 5 14:22:16 2017 UTC (6 years, 9 months ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2
Changes since 1.56: +2 -1 lines
Diff to previous 1.56 (colored) to selected 1.35 (colored)

Recursive revbump from lang/perl5 5.26.0

Revision 1.56 / (download) - annotate - [select for diffs], Fri Aug 19 15:24:23 2016 UTC (7 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored) to selected 1.35 (colored)

Updated p5-Archive-Zip to 1.59.

1.58 Tue 2 Aug 2016
    - avoid relying on . being in @INC [github/karenetheridge]
    - update MANIFEST.SKIP [github/haarg]

Revision 1.55 / (download) - annotate - [select for diffs], Wed Aug 3 09:01:52 2016 UTC (7 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.54: +2 -3 lines
Diff to previous 1.54 (colored) to selected 1.35 (colored)

Updated p5-Archive-Zip to 1.58.

1.58 Tue 2 Aug 2016
    - avoid relying on . being in @INC [github/karenetheridge]
    - update MANIFEST.SKIP [github/haarg]

Revision 1.54 / (download) - annotate - [select for diffs], Wed Jun 8 19:22:14 2016 UTC (7 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q2-base, pkgsrc-2016Q2
Changes since 1.53: +2 -1 lines
Diff to previous 1.53 (colored) to selected 1.35 (colored)

Bump PKGREVISION for perl-5.24.

Revision 1.53 / (download) - annotate - [select for diffs], Fri Apr 8 14:56:53 2016 UTC (7 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored) to selected 1.35 (colored)

Update p5-Archive-Zip to 1.57:

1.57 Fri 1 Apr 2016
    - RT# 106548,106089,105330,111541 [github/ozcoder]

Revision 1.52 / (download) - annotate - [select for diffs], Sun Dec 27 22:56:50 2015 UTC (8 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base, pkgsrc-2016Q1
Changes since 1.51: +3 -2 lines
Diff to previous 1.51 (colored) to selected 1.35 (colored)

Update p5-Archive-Zip to 1.56:

1.56 Thu 17 Dec 2015
    - fix $Archive::Zip::UNICODE issues [github/xlat]
        - on MSWin32 in methods addFile, addDirectory, addTree: the externalFileName was
          used in place of newName
        - make sure that file names are utf8 in memberNames
        - use Encode on all platform

Revision 1.51 / (download) - annotate - [select for diffs], Sun Dec 6 10:54:27 2015 UTC (8 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.50: +3 -2 lines
Diff to previous 1.50 (colored) to selected 1.35 (colored)

Update p5-Archive-Zip to 1.55:

1.55 Fri 04 Dec 2015
    - rt.cpan.org #110064 - fix empty archive issue with OS X gnu tar

1.54 Wed 02 Dec 2015
    - Ensure filehandles created by Archive::Zip::tempFile are closed [github/antoniomonty]

Revision 1.50 / (download) - annotate - [select for diffs], Wed Sep 30 19:14:19 2015 UTC (8 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored) to selected 1.35 (colored)

Update to 1.53:

1.53 Wed 22 Sep 2015
    - rt.cpan.org #107268 - Archive-Zip-1.52.tar.gz is (nearly) empty
      Thanks to SREZIC for the spot on my dad brain sleep schedule error
      Creating the dist on OS X caused 'Numeric user ID too largeNumeric group ID too large'

1.52 Tue 22 Sep 2015
    - rt.cpan.org #105902, thanks HMBRAND

1.51 Tue 22 Sep 2015
    - Compare vs filename checksum in crc32 script [github/talisein]

Revision 1.49 / (download) - annotate - [select for diffs], Wed Aug 26 11:46:46 2015 UTC (8 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored) to selected 1.35 (colored)

Update to 1.50:

1.50 Tue 25 Aug 2015
    - Fix t/08_readmember_record_sep.t for Win32 [github/pauloscustodio]

Revision 1.48 / (download) - annotate - [select for diffs], Thu Aug 13 15:03:02 2015 UTC (8 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.47: +5 -3 lines
Diff to previous 1.47 (colored) to selected 1.35 (colored)

Update to 1.49:

1.49 Fri 31 Jul 2015
    - Fails on unseekable file handle after desiredCompressionLevel(), RT #54827
    - Upgrade build tools to avoid tar warnings, RT #105547

1.48 Thu 18 Jun 2015
    - Wrap skip in a SKIP: block [github/plicease]

1.47 Wed 17 Jun 2015
    - zip file with a deflated directory cannot be written out again [github/ntyni]
    - add missing test data to MANIFEST

Revision 1.47 / (download) - annotate - [select for diffs], Sun Jul 12 18:56:06 2015 UTC (8 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored) to selected 1.35 (colored)

Comment out dependencies of the style
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS
since pkgsrc enforces the newest perl version anyway, so they
should always pick perl, but sometimes (pkg_add) don't due to the
design of the {,} syntax.

No effective change for the above reason.

Ok joerg

Revision 1.46 / (download) - annotate - [select for diffs], Fri Jun 12 10:48:21 2015 UTC (8 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q2-base, pkgsrc-2015Q2
Changes since 1.45: +2 -1 lines
Diff to previous 1.45 (colored) to selected 1.35 (colored)

Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.

Revision 1.45 / (download) - annotate - [select for diffs], Sun Apr 5 04:44:09 2015 UTC (8 years, 11 months ago) by mef
Branch: MAIN
Changes since 1.44: +2 -2 lines
Diff to previous 1.44 (colored) to selected 1.35 (colored)

Update to 1.46
--------------
1.46 Tue 24 Mar 2015
    - "CRC or size mismatch" when extracting member second time [github/AGWA github/pwr22]

Revision 1.44 / (download) - annotate - [select for diffs], Sun Mar 8 01:08:00 2015 UTC (9 years ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored) to selected 1.35 (colored)

Update to 1.45
--------------
1.45 Mon 26 Jan 2015
    - FreeBSD unzip sets $? to 0 for empty zip file [github.com/revhippie]

Revision 1.43 / (download) - annotate - [select for diffs], Sun Jan 25 07:04:24 2015 UTC (9 years, 2 months ago) by mef
Branch: MAIN
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored) to selected 1.35 (colored)

Update 1.42 to 1.44
1.44 Fri 23 Jan 2015
    - Win32 with ZIP executable cannot create temp file [github.com/revhippie]

1.43 Wed 14 Jan 2015
    - Restore 101374 - failing tests were not regressions.

Revision 1.42 / (download) - annotate - [select for diffs], Mon Jan 12 12:32:01 2015 UTC (9 years, 2 months ago) by wen
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored) to selected 1.35 (colored)

Update to 1.42

Upstream changes:
1.42 Sun 11 Jan 2015
    - Revert 101374, caused tester regression
    - https://rt.cpan.org/Public/Bug/Display.html?id=101240 [cpan/PMQS]

1.41 Fri 09 Jan 2015
    - https://rt.cpan.org/Public/Bug/Display.html?id=101374 [zefram]

Revision 1.41 / (download) - annotate - [select for diffs], Fri Jan 9 13:35:32 2015 UTC (9 years, 2 months ago) by mef
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored) to selected 1.35 (colored)

Update 1.39 to 1.40
1.40 Sun 04 Jan 2015
    - https://rt.cpan.org/Public/Bug/Display.html?id=92205 [cpan/PMQS]
    - https://rt.cpan.org/Public/Bug/Display.html?id=101092 [cpan/PMQS]

Revision 1.40 / (download) - annotate - [select for diffs], Mon Nov 24 08:29:51 2014 UTC (9 years, 4 months ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored) to selected 1.35 (colored)

Update 1.38 to 1.39
1.39 Tue 21 Oct 2014
    - store test data in temp dirs to fix parallelism and shuffling
      [Graham Knop]

Revision 1.39 / (download) - annotate - [select for diffs], Thu Oct 9 14:05:53 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.38: +1 -3 lines
Diff to previous 1.38 (colored) to selected 1.35 (colored)

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.38 / (download) - annotate - [select for diffs], Thu Oct 9 13:44:32 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.37: +1 -2 lines
Diff to previous 1.37 (colored) to selected 1.35 (colored)

Remove SVR4_PKGNAME, per discussion on tech-pkg.

Revision 1.37 / (download) - annotate - [select for diffs], Sat Sep 6 14:29:19 2014 UTC (9 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3
Changes since 1.36: +2 -3 lines
Diff to previous 1.36 (colored) to selected 1.35 (colored)

Update to 1.38:

1.38 Tue 02 Sep 2014
    - Setting unicode flag for each member when using $Archive::Zip::UNICODE [github.com/lackas]
      https://rt.cpan.org/Ticket/Display.html?id=83367

Revision 1.36 / (download) - annotate - [select for diffs], Thu May 29 23:35:13 2014 UTC (9 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base, pkgsrc-2014Q2
Changes since 1.35: +2 -1 lines
Diff to previous 1.35 (colored)

Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.

Revision 1.35 / (download) - annotate - [selected], Thu Feb 6 12:23:33 2014 UTC (10 years, 1 month ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1
Changes since 1.34: +2 -3 lines
Diff to previous 1.34 (colored)

Updated archivers/p5-Archive-Zip to 1.37

1.37 Wed 08 Jan 2014
    - Need newer Test::More to support done_testing() [thaljef]

1.36 Mon 30 Dec 2013
    - Fix error in version update with 1.35 [RT #91744]

1.35 Mon 30 Dec 2013
    - fallback on copy if move gives permission denied [github.com/plicease]

1.34 Mon 2 Dec 2013
    - Restore svn history from svn.ali.as (thanks H. Merijn Brand)
    - #90854 Test 17 in t/03_ex.t is failing
    - Allow reading ZIP from seekable streams (like PerlIO::Scalar)
    - RT#75197
    - Fixes: #76780: Cannot create member called "0" with addString (HAGGAI)

1.33 Sat 9 Nov 2013
    - #59102 (Spelling error in manapage) [github.com/dsteinbrunner]
    - #86600 typo fixes [github.com/dsteinbrunner]

1.32 Fri 8 Nov 2013
    - #89777 Unlink temp files generated by tempFile. [PHRED]

1.31_04 Fri 14 Oct 2011 - Alan Haggai Alavi
    - Updated Perl dependency to 5.006 to reflect implicit dependencies
      in the code exposed by Perl::MinimumVersion xt test (ADAMK)
    - Fixes: #68446: Set compressed size and uncompressed size of an entry to 0
      if either of them is 0 (HAGGAI)
    - Added $VERSION to crc32 (ADAMK)

1.31_03 Thu 30 Jun 2011 - H.Merijn Brand
    - Add decryption support

1.31_02 Wed 9 Mar 2011 - Adam Kennedy
    - More fixes by HAGGAI, which he still doesn't detail in Changes

1.31_01 Fri  5 Mar 2010 - Adam Kennedy
    - Various fixes by HAGGAI, which he has not yet provided details on:
    - Experimental Unicode in file/dir names

Revision 1.34 / (download) - annotate - [select for diffs], Mon Dec 9 14:17:41 2013 UTC (10 years, 3 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4
Changes since 1.33: +3 -3 lines
Diff to previous 1.33 (colored) to selected 1.35 (colored)

Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes.

Bump PKGREVISION for runtime dependency pattern changed packages.

Revision 1.33 / (download) - annotate - [select for diffs], Fri May 31 12:39:35 2013 UTC (10 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored) to selected 1.35 (colored)

Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.

Revision 1.32 / (download) - annotate - [select for diffs], Wed Oct 3 21:53:53 2012 UTC (11 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored) to selected 1.35 (colored)

Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.

Revision 1.31 / (download) - annotate - [select for diffs], Tue Sep 11 19:46:58 2012 UTC (11 years, 6 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.30: +1 -2 lines
Diff to previous 1.30 (colored) to selected 1.35 (colored)

"user-destdir" is default these days

Revision 1.30 / (download) - annotate - [select for diffs], Sat Aug 6 12:27:10 2011 UTC (12 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3
Changes since 1.29: +13 -13 lines
Diff to previous 1.29 (colored) to selected 1.35 (colored)

Revision bump after updating perl to 5.14.1

Revision 1.29 / (download) - annotate - [select for diffs], Sat Aug 21 16:32:43 2010 UTC (13 years, 7 months ago) by seb
Branch: MAIN
CVS Tags: pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Changes since 1.28: +2 -1 lines
Diff to previous 1.28 (colored) to selected 1.35 (colored)

Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!

Revision 1.28 / (download) - annotate - [select for diffs], Tue Jul 7 19:10:05 2009 UTC (14 years, 8 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.27: +3 -3 lines
Diff to previous 1.27 (colored) to selected 1.35 (colored)

pkgsrc changes:
  - Updating package for p5 module Archive::Zip from 1.26 to 1.30
  - Setting license according to META.yml to ${PERL5_LICENSE}

Upstream changes:
1.30 Tue 30 Jun 2009 - Adam Kennedy
	- Fixed a bad use of Cwd::getcwd

1.29 Mon 29 Jun 2009 - Adam Kennedy
	- Changed _asLocalName back to rel2abs, but this time using
	  Cwd::getcwd as the base path instead of Cwd::cwd.
	  This hopefully resolved #47223 (ADAMK)

1.28 Tue 16 Jun 2009 - Adam Kennedy
	- Changing to production version for release
	- Reverted to revision 4736 and converted `External File Attribute'
	  values for symbolic links to hexadecimal (HAGGAI)
	- Fixed: #15026: AddTree does not include files with german
	  umlauts in the filename (HAGGAI)
	- Switched from Compress::Zlib to Compress::Raw::Zlib (AGRUNDMA)
	- Moved crc32 from bin to script (ADAMK)

1.27_01 Tue 16 Dec 2008 - Adam Kennedy
	- Makefile.PL will create a better META.yml
	- This is a test release for various improvements provided by
	  Alan Haggai. The entire release is credited to his grant work.
	- Fixed #25726: extractMembers failing across fork on Windows.
	- Fixed #12493: Can't add new files to archives which contain
	  files named 0,1,2,3,4,5,6,7,8,9 with no extension.
	  (Files named "0" are not archived)
	- Fixed #22933: Properly extract symbolic links.
	- Fixed #20246: Ability to assign a compression level to addTree
	  calls.
	- Corrected regular expression for stripping trailing /
	- Corrected addFileOrDirectory() behaviour and cleaned up some code
	- Added symbolic link support to addFileOrDirectory
	- Fixed #34657: No option, undefined behavior zipping symbolic
	  links (symlinks)
	- Added storeSymbolicLink()
	- Fixed bitFlag() to set General Pupose Bit Flags

Revision 1.27 / (download) - annotate - [select for diffs], Sat Apr 11 23:15:19 2009 UTC (14 years, 11 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.26: +3 -2 lines
Diff to previous 1.26 (colored) to selected 1.35 (colored)

PkgSrc changes:
  - removed packages p5-IO-Compress-Base, p5-IO-Compress-Zlib,
    p5-IO-Compress-Bzip2 and p5-Compress-Zlib because they are
    merged into p5-IO-Compress
  - Updated dependend packages to depend on p5-IO-Compress
    and bump PKGREVISION

Upstream changes:
  2.017 30 March 2009

      * Merged IO-Compress-Base, IO-Compress-Bzip2, IO-Compress-Zlib &
        Compress-Zlib into IO-Compress.
      * The interface to Compress-Raw-Zlib now uses the new LimitOutput
        feature. This will make all of the zlib-related IO-Compress modules
        less greedy in their memory consumption.
      * Removed MAN3PODS from Makefile.PL
      * A few changes to get the test harness to work on VMS courtesy of
        Craig. A. Berry.
      * IO::Compress::Base & IO::Uncompress::Base
        Downgraded some croaks in the constructors to just set $! (by letting
        the code attempt to open a file and fail).
        This makes the behavior more consistent to a standard open.
        [RT #42657]
      * IO::Uncompress::Base
        Doing a seek with MultiStream could drop some of the uncompressed
        data. Fixed.
      * IO::Compress::Zip
        - Fixed problem with the uncompressed & uncompressed fields when
          zip64 is enabled. They were set to 0x0000FFFF instead of
          0xFFFFFFFF. Also the ZIP64 extra field was 4 bytes short.
          Problem spotted by Dino Chiesa.
      * IO::Uncompress::Unzip
        - use POSIX::mktime instead of Time::Local::timelocal to convert
          the zip DOS time field into Unix time.
      * Compress::Zlib
        - Documented Compress::Zlib::zlib_version()

Revision 1.26 / (download) - annotate - [select for diffs], Mon Oct 20 21:50:50 2008 UTC (15 years, 5 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.25: +2 -3 lines
Diff to previous 1.25 (colored) to selected 1.35 (colored)

Update from version 1.24nb1 to 1.26.

Upstream changes:

1.26 Mon 13 Oct 2008 - Adam Kennedy
  - Fixed the dreaded but #24036: WinXP Explorer Exposes Problems.
    This caused directories to appear as files in Windows Explorer
    and was caused by Windows always reading the msdos directory bit
    even when the file attributes are types as unix.
    Resolved by emulating the behaviour of Info-Zip and setting
    the 5th bit in the externalFileAttributes field.

1.25 Sat 11 Oct 2008 - Adam Kennedy
  - Removing "use warnings" instances that somehow slipped in
  - Skip test if Digest::MD5 is not available

Revision 1.25 / (download) - annotate - [select for diffs], Sun Oct 19 19:17:40 2008 UTC (15 years, 5 months ago) by he
Branch: MAIN
Changes since 1.24: +2 -1 lines
Diff to previous 1.24 (colored) to selected 1.35 (colored)

Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").

Revision 1.24 / (download) - annotate - [select for diffs], Thu Sep 11 12:31:18 2008 UTC (15 years, 6 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored) to selected 1.35 (colored)

Update from version 1.23 to 1.24.

Upstream changes:

1.24 Sun 23 Aug 2008 - Adam Kennedy
  - Blatantly pander to CPANTS by adding use strict to a deprecated module
  - Add an explicit load of FileHandle since in some circumstances,
    calling GLOB->print() failed.
  - Fixed http://rt.cpan.org/Public/Bug/Display.html?id=25925 :
    - Archive-Zip wrote faulty .zip files when $\ was set (such as when running
    using perl -l).
    - Incorporated a heavily modified version of ECARROLL's test file.
    - Thanks for ECARROLL for reporting it, and helping with the investigation.
    - The fix was to convert all $fh->print(@data) to $self->_print($fh, @data)
    where the _print() method localizes $\ to undef.
  - Fixed http://rt.cpan.org/Ticket/Display.html?id=14132 :
    - Incorrect file permissions after extraction.
    - Archive-Zip did not set the file permissions correctly in
      extractToFileNamed().
    - Added t/10_chmod.t and t/data/chmod.zip. Changed
      lib/Archive/Zip/Member.pm.
    - Reported by ak2 and jlv (Thanks!)
    - SHLOMIF wrote the test script.
    - (SHLOMIF)
  - Removed a double "required module" from the Archive::Zip POD.
  - Fixed http://rt.cpan.org/Ticket/Display.html?id=24557 ("documentation
    improvement"):
    - mentioned Archive::Zip::MemberRead in a few places.
    - TODO:
      - 1. Add a method to Archive::Zip to get a ::MemberRead from an
        archive member using -> notation. (?)
      - 2. In the POD of ::MemberRead - replace the indirect object
        call.
  - Changed the POD of ::MemberRead:
    - replaced the indirect object construction with $PKG->new().
  - Fixed http://rt.cpan.org/Public/Bug/Display.html?id=34103 :
    - changed the example to read unless ( .. == AZ_OK) instead of
    unless ( != AZ_OK), which was incorrect.

Revision 1.23 / (download) - annotate - [select for diffs], Sun Jun 1 14:22:15 2008 UTC (15 years, 10 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper
Changes since 1.22: +3 -4 lines
Diff to previous 1.22 (colored) to selected 1.35 (colored)

Update p5-Archive-Zip to 1.23.
Based on patch provided by Zafer Aydogan via private mail.

1.23 Thu  8 Nov 2007 - Adam Kennedy
  - Temporarily skilling some failing tests on Win32 in the
    interests of toolchain sanity. (until we work out the
    real problem here)

1.22 Fri  2 Nov 2007 - Adam Kennedy
  - Fixing platform compatibility bugs in the new regression tests
    from 1.21.

1.21 Thu  1 Nov 2007 - Adam Kennedy
  - Tidying up copyright formatting a bit.
  - Disable the GPBF_HAS_DATA_DESCRIPTOR_MASK bit when auto-switching
    directory storage to STORED because of a WinZip workaround because
    the read code in Java JAR which was... ok, I really don't understand,
    but Roland from Verisign says this one extra line unbreaks JAR files,
    so I just applied it :)
  - fixed http://rt.cpan.org/Public/Bug/Display.html?id=27463 with a
    regression test - cannot add files whose entire filenames are "0".
    (SHLOMIF).
  - fixed http://rt.cpan.org/Public/Bug/Display.html?id=26384 with a
    regression test - Archive::Zip::MemberRead::getline ignores
    $INPUT_RECORD_SEPARATOR . The modified file in the bug had it to be
    reworked a bit and tests were added in the file
    08_readmember_record_sep.t.
      - Thanks to kovesp [...] sympatico.ca
      - (SHLOMIF)

1.20 Tue  5 Jun 2007 - Adam Kennedy
  - Removing dependency on File::Which due to public outburst of flaming
    on cpanra(n)tings by H.Merijn Brand. Try a simple email next time. :(
  - Embedding an entire copy of File::Which inside the tests instead as
    an alternative to compensating for the lack of build_requires.
  - Removing the docs directory.
    It only had out of date files and non-free copyrighted materials.
    The tarball was probably illegal to distribute as a result.
    (reported by Debian devs)

1.19 Internal use, public release skipped

Revision 1.22 / (download) - annotate - [select for diffs], Sat Mar 8 13:51:08 2008 UTC (16 years ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1
Changes since 1.21: +2 -1 lines
Diff to previous 1.21 (colored) to selected 1.35 (colored)

Support DESTDIR.

Revision 1.21 / (download) - annotate - [select for diffs], Tue Feb 27 13:56:11 2007 UTC (17 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1
Changes since 1.20: +3 -2 lines
Diff to previous 1.20 (colored) to selected 1.35 (colored)

Update to 1.18:

1.18 Wed 25 Oct 2006 - Adam Kennedy
  - Changing to a production version for final release
  - No other changes of any kind

1.17_05 Tue 19 Sep 2006 - Adam Kennedy
  - Seperated the classes from the main file into seperate packages.
  - Merged the Zip.pod into the main Zip.pm file.
  - Applied default Perl::Tidy to all of the source files, to improve
    the readability and maintainability of the files.
  - Added license in Makefile.PL
  - Added some additional entries to the realclean files

Revision 1.20 / (download) - annotate - [select for diffs], Sat Mar 4 21:28:53 2006 UTC (18 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2, pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored) to selected 1.35 (colored)

Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Oct 20 17:25:38 2005 UTC (18 years, 5 months ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.18: +2 -3 lines
Diff to previous 1.18 (colored) to selected 1.35 (colored)

Update archivers/p5-Archive-Zip to 1.16

1.16 Mon Jul 04 12:49:30 CDT 2005
 - Grrrr...removed test that fails when installing under CPANPLUS.

1.15 Wed Jun 22 10:24:25 CDT 2005
  - added fix for RT #12771 Minor nit: warning in Archive::Zip::DirectoryMember:
:contents()
  - added fix for RT #13327 Formatting problem in Archive::Zip::Tree manpage

1.15_02 Sat Mar 12 09:16:30 CST 2005
  - fixed dates in previous entry!
  - began the process of migrating from the monolithic t/test.t to
    smaller scripts using Test::More.
  - started work on improving Archive::Zip's test coverage.  Coverage
    is now up to just over 80%.
  - added error handling to writeToFileHandle
  - fixed small bug in extractMember from previous version

1.15_01 Wed Mar  9 22:26:52 CST 2005
  - added fix for RT #11818 extractMember method corrupts archive
  - added t/pod.t to test for pod correctness

Revision 1.18 / (download) - annotate - [select for diffs], Fri Sep 2 23:12:49 2005 UTC (18 years, 6 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.35 (colored)

Reordered PKGREVISION and SVR4_PKGNAME to make pkglint happy.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Aug 6 06:19:03 2005 UTC (18 years, 7 months ago) by jlam
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.35 (colored)

Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.

Revision 1.16 / (download) - annotate - [select for diffs], Wed Jul 13 18:01:18 2005 UTC (18 years, 8 months ago) by jlam
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.35 (colored)

Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Apr 11 21:44:49 2005 UTC (18 years, 11 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.14: +1 -2 lines
Diff to previous 1.14 (colored) to selected 1.35 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.14 / (download) - annotate - [select for diffs], Mon Dec 20 11:30:55 2004 UTC (19 years, 3 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.13: +2 -1 lines
Diff to previous 1.13 (colored) to selected 1.35 (colored)

since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Nov 13 15:59:24 2004 UTC (19 years, 4 months ago) by seb
Branch: MAIN
Changes since 1.12: +3 -2 lines
Diff to previous 1.12 (colored) to selected 1.35 (colored)

Update to version 1.14.
While here add HOMEPAGE.
Changes unknown since last packaged version (1.12).

Revision 1.12 / (download) - annotate - [select for diffs], Mon Aug 2 21:33:47 2004 UTC (19 years, 8 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored) to selected 1.35 (colored)

This packages doesn't use the compiler.

Revision 1.11 / (download) - annotate - [select for diffs], Wed Jul 28 02:47:35 2004 UTC (19 years, 8 months ago) by minskim
Branch: MAIN
Changes since 1.10: +3 -1 lines
Diff to previous 1.10 (colored) to selected 1.35 (colored)

Enable pkgviews installation.

Revision 1.10 / (download) - annotate - [select for diffs], Fri Jul 16 12:45:23 2004 UTC (19 years, 8 months ago) by seb
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored) to selected 1.35 (colored)

Update to version 1.12.

Too many bug fixes and additions since last packaged version (0.11).
Please see the `Changes' file enclosed in the source distribution.

Revision 1.9 / (download) - annotate - [select for diffs], Thu Mar 11 18:03:50 2004 UTC (20 years ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2, pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored) to selected 1.35 (colored)

bl3ify

Revision 1.8 / (download) - annotate - [select for diffs], Mon Jul 21 16:24:40 2003 UTC (20 years, 8 months ago) by martti
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored) to selected 1.35 (colored)

COMMENT should start with a capital letter.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jul 17 21:21:33 2003 UTC (20 years, 8 months ago) by grant
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored) to selected 1.35 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 2 01:21:45 2003 UTC (20 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored) to selected 1.35 (colored)

Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.

Revision 1.5 / (download) - annotate - [select for diffs], Sun Oct 20 17:46:03 2002 UTC (21 years, 5 months ago) by seb
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.4: +3 -6 lines
Diff to previous 1.4 (colored) to selected 1.35 (colored)

Use buildlink2. Use perl5/module.mk.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Nov 27 03:19:21 2001 UTC (22 years, 4 months ago) by explorer
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003, buildlink2-base, buildlink2
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored) to selected 1.35 (colored)

Fix a typo -- USE_BUILDLINK_ONLY=YES, not +YES

Revision 1.3 / (download) - annotate - [select for diffs], Mon Nov 26 06:49:37 2001 UTC (22 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.2: +3 -2 lines
Diff to previous 1.2 (colored) to selected 1.35 (colored)

Buildlinkify, in the sense that only the perl headers are found in
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Oct 23 19:27:31 2001 UTC (22 years, 5 months ago) by veego
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored) to selected 1.35 (colored)

Use ${MASTER_SITE_PERL_CPAN:=xx/} and not ${MASTER_SITE_PERL_CPAN:=xx}
This fix a fetch error.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Oct 22 05:46:50 2001 UTC (22 years, 5 months ago) by martti
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.35 (colored)

The Archive::Zip module allows a Perl program to create, manipulate,
read, and write Zip archive files.

Revision 1.1 / (download) - annotate - [select for diffs], Mon Oct 22 05:46:50 2001 UTC (22 years, 5 months ago) by martti
Branch: MAIN
Diff to selected 1.35 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>