2012-09-11 21:47:04 by Aleksej Saushev | Files touched by this commit (95) |
Log message:
"user-destdir" is default these days
|
2012-09-10 14:52:47 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating package for CPAN module Archive::Tar in archivers/p5-Archive-Tar
from 1.84 to 1.90.
upstream changes:
* important changes in version 1.90 05/09/2012 (Tom Jones)
- documentation fixes
* important changes in version 1.88 01/06/2012 (Markus Prosch)
- resolved chown won't work on symlinks
* important changes in version 1.86 24/05/2012 (Mark Allen)
- don't use tell on IO::Zlib handles RT#64339
|
2012-03-05 14:18:42 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating package for CPAN distribution Archive::Tar in
archivers/p5-Archive-Tar from 1.82 to 1.84.
- adding comment why Perl5.10.1 is enough to fulfil IO::Compress::*
Upstream changes:
* important changes in version 1.84 02/03/2012 (HMBRAND)
- ptar now supports -T option [rt#75473]
- ptar now supports dashless options [rt#75475]
- auto-encode filenames marked as UTF-8 [rt#75474]
|
2012-01-26 11:42:21 by Ulrich Habel | Files touched by this commit (2) |
Log message:
Updated archivers/p5-Archive-Tar to 1.82
ChangeLog from upstream:
* important changes in version 1.82 21/11/2011 (CDRAKE)
- Adjustments to handle files >8gb (>0777777777777 octal)
- Feature to return the MD5SUM of files in the archive
|
2011-11-11 12:17:25 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating archivers/p5-Archive-Tar (containing Pure Perl implementation for
tar ball handling) from 1.76 to 1.80.
Upstream changes:
* important changes in version 1.80 13/10/2011
- patch from Rocky Bernstein to add file chown() method [rt#71221]
* important changes in version 1.78 08/09/2011
- patch from Rocky Bernstein to add chown() method [rt#70623]
- blead patch from Alexandr Ciornii to resolve [perl#78708]
|
2011-08-06 14:22:56 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
Changes 1.76:
* upstream blead patches from Peter Acklam
Changes 1.74:
* Skip extracting pax extended headers
|
2010-12-02 13:06:36 by Thomas Klausner | Files touched by this commit (2) |  |
Log message:
Update to 1.72:
* important changes in version 1.72 18/11/2010
- Apply patch from Grant McLean to update docs for
ptargrep
* important changes in version 1.70 15/11/2010
- Add ptargrep utility courtesy of Grant McLean
|
2010-09-03 07:11:57 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating archivers/p5-Archive-Tar from 1.66nb1 to 1.68
Upstream changes:
* important changes in version 1.68 17/08/2010
- Apply a patch from Colin Newell that checks whether long files can be created or
not in 02_methods.t. Hopefully resolves RT #57312 and RT #56163
|
2010-08-21 18:37:14 by Stoned Elipot | Files touched by this commit (1724) |  |
Log message:
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!
|
2010-08-04 20:01:15 by Jens Rehsack | Files touched by this commit (2) |
Log message:
Updating archivers/p5-Archive-Tar from 1.58 to 1.66
pkgsrc changes:
- mark package included in Perl5 CORE
Upstream changes:
* important changes in version 1.66 26/07/2010
- Applied a patch from Alexandr Ciornii [RT#59699] to Makefile.PL which
produces better META.yml
- Apply a patch from Alexandr Ciornii to ptar [RT#59700]:
Adds option -C to allow archives created with ptar to be uploaded to
PAUSE in case of Windows or world +w permissions on unix.
* important changes in version 1.64 09/07/2010
- Removed the PERL_CORE specific chdir from all the tests
- Apply a patch from David Muir Sharnoff RT #58916,
"skip files via a callback and limit memory use when skipping files"
- Apply a patch from Daphne Pfister RT #59150
"Assumes all references filename are IO::Handle's instead of trying
to stringify."
* important changes in version 1.62 28/06/2010
- Apply part of patch from
https://bugzilla.redhat.com/attachment.cgi?id=426194
reported by Martin Cermak in RT #58636 relating to a Redhat ticket
https://bugzilla.redhat.com/show_bug.cgi?id=606813
* important changes in version 1.60 23/04/2010
- Apply patch from Darrell K. [RT #54850] that makes write() and
create_archive() close only handles they opened.
When you pass a filehandle to Archive::Tar::write() or create_archive(),
it closes the filehandle after writing to it. I think it makes more
sense not to close a handle that A::T didn't open, since the application
may need to write additional data to it. (Consider sockets, package
files containing encapsulated tar archives, etc.)
Example:
$ perl -e 'use Archive::Tar; open(PKG, ">mypkg") or die \
"open: $!"; my
$tar = Archive::Tar->new; \
$tar->add_data("foo.txt","hello");
$tar->write(\*PKG); print PKG "more data" or die "print: \
$!";'
print: Bad file descriptor at -e line 1.
- Fool the installer into replacing our scripts that were installed by
core with versiononly set.
|