summaryrefslogtreecommitdiff
path: root/archivers
AgeCommit message (Collapse)AuthorFilesLines
2016-06-25Updated package to use ocaml.mk framework. No upstream changes.jaapb2-14/+5
2016-06-25Updated package to latest version (1.06) and made it compatible withjaapb3-23/+15
ocaml 4.03 and the latest framework version. Discussed on packages@ and OK'd by jperkin. Changes include: - Switch to "safe string" mode. Some API functions that use to take strings now take byte sequences instead. OCaml 4.02 or up is required. - Update for OCaml 4.03. - Avoid Zlib error when calling Gzip.output with length = 0. - Improve support for ZIP files / ZIP file members greater than 2 Gbytes.
2016-06-23Detect vfsconf for DragonFly, since it doesn't use xvfsconf likejoerg4-0/+32
FreeBSD.
2016-06-22Restore fix for lzma_stream_encoder_mt detection. Lost while syncingjoerg2-4/+11
with upstream.
2016-06-22Make signo static again to reduce diff against upstream.joerg1-5/+1
2016-06-22Provide _PATH_TTY if it is missing.joerg1-0/+4
2016-06-22Updated lhasa to 0.3.1. Security update.wiz2-8/+15
v0.3.1 (2016-03-29): * This release fixes an integer underflow vulnerability in the code for doing LZH level 3 header decodes (TALOS-CAN-0095). Thanks go to Marcin Noga and Regina Wilson of Cisco TALOS for reporting this vulnerability.
2016-06-21From upstream: Dummy out copy_acls if sys/acl.h is missing or ACLjoerg1-0/+4
support is disabled.
2016-06-21libarchive-3.2.1nb1: Merge a number of bugfixes from upstreamjoerg6-27/+83
(1) ctype misuse (2) Don't depend on SIGRTMAX (3) Link against libcrypto when using it for EVP support
2016-06-21Disable maintainer mode for libarchive.joerg1-1/+2
2016-06-21Regenerate.joerg3-167/+269
2016-06-21Support maintainer mode.joerg1-0/+1
2016-06-20Fix configure test for multi-threaded XZ.joerg2-9/+16
2016-06-20Update build glue for libarchive 3.2.1.joerg3-5/+7
2016-06-20Update for libarchive 3.2.1.joerg252-10854/+17721
2016-06-20Import libarchive-3.2.1:joerg402-1559/+59950
- security fixes and other bugfixes - support for multhreading in xz 5.2+
2016-06-13engrampa: Update to 1.14.1:youri3-8/+8
1.14.1 ------ * Translations update * tar: Fixed problems with backslashes * 'All files' is duplicated in available formats * fix extracting files with single-character names.
2016-06-08Bump PKGREVISION for perl-5.24.wiz9-14/+18
2016-06-08Switch to MASTER_SITE_PYPI.wiz1-2/+2
2016-06-08Switch to MASTER_SITES_PYPI.wiz1-2/+2
2016-06-03Instead of build dependency on setuptools just use egg.mk.wiz2-8/+8
While here, mark as not ready for python-3.x.
2016-06-03build of bmap-tools needs setuptoolsjakllsch1-1/+3
2016-05-31(pkgsrc)mef6-259/+20
- two patches are removed, upstream change (upstream) - Updated archivers/gtar to 1.29 Updated archivers/gtar-base to 1.29 Updated archivers/gtar-info to 1.29 ------------------------------------ version 1.29 - Sergey Poznyakoff, 2016-05-16 * New options: --verbatim-files-from, --no-verbatim-files-from The --verbatim-files-from option instructs tar to treat each line read from a file list as a file name, even if it starts with a dash. File lists are supplied with the --files-from (-T) option. By default, each line read from a file list is first stripped off the leading and trailing whitespace and, if the result begins with a dash, it is treated as tar command line option. Use the --verbatim-files-from option to disable this special handling. This facilitates the use of tar with file lists created automatically (e.g. by find(1) command). This option affects all --files-from options that occur after it in the command line. Its effect is reverted by the --no-verbatim-files-from option. * --null option reads file names verbatim The --null option implies --verbatim-files-from. I.e. each line read from null-delimited file lists is treated as a file name. This restores the documented behavior, which was broken in version 1.27. * New options: --owner-map=FILE and --group-map=FILE These two options provide fine-grained control over what user/group names (or IDs) should be mapped when adding files to archive. For both options, FILE is a plain text file with user or group mappings. Empty lines are ignored. Comments are introduced with # sign (unless quoted) and extend to the end of the corresponding line. Each non-empty line defines translation for a single UID (GID). It must consist of two fields, delimited by any amount of whitespace: OLDNAME NEWNAME[:NEWID] OLDNAME is either a valid user (group) name or a ID prefixed with +. Unless NEWID is supplied, NEWNAME must also be either a valid name or a +ID. Otherwise, both NEWNAME and NEWID need not be listed in the system user database. * New option --clamp-mtime The new --clamp-mtime option changes the behavior of --mtime to only use the time specified if the file mtime is newer than the given time. The --clamp-mtime option can only be used together with --mtime. Typical use case is to make builds reproducible: to loose less information, it's better to keep the original date of an archive, except for files modified during the build process. In that case, using reference (and thus reproducible) timestamps for the latter is good enough. See <https://wiki.debian.org/ReproducibleBuilds> for more information. * Deprecated --preserve option removed * Sparse file detection Tar now uses SEEK_DATA/SEEK_HOLE on systems that support it. This allows for considerable speed-up in sparse-file detection. New option --hole-detection is provided, that allows the user to select the algorithm used for hole detection. Available arguments are: --hole-detection=seek Use lseek(2) SEEK_DATA and SEEK_HOLE "whence" parameters. --hole-detection=raw Scan entire file before storing it to determine where holes are located. The default is to use "seek" whenever possible, and fall back to "raw" otherwise.
2016-05-31Updated archivers/gcpio to 2.12mef3-11/+15
------------------------------- (From NEWS) Version 2.12 - Sergey Poznyakoff, 2015-09-12 * Improved documentation. * Manpages are installed by make install. * New options for copy-out mode: ** --ignore-devno Store 0 in the device number fields, instead of the actual device number. ** --renumber-inodes Renumber inodes when storing them in the archive. ** --device-independent or --reproducible Create reproducible archives. This is equivalent to --ignore-devno --renumber-inodes.
2016-05-30(pkgsrc)mef3-9/+12
- Add LICENSE as gnu-gpl-v3 - Add comment on patch-aa picking from cvs log (upstream) - Updated archivers/advancecomp to 1.19 ------------------------------------- ADVANCECOMP VERSION 1.19 2014/03 ================================ * Limited the iterations number to 255 with the -3 option. * Added a new -k, --keep-file-time option to advzip [Marco Banfi]. * Made the Windows binary again compatible with old 686 processors. ADVANCECOMP VERSION 1.18 2013/11 ================================ * Added build support for new powerpc architectures. * Fixed build with BZIP. ADVANCECOMP VERSION 1.17 2013/03 ================================ * Changed to GPL3. * Added zopfli support. It's enabled using -4, --shrink-insane. You can control the number of iterations with the new -i, --iter option. Thanks to Darik Horn for the patches.
2016-05-29Updated py-libarchive-c to 2.4.wiz2-13/+8
This is a fix release that doesn't change the library code. Details: fixed file permissions in PyPI archives (#30) fixed Travis CI builds (#32)
2016-05-28Update libzip to 1.1.3:wiz2-7/+7
1.1.3 [2016-05-28] ================== * Fix build on Windows when using autoconf.
2016-05-25Add karchivemarkd1-1/+2
2016-05-25Add karchive 5.21.0 part of KDE Frameworks 5markd5-0/+76
KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. It also provides transparent compression and decompression of data, like the GZip format, via a subclass of QIODevice.
2016-05-22Update py-libarchive-c to 2.3:wiz2-9/+9
License changed to cc0. Add link to upstream bug report about permissions problem.
2016-05-22Revert previous, permissions fixup is still needed here.wiz1-1/+5
2016-05-21+ engrampayouri1-1/+2
2016-05-21Import engrampa-1.14.0 as archivers/engrampa.youri5-0/+326
Engrampa is a fork of File-Roller. Engrampa is an archive manager for the MATE environment. This means that you can create and modify archives; view the content of an archive; view and modify a file contained in the archive; extract files from the archive. Engrampa is only a front-end (a graphical interface) to archiving programs like tar and zip.
2016-05-21post-install chmod no longer necessaryrichard1-5/+1
2016-05-14Updated archivers/sarab to 1.0.0mef2-8/+8
--------------------------------- ===================================================== 02/21/2010 - SaraB version 1.0.0 ===================================================== * SaraB can now be installed and run with path names containing space characters * Corrected wrong samples for TOH backup schedules ===================================================== 02/15/2009 - SaraB version 0.2.7 ===================================================== Changes pointed out by Ivan Savcic <isavcic@gmail.com>: * added -Q option by default when executing DAR * DAR exit code variable fixed * DAR exit code 5 is treated as warning now * overall improved handling of warnings ===================================================== 11/28/2008 - SaraB version 0.2.6 ===================================================== * improvements to install.sh * DAR exit code 11 is treated as warning now * support for post backup script ===================================================== 08/30/2008 - SaraB version 0.2.5 ===================================================== * sarab.sh can be run via sudo (effective user id is checked) * fix to install.sh * install.sh now locates dar on path
2016-05-08+bmap-toolsjakllsch1-1/+2
2016-05-08Add bmap-tools-3.2 as archivers/bmap-toolsjakllsch4-0/+51
Bmaptool is a generic tool for creating the block map (bmap) for a file and copying files using the block map. The idea is that large files, like raw system image files, can be copied or flashed a lot faster and more reliably with bmaptool than with traditional tools, like "dd" or "cp".
2016-05-05Recursive revbump associated with ocaml update.jaapb1-2/+2
2016-05-05Revbump associated with ocaml update. Also added patches to make packagejaapb5-5/+35
compile with newest zlib/ocaml.
2016-05-05Changes 5.3.11:adam2-7/+7
Unknown
2016-05-03Reset maintainer (observer now).wiz1-2/+2
2016-04-17Update to 2.24wen2-8/+7
Upstream changes: 2.23 2015-06-08 rurban - HP-UX lddlflags fix by Merjin Brand (RT #105096) "ld: Unrecognized argument: -Wl,-E" - -Wformat fixes 2.24 2015-12-08 rurban - Silence gcc-5 optimizer warning (RT #105647) with internal BUILD_BZLIB=1 - Improve kwalitee test
2016-04-15Update innoextract to 1.6.wiz2-7/+7
innoextract 1.6 (2016-03-24) - Added support for Inno Setup 5.5.7 (and 5.5.8) installers - Added a --collisions=rename-all option - Changed --collisions=rename to omit the suffix for the file that would have been extracted with --collisions=overwrite instead of the first encountered file - Fixed @lang suffix sometimes missing for the first file with the --collisions=rename option - Fixed build error with CMake 3.5 - Now compiles in C++14 mode if supported - Unsafe characters in special constant strings (ie ':' in {code:…}) are now replaced with '$' - Windows: Fixed error message if the source file could not be opened - Windows: Fixed progress bar flickering while printing extracted filenames - Windows binaries: Fixed crash on platforms without AVX support
2016-04-11Update to 15.14.1ryoon2-8/+8
Fix PR pkg/51059 Changelog: Version 15.14.1 =============== - patch #32 Compiling in OS X fails with p7zip_15.14
2016-04-09add nautilus option to put back nautilus actions sub-menurichard3-4/+23
bump PKGREVISION
2016-04-08Update p5-Archive-Zip to 1.57:wiz2-7/+7
1.57 Fri 1 Apr 2016 - RT# 106548,106089,105330,111541 [github/ozcoder]
2016-04-07Update to 15.14ryoon6-324/+51
* Convert to use option framework Changelog: Version 15.14 ============= - patch #26 : Patch to correctly set permissions for docs that permits non-sudo deletion of docs - patch #27 : Update Mac OS X LLVM 64bits Makefile - patch #28 : p7zip version 15.09 fails to build on s390 - patch #29 : please fix incorrect fsf address - patch #31 : p7zip 15.09 fails to build on mips - bug : "7za a -p ..." was fixed - bug #172 : Impossible to create archive with some unicode symbols in filename - From Windows version of 7-Zip 15.13: - The BUG in 15.13 in CAB code was fixed. - From Windows version of 7-Zip 15.12: - Some bugs were fixed. - New localization: Yoruba. - test_emul becomes test_lib (tests libraries) - cross building added : makefile.linux_cross_mipsel - support for android 5+ (-fPIE -pie) Version 15.12 (never published) ============= - From Windows version of 7-Zip 15.12 : - "There are no errors" string after "Test" operation inside archive. - The bugs in LZMA SDK were fixed (but these bugs are not related directly to 7-Zip's code). - From Windows version of 7-Zip 15.11 : - Some bugs were fixed. - 7-Zip 15.10 showed incorrect error message about missing volume for multivolume RAR archives. - ..../LZHAM added Version 15.10 beta ================== - bug #147 Directory traversal through symlinks Bug-Debian: https://bugs.debian.org/774660 Delay creation of symlinks to prevent arbitrary file writes (CVE-2015-1038) Fix given by Ben Hutchings - From Windows version of 7-zip 15.10 beta: - The BUG in 9.21 - 15.09 was fixed: 7-Zip could ignore some parameters, specified for archive creation operation for gzip and bzip2 formats in "Add to Archive" window and in command line version (-m switch). - Some bugs were fixed. - extracting from solid wim archives worked incorrectly in some cases, - Also there are some minor changes. - 7-Zip can show the name of missing volume for multivolume RAR and VMDK archives. - Some internal changes with 7-Zip Benchmark.
2016-04-02Reset PKGREVISION after all PHP language packages.taca1-2/+1
2016-03-16MAKEFLAGS -> MAKE_FLAGStnn1-2/+2
2016-03-12MAKEFLAGS -> MAKE_FLAGS (pkgsrc guide 22.1)tnn1-3/+3