Commit graph

351066 commits

Author SHA1 Message Date
pin
4cc18caa56 doc: Added sysutils/hcal version 0.3.1 2022-01-19 10:59:17 +00:00
pin
c347637e26 Add hcal 2022-01-19 10:58:52 +00:00
pin
2a19c98cec sysutils/hcal: import package
Hexadecimal calendar in terminal for programmers.
2022-01-19 10:57:57 +00:00
pin
e492912040 doc: Updated x11/citron to 0.14.0 2022-01-19 10:55:09 +00:00
pin
1b81678462 x11/citron: update to 0.14.0
This release includes various under-the-hood tweaks to the codebase,
essentially ridding citron of boilerplate code, and exploring a
different approach to how icon logic should be handled internally.

It also fixes a bug that would result in battery percentage not showing
up in cases where your battery's state is unknown.
2022-01-19 10:54:50 +00:00
pin
0125a39acc doc: Updated sysutils/navi to 2.19.0 2022-01-19 10:53:55 +00:00
pin
d7bb8f198f sysutils/navi: update to 2.19.0
New features:
-Add smart replace functionality to the fish shell widget (#655)

Fixes:
-Allow multi-word shell.command config (#644)

Code quality:
-Improve fish widget code (#671)
-Update legacy syntax from Elvish widget (#670)
2022-01-19 10:53:37 +00:00
pin
8bd2069f88 doc: Updated shells/nushell to 0.43.0 2022-01-19 10:52:50 +00:00
pin
86596d1ed9 shells/nushell: update to 0.43.0
What's New:
-You can now learn about some of the upcoming changes in Nushell by reading the
 tutor e-q page. It will tell you about some of the new features and breaking
 changes, as well as link you to the full list of changes.

Fixes:
-Fix to the sample configuration file
-Fix to a crate description
-Bump to some dependencies in wasm support
-Update to sysinfo support
-Fix to build on latest Rust stable + clippy
2022-01-19 10:52:30 +00:00
nros
089d4fa160 disable package registry in eigen3 to not populate fake homedir 2022-01-19 09:52:09 +00:00
adam
cd2ffacc84 Updated www/py-django2, www/py-django3 2022-01-19 09:51:46 +00:00
adam
e8a160a62d py-django3: updated to 3.2.11
Django 3.2.11 fixes one security issue with severity “medium” and two security issues with severity “low” in 3.2.10.
- CVE-2021-45115: Denial-of-service possibility in UserAttributeSimilarityValidator
- CVE-2021-45116: Potential information disclosure in dictsort template filter
- CVE-2021-45452: Potential directory-traversal via Storage.save()
2022-01-19 09:51:25 +00:00
adam
c0709e08dc py-django2: updated to 2.2.26
Django 2.2.26 fixes one security issue with severity “medium” and two security issues with severity “low” in 2.2.25.
- CVE-2021-45115: Denial-of-service possibility in UserAttributeSimilarityValidator
- CVE-2021-45116: Potential information disclosure in dictsort template filter
- CVE-2021-45452: Potential directory-traversal via Storage.save()
2022-01-19 09:48:47 +00:00
adam
1fcea5cf81 Updated www/py-httpcore, devel/py-frozenlist 2022-01-19 06:10:19 +00:00
adam
2d88951c85 py-frozenlist: updated to 1.3.0
1.3.0 (2022-01-18)
==================

Bugfixes
--------
- Do not install C sources with binary distributions.

Deprecations and Removals
-------------------------
- Dropped Python 3.6 support
2022-01-19 06:10:03 +00:00
adam
cd18f5d221 py-httpcore: updated to 0.14.5
0.14.5
- SOCKS proxy support.
- Add proxy_auth argument to HTTPProxy
- Improve error message on 'RemoteProtocolError' exception when server disconnects without sending a response
2022-01-19 06:08:09 +00:00
adam
8d489387ed Updated archivers/zstd, archivers/py-zstandard 2022-01-19 06:05:05 +00:00
adam
cb9260bd7f py-zstandard: updated to 0.17.0
0.17.0 (released 2021-01-18)

Backwards Compatibility Notes

ZstdCompressionWriter and ZstdDecompressionWriter now implement __iter__() and __next__(). The methods always raise io.UnsupportedOperation. The added methods are part of the io.IOBase abstract base class / interface and help ensure instances look like other I/O types.
The HASHLOG3_MAX constant has been removed since it is no longer defined in zstd 1.5.1.

Bug Fixes

The ZstdCompressionReader, ZstdCompressionWriter, ZstdDecompressionReader, and ZstdDecompressionWriter types in the C backend now tracks their closed attribute using the proper C type. Before, due to a mismatch between the C struct type and the type declared to Python, Python could read the wrong bits on platforms like s390x and incorrectly report the value of the closed attribute to Python.

Changes

Bundled zstd library upgraded from 1.5.0 to 1.5.1.
The C backend now exposes the symbols ZstdCompressionReader, ZstdCompressionWriter, ZstdDecompressionReader, and ZstdDecompressionWriter. This should match the behavior of the CFFI backend.
ZstdCompressionWriter and ZstdDecompressionWriter now implement __iter__ and __next__, which always raise io.UnsupportedOperation.
Documentation on thread safety has been updated to note that derived objects like ZstdCompressionWriter have the same thread unsafety as the contexts they were derived from.
2022-01-19 06:04:35 +00:00
adam
6b07db3c29 zstd: updated to 1.5.1
v1.5.1 (Dec, 2021)
perf: rebalanced compression levels, to better match the intended speed/level curve, by @senhuang42
perf: faster huffman decoder, using x64 assembly, by @terrelln
perf: slightly faster high speed modes (strategies fast & dfast), by @felixhandte
perf: improved binary size and faster compilation times, by @terrelln
perf: new row64 mode, used notably in level 12, by @senhuang42
perf: faster mid-level compression speed in presence of highly repetitive patterns, by @senhuang42
perf: minor compression ratio improvements for small data at high levels, by @cyan4973
perf: reduced stack usage (mostly useful for Linux Kernel), by @terrelln
perf: faster compression speed on incompressible data, by @bindhvo
perf: on-demand reduced ZSTD_DCtx state size, using build macro ZSTD_DECODER_INTERNAL_BUFFER, at a small cost of performance, by @bindhvo
build: allows hiding static symbols in the dynamic library, using build macro, by @skitt
build: support for m68k (Motorola 68000's), by @cyan4973
build: improved AIX support, by @Helflym
build: improved meson unofficial build, by @eli-schwartz
cli : custom memory limit when training dictionary
cli : report advanced parameters information when compressing in very verbose mode (``-vv`)
2022-01-19 06:02:25 +00:00
dsainty
fc1e9f4d4b Remove the global BUILD_DEPENDS on tex-alphalph as it's option-specific and
so should go with all the other related BUILD_DEPENDS in options.mk.
2022-01-19 03:50:32 +00:00
dsainty
4185ae97d9 Synchronise some missing dependencies that devel/doxygen/options.mk
knows about but are disabled by default, and are required to build
this package.

No PKGREVISION bump - if these build dependencies weren't there by chance
then avr-libc fails to build, so no effect on existing installations.
2022-01-19 03:47:41 +00:00
pho
579f74cd3f Compatibility with NetBSD 2022-01-19 02:52:24 +00:00
gdt
0ae7c34043 doc: Updated geography/qgis to 3.16.16 2022-01-18 23:34:05 +00:00
gdt
6c43b7139b geography/qgis: Update to 3.16.16
Upstream changes are minor.

Packaging changes:

  Work around a new upstream bug where a test that depends on qtwebkit
  was not ifdefed.

  Start to try to adapt to the changes in py-sip.
2022-01-18 23:33:59 +00:00
rhialto
646e700c86 archivers/py-unrardll: fix PKGNAME. 2022-01-18 20:59:04 +00:00
rhialto
dca522cf9e doc: Added x11/py-qt-builder version 1.12.2 2022-01-18 19:26:10 +00:00
rhialto
ce3dedfb0c Add x11/py-qt-builder to Makefile. 2022-01-18 19:25:56 +00:00
rhialto
16bddf5a67 Add x11/py-qt-builder. Will be needed for calibre 5.x. 2022-01-18 19:25:26 +00:00
rhialto
3357a8ec5a doc: Added x11/py-sip5 version 5.5.0 2022-01-18 19:08:21 +00:00
rhialto
f8d12b38df Add x11/py-sip5 to Makefile. 2022-01-18 19:08:07 +00:00
rhialto
8c034f597a Add x11/py-sip5. Will be needed for calibre 5.x. 2022-01-18 19:07:45 +00:00
tnn
29dc5d4361 firefox: revert enable RLBox on aarch64
It worked in Firefox 95 but browser spins at 100% CPU in Firefox 96 ...
2022-01-18 18:48:28 +00:00
gdt
0244af436e *: revbump for gdal-lib update 2022-01-18 17:42:25 +00:00
gdt
7a9006134c doc: Updated geography/py-gdal to 3.4.1 2022-01-18 16:25:42 +00:00
gdt
7f607ed4aa doc: Updated geography/gdal-lib to 3.4.1 2022-01-18 16:25:32 +00:00
gdt
a0a75bb17a geography/gdal*: Update to 3.4.1
Packaging changes:

  Drop patch to visibility define code in port/cpl_conv, because gdal
  builds on NetSBD 9 without it, it had a merge conflict, it is not
  explained in a comment or commit message, and it hasn't been filed
  upstream.

Upstream changes (see NEWS.md for more detail):

* [RFC 81](https://gdal.org/development/rfc/rfc81_coordinate_epoch.html):
  Support for coordinate epochs in geospatial formats.
  Implemented in FlatGeoBuf, GeoPackage, MEM, VRT
* New GDAL drivers:
  - [Zarr](https://gdal.org/drivers/raster/zarr.html):
    read/write support for ZarrV2 (and experimental V3), using 2D classic raster
    API or multidimensional API:
  - [STACIT](https://gdal.org/drivers/raster/stacit.html):
    Spatio-Temporal Asset Catalog Items as virtual mosaics
* Other improvements:
  - number of enhancements in file system operations of /vsigs/
  - NITF: additions to comply with NITF Version 2.1 Commercial Dataset
    Requirements Document (NCDRD)
  - ODBC and PGeo: multiple fixes and improvements
  - SAFE (Sentinel1): multiple improvements related to SLC/calibration (change
    subdataset naming)
  - multidimensional API: caching, and other improvements
* Code linting and security fixes
* Bump of shared lib major version
* Add support for PCRE2 (to replace deprecated PCRE) (#4822)
* MDB driver (Java based) mark as deprecated. Planned for removal for GDAL 3.5.
  ODBC driver is the preferred solution (with up-to-date MDBTools library on
  non-Windows platforms)
* Writing side of Tiger driver deprecated and will be removed in GDAL 3.5
* Remainder: DODS, JPEG2000(Jasper), JPEGLS, MG4LIDAR, FUJIBAS, IDA, INGR and
  vector driver ARCGEN, ArcObjects, CLOUDANT, COUCHDB, DB2, DODS, FME, GEOMEDIA,
  GTM, INGRES, MONGODB, REC, WALK are planned for removal in GDAL 3.5. As well
  as Perl bindings
2022-01-18 16:25:20 +00:00
tnn
3039ae3848 *: revbump for spdlog 2022-01-18 15:23:24 +00:00
tnn
764c5de245 spdlog: drop BUILDLINK_DEPMETHOD.spdlog=build
no longer appropriate with dynamic library
2022-01-18 15:20:29 +00:00
tsutsui
41966f3ac3 mlterm: 3.9.2 tag on GitHub has been renamed (i.e. distfile is updated). 2022-01-18 14:38:34 +00:00
tnn
e2559c82a1 spdlog: build as dynamic library instead of static
Got relocation errors while linking gnuradio on Linux with the static
library due to missing -fPIC.
2022-01-18 14:17:22 +00:00
taca
3960e7a212 doc/TODO: ruby-redmine-gitmike-theme-1.2.1 done last year
- ruby-redmine-gitmike-theme-1.2.1.
2022-01-18 13:37:57 +00:00
taca
668b7e38a7 doc/TODO: ruby31 done.
- ruby31-3.1.0.
2022-01-18 13:36:45 +00:00
taca
4dddcf14d9 doc: Updated devel/ruby-redmine42 to 4.2.3nb3 2022-01-18 13:36:16 +00:00
taca
4805c5b5f7 devel/ruby-redmine42: relax dependency
Relax dependency to ruby-csv.

Bump PKGREVISION.
2022-01-18 13:35:42 +00:00
wen
1e7dffdc3e Updated textproc/p5-PDF-API2 to 2.043 2022-01-18 10:16:51 +00:00
wen
8065395bc0 Update to 2.043
Upstream changes:
2.043     2021-12-07

    - Restores backward compatibility (with a warning) when the deprecated
      $pdf->pageLabel is given an invalid -style option starting with "a" or
      "r" (report by Johan Vromans).

    - Fix incorrect default in documentation for annotation borders (report and
      patch by Johan Vromans).
2022-01-18 10:15:59 +00:00
wen
7d43a1e06f Updated devel/p5-Perl-PrereqScanner-NotQuiteLite to 0.9914 2022-01-18 10:04:27 +00:00
wen
aef3272fde Update to 0.9914
Upstream changes:
0.9914 2021/09/13
  - Support Object::Pad
2022-01-18 10:03:41 +00:00
wen
b3f634841a Updated devel/p5-Moose to 2.2201 2022-01-18 09:47:15 +00:00
wen
d058ce11d2 Update to 2.2201
Update DEPENDS

Upstream changes:
2.2201   2021-11-07

  [OTHER]

  - remove remaining traces of Sub::Name

2.2200   2021-10-31

  - no changes since 2.2100

2.2100   2021-04-13 (TRIAL RELEASE)

  [OTHER]

  - Replaced all uses of Sub::Name with Sub::Util, since the latter is part of
    core as of Perl 5.22.
2022-01-18 09:46:02 +00:00