Commit graph

2828 commits

Author SHA1 Message Date
adam
5c16062db1 py-zipp: updated to 0.6.0
v0.6.0

When adding implicit dirs, ensure that ancestral directories
are added and that duplicates are excluded.

The library now relies on more_itertools
2019-09-02 08:31:17 +00:00
markd
2576a98216 karchive: update to 5.61.0
5.61.0
  KTar::openArchive: Don't assert if file has two root dirs
  KZip::openArchive: Don't assert when opening broken files
5.60.0
  Do not crash if the inner file wants to be bigger than QByteArray max size
5.59.0
  Test reading and seeking in KCompressionDevice
  KCompressionDevice: Remove bIgnoreData
  KAr: fix out-of-bounds read (on invalid input) by porting to QByteArray
  KAr: fix parsing of long filenames with Qt-5.10
  KAr: the permissions are in octal, not decimal
  KAr::openArchive: Also check ar_longnamesIndex is not < 0
  KAr::openArchive: Fix invalid memory access on broken files
  KAr::openArchive: Protect against Heap-buffer-overflow in broken files
  KTar::KTarPrivate::readLonglink: Fix crash in malformed files
5.58.0
  KTar: Protect against negative longlink sizes
  Fix invalid memory write on malformed tar files
  Fix memory leak when reading some tar files
  Fix uninitialized memory use when reading malformed tar files
  Fix stack-buffer-overflow read on malformed files
  Fix null-dereference on malformed tar files
  Install krcc.h header
  Fix double delete on broken files
  Disallow copy of KArchiveDirectoryPrivate and KArchivePrivate
  Fix KArchive::findOrCreate running out of stack on VERY LONG paths
  Introduce and use KArchiveDirectory::addEntryV2
  removeEntry can fail so it's good to know if it did
  KZip: fix Heap-use-after-free in broken files
2019-08-27 20:10:04 +00:00
adam
81aa2e4209 lz4: updated to 1.9.2
LZ4 v1.9.2
fix : out-of-bound read in exceptional circumstances when using decompress_partial()
fix : slim opportunity for out-of-bound write with compress_fast() with a large enough input and when providing an output smaller than recommended (< LZ4_compressBound(inputSize))
fix : rare data corruption bug with LZ4_compress_destSize()
fix : data corruption bug when Streaming with an Attached Dict in HC Mode
perf: enable LZ4_FAST_DEC_LOOP on aarch64/GCC by default
perf: improved lz4frame streaming API speed
perf: speed up lz4hc on slow patterns when using external dictionary
api: better in-place decompression and compression support
cli : --list supports multi-frames files
cli: --version outputs to stdout
cli : add option --best as an alias of -12
misc: Integration into oss-fuzz
2019-08-26 07:09:47 +00:00
ryoon
edacf2bbcb Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
adam
88a94c747c zstd: updated to 1.4.3
Zstandard v1.4.3

Dictionary Compression Regression
We discovered an issue in the v1.4.2 release, which can degrade the effectiveness of dictionary compression. This release fixes that issue.

Detailed Changes
* bug: Fix Dictionary Compression Ratio Regression
* bug: Fix Buffer Overflow in v0.3 Decompression
* build: Add support for IAR C/C++ Compiler for Arm
* misc: Add NULL pointer check in util.c by
2019-08-20 13:04:52 +00:00
bsiegert
2b7e432294 Recursive bump of all packages using Go after Go 1.12.8 update. 2019-08-14 15:45:31 +00:00
leot
a09286fb4d upx: Reset MAINTAINER (mail bouncing) 2019-08-12 11:08:36 +00:00
wiz
84e123ddd2 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
brook
93e94bec97 Update all R packages to canonical form.
The canonical form [1] of an R package Makefile includes the
following:

- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
  needed), and CATEGORIES.

- HOMEPAGE is not present but defined in math/R/Makefile.extension to
  refer to the CRAN web page describing the package.  Other relevant
  web pages are often linked from there via the URL field.

This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.

