summaryrefslogtreecommitdiff
path: root/archivers
AgeCommit message (Collapse)AuthorFilesLines
2006-07-10Pull in OpenSSL, required on Solaris.sketch1-1/+2
2006-07-10Update to 3.6.6:wiz2-6/+6
diff -r 3.6.5/consio.cpp 3.6.6/consio.cpp 124c124 < #elif defined(_EMX) || defined(_BEOS) || defined(__sparc) || defined(sparc) --- > #elif defined(_EMX) || defined(_BEOS) || defined(__sparc) || defined(sparc) || defined (__VMS) diff -r 3.6.5/file.cpp 3.6.6/file.cpp 435c435 < #if defined(_LARGEFILE_SOURCE) && !defined(_OSF_SOURCE) --- > #if defined(_LARGEFILE_SOURCE) && !defined(_OSF_SOURCE) && !defined(__VMS) diff -r 3.6.5/filefn.cpp 3.6.6/filefn.cpp 303c303 < #endif --- > #else 304a305 > #endif diff -r 3.6.5/list.cpp 3.6.6/list.cpp 67c67,70 < switch(Arc.GetHeaderType()) --- > int HeaderType=Arc.GetHeaderType(); > if (HeaderType==ENDARC_HEAD) > break; > switch(HeaderType) diff -r 3.6.5/rar.cpp 3.6.6/rar.cpp 16a17 > 20c21,22 < #ifndef SFX_MODULE --- > > #if !defined(_SFX_RTL_) && !defined(_WIN_32) 21a24 > #endif 23,25c26,27 < #ifdef _EMX < EnumConfigPaths(argv[0],-1); < #endif --- > #if !defined(SFX_MODULE) && defined(_EMX) > EnumConfigPaths(argv[0],-1); diff -r 3.6.5/sha1.cpp 3.6.6/sha1.cpp 210c210 < unsigned char ch='\200'; --- > unsigned char ch=(unsigned char)'\200'; diff -r 3.6.5/unicode.cpp 3.6.6/unicode.cpp 18c18 < if (wcstombs(Dest,Src,DestSize)==-1) --- > if (wcstombs(Dest,Src,DestSize)==(size_t)-1) 56c56 < if (mbstowcs(Dest,Src,DestSize)==-1) --- > if (mbstowcs(Dest,Src,DestSize)==(size_t)-1) diff -r 3.6.5/version.hpp 3.6.6/version.hpp 3,5c3,5 < #define RARVER_BETA 5 < #define RARVER_DAY 15 < #define RARVER_MONTH 6 --- > #define RARVER_BETA 6 > #define RARVER_DAY 3 > #define RARVER_MONTH 7
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam8-16/+16
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam8-8/+16
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-08Add support for dar-int32 and dar-int64 package options.dsainty1-1/+18
Dar is built by default with an arbitrary-size-integer library for managing all file length/timestamp details. If 32-bit or 64-bit integers (with overflow protection) are sufficient for requirements, the dar-int32 and dar-int64 options can significantly reduce the run-time memory and CPU overheads of Dar. Leave the default unchanged (thus no package version bump).
2006-07-06Add LICENSE= and license. Add comments to RESTRICTED; this license isgdt1-1/+5
perhaps not quite as restrictive as our tags, but it's too hard to determine that so continue to err on side of caution.
2006-07-06Add RESTRICTED/NO_*_ON_* since the license does not grant permissiongdt1-1/+6
to redistribute.
2006-07-05Sweep pkgsrc and convert packages that included intltool/buildlink3.mkjlam1-3/+2
to use instead "USE_TOOLS+=intltool". Remove now unused intltool/buildlink3.mk
2006-07-03Update to 3.6.5, diff to 3.6.4:wiz2-6/+6
601a602,604 > else > { > } diff -r 3.6.4/extract.cpp unrar/extract.cpp 31,32c31,46 < while (ExtractArchive(Cmd)==EXTRACT_ARC_REPEAT) < ; --- > while (true) > { > char PrevCmdPassword[MAXPASSWORD]; > strcpy(PrevCmdPassword,Cmd->Password); > > EXTRACT_ARC_CODE Code=ExtractArchive(Cmd); > > /* > restore Cmd->Password which could be changed in IsArchive() call > for next header encrypted archive > */ > strcpy(Cmd->Password,PrevCmdPassword); > > if (Code!=EXTRACT_ARC_REPEAT) > break; > } 143a158 > diff -r 3.6.4/extract.hpp unrar/extract.hpp 8a9,10 > EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd); > 34d35 < EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd); diff -r 3.6.4/version.hpp unrar/version.hpp 3,5c3,5 < #define RARVER_BETA 4 < #define RARVER_DAY 25 < #define RARVER_MONTH 5 --- > #define RARVER_BETA 5 > #define RARVER_DAY 15 > #define RARVER_MONTH 6
2006-06-30Explicitly depend on 1.2.4a with the {,nb[0-9]*} idiom.joerg1-2/+3
We never had any other version in pkgsrc anyway. Still a binary package change, so bump revision.
2006-06-22Only try to chmod the distfile if it is not yet executable. This fixesrillig1-2/+3
unprivileged builds where the distfile has been downloaded by someone else before.
2006-06-21Make this pacakge build with gcc-4. Patches provided by martijnb inminskim2-1/+60
PR pkg/33694.
2006-06-20Remove conflicting declaration of malloc() and realloc(); include stdlib.hminskim2-1/+17
instead.
2006-06-18Fixed pkglint warnings.rillig17-53/+56
2006-06-15Take maintainership.wiz1-2/+2
2006-06-13update to 2.14.3drochner2-6/+6
changes: -bugfix -translation updates
2006-06-10PKGREVISION bump for security fix via Gentoo (CVE-2006-1269)adrianp3-2/+17
2006-06-10Update to 0.55adrianp2-6/+6
* Traverse bug fixes (by vuln@secunia)
2006-06-05Enable NLS support. Bump PKGREVISION.minskim2-3/+21
2006-06-04Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).joerg3-6/+6
While going through the tree, fix some more packages which had similiar issues with too strict conflicts, bump the revisions of those.
2006-06-02Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*,joerg3-6/+8
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or ap2-* respectively. Add new variables to simplify the Makefile handling. Add CONFLICTS on the old names. Reset revisions of bumped packages. ap-php will now depend on the default Apache and PHP version. All programs using it have an implicit option of the Apache version as well. OK from jlam@ and adrianp@.
2006-06-02Uses C++.joerg1-3/+4
2006-05-31Update to 4.42:wiz3-14/+17
Version 4.42 ============ - From Windows version of 7-zip 4.42 : - Some bugs were fixed - patch #1473746 - gzip-like CLI wrapper (for 7z) see the directory "contrib/gzip-like_CLI_wrapper_for_7z". - patch #471478 - Support for OPTFLAGS This patch allows to use system specific opt flags. example : make OPTFLAGS="-O2 -march=athlon-xp" Version 4.41 ============ - From Windows version of 7-zip 4.41 : - Some bugs were fixed Version 4.40 ============ - From Windows version of 7-zip 4.40 : - 7-Zip now can unpack some installers created by NSIS - Some bugs were fixed - format LZH/LHA : fixed directory display during listing or extracting (a directory does not end with the path separator) - patch #1470817 - Handle 7zr in install.sh - code cleanup
2006-05-31Fixed pkglint warnings.rillig1-12/+12
2006-05-30Update to 3.6.4:wiz2-6/+6
diff -r 3.6.3/extract.cpp 3.6.4/extract.cpp 431c431,434 < if (AbsPaths && DestFileName[1]=='_' && IsPathDiv(DestFileName[2])) --- > char DiskLetter=toupper(DestFileName[0]); > > if (AbsPaths && DestFileName[1]=='_' && IsPathDiv(DestFileName[2]) && > DiskLetter>='A' && DiskLetter<='Z') diff -r 3.6.3/version.hpp 3.6.4/version.hpp 3,4c3,4 < #define RARVER_BETA 3 < #define RARVER_DAY 8 --- > #define RARVER_BETA 4 > #define RARVER_DAY 25
2006-05-28Reindented.rillig1-8/+8
2006-05-26Don't update the gtk icon cache on install time.joerg2-1/+14
2006-05-26Changes 2.3.0:adam4-45/+63
- added user_interaction::pause2() method - added the snapshot feature - added the Cache Directory Tagging detection feature - adapted Wesley's patch for a pkgconfig for libdar - more...
2006-05-26Changes 0.8.41:adam7-132/+53
* Added support for libmcrypt * Bug fixes
2006-05-22Move the check-shlibs target from bsd.pkg.mk to bsd.pkg.check.mk wherejlam3-6/+3
it will live with other "check" targets run after package installation. Get rid of SHLIB_HANDLING, whose meaning had mutated over the years from one thing to another. Currently, it is used to basically note whether the system's "ldd" command can be usefully run on the package's binaries and libraries. Rename this variable to CHECK_SHLIBS_SUPPORTED for more clarity. CHECK_SHLIBS is now a variable set exclusively by the user in /etc/mk.conf to note whether the check for missing run-time search paths is performed after a package is installed. It defaults to "no" unless PKG_DEVELOPER is set.
2006-05-18Only one dependent package, and that wants 0.7.1 now.wiz1-3/+2
2006-05-18Update to 0.7.1: bug fix for zip_close.dillo3-19/+6
2006-05-17Update to 3.6.3: changes unknown.wiz2-6/+6
2006-05-17Fixed pkglint warnings.rillig11-25/+26
2006-05-10Fix spelling of PREFIX.joerg1-2/+2
2006-05-10Add bicom-license and point to it. Set RESTRICTED and NO_*_ON_*gdt1-2/+7
because no permission to distribute has been granted. change reviewd by ben@ (maintainer)
2006-05-10According to readme.txt, bicom is free for non-commercial use so long asben2-4/+9
the copyright notice remains intact. There is no formal license. Change back to no-commercial-use and include readme.txt with copyright notice in the package. " Copyright (C) 2000 Matt Timmermans Free for non-commercial purposes as long as this notice remains intact. To discuss commercial use, mail me at matt@timmermans.org "
2006-05-10LICENSE: change no-commercial-use to foo-license (w/o adding them)gdt3-6/+8
2006-05-09Needs unistd.h for optind.joerg2-1/+14
2006-05-07add LICENSE=rar-license, which was already present.gdt1-1/+2
2006-05-07Do not convert char* to int, which may cause an error on 64-bit platforms.minskim3-9/+18
Bump PKGREVISION.
2006-05-06Bump *ABI* for shlib major bump.wiz1-1/+2
2006-05-05Update to 0.7:dillo3-7/+12
* struct zip_stat increased for future encryption support * zip_add return value changed (now returns new index of added file) * shared library major bump because of previous two * added functions for reading and writing file and archive comments. New functions: zip_get_archive_comment, zip_get_file_comment, zip_set_archive_comment, zip_set_file_comment, zip_unchange_archive
2006-05-03As confirmed by Howard Chu, this code is now under the GPL.wiz1-9/+1
Remove LICENSE, RESTRICTED, and NO_*_ON_*.
2006-05-02Update to 5.21o:wiz7-87/+45
CHANGES IN VERSION 5.21o (Howard Chu, 12 Oct 2005) Silence warnings about unused results. CHANGES IN VERSION 5.21n (Howard Chu, 08 Oct 2005) Better fix for temporary file creations, previous patch did not fix marc. Silence all gcc-4.0.0 -Wall warnings. CHANGES IN VERSION 5.21m (Klaus Reimer, 21 Sep 2005) Applied patch from Joey Schulze fixing the following problems: - Fixed insecure permissions of a temporary file [arcsvc.c, CAN-2005-2945] - Fixed insecure temporary file creation [arcsvc.c, CAN-2005-2992] CHANGES IN VERSION 5.21l (Klaus Reimer, 13 Mar 2005) Fixed warnings because missing inclusion of string.h and fixed a gcc-4.0 problem with marc.c (Missing declaration of makefnam). CHANGES IN VERSION 5.21k (Klaus Reimer, 6 Nov 2004) Ulf Harnhammar found some buffer overflows causing segfaults and provided a patch which is now applied to arc to close these bugs. CHANGES IN VERSION 5.21 The following changes have been made in ARC version 5.21, but have not yet been included in the manual: o When adding files to an archive, ARC now shows the stowage facter achieved on each file. o A bug was found that would keep an archive entry from being encrypted if it was stored without compression. This has now been fixed. o If changes are made to a corrupted archive, the corrupted entries are discarded. This makes it possible to lose data accidentally. ARC will now only make changes to a corrupted archive if the W (suppress Warnings) option has been given. o The N (suppress Notes) option now suppresses the "Creating archive" note when a new archive is being created. o The N (suppress Notes) option formerly did nothing useful when used with the L (List files) command. It now causes a terse listing of filenames only, suitable for use with pipes and redirection. o The list of filenames given to ARC may now include indirect references. If a filename begins with an "at sign" ("@"), it is taken to be the name of a file which contains a list of file names. The list of file names may include further indirection. If no extension is given, ".CMD" is assumed. For example, the command: arc a waste junk.txt @trash would cause ARC to add JUNK.TXT plus all files listed in the file TRASH.CMD to an archive named WASTE.ARC. If no file is specified, then the list is read from standard input. For example, the command: arc ln waste | arc a trash @ would cause ARC to add files to TRASH.ARC based on the names of the files stored in WASTE.ARC. It is probably a good idea to give the O (Overwrite) option if you are extracting files this way. Version 5.21 of MARC also allows for indirection.
2006-05-02update to 2.14.2drochner3-11/+9
changes: -Ask for the password when trying to open a password protected rar or arj archive -Updated the user's guide -Added help button to all the dialogs -Install theme-friendly icon -bugfixes
2006-05-02Add LICENSE=, pointing to nonexistent arc-license, as incrementallygdt1-1/+2
better than a non-free package not having a LICENSE.
2006-05-01Removed preliminary comments.rillig1-11/+1
2006-05-01Update to 1.2.53:xtraeme5-12/+63
* Incorporated Jaakko Heinonen's still-experimental support for extended attributes (Currently Linux-only.). * Reorganized distribution package: There is now one tar.gz file that builds both libarchive and bsdtar. * correctly read cpio device entries, write Pax attribute entry names. * Experimental 'tp' format support in libarchive. Feedback appreciated; this is not enabled by archive_read_support_format_all()
2006-04-28Update to 3.6.2, no changelog available.wiz3-19/+16