summaryrefslogtreecommitdiff
path: root/archivers
AgeCommit message (Collapse)AuthorFilesLines
2009-08-12Update php-zip from version 1.0 to version 1.8.10. This appears to be thedsainty2-9/+9
last version that can build under both www/php4 and lang/php5, since version 1.9.0 and 1.10.1 both require PCRE support in the PHP engine, which Pkgsrc php4 seems to build without. Changes since version 1.0: 1.8.10 - Fixed build, missing macro 1.8.9 - Fixed a possible crash in the event directory cannot be created, due to a double free. (Ilia) 1.8.8 - PECL bug #10414, Fixed macros name in stream - Fixed possible leak when open_basedir checks fail in extractTo (Ilia) 1.8.7 - Add missing openbasedir or safemode (php 5.x and 4.x) checks in zip:// stream or ZipArchive::open - Fixed possible relative path issues in zip_open and TS mode (old API) - rename SAFEMODE_CHECKFILE to OPENBASEDIR_CHECKPATH (no confusion when used wiht php6) 1.8.6 - Fixed possible leaks in zip_read() and zip_entry_read (old API) - Fixed leak when an entry is 0 bytes length in ZipArchive::getFrom*() methods - Use snprintf instead sprintf (Ilia, Marcus) - Add examples images and odt in release 1.8.5 - Fixed leaks happening on error (Nuno Lopes) - PHP bug #40228, extractTo does not create recursive empty path (empty1/empty2/) 1.8.4 - Use phplibdir in config.m4 (for lib64 or other custom location) - Add path length sanity checks (Ilia, Tony) - Update year, happy new year 1.8.3 - Fixed threadsafe issue with localtime function, it uses now the php php_localtime_r (Ron Korving, Ilia) 1.8.2 - restore compatibility with php 5.1.0 to 5.1.2 (other versions are not affected) 1.8.1 - PECL #9278, Binary access issues on Windows in any SAPI but CGI, CLI and embed (windows API does not respect "b" mode given to fopen) - Fixed a possible leak in the entries managements (Nuno Lopes) - createEmptyDir returns true one success - Use static for each internal functions when possible (Nuno Lopes) - Update protos in the sources 1.8.0 - Fixed a possible leak in statName and statIndex - Added zipArchive::adEmptyDir() method, creates an empty directory - Fixed setComment when used with a freshly added entry - setComment now returns the expected value (boolean) (Hannes) 1.7.5 - PECL Bug #9082, wrong entry name like "a/b//file.txt" cannot be extracted on windows A "bug" in php mkdir was the cause, a work around has been introduced for php versions before 5.2.0 1.7.4 - PHP Bug #38943, properties in extended class cannot be set - PHP Bug #38944, freshly created archive has no comment or cdir 1.7.3 - PECL Bug #8700, zipArchive::getFromIndex fails - PECL Bug #8676, zipArchive::addFile was not updated and still used VCWD_REALPATH, it now uses expand_filename - Fixed wrong internal types for comment lenghts, does not affect userland script (Nuno Lopes) 1.7.2 - Previous release was broken in non threaded environment. This release works smoothly in threaded and non threaded. Thanks to "FamilleCollet dot com" (Fedora-Extra maintainer for the head up) 1.7.1 - Fix issues with relative path in threaded environment, VCWD_REALPATH is used in ZipArchive::open() and ::addFile 1.7.0 - Add ZIPARCHIVE::OVERWRITE mode for ::open(), creates a new archive and write over an existing file - locateName do not change anymore the state, it can now be used to test an entry - fix possilbe crashes when two entries with the same name have been added - Enhanced safemode support - fix builds against php 6.0 (HEAD) - fix compiler warning (Ilia, Tony) - cleanup phpinfo() output (Ilia) 1.6.0 - Rename Class Zip to ZipArchive, required to be bundled in php 5.2.0 (Zip being a ZipCode in US), making the role of this class more obvious *Gah* 1.5.0 - bring consistency to the method names: - rename zip::delete() to deleteIndex() - add zip::deleteName() - rename zip::statPath to zip::statName() - rename zip::rename to zip::renameIndex() - add zip::renameName(); - add zip::locateName(), returns the index of an entry, allows case insensitive or directory free lookup (ZIP::FL_NOCASE, ZIP::FL_NODIR) - add zip::unchangeName(), ::unchangeIndex(), unchangeAll() and unchangeArchive() revert changes to an entry, to all entries or the archive - add zip::getNameIndex(), get the name of the entry at the given position - Bug #7658, Modify zip archives causes corruption if the data descriptor is used (bit 3 of the general flags) - fix a bug when in the delete and rename methods when the index is lower than 1 - zip::addFile() must return true on success - zip::open() returns now the error code on error and true on success 1.4.1 - Add missing files in the package release 1.4.0 - Add write mode to the archive comment (zip::comment property) - Add zip::setCommentName and ::setCommentIndex, add or remove entrie comment - Add zip::getCommentName and ::getCommentIndex, get an entrie comment - Add zip::setArchiveComment - Full sync with zip-0.7.1 - #8009, modify archives on windows cannot be closed 1.3.1 - #7500, Fix build with php 5.1.0, 5.1.1 and 5.1.2 1.3.0 - Fix possible leak with __set/__get in classes extending the Zip intern object (tony2001[at]php.net) - Added getFromName(), return the contents of an entry using its name - Added getFromIndex(), return the contents of an entry using its index 1.2.3 - #7214, use binary safe string as return value, 0x00 was considered as the end of the content, affected only the procedural API 1.2.2 - fix a bug in internal zip_close, new archives were not written - ::open returns now false on error - update the "create.php" example, status and returned codes are now checked - fix a leak when the ::open method is called twice or more with the same object 1.2.1 - fixed a possible build problem (mkstemp missing) - fix a bug where extending the Zip class does allow to write to a property, see php bugs #36743 (array) 1.2.0 - enable stream by default, * use uri like zip:///path/to/my.zip#entryname.dat (the URI format may change in future version) - add support for print_r/var_dump (Zip object) - add tests for the OO (still need more) - add more example, like using xmlreader and zip stream to parse OpenDocument meta info 1.1.2 - do not create empty file when a zip entry is only a directory (empty or not) 1.1.1 - Fix PHP 5.1 detection at compiletie - fix possible build errors with gcc other than 4.0.x - add better zlib detection - "--with-zlib-dir=[DIR]" added 1.1.0 - replace the old zip extensions - 100% compatible with the old API - added zip creation support (write mode) - added OO interface - Stream support, getStream method returns a file handler - bundled libzip and drop zzlib usage (see http://www.nih.at/libzip/) 1.0 - Initial Release in PECL
2009-08-11Updated to 2.1.5. Added license.zafer2-6/+7
ChangeLog: Added 2008, 2009 to --license statement Allow numeric parameter immediately after -p or -b Enforce parameter after -p, -b, -s, before other options Enforce numeric parameters to have only numeric digits Try to determine the number of processors for -p default Fix --suffix short option to be -S to match gzip [Bloch] Decompress if executable named "unpigz" [Amundsen] Add a little bit of testing to Makefile
2009-08-11remove master site www.engergyhq.es.eu.org. Doesn't resolve anymore.zafer1-3/+2
2009-08-08Actually add patch-aa. Www, permission problems.wiz1-0/+31
2009-08-08fcrackzip was changed and does not conflict any longer. Adapt pattern.wiz1-2/+2
2009-08-08Rename zipinfo to fcrackzipinfo. Addresses PR 40113.wiz3-6/+6
(Upstream didn't react.) Bump PKGREVISION.
2009-08-06getline -> get_linejoerg1-10/+10
2009-07-26Bump PKGREVISION because of BUILDLINK_ABI_DEPENDS.zziplib change.minskim1-1/+2
2009-07-26Set BUILDLINK_ABI_DEPENDS.zziplib because of major number change.minskim1-1/+2
2009-07-26disable a makefile rule which creates nonsense symlinks,drochner2-1/+14
as /usr/pkg/lib/libzzip*.so.10 -> libzzip*.so.13
2009-07-26Update zziplib to 0.13.56.minskim6-54/+29
Major change since 0.10.x: There were some problematic zip files out there that can trigger segfaults in 0.10.x. Later zzip file decoders have extra checks and helper routines for that.
2009-07-22Remove USE_DIRS from pkgsrc.wiz1-2/+1
Shared directories can now be created independently by the pacakges needing them and will be removed automatically by pkg_delete when empty. Packages needing empty directories can use the @pkgdir command in PLIST. Discussed and ok'd in thread starting at http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
2009-07-17Fixed some pkglint warnings.rillig3-9/+10
2009-07-15+ lzip.wiz1-1/+2
2009-07-15Initial import of lzip-1.7:wiz4-0/+42
Lzip is a lossless data compressor based on the LZMA algorithm, with very safe integrity checking and a user interface similar to the one of gzip or bzip2. Lzip decompresses almost as fast as gzip and compresses better than bzip2, which makes it well suited for software distribution and data archiving.
2009-07-13+ pigz.wiz1-1/+2
2009-07-13Initial import of pigz-2.1.4:wiz4-0/+35
pigz, which stands for Parallel Implementation of GZip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data.
2009-07-09update to 2.26.3drochner2-6/+6
changes: bugfixes
2009-07-07pkgsrc changes:sno2-7/+7
- 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
2009-07-07Replace xz-utils with xz.minskim5-92/+2
2009-07-07Reimport xz-4.999.8beta archivers/xz so that the directory nameminskim4-0/+90
matches PKGNAME. This replaces archivers/xz-utils. OK'ed by wiz@.
2009-07-06fix previous more correctly: just remove the offending file,drochner3-16/+7
it will be rebuilt
2009-07-05Add a patch to changeapb2-1/+15
#include "/home/paolo/workspace/file-roller/src/typedefs.h" to #include "typedefs.h". in src/fr-enum-types.c. Not bumping PKGREVISION because the build failed previously. There are many other references to /home/paolo/workspace, but all the others are inside comments.
2009-06-30Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build withjoerg3-3/+9
MAKE_JOBS=2 and worked without.
2009-06-15pkgsrc changes:sno2-6/+7
- Updating package of p5 module Archive::Tar from 1.48 to 1.52 - Setting LICENSE to ${PERL5_LICENSE} according to module documentation Upstream changes: * important changes in version 1.52 13/06/2009: - Apply documentation patch to describe IBM APAR issue IZ50240; AIX tar does not always end a Tar archive with a 0x00 null block, which can cause warnings from Archive::Tar. This is a documentation patch only, and users of 1.50 need not upgrade. * important changes in version 1.50 12/06/2009: - Apply patch in #46450: Support for --no-same-permissions style behavior This facilitates leaving the +x bit, while still applying your umask on the extracted file.
2009-06-14Don't create documentation diectoryjoerg1-2/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg29-141/+29
2009-06-08lzma and xz-utils conflict as well.wiz2-4/+4
2009-06-08Conflict with new xz-utils package.wiz1-2/+2
2009-06-08+ xz-utils.wiz1-1/+2
2009-06-08Initial import of xz-utils-4.999.8beta:wiz4-0/+91
LZMA is a general purporse compression algorithm designed by Igor Pavlov as part of 7-Zip. It provides high compression ratio while keeping the decompression speed fast. XZ Utils are an attempt to make LZMA compression easy to use on free (as in freedom) operating systems. This is achieved by providing tools and libraries which are similar to use than the equivalents of the most popular existing compression algorithms. XZ Utils consist of a few relatively separate parts: * liblzma is an encoder/decoder library with support for several filters (algorithm implementations). The primary filter is LZMA. * libzfile (or whatever the name will be) enables reading from and writing to gzip, bzip2 and LZMA compressed and uncompressed files with an API similar to the standard ANSI-C file I/O. [ NOTE: libzfile is not implemented yet. ] * xz command line tool has almost identical syntax than gzip and bzip2. It makes LZMA easy for average users, but also provides advanced options to finetune the compression settings. * A few shell scripts make diffing and grepping LZMA compressed files easy. The scripts were adapted from gzip and bzip2.
2009-06-08Changes 9.04:adam3-11/+11
* 7-Zip now can update solid .7z archives. * 7-Zip now supports LZMA2 compression method. * 7-Zip now supports XZ archives. * 7-Zip now can unpack NTFS, FAT, VHD and MBR archives. * 7-Zip now can unpack GZip, BZip2, LZMA, XZ and TAR archives from stdin. * New -scrc switch to calculate total CRC-32 during extracting / testing. * Some bugs were fixed.
2009-06-05Update to 4.65jakllsch2-9/+10
Various changes since 4.43, prehaps most noticable to this package is the change of license.
2009-05-22update master sitezafer1-2/+2
2009-05-19Update to 2.26.2, set LICENSE to gnu-gpl-v2.wiz2-8/+9
version 2.26.2 -------------- Bugs fixed: * #503240: File-roller kills the entire session when aborted New or updated application translations: * Estonian * Spanish * Greek New or updated manual translations: * British English * Greek
2009-05-19Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENTwiz15-57/+54
block). Uncomment some commented out LICENSE lines while here.
2009-05-13Rename strnlen -> _strnlen to avoid conflict in systems having strnlen.hasso2-5/+23
2009-05-02agc's homepage is most of the time offline. disable master site. fetch from ↵zafer1-2/+2
backup.
2009-05-02No ftp service at rarlab. removed.zafer1-3/+2
2009-04-25fix distinfo from previous commitgdt1-16/+16
2009-04-25Apply massive patch from PR pkgsrc/38449 by Olaf 'Rhialto' Seibert.gdt16-53/+109
2009-04-23PkgSrc changes:sno2-7/+6
- Updating package for p5 module Archive::Tar to 1.48 Upstream changes: * important changes in version 1.48 20/04/2009: - Address #44680 (Improve error reporting on short corrupted archives) Archives of less than 512 bytes would not have a clear error string set - Requires at least IO::Compres::* 2.015, to address: #43609: Memory problem with A::T. Turns out 2.012 was leaking memory.
2009-04-17update to 2.26.1drochner3-14/+16
changes: -bugfixes -translation updates
2009-04-13Update to 1.0, provided by Bartosz Kuzma in PR 41193.wiz3-21/+10
Add LICENSE. Changes: version 1.0 Mon Aug 4 08:24:40 CEST 2008 - fix a segfault when the zip cannot be opened, patch by Peter Kortschack. - make use_unzip unstatic. - update to current autoconf/automake.
2009-04-12PkgSrc changes:sno1-2/+3
- Fix dependency to p5-IO-Compress
2009-04-11PkgSrc changes:sno1-2/+3
- 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()
2009-04-09Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions.joerg4-11/+4
2009-04-08Use META_PACKAGE.joerg1-9/+3
2009-04-07Fix minitar script: require_gem method is deprecated since RubyGemsseb3-2/+20
0.9.0 and had been removed since RubyGems 1.0.0, use gem method instead. Bump PKGREVISION to 1.
2009-03-28Add a buildlink3.mk file for wip/synce-kde and wip/synce-orange.wiz1-0/+14