[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html
2019-08-08 19:53:36 +00:00
maya
1f61ac7537 hpack: use -std=gnu89 for older GNU inline semantics.
(Code requires expertise in C archaeology to understand...)

Fixes build on newer MacOS.
From Clement Bouvier in PR pkg/54358
2019-08-05 19:21:12 +00:00
prlw1
fa17f017cc Update libmspack to 0.10.1alpha
2019-02-18  Stuart Caie <kyzer@cabextract.org.uk>

       * chmd_read_headers(): a CHM file name beginning "::" but shorter
       than 33 bytes will lead to reading past the freshly-allocated name
       buffer - checks for specific control filenames didn't take length
       into account. Thanks to ADLab of Venustech for the report and
       proof of concept.

2019-02-18  Stuart Caie <kyzer@cabextract.org.uk>

       * chmd_read_headers(): CHM files can declare their chunks are any
       size up to 4GB, and libmspack will attempt to allocate that to
       read the file.

       This is not a security issue; libmspack doesn't promise how much
       memory it'll use to unpack files. You can set your own limits by
       returning NULL in a custom mspack_system.alloc() implementation.

       However, it would be good to validate chunk size further. With no
       offical specification, only empirical data is available. All files
       created by hhc.exe have a chunk size of 4096 bytes, and this is
       matched by all the files I've found in the wild, except for one
       which has a chunk size of 8192 bytes, which was created by someone
       developing a CHM file creator 15 years ago, and they appear to
       have abandoned it, so it seems 4096 is a de-facto standard.

       I've changed the "chunk size is not a power of two" warning to
       "chunk size is not 4096", and now only allow chunk sizes between
       22 and 8192 bytes. If you have CHM files with a larger chunk size,
       please send them to me and I'll increase this upper limit.

       Thanks to ADLab of Venustech for the report.

2019-02-18  Stuart Caie <kyzer@cabextract.org.uk>

       * oabd.c: replaced one-shot copying of uncompressed blocks (which
       requires allocating a buffer of the size declared in the header,
       which can be 4GB) with a fixed-size buffer. The buffer size is
       user-controllable with the new msoab_decompressor::set_param()
       method (check you have version 2 of the OAB decompressor), and
       also controls the input buffer used for OAB's LZX decompression.

       Reminder: compression formats can dictate how much memory is
       needed to decompress them. If memory usage is a security concern
       to you, write a custom mspack_system.alloc() that returns NULL
       if "too much" memory is requested. Do not rely on libmspack adding
       special heuristics to know not to request "too much".

       Thanks to ADLab of Venustech for the report.
2019-08-05 13:39:24 +00:00
adam
56af723721 zstd: updated to 1.4.2
Zstandard v1.4.2

Legacy Decompression Fix

This release is a small one, that corrects an issue discovered in the previous release. Zstandard v1.4.1 included a bug in decompressing v0.5 legacy frames, which is fixed in v1.4.2.

Detailed Changes

bug: Fix bug in zstd-0.5 decoder
bug: Fix seekable decompression in-memory API
bug: Close minor memory leak in CLI
misc: Validate blocks are smaller than size limit
misc: Restructure source files
2019-08-02 04:44:21 +00:00
brook
710246e9a0 Initial commit.
Cross-Platform 'zip' Compression Library. A replacement for the 'zip'
function, that does not require any additional external tools on any
platform.
2019-07-30 22:26:11 +00:00
wiz
1ac2210b6f *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
nia
6c1f677278 bzip2: Update to 1.0.8. This changes the upstream to sourceware.org.
1.0.8 (13 Jul 19)
~~~~~~~~~~~~~~~~~

* Accept as many selectors as the file format allows.
  This relaxes the fix for CVE-2019-12900 from 1.0.7
  so that bzip2 allows decompression of bz2 files that
  use (too) many selectors again.

* Fix handling of large (> 4GB) files on Windows.

* Cleanup of bzdiff and bzgrep scripts so they don't use
  any bash extensions and handle multiple archives correctly.

* There is now a bz2-files testsuite at
  https://sourceware.org/git/bzip2-tests.git

1.0.7 (27 Jun 19)
~~~~~~~~~~~~~~~~~

* Fix undefined behavior in the macros SET_BH, CLEAR_BH, & ISSET_BH

* bzip2: Fix return value when combining --test,-t and -q.

* bzip2recover: Fix buffer overflow for large argv[0]

* bzip2recover: Fix use after free issue with outFile (CVE-2016-3189)

* Make sure nSelectors is not out of range (CVE-2019-12900)
2019-07-21 11:51:24 +00:00
wiz
d03d59b66d zstd: update to 1.4.1.
v1.4.1
bug: Fix data corruption in niche use cases by @terrelln (#1659)
bug: Fuzz legacy modes, fix uncovered bugs by @terrelln (#1593, #1594, #1595)
bug: Fix out of bounds read by @terrelln (#1590)
perf: Improve decode speed by ~7% @mgrice (#1668)
perf: Slightly improved compression ratio of level 3 and 4 (ZSTD_dfast) by @cyan4973 (#1681)
perf: Slightly faster compression speed when re-using a context by @cyan4973 (#1658)
perf: Improve compression ratio for small windowLog by @cyan4973 (#1624)
perf: Faster compression speed in high compression mode for repetitive data by @terrelln (#1635)
api: Add parameter to generate smaller dictionaries by @tyler-tran (#1656)
cli: Recognize symlinks when built in C99 mode by @felixhandte (#1640)
cli: Expose cpu load indicator for each file on -vv mode by @ephiepark (#1631)
cli: Restrict read permissions on destination files by @chungy (#1644)
cli: zstdgrep: handle -f flag by @felixhandte (#1618)
cli: zstdcat: follow symlinks by @vejnar (#1604)
doc: Remove extra size limit on compressed blocks by @felixhandte (#1689)
doc: Fix typo by @yk-tanigawa (#1633)
doc: Improve documentation on streaming buffer sizes by @cyan4973 (#1629)
build: CMake: support building with LZ4 @leeyoung624 (#1626)
build: CMake: install zstdless and zstdgrep by @leeyoung624 (#1647)
build: CMake: respect existing uninstall target by @j301scott (#1619)
build: Make: skip multithread tests when built without support by @michaelforney (#1620)
build: Make: Fix examples/ test target by @sjnam (#1603)
build: Meson: rename options out of deprecated namespace by @lzutao (#1665)
build: Meson: fix build by @lzutao (#1602)
build: Visual Studio: don't export symbols in static lib by @scharan (#1650)
build: Visual Studio: fix linking by @absotively (#1639)
build: Fix MinGW-W64 build by @myzhang1029 (#1600)
misc: Expand decodecorpus coverage by @ephiepark (#1664)
2019-07-21 08:37:34 +00:00
wiz
c30c5fbc0b *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
nia
d75e9ee54f p7zip: Apply a patch for CVE-2017-17969 (out-of-bounds-write)
Bump PKGREVISION
2019-07-18 10:03:26 +00:00
nia
002101c67c Use https for xfce.org subdomains. 2019-07-18 08:15:34 +00:00
nia
09b44eb1b4 unzip: Apply a patch from CVE-2018-18384
from infozip's sourceforge / debian.
2019-07-15 14:08:03 +00:00
adam
8c476dea77 py-zipp: updated to 0.5.2
v0.5.2
Parent of a directory now actually returns the parent.
2019-07-13 09:32:04 +00:00
bsiegert
75e6d392bc gcpio: Fix Darwin and Interix builds.
- disable rmt on Darwin
- correctly put in variables to PLIST

Patch from Clement Bouvier in PR pkg/54354.
2019-07-07 08:54:30 +00:00
bsiegert
c41b79be21 Do not build static binaries on macOS.
Reported by Clement Bouvier in PR pkg/54352.
I did not try a build on Darwin as I no longer own a Mac.
2019-07-06 16:29:10 +00:00
nia
314d0da6b3 Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
ryoon
57d0806c39 Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
nia
d5c846b3af 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.
2019-06-30 20:14:13 +00:00
taca
322e59b2a1 archivers/ruby-zip: update to 1.2.3
Update ruby-zip to 1.2.3, here is release note.

1.2.3 (2019-05-23)

* Allow tilde in zip entry names #391 (fixes regression in 1.2.2 from #376)
* Support frozen string literals in more files #390
* Require pathname explicitly #388 (fixes regression in 1.2.2 from #376)

Tooling / Documentation:

* CI updates #392, #394
  - Bump supported ruby versions and add 2.6
  - JRuby failures are no longer ignored (reverts #375 / part of #371)
* Add changelog entry that was missing for last release #387
* Comment cleanup #385

Since the GitHub release information for 1.2.2 is missing, I will also include
it here:

1.2.2 (2018-09-01)

NB: This release drops support for extracting symlinks, because there was no
clear way to support this securely. See #376 (comment) for details.

* Fix CVE-2018-1000544 #376 / #371
* Fix NoMethodError: undefined method `glob' #363
* Fix handling of stored files (i.e. files not using compression) with general
  purpose bit 3 set #358
* Fix close on StringIO-backed zip file #353
* Add Zip.force_entry_names_encoding option #340
* Update rubocop, apply auto-fixes, and fix regressions caused by said
  auto-fixes #332, #355
* Save temporary files to temporary directory (rather than current directory)
  #325

Tooling / Documentation:

* Turn off all terminal output in all tests #361
* Several CI updates #346, #347, #350, #352
* Several README improvements #345, #326, #321
2019-06-15 03:05:44 +00:00
adam
b8a45b08d9 py-zipp: added BUILD_DEPENDS 2019-06-12 08:37:58 +00:00
adam
17c8a63a8e py-lz4: updated to 2.1.10
v2.1.10:
Cleanup some code in _block.c to suppress some compiler warnings
Add some more detail to the install docs
Move to cibuildwheel 0.11.1
2019-06-10 07:45:44 +00:00
adam
b832b1fdca py-lz4: updated to 2.1.9
v2.1.9:
Update bundled lz4 library to version 1.9.1

v2.1.8:
Fix OSX wheel builds

v2.1.7:
Fix a bug on windows
2019-06-07 07:22:49 +00:00
adam
28d88c9355 py-zipp: added version 0.5.1
A pathlib-compatible Zipfile object wrapper. A backport of the Path object.
2019-05-29 19:48:29 +00:00
bsiegert
6b2717c133 Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
rillig
c7ff05f63e all: replace SUBST_SED with the simpler SUBST_VARS
pkglint -Wall -r --only "substitution command" -F

With manual review and indentation fixes since pkglint doesn't get that
part correct in every case.
2019-05-23 19:22:54 +00:00
adam
c1356bd0ea unrarsrc: updated to 5.7.5
5.7.5:
Unknown changes
2019-05-20 09:24:48 +00:00
adam
de54b52055 py-zstandard: updated to 0.11.1
0.11.1:
* Fix memory leak in ZstdDecompressionReader.seek()
2019-05-15 09:09:49 +00:00
gutteridge
7b4724dbc9 engrampa: update to 1.22.1
### engrampa 1.22.1

    sync with transifex
    Help: replace link linkend with xref linkend
    file-utils: avoid out of bound memory access
    actions: avoid use of memory after it is freed
    fr-process: Fix memory leak: 'g_shell_quote' needs to be freed
    fr-process: Fix memory leak: 'g_strconcat' needs to be freed
    [Security] fr-process: avoid 'strcpy' and 'strcat'
    fr-process: Fix memory leak
    Help: Fix version to 1.22
    help: update copyright
    Upgrade the manual to docbook 5.0
2019-05-08 02:05:31 +00:00
wiedi
77cc02674c gtar: fix build on SunOS
resolve conflict with sys/limits.h
2019-05-02 20:27:42 +00:00
wiz
420981249c py-zstandard: adapt for zstd-1.4.0 and depend on it
Bump PKGREVISION.
2019-05-02 10:10:56 +00:00
bacon
88d2b2d2a6 archivers/szip: Add suggestion to DESCR to use libaec instead
libaec is BSD licensed while szip is not redistributable
2019-05-01 22:11:12 +00:00
wiz
0857e0f8f3 zstd: update to 1.4.0.
v1.4.0
perf: Improve level 1 compression speed in most scenarios by 6% by @gbtucker and @terrelln
api: Move the advanced API, including all functions in the staging section, to the stable section
api: Make ZSTD_e_flush and ZSTD_e_end block for maximum forward progress
api: Rename ZSTD_CCtxParam_getParameter to ZSTD_CCtxParams_getParameter
api: Rename ZSTD_CCtxParam_setParameter to ZSTD_CCtxParams_setParameter
api: Don't export ZSTDMT functions from the shared library by default
api: Require ZSTD_MULTITHREAD to be defined to use ZSTDMT
api: Add ZSTD_decompressBound() to provide an upper bound on decompressed size by @shakeelrao
api: Fix ZSTD_decompressDCtx() corner cases with a dictionary
api: Move ZSTD_getDictID_*() functions to the stable section
api: Add ZSTD_c_literalCompressionMode flag to enable or disable literal compression by @terrelln
api: Allow compression parameters to be set when a dictionary is used
api: Allow setting parameters before or after ZSTD_CCtx_loadDictionary() is called
api: Fix ZSTD_estimateCStreamSize_usingCCtxParams()
api: Setting ZSTD_d_maxWindowLog to 0 means use the default
cli: Ensure that a dictionary is not used to compress itself by @shakeelrao
cli: Add --[no-]compress-literals flag to enable or disable literal compression
doc: Update the examples to use the advanced API
doc: Explain how to transition from old streaming functions to the advanced API in the header
build: Improve the Windows release packages
build: Improve CMake build by @hjmjohnson
build: Build fixes for FreeBSD by @lwhsu
build: Remove redundant warnings by @thatsafunnyname
build: Fix tests on OpenBSD by @bket
build: Extend fuzzer build system to work with the new clang engine
build: CMake now creates the libzstd.so.1 symlink
build: Improve Menson build by @lzutao
misc: Fix symbolic link detection on FreeBSD
misc: Use physical core count for -T0 on FreeBSD by @cemeyer
misc: Fix zstd --list on truncated files by @kostmo
misc: Improve logging in debug mode by @felixhandte
misc: Add CirrusCI tests by @lwhsu
misc: Optimize dictionary memory usage in corner cases
misc: Improve the dictionary builder on small or homogeneous data
misc: Fix spelling across the repo by @jsoref
2019-05-01 08:24:57 +00:00
adam
1be3a24628 lz4: updated to 1.9.1
LZ4 v1.9.1
Changes
fix : decompression functions were reading a few bytes beyond input size
api : fix : lz4frame initializers compatibility with c++
cli : added command --list
build: improved Windows build
build: AIX, by Norman Green

LZ4 v1.9.0
This release brings an assortment of small improvements and bug fixes, as detailed below :
perf: large decompression speed improvement on x86/x64 (up to +20%)
api : changed : _destSize() compression variants are promoted to stable API
api : new : LZ4_initStream(HC), replacing LZ4_resetStream(HC)
api : changed : LZ4_resetStream(HC) as recommended reset function, for better performance on small data
cli : support custom block sizes
build: source code can be amalgamated, by Bing Xu
build: added meson build
build: new build macros : LZ4_DISTANCE_MAX, LZ4_FAST_DEC_LOOP
install: MidnightBSD
install: msys2 on Windows 10
2019-04-30 09:17:38 +00:00
bacon
d04c9125cd Add libaec 2019-04-29 15:52:37 +00:00
bacon
f422e3411d archivers/libaec: import libaec-1.0.4
Libaec provides fast lossless compression of 1 up to 32 bit wide signed
or unsigned integers (samples). The library achieves best results for
low entropy data as often encountered in space imaging instrument data or
numerical model output from weather or climate simulations. While floating
point representations are not directly supported, they can also be efficiently
coded by grouping exponents and mantissa.

Libaec implements Golomb-Rice coding as defined in the Space Data System
Standard documents 121.0-B-2 and 120.0-G-2.

Libaec includes a free drop-in replacement for the SZIP library.
2019-04-29 15:51:23 +00:00
maya
5901ac0824 Omit mentions of python 34 and 35, after those were removed.
- Includes some whitespace changes, to be handled in a separate commit.
2019-04-26 13:13:41 +00:00
markd
76d1d97add karchive: update to 5.57.0
Fix crash in KArchive::findOrCreate with broken files
  Fix uninitialized memory read in KZip
  Add Q_OBJECT to KFilterDev
2019-04-25 20:40:02 +00:00
maya
f34a8c24a3 PKGREVISION bump for anything using python without a PYPKGPREFIX.
This is a semi-manual PKGREVISION bump.
2019-04-25 07:32:34 +00:00
adam
964fe08276 brotli: Use shared libraries for linking the main executable 2019-04-19 17:56:52 +00:00
wen
087da1a233 Update to 0.0946
Upstream changes:
0.0946    2019-04-05 20:11:47Z
    - Added copyright holder/year meta to dist.ini. (GH#6) (Mohammad S Anwar)
    - Auto generate META.yml using the plugin [MetaYAML]. (GH#8) (Mohammad S
      Anwar)
2019-04-19 10:30:35 +00:00
bsiegert
65fc216b57 Revbump all Go packages after go112 update 2019-04-16 18:41:08 +00:00
wiz
0db6be632e *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00