Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (3h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 23:36:29 UTC Now

2022-02-11 09:22:07 UTC MAIN commitmail json YAML

2022-02-11 09:21:13 UTC MAIN commitmail json YAML

doc: Updated devel/hs-indexed-traversable to 0.1.2

(pho)

2022-02-11 09:21:05 UTC MAIN commitmail json YAML

Update to indexed-traversable-0.1.2

0.1.2 [2021-10-30]

    Changed (<$>) + (<*>) to liftA2 to potentially avoid extra fmap.
    Add (#..), coercive composition after a 2-parameter function.
    Switched references to lens 'Of'- functions to base functions.

Thanks to wygulmage for contributions.

(pho)

2022-02-11 09:19:57 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-prettyprinter to 1.7.1

(pho)

2022-02-11 09:19:43 UTC MAIN commitmail json YAML

Update to prettyprinter-1.7.1

* Deprecate the Data.Text.Prettyprint.* modules
  * Users should migrate to the new Prettyprinter module hierarchy.
  * The old modules will be removed no sooner than September 2022.
* Make text an optional dependency:
  * When built with -f-text, any text-based APIs will operate on Strings
    instead.
* Documentation improvements:
  * #194
  * 1f0bffe

(pho)

2022-02-11 09:17:46 UTC MAIN commitmail json YAML

2022-02-11 09:17:14 UTC MAIN commitmail json YAML

doc: Updated devel/hs-th-compat to 0.1.3

(pho)

2022-02-11 09:17:06 UTC MAIN commitmail json YAML

Update to th-compat-0.1.3

0.1.3 [2021.08.29]

* Implement qGetDoc and qPutDoc in the Quasi instance for QuoteToQuasi.
* Add expToSplice.

(pho)

2022-02-11 09:15:01 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-Diff to 0.4.1

(pho)

2022-02-11 09:14:49 UTC MAIN commitmail json YAML

2022-02-11 09:14:11 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-regex-tdfa to 1.3.1.1

(pho)

2022-02-11 09:14:03 UTC MAIN commitmail json YAML

Update to regex-tdfa-1.3.1.1

1.3.1.1 - 2021-06-03, Andreas Abel
* Removed extension NoMonoPatBinds from .cabal-file for GHC 9.2
  compatibility.
* Removed some outdated documentation.

(pho)

2022-02-11 09:12:14 UTC MAIN commitmail json YAML

2022-02-11 09:11:18 UTC MAIN commitmail json YAML

doc: Updated security/hs-cryptohash-sha256 to 0.11.102.1

(pho)

2022-02-11 09:11:06 UTC MAIN commitmail json YAML

2022-02-11 09:09:13 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-regex-base to 0.94.0.2

(pho)

2022-02-11 09:09:05 UTC MAIN commitmail json YAML

Update to regex-base-0.94.0.2

0.94.0.2 - 2021-11-16 Andreas Abel
* Allow text-2.0
* Remove unused dependency mtl
* Warning free up to GHC 9.2
* Tested with GHC 7.0 - 9.2

(pho)

2022-02-11 09:07:52 UTC MAIN commitmail json YAML

doc: Updated net/hs-network-info to 0.2.1

(pho)

2022-02-11 09:07:32 UTC MAIN commitmail json YAML

Update to network-info-0.2.1

0.2.1 (2022-01-31)
* Support NetBSD (#21)
* Increase upper bound on interfaces to 128 (#24)
* Fix segmentation fault for more than 64 interfaces (#23)

(pho)

2022-02-11 09:05:12 UTC MAIN commitmail json YAML

2022-02-11 08:33:29 UTC MAIN commitmail json YAML

Updated databases/postgresql1N

(adam)

2022-02-11 08:31:25 UTC MAIN commitmail json YAML

postgresql1N: updated to 14.2, 13.6, 12.10, 11.15, and 10.20

PostgreSQL 14.2, 13.6, 12.10, 11.15, and 10.20 Released!

This update fixes over 55 bugs that were reported in the last several months. The issues listed below affect PostgreSQL 14. Some of these issues may also affect other supported versions of PostgreSQL.

Included in this release:

Fix for a low probability scenario of index corruption when a HOT (heap-only tuple) chain changes state during VACUUM. Encountering this issue is unlikely, but if you are concerned, please consider reindexing.
Fix for using REINDEX CONCURRENTLY on TOAST table indexes to prevent corruption. You can fix any TOAST indexes by reindexing them again.
The psql \password command now defaults to setting the password for the role defined by CURRENT_USER. Additionally, the role name is now included in the password prompt.
Build extended statistics for partitioned tables. If you previously added extended statistics to a partitioned table, you should run ANALYZE on those tables. As autovacuum currently does not process partitioned tables, you must periodically run ANALYZE on any partitioned tables to update their statistics.
Fix crash with ALTER STATISTICS when the statistics object is dropped concurrently.
Fix crash with multiranges when extracting variable-length data types.
Several fixes to the query planner that lead to incorrect query results.
Several fixes for query plan memoization.
Fix startup of a physical replica to tolerate transaction ID wraparound.
When using logical replication, avoid duplicate transmission of a partitioned table's data when the publication includes both the child and parent tables.
Disallow altering data type of a partitioned table's columns when the partitioned table's row type is used as a composite type elsewhere.
Disallow ALTER TABLE ... DROP NOT NULL for a column that is part of a replica identity index.
Several fixes for caching that correct logical replication behavior and improve performance.
Fix memory leak when updating expression indexes.
Avoid leaking memory during REASSIGN OWNED BY operations that reassign ownership of many objects.
Fix display of whole-row variables appearing in INSERT ... VALUES rules.
Fix race condition that could lead to failure to localize error messages that are reported early in multi-threaded use of libpq or ecpglib.
Fix psql \d command for identifying parent triggers.
Fix failures on Windows when using the terminal as data source or destination. This affected the psql \copy command and using pg_recvlogical with -f -.
Fix the pg_dump --inserts and --column-inserts modes to handle tables that contain both generated and dropped columns.
Fix edge cases in how postgres_fdw handles asynchronous queries. These errors could lead to crashes or incorrect results when attempting to run parallel scans of foreign tables.
For the full list of changes available, please review the release notes.

(adam)

2022-02-11 08:06:21 UTC MAIN commitmail json YAML

2022-02-11 08:02:05 UTC MAIN commitmail json YAML

Advise against using eencoded email attachments.

(nia)

2022-02-11 05:58:29 UTC MAIN commitmail json YAML

doc: Updated audio/fasttracker2 to 1.51

(fox)

2022-02-11 05:57:57 UTC MAIN commitmail json YAML

audio/fasttracker2: Update to v1.51

Changes since v1.50
v1.51 - 01.02.2022
- Don't handle mouse click if window wasn't in focus

(fox)

2022-02-11 05:24:06 UTC MAIN commitmail json YAML

Wrote a packaging guide for Haskell packages

(pho)

2022-02-11 01:18:10 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-unicode-show to 0.1.1.0

(pho)

2022-02-11 01:18:02 UTC MAIN commitmail json YAML

2022-02-11 01:16:39 UTC MAIN commitmail json YAML

doc: Updated time/hs-timezone-series to 0.1.13

(pho)

2022-02-11 01:16:29 UTC MAIN commitmail json YAML

2022-02-11 01:13:44 UTC MAIN commitmail json YAML

2022-02-11 01:13:15 UTC MAIN commitmail json YAML

Use pkg-config explicitly

(pho)

2022-02-11 01:11:57 UTC MAIN commitmail json YAML

Infrastructure improvements and bugfixes to mk/haskell.mk

* mk/haskell.mk no longer set USE_TOOLS+=pkg-config for all the packages
  that include it. Instead it does TOOLS_FAIL+=pkg-config unless they
  explicitly do USE_TOOLS.

* Fixed an issue regarding Template Haskell and our wrappers.

* Fixed an issue where packages that had things like PLIST.common but
  lacked PLIST were incorrectly considered to have no PLISTs.

* mk/haskell.mk now supports packages that contain more than a single
  library. The INSTALL and DEINSTALL scripts can now handle such packages
  properly.

(pho)

2022-02-11 00:37:55 UTC MAIN commitmail json YAML

Explicitly require xgettext as well as msgfmt. At least on SLE, they are
shipped in different packages.

(joerg)

2022-02-10 22:03:29 UTC MAIN commitmail json YAML

doc: Updated sysutils/dusage to 0.2.3

(pin)

2022-02-10 22:03:09 UTC MAIN commitmail json YAML

sysutils/dusage: update to 0.2.3

-Add copy-friendly feature
Usefuly when we want to copy output elsewhere.
The unused is then a separate character to
distinguish it from the used part.

(pin)

2022-02-10 21:26:12 UTC MAIN commitmail json YAML

Updated security/py-acme, security/py-certbot*

(adam)

2022-02-10 21:23:34 UTC MAIN commitmail json YAML

py-acme py-certbot*: updated to 1.23.0

Certbot 1.23.0

Added

Added show_account subcommand, which will fetch the account information
from the ACME server and show the account details (account URL and, if
applicable, email address or addresses)
We deprecated support for Python 3.6 in Certbot and its ACME library.
Support for Python 3.6 will be removed in the next major release of Certbot.

Fixed

GCP Permission list for certbot-dns-google in plugin documentation
dns-digitalocean used the SOA TTL for newly created records, rather than 30 seconds.
Revoking a certificate based on an ECDSA key can now be done with --key-path.

(adam)

2022-02-10 21:22:44 UTC MAIN commitmail json YAML

Fix GLIBC_VERSION detection on Manjaro ARM (so that devel/gettext-tools
passes PLIST checks) and probably other Arch Linux too.

(schmonz)

2022-02-10 20:54:45 UTC MAIN commitmail json YAML

Updated net/py-digitalocean, devel/py-pathlib2

(adam)

2022-02-10 20:54:23 UTC MAIN commitmail json YAML

py-pathlib2: updated to 2.3.7

Version 2.3.7
- **This version will be the last release to support Python 2.7.**
- Fix bug in samefile on Windows when file does not exist.
- Add newline parameter for write_text.
- Add many more type annotations.
- Continuous integration migrated to github actions.
- Project migrated to jazzband.

(adam)

2022-02-10 20:51:56 UTC MAIN commitmail json YAML

py-digitalocean: updated to 1.17.0

v1.17.0
This is a long overdue release!

Added:

Update records
Delete records
Support for Projects in Manager
Loadbalancer missing properties

Changed:

Updated Loadbalancer docs

(adam)

2022-02-10 20:37:49 UTC MAIN commitmail json YAML

doc: Updated graphics/ansilove to 4.1.6

(fcambus)

2022-02-10 20:37:37 UTC MAIN commitmail json YAML

ansilove: update to 4.1.6.

AnsiLove/C 4.1.6 (2021-02-10)

- Mention experimental seccomp support availability in README
- Bump CMake minimum required version to 3.1
- Add SPDX short license identifier in source files
- Add a test case for retina output
- Add a test case for SAUCE output
- Use CMAKE_C_STANDARD instead of hardcoding compiler flags
- Stop linking against libm, it's not necessary anymore

(fcambus)

2022-02-10 20:37:13 UTC MAIN commitmail json YAML

doc: Updated graphics/libansilove to 1.2.9

(fcambus)

2022-02-10 20:37:02 UTC MAIN commitmail json YAML

libansilove: update to 1.2.9.

libansilove 1.2.9 (2022-02-10)

- Stop forcing FORTIFY_SOURCE=2, it should be package builders decision
- Bump CMake minimum required version to 3.1
- Add SPDX short license identifier in source files
- Use CMAKE_C_STANDARD instead of hardcoding compiler flags
- Add missing <stdint.h> include

(fcambus)

2022-02-10 19:04:30 UTC MAIN commitmail json YAML

textproc/Makefile: sort entries

(gutteridge)

2022-02-10 18:58:37 UTC MAIN commitmail json YAML

2022-02-10 18:55:10 UTC MAIN commitmail json YAML

openjdk8: add the native path on Fedora Linux to searches

(gutteridge)

2022-02-10 15:48:21 UTC MAIN commitmail json YAML

doc: Updated net/yt-dlp to 2022.2.4

(schmonz)

2022-02-10 15:48:11 UTC MAIN commitmail json YAML

Update to 2022.02.04. From the changelog:

* [youtube:search] Fix extractor by
  [coletdjnz](https://github.com/coletdjnz)
* [youtube:search] Add tests
* [twitcasting] Enforce UTF-8 for POST payload by
  [Lesmiscore](https://github.com/Lesmiscore)
* [mediaset] Fix extractor by
  [nixxo](https://github.com/nixxo)
* [websocket] Make syntax error in `websockets` module non-fatal

(schmonz)

2022-02-10 14:46:53 UTC MAIN commitmail json YAML

Note update of net/unbound to 1.15.0.

(he)

2022-02-10 14:31:34 UTC MAIN commitmail json YAML

Updated misc/py-ansi

(adam)

2022-02-10 14:30:24 UTC MAIN commitmail json YAML

py-ansi: updated to 0.3.6

0.3.6
Include py.typed marker to enable type checking of the installed package.

0.3.5
use 3rd party typing_extensions module for better version compatibility

0.3.4
Three minor versions were briefly released to resolve packaging/README issues with 0.3.1.

0.3.1
Deprecate Python 2 and versions earlier than 3.7 by adding type information. rgb() function no longer accepts strings of integers, only integers.
Add support for 8 and 24-bit True Color.

0.3.0

Broken, due to a configuration error this package is not installable

(adam)

2022-02-10 14:25:08 UTC MAIN commitmail json YAML

Updated math/py-arviz

(adam)

2022-02-10 14:21:59 UTC MAIN commitmail json YAML

py-arviz: updated to 0.11.4

v0.11.4 (2021 Oct 3)
Maintenance and fixes
* Fix standard deviation code in density utils by replacing it with `np.std`.

v0.11.3 (2021 Oct 1)
New features
* Added `labeller` argument to enable label customization in plots and summary
* Added `arviz.labels` module with classes and utilities
* Added probability estimate within ROPE in `plot_posterior`
* Added `rope_color` and `ref_val_color` arguments to `plot_posterior`
* Improved retrieving or pointwise log likelihood in `from_cmdstanpy`, `from_cmdstan` and `from_pystan`
* Added interactive legend to bokeh `forestplot`
* Added interactive legend to bokeh `ppcplot`
* Add more helpful error message for HDF5 problems reading `InferenceData` from NetCDF
* Added `data.log_likelihood`, `stats.ic_compare_method` and `plot.density_kind` to `rcParams`
* Improve error messages in `stats.compare()`, and `var_name` parameter.
* Added ability to plot HDI contours to `plot_kde` with the new `hdi_probs` parameter.
* Add dtype parsing and setting in all Stan converters
* Add option to specify colors for each element in ppc_plot

Maintenance and fixes
* Fix conversion for numpyro models with ImproperUniform latent sites
* Fixed conversion of Pyro output fit using GPUs
* Enforced using coordinate values as default labels
* Integrate `index_origin` with all the library
* Fix pareto k threshold typo in reloo function
* Preserve shape from Stan code in `from_cmdstanpy`
* Updated `from_pystan` converters to follow schema convention
* Used generator instead of list wherever possible
* Correctly use chain index when constructing PyMC3 `DefaultTrace` in `from_pymc3`
* Fix bugs in CmdStanPyConverter
* Fix `c` argument in `plot_khat`
* Fix `ax` argument in `plot_elpd`
* Remove warning in `stats.py` compare function
* Fix `ess/rhat` plots in `plot_forest`
* Fix `from_numpyro` crash when importing model with `thinning=x` for `x > 1`
* Upload updated mypy.ini in ci if mypy copilot fails
* Added type checking to raise an error whenever `InferenceData` object is passed using `io_pymc3`'s `trace` argument
* Fix `xlabels` in `plot_elpd`
* Renamed `sample` dim to `__sample__` when stacking `chain` and `draw` to avoid dimension collision
* Removed the `circular` argument in `plot_dist` in favor of `is_circular`
* Fix `legend` argument in `plot_separation`
* Removed testing dependency on http download for radon dataset
* Fixed plot_kde to take labels with kwargs.
* Fixed xarray related tests.
* Fix Bokeh deprecation warnings
* Fix credible inteval percentage in legend in `plot_loo_pit`
* Arguments `filter_vars` and `filter_groups` now raise `ValueError` if illegal arguments are passed
* Remove constrained_layout from arviz rcparams
* Fix plot_elpd for a single outlier

Deprecation
* Deprecated `index_origin` and `order` arguments in `az.summary`

Documentation
* Language improvements of the first third of the "Label guide"
* Added "Label guide" page and API section for `arviz.labels` module
* Add "Installation guide" page to the documentation
* Improve documentation on experimental `SamplingWrapper` classes
* Added example to `plot_hdi` using Inference Data
* Removed `geweke` diagnostic from `numba` user guide
* Restructured the documentation sections to improve community and about us information

v0.11.2 (2021 Feb 21)
New features
* Added `to_zarr` and `from_zarr` methods to InferenceData
* Added confidence interval band to auto-correlation plot

Maintenance and fixes
* Updated CmdStanPy converter form compatibility with versions >=0.9.68
* Updated `from_cmdstanpy`, `from_cmdstan`, `from_numpyro` and `from_pymc3` converters to follow schema convention
* Fix calculation of mode as point estimate
* Remove variable name from legend in posterior predictive plot
* Added significant digits formatter to round rope values
* Updated `from_cmdstan`. csv reader, dtype problem fixed and dtype kwarg added for manual dtype casting

Deprecation
* Removed Geweke diagnostic
* Removed credible_interval and include_circ arguments

Documentation
* Added an example for converting dataframe to InferenceData
* Added example for `coords` argument in `plot_posterior` docstring

v0.11.1 (2021 Feb 2)
Maintenance and fixes
* Fixed ovelapping titles and repeating warnings on circular traceplot
* Removed repetitive variable names from forest plots of multivariate variables
* Fixed regression in `plot_pair` labels that prevented coord names to be shown when necessary

Documentation
* Use tabs in ArviZ example gallery

v0.11.0 (2021 Dec 17)
New features
* Added `to_dataframe` method to InferenceData
* Added `__getitem__` magic to InferenceData
* Added group argument to summary
* Add `ref_line`, `bar`, `vlines` and `marker_vlines` kwargs to `plot_rank`
* Add observed argument to (un)plot observed data in `plot_ppc`
* Add support for named dims and coordinates with multivariate observations
* Add support for discrete variables in rank plots
  `loo_pit`
* Add `skipna` argument to `plot_posterior`
* Make stacking the default method to compute weights in `compare`
* Add `copy()` method to `InferenceData` class.

Maintenance and fixes
* prevent wrapping group names in InferenceData repr_html
* Updated CmdStanPy interface
* Remove left out warning about default IC scale in `compare`
* Fixed a typo found in an error message raised in `distplot.py`
* Fix typo in `loo_pit` extraction of log likelihood
* Have `from_pystan` store attrs as strings to allow netCDF storage
* Remove ticks and spines in `plot_violin`
* Use circular KDE function and fix tick labels in circular `plot_trace`
* Fix `pair_plot` for mixed discrete and continuous variables
* Fix in-sample deviance in `plot_compare`
* Fix computation of weights in compare
* Avoid repeated warning in summary
* Fix hdi failure with boolean array
* Automatically get the current axes instance for `plt_kde`, `plot_dist` and `plot_hdi`
* Add grid argument to manually specify the number of rows and columns
* Switch to `compact=True` by default in our plots
* `plot_elpd`, avoid modifying the input dict
* Do not plot divergences in `plot_trace` when `kind=rank_vlines` or `kind=rank_bars`
* Allow ignoring `observed` argument of `pymc3.DensityDist` in `from_pymc3`
* Make `from_pymc3` compatible with theano-pymc 1.1.0
* Improve typing hints

Deprecation
* `plot_khat` deprecate `annotate` argument in favor of `threshold`. The new argument accepts floats

Documentation
* Reorganize documentation and change sphinx theme
* Switch to [MyST](https://myst-parser.readthedocs.io/en/latest/) and [MyST-NB](https://myst-nb.readthedocs.io/en/latest/index.html)
  for markdown/notebook parsing in docs
* Incorporated `input_core_dims` in `hdi` and `plot_hdi` docstrings
* Add documentation pages about experimental `SamplingWrapper`s usage
* Show example titles in gallery page
* Add `sample_stats` naming convention to the InferenceData schema
* Extend api documentation about `InferenceData` methods

Experimental
* Modified `SamplingWrapper` base API

v0.10.0 (2020 Sep 24)
New features
* Added InferenceData dataset containing circular variables
* Added `is_circular` argument to `plot_dist` and `plot_kde` allowing for a circular histogram (Matplotlib, Bokeh) or 1D KDE plot (Matplotlib).
* Added `to_dict` method for InferenceData object
* Added `circ_var_names` argument to `plot_trace` allowing for circular traceplot (Matplotlib)
* Ridgeplot is hdi aware. By default displays truncated densities at the specified `hdi_prop` level
* Added `plot_separation`
* Extended methods from `xr.Dataset` to `InferenceData`
* Add `extend` and `add_groups` to `InferenceData`
* Added `__iter__` method (`.items`) for InferenceData
* Add support for discrete variables in `plot_bpv`

Maintenance and fixes
* Automatic conversion of list/tuple to numpy array in distplot
* `plot_posterior` fix overlap of hdi and rope
* `plot_dist` bins argument error fixed
* Improve handling of circular variables in `az.summary`
* Removed change of default warning in `ELPDData` string representation
* Update `radon` example dataset to current InferenceData schema specification
* Update `from_cmdstan` functionality and add warmup groups
* Restructure plotting code to be compatible with mpl>=3.3
* Replaced `_fast_kde()` with `kde()` which now also supports circular variables via the argument `circular`
* Increased `from_pystan` attrs information content
* Allow `plot_trace` to return and accept axes
* Update diagnostics to be on par with posterior package
* Use method="average" in `scipy.stats.rankdata`
* Add more `plot_parallel` examples
* Bump minimum xarray version to 0.16.1
* Fix multi rope for `plot_forest`
* Bump minimum xarray version to 0.16.1
* `from_dict` will now store warmup groups even with the main group missing
* increase robustness for repr_html handling

(adam)

2022-02-10 14:16:08 UTC MAIN commitmail json YAML

Updated devel/py-dulwich, math/py-xarray

(adam)

2022-02-10 14:11:31 UTC MAIN commitmail json YAML

py-xarray: updated to 0.21.1

v0.21.1 (31 January 2022)
-------------------------
This is a bugfix release to resolve

Bug fixes
~~~~~~~~~
- Add `packaging` as a dependency to Xarray

v0.21.0 (27 January 2022)
-------------------------

New Features
~~~~~~~~~~~~
- New top-level function :py:func:`cross`.
- ``keep_attrs`` support for :py:func:`where`
- Enable the limit option for dask array in the following methods :py:meth:`DataArray.ffill`, :py:meth:`DataArray.bfill`, :py:meth:`Dataset.ffill` and :py:meth:`Dataset.bfill`

Breaking changes
~~~~~~~~~~~~~~~~
- Rely on matplotlib's default datetime converters instead of pandas'
- Improve repr readability when there are a large number of dimensions in datasets or dataarrays by
  wrapping the text once the maximum display width has been exceeded.

Deprecations
~~~~~~~~~~~~
- Removed the lock kwarg from the zarr and pydap backends, completing the deprecation cycle started in :issue:`5256`.
- Support for ``python 3.7`` has been dropped.

Bug fixes
~~~~~~~~~
- Preserve chunks when creating a :py:class:`DataArray` from another :py:class:`DataArray`
- Properly support :py:meth:`DataArray.ffill`, :py:meth:`DataArray.bfill`, :py:meth:`Dataset.ffill` and :py:meth:`Dataset.bfill` along chunked dimensions
- Subclasses of ``byte`` and ``str`` (e.g. ``np.str_`` and ``np.bytes_``) will now serialise to disk rather than raising a ``ValueError: unsupported dtype for netCDF4 variable: object`` as they did previously
- Fix applying function with non-xarray arguments using :py:func:`xr.map_blocks`.
- No longer raise an error for an all-nan-but-one argument to
  :py:meth:`DataArray.interpolate_na` when using `method='nearest'`
- `dt.season <https://xarray.pydata.org/en/stable/generated/xarray.DataArray.dt.season.html>`_  can now handle NaN and NaT.
- Determination of zarr chunks handles empty lists for encoding chunks or variable chunks that occurs in certain cirumstances

Internal Changes
~~~~~~~~~~~~~~~~
- Replace ``distutils.version`` with ``packaging.version``
- Removed internal checks for ``pd.Panel``
- Add ``pyupgrade`` pre-commit hook

(adam)

2022-02-10 14:03:22 UTC MAIN commitmail json YAML

doc: Updated devel/binutils to 2.38

(fcambus)

2022-02-10 14:03:07 UTC MAIN commitmail json YAML

binutils: update to 2.38.

This release contains numerous bug fixes and improvements, along with
the following new features:

Assembler:
  General:
    * Add support for the LoongArch architecture.

    * Add an option to control how multibyte characters are handled in
      the assembler.  Using the option warnings can be generated when
      such characters are encountered in symbol names, or anywhere in
      the input source file(s).

  AArch64 and ARM:
    * Add support for more system registers.
    * Add support for Scalable Matrix Extension.
    * Add support for Cortex-R52+, Cortex-A510, Cortex-A710,
      Cortex-X2, Cortex-A710 cores.
    * Add support for 'v8.7-a', 'v8.8-a', 'v9-a', 'v9.1-a',
      'armv9.2-a' and 'armv9.3-a' architecture extensions.

  X86:
    * Add a command-line option to encode aligned vector move as
      unaligned vector move.
    * Add support for Intel AVX512_FP16 instructions.
    * The outputs of .ds.x directive and .tfloat directive with hex
      input have been reduced from 12 bytes to 10 bytes to match the
      output of .tfloat directive.

Linker:
  * Add support for the LoongArch architecture.

  * Add -z pack-relative-relocs/-z no pack-relative-relocs to x86 ELF
  linker to pack relative relocations in the DT_RELR section.

  * Add -z indirect-extern-access/-z noindirect-extern-access to x86
    ELF linker to control canonical function pointers and copy
    relocation.

Other Binary Tools:

  * elfedit: Add --output-abiversion option to update ABIVERSION.

  * Tools which display symbols or strings (readelf, strings, nm,
    objdump) have a new command line option which controls how unicode
    characters are handled.  By default they are treated as normal for
    the tool.  Using --unicode=locale will display them according to
    the current locale.  Using --unicode=hex will display them as hex
    byte values, whilst --unicode=escape will display them as escape
    sequences.  In addition using --unicode=highlight will display
    them as unicode escape sequences highlighted in red (if supported
    by the output device).

  * readelf -r dumps RELR relative relocations now.

  * Support for efi-app-aarch64, efi-rtdrv-aarch64 and
    efi-bsdrv-aarch64 has been added to objcopy in order to enable
    UEFI development using binutils.

  * ar: Add --thin for creating thin archives. -T is a deprecated
    alias without diagnostics. In many ar implementations -T has a
    different meaning, as specified by X/Open System Interface.

(fcambus)

2022-02-10 13:56:50 UTC MAIN commitmail json YAML

doc: Added net/asuka version 0.8.3

(pin)

2022-02-10 13:56:24 UTC MAIN commitmail json YAML

2022-02-10 13:56:11 UTC MAIN commitmail json YAML

py-dulwich: updated to 0.20.32

0.20.32
* Properly close result repository during test.

0.20.31
* Add GitClient.clone().

0.20.29
* Support staging submodules.
* Drop deprecated Index.iterblobs and iter_fresh_blobs.
* Unify clone behaviour of ``Repo.clone`` and
  ``porcelain.clone``, and add branch parameter for
  clone.

0.20.28
* Fix hook test on Mac OSX / Linux when dulwich is
  not installed system-wide.
* Cope with gecos being unset.

0.20.27
* Allow adding files to repository in pre-commit hook.
* Raise SubmoduleEncountered in ``tree_lookup_path``.

(adam)

2022-02-10 13:55:43 UTC MAIN commitmail json YAML

2022-02-10 13:43:54 UTC MAIN commitmail json YAML

doc: Updated www/htmldoc-x11 to 1.9.15

(fcambus)

2022-02-10 13:43:34 UTC MAIN commitmail json YAML

doc: Updated www/htmldoc to 1.9.15

(fcambus)

2022-02-10 13:43:14 UTC MAIN commitmail json YAML

htmldoc: update to 1.9.15.

# Changes in HTMLDOC v1.9.15

- Fixed a potential heap overflow bug with GIF images (Issue #461)
- Fixed a potential double-free bug with PNG images (Issue #462)
- Fixed a potential stack overflow bug with GIF images (Issue #463)
- Fixed a potential heap underflow bug with empty attributes (Issue #464)
- Fixed a potential stack overflow bug with BMP images (Issue #466)
- Fixed a potential heap overflow bug with the table-of-contents (Issue #467)
- Fixed a potential heap overflow bug with headings (Issue #468)
- Fixed a potential stack overflow bug with GIF images (Issue #470)

(fcambus)

2022-02-10 13:17:53 UTC MAIN commitmail json YAML

Update unbound to version 1.15.0.

Pkgsrc changes:
* none, other than checksums.

Upstream changes:

This release has bug fixes for crashes that happened on heavy network
usage. The default for the aggressive-nsec option has changed, it is now
enabled.

The ratelimit logic had to be reworked for the crash fixes. As a result,
there are new options to control the behaviour of ratelimiting.
The ratelimit-backoff and ip-ratelimit-backoff options can be used to
control how severe the backoff is when the ratelimit is exceeded.

The rpz-signal-nxdomain-ra option can be used to unset the RA flag, for
NXDOMAIN answers from RPZ. That is used by some clients to detect that
the domain is externally blocked. The RPZ option for-downstream can be
used like for auth zones, this allows the RPZ zone information to be
queried. That can be useful for monitoring scripts.

Features
- Fix #596: unset the RA bit when a query is blocked by an unbound
  RPZ nxdomain reply. The option rpz-signal-nxdomain-ra allows to
  signal that a domain is externally blocked to clients when it
  is blocked with NXDOMAIN by unsetting RA.
- Add rpz: for-downstream: yesno option, where the RPZ zone is
  authoritatively answered for, so the RPZ zone contents can be
  checked with DNS queries directed at the RPZ zone.
- Merge PR #616: Update ratelimit logic. It also introduces
  ratelimit-backoff and ip-ratelimit-backoff configuration options.
- Change aggressive-nsec default to yes.

Bug Fixes
- Fix compile warning for if_nametoindex on windows 64bit.
- Merge PR #581 from fobser: Fix -Wmissing-prototypes and -Wshadow
  warnings in rpz.
- Fix validator debug output about DS support, print correct algorithm.
- Add code similar to fix for ldns for tab between strings, for
  consistency, the test case was not broken.
- Allow local-data for classes other than IN to inherit a configured
  local-zone's type if possible, instead of defaulting to type
  transparent as per the implicit rule.
- Fix to pick up other class local zone information before unlock.
- Add missing configure flags for optional features in the
  documentation.
- Fix Unbound capitalization in the documentation.
- Fix #591: Unbound-anchor manpage links to non-existent license file.
- contrib/aaaa-filter-iterator.patch file renewed diff content to
  apply cleanly to the current coderepo for the current code version.
- Fix to add test for rpz-signal-nxdomain-ra.
- Fix #596: only unset RA when NXDOMAIN is signalled.
- Fix that RPZ does not set RD flag on replies, it should be copied
  from the query.
- Fix for #596: fix that rpz return message is returned and not just
  the rcode from the iterator return path. This fixes signal unset RA
  after a CNAME.
- Fix unit tests for rpz now that the AA flag returns successfully from
  the iterator loop.
- Fix for #596: add unit test for nsdname trigger and signal unset RA.
- Fix for #596: add unit test for nsip trigger and signal unset RA.
- Fix #598: Fix unbound-checkconf fatal error: module conf
  'respip dns64 validator iterator' is not known to work.
- Fix for #596: Fix rpz-signal-nxdomain-ra to work for clientip
  triggered operation.
- Merge #600 from pemensik: Change file mode before changing file
  owner.
- Fix prematurely terminated TCP queries when a reply has the same ID.
- For #602: Allow the module-config "subnetcache validator cachedb
  iterator".
- Fix EDNS to upstream where the same option could be attached
  more than once.
- Add a region to serviced_query for allocations.
- For dnstap, do not wakeupnow right there. Instead zero the timer to
  force the wakeup callback asap.
- Fix #610: Undefine-shift in sldns_str2wire_hip_buf.
- Fix #588: Unbound 1.13.2 crashes due to p->pc is NULL in
  serviced_udp_callback.
- Merge PR #612: TCP race condition.
- Test for NSID in SERVFAIL response due to DNSSEC bogus.
- Fix #599: [FR] RFC 9156 (obsoletes RFC 7816), by noting the new RFC
  document.
- Fix tls-* and ssl-* documented alternate syntax to also be available
  through remote-control and unbound-checkconf.
- Better cleanup on failed DoT/DoH listening socket creation.
- iana portlist update.
- Fix review comment for use-after-free when failing to send UDP out.
- Merge PR #603 from fobser: Use OpenSSL 1.1 API to access DSA and RSA
  internals.
- Merge PR #532 from Shchelk: Fix: buffer overflow bug.
- Merge PR #617: Update stub/forward-host notation to accept port and
  tls-auth-name.
- Update stream_ssl.tdir test to also use the new forward-host
  notation.
- Fix header comment for doxygen for authextstrtoaddr.
- please clang analyzer for loop in test code.
- Fix docker splint test to use more portable uname.
- Update contrib/aaaa-filter-iterator.patch with diff for current
  software version.
- Fix for #611: Integer overflow in sldns_wire2str_pkt_scan.

(he)

2022-02-10 13:11:59 UTC MAIN commitmail json YAML

2022-02-10 12:47:12 UTC MAIN commitmail json YAML

binutils: fix typo in comment.

(fcambus)

2022-02-10 12:45:43 UTC MAIN commitmail json YAML

colortail: comment out dead MASTER_SITES, update HOMEPAGE.

(fcambus)

2022-02-10 12:21:11 UTC MAIN commitmail json YAML

Install a bash completion script

(pho)

2022-02-10 11:35:21 UTC MAIN commitmail json YAML

doc: Updated news/sfeed to 1.2

(leot)

2022-02-10 11:35:16 UTC MAIN commitmail json YAML

sfeed: Update to 1.2

Changes:
1.2
---
Fixes:
* sfeed parser: extend the time range to atleast 64-bit (long long).
* sfeed parser: allow leap second like 23:59:60 (RFC2822 Section 3.3).
* sfeed_curses: pedantic fix for UB with an empty URL file (qsort and bsearch).
* sfeed_curses: fix a compile warning with tparm() on some systems.

Features:
* sfeed_atom: add category field(s).
* sfeed_curses: add feature to go to the next bold row and previous bold row
with J and K.  This is useful to quickly jump to the next new item or new feed.
Thanks to IanJ for the suggestion and feedback!
* sfeed_content: allow to set HTML converter with env variable $SFEED_HTMLCONV.
For example: SFEED_HTMLCONV="w3m -I UTF-8 -O UTF-8 -T text/html -dump"
* Add compile-time option to improve output on dumb non-UTF8 terminals
(-DSFEED_DUMBTERM).

Misc:
* Documentation improvements to the man page and a sfeed_download example in
the README: this is a parallel downloader/extractor example script.
* Code-style improvements.

(leot)

2022-02-10 10:54:02 UTC MAIN commitmail json YAML

Updated www/py-nbconvert, graphics/py-pygraphviz

(adam)

2022-02-10 10:53:43 UTC MAIN commitmail json YAML

py-pygraphviz: updated to 1.9

pygraphviz-1.9å…¶

Drop Python 3.7 support
Add Python 3.10 support
Add osage and patchwork to progs list
Add IPython rich display hook to AGraph class
Add contributor guide
Fixed directed nature of AGraph.copy()
Minor documentation and code fixes

(adam)

2022-02-10 10:50:22 UTC MAIN commitmail json YAML

Remove conflict flag

(pin)

2022-02-10 10:49:43 UTC MAIN commitmail json YAML

Remove conflict flag

(pin)

2022-02-10 10:46:23 UTC MAIN commitmail json YAML

py-nbconvert: updated to 6.4.2

6.4.2
Bug fixes

(adam)

2022-02-10 10:43:15 UTC MAIN commitmail json YAML

Updated devel/py-serpent, devel/py-Pyro

(adam)

2022-02-10 08:31:23 UTC MAIN commitmail json YAML

textproc/jless: rename command

to avoid conflict with misc/ja-less.

(pin)

2022-02-10 07:45:23 UTC MAIN commitmail json YAML

*: add conflict between ja-less and jless due to bin/jless

(wiz)

2022-02-10 07:42:26 UTC MAIN commitmail json YAML

libixion: remove patch that was removed from distinfo during update

(wiz)

2022-02-10 07:35:52 UTC MAIN commitmail json YAML

arcticfox: remove bad NOT_PAX_SAFE line

(nia)

2022-02-10 05:18:27 UTC MAIN commitmail json YAML

doc: Updated editors/retext to 7.2.3

(gutteridge)

2022-02-10 05:18:20 UTC MAIN commitmail json YAML

retext: update to 7.2.3

## ReText 7.2.3 (2022-02-03)

* Issues #573, #574 Fixed TypeError crash with Python 3.10 and Qt WebKit.
* Translations updated:
    - Chinese (China) (contributed by liulitchi).
    - Portuguese (Brazil) (contributed by Igor Garcia and Christiano Morais).
    - Slovak (contributed by Jose Riha).

(gutteridge)

2022-02-10 02:14:12 UTC MAIN commitmail json YAML

xfce4-cpugraph-plugin: this now requires a C++14 feature

(gutteridge)

2022-02-10 02:12:46 UTC MAIN commitmail json YAML

xfce4-thunar: this now requires a C99 feature

(gutteridge)

2022-02-09 21:25:58 UTC MAIN commitmail json YAML

py-Pyro: updated to 4.82

release 4.82
fixed @expose issue on static method/classmethod due to API change in Python 3.10
switched from travis to using github actions for CI builds and tests
Python 3.10 is now included in the unit test runs

release 4.81
fix some typo's in docs
corrected some minor other things in docs
Python 3.9 is now included in the unit test runs
No actual code changes.

(adam)

2022-02-09 21:24:58 UTC MAIN commitmail json YAML

py-serpent: updated to 1.40

1.40
Added "bytes_repr" option to serializer to serialize byte arrays into their Python bytes repr escaped form.
(also added BytesNode to the parser where it directly deserializes into a byte array)

This can be more convenient than having to deal with base-64 encoded bytes, but the serialized data is usually about twice as large and it is slower to process.

(adam)

2022-02-09 17:08:27 UTC MAIN commitmail json YAML

doc: Added textproc/dbcat version 0.1.4

(pin)

2022-02-09 17:08:05 UTC MAIN commitmail json YAML

2022-02-09 17:07:07 UTC MAIN commitmail json YAML

textproc/dbcat: import package

A cat(1) equivalent for viewing sqlite database.

-Read the database simply by running dbcat
-Change the format of the output by choice or automatically if the output
is a tty or not.
-Access individual tables
-Pass a filter query to filter the tables
-Use dbcat --help to see the help.

(pin)

2022-02-09 17:04:26 UTC MAIN commitmail json YAML

doc: Added textproc/jless version 0.7.1

(pin)

2022-02-09 17:03:53 UTC MAIN commitmail json YAML

2022-02-09 17:02:46 UTC MAIN commitmail json YAML

textproc/jless: import package

jless is a command-line JSON viewer.
Use it as a replacement for whatever combination of less, jq, cat and your
editor you currently use for viewing JSON files.
It is written in Rust and can be installed as a single standalone binary.

Features
  -Clean syntax highlighted display of JSON data, omitting quotes around
    object keys, closing object and array delimiters, and trailing commas.
  -Expand and collapse objects and arrays so you can see both the high- and
    low-level structure of the data.
  -A wealth of vim-inspired movement commands for efficiently moving around
    and viewing data.
  -Full regex-based search for finding exactly the data you're looking for.

(pin)

2022-02-09 14:11:03 UTC MAIN commitmail json YAML

doc/TODO: add postfix and squid

+ postfix-3.7.0, squid-5.4.

(taca)

2022-02-09 11:52:24 UTC MAIN commitmail json YAML

rsync: use pkgsrc zlib
rsync uses its bundled zlib unless
--with-included-zlib is set to no.
bump pkgrevision.

(nros)

2022-02-09 11:33:53 UTC MAIN commitmail json YAML

doc: Updated archivers/lzip to 1.23

(fcambus)

2022-02-09 11:32:41 UTC MAIN commitmail json YAML

lzip: update to 1.23.

2022-01-24  Antonio Diaz Diaz  <antonio@gnu.org>

* Version 1.23 released.
* Decompression time has been reduced by 5-12% depending on the file.
* main.cc (getnum): Show option name and valid range if error.
* Improve several descriptions in manual, '--help', and man page.
* lzip.texi: Change GNU Texinfo category to 'Compression'.
  (Reported by Alfred M. Szmidt).

(fcambus)

2022-02-09 10:16:58 UTC MAIN commitmail json YAML

doc: Updated www/webkit-gtk to 2.34.5

(leot)

2022-02-09 10:16:41 UTC MAIN commitmail json YAML

webkit-gtk: Update to 2.34.5

Changes:
2.34.5
======
- Improve VP8 codec selection when using GStreamer 1.20.
- Fix connecting to the accessiblity bus when using the Bubblewrap sandbox.
- Fix links being incorrectly activated when starting a pinch zoom gesture.
- Fix touch-based scrolling.
- Fix the build with recent toolchains based on GCC 12 and on older ones as
  included e.g. in Ubuntu 18.04.
- Fix the build with ICU 60, version 61 is no longer required.
- Fix several crashes and rendering issues.

(leot)

2022-02-09 05:57:54 UTC MAIN commitmail json YAML

doc: Updated sysutils/intel-microcode-netbsd to 20220207.

(msaitoh)

2022-02-09 05:56:05 UTC MAIN commitmail json YAML

Update intel-microcode-netbsd to 20220207.

# Release Notes
## [microcode-20220207]
(https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20220207)

### Purpose

- Security updates for [INTEL-SA-00528]
  (https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00528.html)
- Security updates for [INTEL-SA-00532]
  (https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00532.html)
- Update for functional issues. Refer to
  [Third Generation Intel Xeon Processor Scalable Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/637780) for details.
- Update for functional issues. Refer to
  [Second Generation Intel Xeon Processor Scalable Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/338848) for details.
- Update for functional issues.
  Refer to [Intel Xeon Processor Scalable Family Specification Update]
  (https://www.intel.com/content/www/us/en/processors/xeon/scalable/xeon-scalable-spec-update.html?wapkw=processor+specification+update) for details.
- Update for functional issues. Refer to
  [11th Generation Intel Core Processor Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/631123) for details.
- Update for functional issues. Refer to
  [11th Generation Intel Core Processor Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/634808) for details.
- Update for functional issues. Refer to
  [10th Gen Intel Core Processor Families Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/341079) for details.
- Update for functional issues. Refer to
  [10th Generation Intel Core Processor Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/615213) for details.
- Update for functional issues. Refer to
  [8th Generation Intel Core Processor Families Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/338025) for details.
- Update for functional issues. Refer to
  [8th Gen Intel Core Processor Family Spec Update]
  (https://www.intel.com/content/www/us/en/products/docs/processors/core/8th-gen-core-family-spec-update.html?wapkw=processor+specification+update) for details.
- Update for functional issues. Refer to
  [7th and 8th Generation Intel Core Processor Family Specification Update]
  (https://cdrdv2.intel.com/v1/dl/getContent/334663) for details.
- Update for functional issues. Refer to
  [6th Generation Intel Processor Family Specification Update]
  (https://www.intel.com/content/www/us/en/processors/core/desktop-6th-gen-core-family-spec-update.html) for details.
- Update for functional issues. Refer to
  [Intel Pentium Silver and Intel Celeron Processors]
  (https://www.intel.com/content/www/us/en/products/docs/processors/pentium/silver-celeron-spec-update.html?wapkw=processor+specification+update) for details.

### New Platforms

None

### Updated Platforms

| Processor      | Stepping | F-M-S/PI    | Old Ver  | New Ver  | Products
|:---------------|:---------|:------------|:---------|:---------|:---------
| HSX-E/EP      | Cx/M1    | 06-3f-02/6f | 00000046 | 00000049 | Core Gen4 X series; Xeon E5 v3
| HSX-EX        | E0      | 06-3f-04/80 | 00000019 | 0000001a | Xeon E7 v3
| SKL-U/Y        | D0      | 06-4e-03/c0 | 000000ea | 000000ec | Core Gen6 Mobile
| BDX-ML        | B0/M0/R0 | 06-4f-01/ef | 0b00003e | 0b000040 | Xeon E5/E7 v4; Core i7-69xx/68xx
| SKX-SP        | B1      | 06-55-03/97 | 0100015b | 0100015c | Xeon Scalable
| SKX-SP        | H0/M0/U0 | 06-55-04/b7 | 02006b06 | 02006c0a | Xeon Scalable
| SKX-D          | M1      | 06-55-04/b7 | 02006b06 | 02006c0a | Xeon D-21xx
| CLX-SP        | B0      | 06-55-06/bf | 04003102 | 0400320a | Xeon Scalable Gen2
| CLX-SP        | B1      | 06-55-07/bf | 05003102 | 0500320a | Xeon Scalable Gen2
| CPX-SP        | A1      | 06-55-0b/bf | 07002302 | 07002402 | Xeon Scalable Gen3
| BDX-DE        | V2/V3    | 06-56-03/10 | 0700001b | 0700001c | Xeon D-1518/19/21/27/28/31/33/37/41/48, Pentium D1507/08/09/17/19
| BDX-DE        | Y0      | 06-56-04/10 | 0f000019 | 0f00001a | Xeon D-1557/59/67/71/77/81/87
| BDX-NS        | A1      | 06-56-05/10 | 0e000012 | 0e000014 | Xeon D-1513N/23/33/43/53
| APL            | D0      | 06-5c-09/03 | 00000044 | 00000046 | Pentium N/J4xxx, Celeron N/J3xxx, Atom x5/7-E39xx
| APL            | E0      | 06-5c-0a/03 | 00000020 | 00000024 | Atom x5-E39xx
| SKL-H/S        | R0/N0    | 06-5e-03/36 | 000000ea | 000000ec | Core Gen6; Xeon E3 v5
| DNV            | B0      | 06-5f-01/01 | 00000034 | 00000036 | Atom C Series
| ICX-SP        | D0      | 06-6a-06/87 | 0d0002a0 | 0d000331 | Xeon Scalable Gen3
| GLK            | B0      | 06-7a-01/01 | 00000036 | 00000038 | Pentium Silver N/J5xxx, Celeron N/J4xxx
| GKL-R          | R0      | 06-7a-08/01 | 0000001a | 0000001c | Pentium J5040/N5030, Celeron J4125/J4025/N4020/N4120
| ICL-U/Y        | D1      | 06-7e-05/80 | 000000a6 | 000000a8 | Core Gen10 Mobile
| LKF            | B2/B3    | 06-8a-01/10 | 0000002a | 0000002d | Core w/Hybrid Technology
| TGL            | B1      | 06-8c-01/80 | 00000088 | 0000009a | Core Gen11 Mobile
| TGL-R          | C0      | 06-8c-02/c2 | 00000016 | 00000022 | Core Gen11 Mobile
| TGL-H          | R0      | 06-8d-01/c2 | 0000002c | 0000003c | Core Gen11 Mobile
| AML-Y22        | H0      | 06-8e-09/10 | 000000ea | 000000ec | Core Gen8 Mobile
| KBL-U/Y        | H0      | 06-8e-09/c0 | 000000ea | 000000ec | Core Gen7 Mobile
| CFL-U43e      | D0      | 06-8e-0a/c0 | 000000ea | 000000ec | Core Gen8 Mobile
| WHL-U          | W0      | 06-8e-0b/d0 | 000000ea | 000000ec | Core Gen8 Mobile
| AML-Y42        | V0      | 06-8e-0c/94 | 000000ea | 000000ec | Core Gen10 Mobile
| CML-Y42        | V0      | 06-8e-0c/94 | 000000ea | 000000ec | Core Gen10 Mobile
| WHL-U          | V0      | 06-8e-0c/94 | 000000ea | 000000ec | Core Gen8 Mobile
| EHL            | B1      | 06-96-01/01 | 00000011 | 00000015 | Pentium J6426/N6415, Celeron J6412/J6413/N6210/N6211, Atom x6000E
| JSL            | A0/A1    | 06-9c-00/01 | 0000001d | 2400001f | Pentium N6000/N6005, Celeron N4500/N4505/N5100/N5105
| KBL-G/H/S/E3  | B0      | 06-9e-09/2a | 000000ea | 000000ec | Core Gen7; Xeon E3 v6
| CFL-H/S/E3    | U0      | 06-9e-0a/22 | 000000ea | 000000ec | Core Gen8 Desktop, Mobile, Xeon E
| CFL-S          | B0      | 06-9e-0b/02 | 000000ea | 000000ec | Core Gen8
| CFL-H/S        | P0      | 06-9e-0c/22 | 000000ea | 000000ec | Core Gen9
| CFL-H          | R0      | 06-9e-0d/22 | 000000ea | 000000ec | Core Gen9 Mobile
| CML-H          | R1      | 06-a5-02/20 | 000000ea | 000000ec | Core Gen10 Mobile
| CML-S62        | G1      | 06-a5-03/22 | 000000ea | 000000ec | Core Gen10
| CML-S102      | Q0      | 06-a5-05/22 | 000000ec | 000000ee | Core Gen10
| CML-U62 V1    | A0      | 06-a6-00/80 | 000000e8 | 000000ea | Core Gen10 Mobile
| CML-U62 V2    | K1      | 06-a6-01/80 | 000000ea | 000000ec | Core Gen10 Mobile
| RKL-S          | B0      | 06-a7-01/02 | 00000040 | 00000050 | Core Gen11

### Removed Platforms

| Processor      | Stepping | F-M-S/PI    | Old Ver  | New Ver  | Products
|:---------------|:---------|:------------|:---------|:---------|:---------
| SNR            | B0      | 06-86-04/01 | 0b00000f |          | Atom P59xxB
| SNR            | B1      | 06-86-05/01 | 0b00000f |          | Atom P59xxB

(msaitoh)

2022-02-09 01:57:57 UTC MAIN commitmail json YAML

2022-02-09 01:17:34 UTC MAIN commitmail json YAML

doc: Added textproc/py-cmudict version 1.0.2

(gutteridge)

2022-02-09 01:13:33 UTC MAIN commitmail json YAML

textproc/Makefile: add py-cmudict

(gutteridge)

2022-02-09 01:11:07 UTC MAIN commitmail json YAML

py-cmudict: add new package, version 1.0.2

CMUdict is a versioned Python wrapper package for the CMU Pronouncing
Dictionary data files. The main purpose is to expose the data with little
or no assumption on how it is to be used.

Similar functionality is also provided by nltk. My motivations for
importing this package are that (1) nltk doesn't appear to be keeping
its packaging of the dictionary data up to date, and (2) this has no
dependency chain beyond Python itself.

(gutteridge)

2022-02-08 21:01:18 UTC MAIN commitmail json YAML

Updated lang/rust-analyzer, textproc/ugrep

(adam)

2022-02-08 21:00:55 UTC MAIN commitmail json YAML

ugrep: updated to 3.7.2

ugrep v3.7.2
New --hexdump options to grep binary files and display binary matches in hexadecimal with n hex lines before and after the match with --hexdump=Cn, --hexdump=An for n lines after and --hexdump=Bn for n lines before. Omitting n defaults to the entire matching line. Option -X is equivalent to --hexdump=2C for 2 hex columns per line and entire matching line as context. We also made ugrep faster overall with performance improvements. More coming soon!

(adam)

2022-02-08 20:48:09 UTC MAIN commitmail json YAML

url2pkg: make code for analyzing CPAN URLs simpler

No functional change.

(rillig)

2022-02-08 20:45:00 UTC MAIN commitmail json YAML

rust-analyzer: updated to 0.0.2022.02.07

2022-02-07

11416: Fix eslint language server not working r=Veykril a=jackos

Allows the language server for eslint to work inside VS Code.

(adam)

2022-02-08 20:12:10 UTC MAIN commitmail json YAML

libreoffice: PLIST: restore ${PLIST.ldap} which got lost in rev 1.46

(tnn)

2022-02-08 19:18:07 UTC MAIN commitmail json YAML

p.spek@tyil.nl had specifically said to _single_-quote the output of
extra_libarchive_depends(). Oops. Now that the problem has bitten me (on
Manjaro ARM), I can attest that single-quoting fixes it. Sorry, tyil,
and thanks again!

(schmonz)

2022-02-08 17:19:50 UTC MAIN commitmail json YAML

python: fix typo in comment in egg.mk

(gutteridge)

2022-02-08 16:43:22 UTC MAIN commitmail json YAML

Updated sysutils/ansible-base, databases/py-redis

(adam)

2022-02-08 16:43:03 UTC MAIN commitmail json YAML

py-redis: updated to 4.1.3

4.1.3

Bug Fixes

Fix flushdb and flushall

Maintenance

Add redis5 and redis4 dockers
Change json.clear test multi to be up to date with redisjson
Fixing volume for unstable_cluster docker
Update changes file with changes since 4.0.0-beta2

(adam)

2022-02-08 16:41:07 UTC MAIN commitmail json YAML

ansible-base: updated to 2.10.17

v2.10.17
========

Bugfixes
--------
- ansible-galaxy collection build - Ignore any existing ``MANIFEST.json`` and ``FILES.json`` in the root directory when building a collection.
- ansible-test - Fix traceback in the ``validate-modules`` sanity test when testing an Ansible module without any callables.
- backwards compatiblity copy of doc fragment action_common_attributes

(adam)

2022-02-08 13:39:17 UTC MAIN commitmail json YAML

2022-02-08 13:15:54 UTC MAIN commitmail json YAML

multimedia/libmediainfo: Fix libtool

(gavan)

2022-02-08 12:40:53 UTC MAIN commitmail json YAML

doc: Updated x11/wired-notify to 0.10.1

(pin)

2022-02-08 12:40:34 UTC MAIN commitmail json YAML

x11/wired-notify: update to 0.10.1

-Fixed an issue where some blocks (ProgressBlock, ButtonBlock,
ScrollingTextBlock) would cause bugged rendering due to relying on the
default Cairo operator (Over), which was changed in 0.10.0. #50

(pin)

2022-02-08 12:39:40 UTC MAIN commitmail json YAML

doc: Updated shells/starship to 1.3.0

(pin)

2022-02-08 12:39:23 UTC MAIN commitmail json YAML

shells/starship: update to 1.3.0

Features
    add username to Pulumi module (#3428)
    Enable Undistract Me for Linux (#3547)
    starship bug-report sets syntax highlighting for config file (#3529)
    add a container indicator (#3304)
    cli: Print arguments if argument parsing fails (#3560)
    cmd_duration: Make notification timeout configurable (#3515)
    install: Add posix shell check (#3474)
    localip: add module to print the current ipv4 address (#3289)
    pwsh: Set ExtraPromptLineCount (#3439)
    pwsh: Set STARSHIP_SHELL to pwsh on PS >5 (#3443)

Bug Fixes
    Correctly detect older versions of powershell in bug-report (#3543)
    bash: Restore previous exit status in bash init (#3521)
    elvish: use $pwd for logical-path (#3534)
    nodejs: use e718 as the default of symbol in node configuration (#3533)
    status: Enable to convert from i64 to hex_status by casting instead of
    parsing status. (#3462)

Code Refactoring
    Improve compatibility with Zsh prompt theme system (#3480)
    zsh: using add-zsh-hook instead of add hook manually (#3537)

Performance Improvements
    elvish: Use built-in randint instead of starship session. (#3479)

(pin)

2022-02-08 12:38:28 UTC MAIN commitmail json YAML

doc: Updated shells/nushell to 0.44.0

(pin)

2022-02-08 12:38:10 UTC MAIN commitmail json YAML

shells/nushell: update to 0.44.0

-Remove unused repo parts (#4271)
-Drop with iter range (#4242)

(pin)

2022-02-08 12:37:22 UTC MAIN commitmail json YAML

doc: Updated sysutils/macchina to 6.0.6

(pin)

2022-02-08 12:37:05 UTC MAIN commitmail json YAML

sysutils/macchina: update to 6.0.6

Bump libmacchina to v6.1.0:
-Fixes a bug that causes the package readout to display "0 (cargo)" if
$CARGO_HOME/bin is empty. (Macchina-CLI/libmacchina@22a7df0)
-Fixes a bug that causes the network readout to return an IPv6 address in
some cases. (Macchina-CLI/libmacchina@608a1dd)

(pin)

2022-02-08 12:36:06 UTC MAIN commitmail json YAML

doc: Updated x11/kitty to 0.24.2

(pin)

2022-02-08 12:35:45 UTC MAIN commitmail json YAML

x11/kitty: update to 0.24.2

Updated in wip by @wiz, thanks!

We are bumping nine versions here, from 0.21.1 to current 0.24.2
Too many changes to list here, for a compleate changelog, please visit
https://sw.kovidgoyal.net/kitty/changelog/

(pin)

2022-02-08 11:00:37 UTC MAIN commitmail json YAML

Updated devel/py-xbe, graphics/py-pygraphviz

(adam)

2022-02-08 11:00:19 UTC MAIN commitmail json YAML

py-pygraphviz: updated to 1.8

pygraphviz-1.8

Drop Python 3.7 support
Add Python 3.10 support
Add IPython rich display hook to AGraph class
Add contributor guide
Fixed directed nature of AGraph.copy()
Minor documentation and code fixes

(adam)

2022-02-08 10:53:26 UTC MAIN commitmail json YAML

py-xbe: updated to 0.0.3

0.0.3
Unknown changes

(adam)

2022-02-08 10:49:04 UTC MAIN commitmail json YAML

arcticfox: Add missing dependency

(nia)

2022-02-08 10:26:16 UTC MAIN commitmail json YAML

guile: append to BUILDLINK_PASSTHRU_DIRS rather than replace it

(mcf)

2022-02-08 09:14:07 UTC MAIN commitmail json YAML

Updated devel/py-test-asyncio, devel/py-test-mypy

(adam)

2022-02-08 09:12:48 UTC MAIN commitmail json YAML

py-test-mypy: updated to 0.9.1

0.9.1
* Add support for pytest 7.

0.9.0
* Drop support for pytest<4.6.
* Add --mypy-config-file.

(adam)

2022-02-08 09:10:58 UTC MAIN commitmail json YAML

py-test-asyncio: updated to 0.18.0

0.18.0
Raise a warning if @pytest.mark.asyncio is applied to non-async function.
Support parametrized event_loop fixture.

(adam)

2022-02-08 08:56:43 UTC MAIN commitmail json YAML

Updated devel/py-ipykernel, devel/py-packageurl, devel/py-bitarray, textproc/py-tomlkit

(adam)

2022-02-08 08:56:23 UTC MAIN commitmail json YAML

py-tomlkit: updated to 0.9.1

0.9.1
Fixed
Fix a bug of separators not being kept when replacing the value.
Tuples should be dumped as TOML arrays.

(adam)

2022-02-08 08:54:22 UTC MAIN commitmail json YAML

py-bitarray: updated to 2.3.6

2.3.6:
* add optional value parameter to `util.count_n()`
* determine machine endianness at build time when possible, by using
  the `PY_LITTLE_ENDIAN` macro, in order to optimize `shift_r8()`
* add official Python 3.11 support

(adam)

2022-02-08 08:52:43 UTC MAIN commitmail json YAML

py-packageurl: updated to 0.9.7

0.9.7 (2022-02-07)
------------------
- Create a generic PackageURL for URLs that do not fit existing routes in url2purl

(adam)

2022-02-08 08:51:12 UTC MAIN commitmail json YAML

py-ipykernel: updated to 6.9.0

6.9.0

Bugs fixed
- Fixed event forwarding
- use message queue for abort_queues

(adam)

2022-02-08 07:45:02 UTC MAIN commitmail json YAML

2022-02-08 06:27:36 UTC MAIN commitmail json YAML

doc: Added multimedia/gerbera version 1.9.2

(khorben)

2022-02-08 06:27:21 UTC MAIN commitmail json YAML

2022-02-08 06:26:49 UTC MAIN commitmail json YAML

2022-02-07 21:41:14 UTC MAIN commitmail json YAML

doc: Added devel/py-pep621 version 0.4.0

(wiz)

2022-02-07 21:41:05 UTC MAIN commitmail json YAML

devel/Makefile: + py-pep621

(wiz)

2022-02-07 21:40:47 UTC MAIN commitmail json YAML

2022-02-07 21:15:13 UTC MAIN commitmail json YAML

Updated devel/py-pylint-plugin-utils, devel/py-click-didyoumean, fonts/py-fonttools, devel/py-frozendict

(adam)

2022-02-07 21:14:41 UTC MAIN commitmail json YAML

py-frozendict: updated to 2.3.0

2.3.0:
Unknown changes

(adam)

2022-02-07 21:13:00 UTC MAIN commitmail json YAML

py-fonttools: updated to 4.29.1

4.29.1 (released 2022-02-01)
----------------------------
- [colorLib] Fixed rounding issue with radial gradient's start/end circles inside
  one another
- [freetypePen] Handle rotate/skew transform when auto-computing width/height of the
  buffer; raise PenError wen missing moveTo

4.29.0 (released 2022-01-24)
----------------------------
- [ufoLib] Fixed illegal characters and expanded reserved filenames
- [COLRv1] Don't emit useless PaintColrLayers of lenght=1 in LayerListBuilder
- [ttx] Removed legacy ``waitForKeyPress`` method on Windows
- [pens] Added FreeTypePen that uses ``freetype-py`` and the pen protocol for
  rasterizating outline paths
- [unicodedata] Updated the script direction list to Unicode 14.0
  Bumped unicodedata2 dependency to 14.0
- [psLib] Fixed type of ``fontName`` in ``suckfont``

(adam)

2022-02-07 21:07:36 UTC MAIN commitmail json YAML

py-click-didyoumean: updated to 0.3.0

0.3.0:
Unknown changes

(adam)

2022-02-07 21:02:44 UTC MAIN commitmail json YAML

py-pylint-plugin-utils: updated to 0.7

0.7
Removed small formatting error

(adam)

2022-02-07 21:00:36 UTC MAIN commitmail json YAML

Updated www/py-django-cors-headers, www/py-drf-nested-routers, filesystems/py-fs, security/py-cryptodome

(adam)

2022-02-07 21:00:11 UTC MAIN commitmail json YAML

py-cryptodome: updated to 3.14.1

3.14.1

Resolved issues
* Fixed memory leak for GMP integers.

(adam)

2022-02-07 20:57:20 UTC MAIN commitmail json YAML

py-fs: updated to 2.4.15

2.4.15

Changed
- Support more lenient usernames and group names in FTP servers

Fixed
- Fixed `MemoryFS.move` and `MemoryFS.movedir` not updating the name of moved
  resources, causing `MemoryFS.scandir` to use the old name.
- Make `WrapFS.move` and `WrapFS.movedir` use the delegate FS methods instead
  of `fs.move` functions, which was causing optimized implementation of
  `movedir` to be always skipped.

(adam)

2022-02-07 20:55:14 UTC MAIN commitmail json YAML

py-drf-nested-routers: updated to 0.93.4

0.93.4:
Unknown changes

(adam)

2022-02-07 20:52:39 UTC MAIN commitmail json YAML

py-django-cors-headers: updated to 3.11.0

3.11.0
Drop Python 3.6 support.

(adam)

2022-02-07 17:07:40 UTC MAIN commitmail json YAML

Updated devel/py-prompt_toolkit, parallel/py-ipyparallel

(adam)

2022-02-07 17:07:22 UTC MAIN commitmail json YAML

py-ipyparallel: updated to 8.2.0

8.2.0 is a small release, mostly of small bugfixes and improvements.

Changes:

`len(AsyncMapResult)` and progress ports now use the number of items in the map,
not the number of messages.

Enhancements:

- Show output prior to errors in `%%px`

Bugs fixed:

- Fix cases where engine id could be `-1` in tracebacks
- Add missing `pbs` to engine launcher entrypoints

(adam)

2022-02-07 17:02:27 UTC MAIN commitmail json YAML

py-prompt_toolkit: updated to 3.0.27

3.0.27: 2022-02-07
------------------

New features:
- Support for cursor shapes. The cursor shape for prompts/applications can now
  be configured, either as a fixed cursor shape, or in case of Vi input mode,
  according to the current input mode.
- Handle "cursor forward" command in ANSI formatted text. This makes it
  possible to render many kinds of generated ANSI art.
- Accept `align` attribute in `Label` widget.
- Added `PlainTextOutput`: an output implementation that doesn't render any
  ANSI escape sequences. This will be used by default when redirecting stdout
  to a file.
- Added `create_app_session_from_tty`: a context manager that enforces
  input/output to go to the current TTY, even if stdin/stdout are attached to
  pipes.
- Added `to_plain_text` utility for converting formatted text into plain text.

Fixes:
- Don't automatically use `sys.stderr` for output when `sys.stdout` is not a
  TTY, but `sys.stderr` is. The previous behavior was confusing, especially
  when rendering formatted text to the output, and we expect it to follow
  redirection.

(adam)

2022-02-07 15:39:35 UTC MAIN commitmail json YAML

wheel.mk: also substitute PYVERSSUFFIX

(wiz)

2022-02-07 15:27:13 UTC MAIN commitmail json YAML

doc: Added textproc/py-sphinx-inline-tabs version 2022.1.2beta11

(wiz)

2022-02-07 15:27:03 UTC MAIN commitmail json YAML

textproc/Makefile: + py-sphinx-inline-tabs

(wiz)

2022-02-07 15:26:43 UTC MAIN commitmail json YAML

textproc/py-sphinx-inline-tabs: import py-sphinx-inline-tabs-2022.1.2beta11

Add inline tabbed content to your Sphinx documentation.

(wiz)

2022-02-07 15:19:55 UTC MAIN commitmail json YAML

doc: Added textproc/py-sphinx-copybutton version 0.5.0

(wiz)

2022-02-07 15:19:47 UTC MAIN commitmail json YAML

textproc/Makefile: + py-sphinx-copybutton

(wiz)

2022-02-07 15:19:31 UTC MAIN commitmail json YAML

textproc/py-sphinx-copybutton: import py-sphinx-copybutton-0.5.0

A small sphinx extension to add a "copy" button to code blocks.

(wiz)

2022-02-07 15:13:42 UTC MAIN commitmail json YAML

py-sphinx-automodapi: add missing build dependency

(wiz)

2022-02-07 13:15:02 UTC MAIN commitmail json YAML

Updated www/py-httplib2, devel/py-pip-api

(adam)

2022-02-07 13:14:40 UTC MAIN commitmail json YAML

py-pip-api: updated to 0.0.27

0.0.27
- Use correct long flag for requirements
- Support for hashed requirements
- Drop support for Python 3.6, test against pip==22.0.x

(adam)

2022-02-07 13:08:29 UTC MAIN commitmail json YAML

py-httplib2: updated to 0.20.4

0.20.4
proxy: support proxy urls with ipv6 address

0.20.3
No changes in library. Tests compatible with Python3.10 and recent pytest.

(adam)

2022-02-07 12:45:27 UTC MAIN commitmail json YAML

2022-02-07 11:46:44 UTC MAIN commitmail json YAML

Updated devel/py-setuptools, devel/py-types-setuptools

(adam)

2022-02-07 11:46:23 UTC MAIN commitmail json YAML

py-types-setuptools: updated to 57.4.9

57.4.9
Improve some in-place BinOp methods

(adam)

2022-02-07 11:45:42 UTC MAIN commitmail json YAML

py-setuptools: updated to 60.8.1

v60.8.1

Misc
* When vendoring jaraco packages, ensure the namespace package is converted to a simple package to support zip importer.

v60.8.0

Changes
* Setuptools now vendors importlib_resources and importlib_metadata and jaraco.text. Setuptools no longer relies on pkg_resources for ensure_directory nor parse_requirements.

(adam)

2022-02-07 11:00:27 UTC MAIN commitmail json YAML

doc: Updated net/filezilla to 3.57.0

(wiz)

2022-02-07 11:00:17 UTC MAIN commitmail json YAML

filezilla: update to 3.57.0.

3.57.0 (2021-12-10)

- Fixed incorrect default settings for file editing
- Fixed a crash looking up data in file lists
- Fixed a crash if a HTTPS connection gets canceled during the TLS handshake
- Updated to libfilezilla 0.35.0

3.56.2 (2021-10-27)

- Fixed a potential crash after uploading

3.56.1 (2021-10-26)

- macOS Monterey: Opening the Site Manager on startup is now delayed a millisecond, otherwise the right mouse button would have stopped working
- macOS: Fixed getting temporary directory
- MSW: Updated to libfilezilla 0.34.1 to fix local directory contents returned by the system in oversized buffers containing nulls

3.56.0 (2021-10-11)

- Updated to libfilezilla 0.34.0
- Updated translations

3.56.0-rc1 (2021-09-29)

+ Right-clicking a queue tab header now opens the same context menu as right-clicking the correponding queue contents
+ By default, the minimum allowed TLS version is now TLS 1.2
+ Optionally, the systen trust store can be used for certificate verification
- FTP: Fixed an issue with key file conversion
- Fixed an issue loading servers not supporting session resumption from storage

(wiz)

2022-02-07 10:53:52 UTC MAIN commitmail json YAML

2022-02-07 10:48:34 UTC MAIN commitmail json YAML

doc: Updated net/libfilezilla to 0.36.0

(wiz)

2022-02-07 10:48:26 UTC MAIN commitmail json YAML

libfilezilla: update to 0.36.0.

0.36.0 (2022-02-02)

+ Added parameter to tls_layer::set_alpn to control which peer has priority over which ALPN is chosen.
+ Added fz::hmac_sha1
+ Mutex debugging framework to detect locking order inversions that may lead to deadlocks
+ Add additional io_redirect mode to fz::process_spawn where the parent-side handles for stdin/out/err are always closed
- fz::json: Handle object members with empty string as name
- Minor performance improvements to removing timers and to spawning processes

0.35.0 (2021-12-08)

+ *nix: Added fz::forkblock which can be used to safely set FD_CLOEXEC on descriptors even if the system lacks SOCK_CLOCKEXEC, MSG_CMSG_CLOEXEC, pipe2 or accept4
+ macOS: Impersonation support
+ Added fz::tls_layer::set_unexpected_eof_cb, in some situations it may be desirable that unexpected closure is not reported as a hard errror
- Added various convenience overloads for fz::buffer
- Performance improvement for fz::json::to_string

0.34.2 (2021-10-26)

+ fz::file::open now returns fz::result
- fz::tls_layer: Additional fixes for trust path extration
- MSW: fz::local_filesys::get_next_file now handles directory contents returned by the kernel in oversized buffers with embedded nulls

0.34.1 (2021-10-19)

- *nix: Handle supplementary groups when impersonating
- *nix: fz::recv_fd now sets the MSG_CMSG_CLOEXEC flag
- *nix: fz::local_filesys::get_link_target now handles link targets larger than 1024 bytes
- MSW: Restrict DLL search path for system DLLs to the system32 directory
- fz::tls_layer: Fixed how trust path extration interacts with CRLs

0.34.0 (2021-10-11)

- MSW: Load shell32.dll and ole32.dll on-demand at runtime, it is not available in all environments
- Made fz::local_filesys movable

0.33.0 (2021-09-29)

+ MSW: Add local_filesys::begin_find_files overload accepting a directory HANDLE
+ If peer certificate chain is trusted by the system trust store, tls_session_info::get_certificates now returns the actual path to the trust anchor, use tls_session_info::get_peer_certificates to get the peer certificates as received by the server. GnuTLS 3.7.0 or later is required.
- JSON: Correctly handle \u-encoded UTF-16 surrogate pairs

0.32.0 (2021-09-14)

+ MSW: Impersonation support
- Allow more direct control over session ticket/PSK generation under TLS 1.3, requires GnuTLS 3.6.14 or later
- Ensure an error is returned if accepting a socket fails
- Fixed appending to fz::buffer

0.32.0-beta1 (2021-08-30)

+ *nix: Impersonation support
+ *nix: Sending of file descriptors over Unix Domain Sockets
* nix: Add local_filesys::begin_find_files overload accepting a directory file descriptor
+ Allow creating fz::file from a file descriptors/handle, add function to detach the descriptor/handle
+ Added fz::datetime::operator>=
+ Added fz::duration::absolute()
- fz::sprintf no longer crashes on x and X conversion specifiers if a negative signed integer is passed as argument
- Replace std::random_device as the C++ standard allows it to not be random
- JSON: Fixed crash if assigning values from nested values
- JWS: Fixed memory leak and padding of signature components

(wiz)

2022-02-07 09:30:58 UTC MAIN commitmail json YAML

doc: Updated devel/wabt to 1.0.26

(fcambus)

2022-02-07 09:27:32 UTC MAIN commitmail json YAML

wabt: update to 1.0.26.

No upstream ChangeLog.

(fcambus)

2022-02-07 09:18:13 UTC MAIN commitmail json YAML

doc: Updated sysutils/bkt to 0.5.2

(pin)

2022-02-07 09:17:55 UTC MAIN commitmail json YAML

sysutils/bkt: update to 0.5.2

-Handle (i.e. ignore) BrokenPipe errors, which indicate stdout/stderr were
closed without reading all output.

(pin)

2022-02-07 09:16:06 UTC MAIN commitmail json YAML

2022-02-07 09:01:02 UTC MAIN commitmail json YAML

INSTALL_SCRIPT, not INSTALL_PROGRAM.

(schmonz)

2022-02-07 08:20:04 UTC MAIN commitmail json YAML

py-test-asyncio: add comment that this needs to be installed for testing

(wiz)

2022-02-07 08:06:18 UTC MAIN commitmail json YAML

libffi: add readelf to tools

>From Claes N辰st辿n in PR 56698

(wiz)

2022-02-07 08:05:05 UTC MAIN commitmail json YAML

p11-kit: add readlink to tools

>From Claes N辰st辿n in PR 56697

(wiz)

2022-02-07 07:10:47 UTC pkgsrc-2021Q4 commitmail json YAML

2022-02-07 07:09:18 UTC pkgsrc-2021Q4 commitmail json YAML

Pullup ticket #6578 - requested by bsiegert
textproc/expat: security fix

Revisions pulled up:
- textproc/expat/Makefile                                      1.48-1.49
- textproc/expat/distinfo                                      1.40-1.41

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Mon Jan 17 08:49:34 UTC 2022

  Modified Files:
  pkgsrc/textproc/expat: Makefile distinfo

  Log Message:
  expat: update to 2.4.3.

  Release 2.4.3 Sun January 16 2022
          Security fixes:
          #531 #534  CVE-2021-45960 -- Fix issues with left shifts by >=29 places
                      resulting in
                        a) realloc acting as free
                        b) realloc allocating too few bytes
                        c) undefined behavior
                      depending on architecture and precise value
                      for XML documents with >=2^27+1 prefixed attributes
                      on a single XML tag a la
                      "<r xmlns:a='[..]' a:a123='[..]' [..] />"
                      where XML_ParserCreateNS is used to create the parser
                      (which needs argument "-n" when running xmlwf).
                      Impact is denial of service, or more.
          #532 #538  CVE-2021-46143 (ZDI-CAN-16157) -- Fix integer overflow
                      on variable m_groupSize in function doProlog leading
                      to realloc acting as free.
                      Impact is denial of service or more.
              #539  CVE-2022-22822 to CVE-2022-22827 -- Prevent integer overflows
                      near memory allocation at multiple places.  Mitre assigned
                      a dedicated CVE for each involved internal C function:
                      - CVE-2022-22822 for function addBinding
                      - CVE-2022-22823 for function build_model
                      - CVE-2022-22824 for function defineAttribute
                      - CVE-2022-22825 for function lookup
                      - CVE-2022-22826 for function nextScaffoldPart
                      - CVE-2022-22827 for function storeAtts
                      Impact is denial of service or more.

          Other changes:
              #535  CMake: Make call to file(GENERATE [..]) work for CMake <3.19
              #541  Autotools|CMake: MinGW: Make run.sh(.in) work for Cygwin
                      and MSYS2 by not going through Wine on these platforms
          #527 #528  Address compiler warnings
          #533 #543  Version info bumped from 9:2:8 to 9:3:8;
                      see https://verbump.de/ for what these numbers do

          Infrastructure:
              #536  CI: Check for realistic minimum CMake version
          #529 #539  CI: Cover compilation with -m32
              #529  CI: Store coverage reports as artifacts for download
              #528  CI: Upgrade Clang from 11 to 13

  Release 2.4.2 Sun December 19 2021
          Other changes:
          #509 #510  Link againgst libm for function "isnan"
          #513 #514  Include expat_config.h as early as possible
              #498  Autotools: Include files with release archives:
                      - buildconf.sh
                      - fuzz/*.c
          #507 #519  Autotools: Sync CMake templates
          #495 #524  CMake: MinGW: Fix pkg-config section "Libs" for
                      - non-release build types (e.g. -DCMAKE_BUILD_TYPE=Debug)
                      - multi-config CMake generators (e.g. Ninja Multi-Config)
          #502 #503  docs: Document that function XML_GetBuffer may return NULL
                      when asking for a buffer of 0 (zero) bytes size
          #522 #523  docs: Fix return value docs for both
                      XML_SetBillionLaughsAttackProtection* functions
          #525 #526  Version info bumped from 9:1:8 to 9:2:8;
                      see https://verbump.de/ for what these numbers do

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Feb  1 12:10:18 UTC 2022

  Modified Files:
  pkgsrc/textproc/expat: Makefile distinfo

  Log Message:
  expat: update to 2.4.4.

  Release 2.4.4 Sun January 30 2022
          Security fixes:
              #550  CVE-2022-23852 -- Fix signed integer overflow
                      (undefined behavior) in function XML_GetBuffer
                      (that is also called by function XML_Parse internally)
                      for when XML_CONTEXT_BYTES is defined to >0 (which is both
                      common and default).
                      Impact is denial of service or more.
              #551  CVE-2022-23990 -- Fix unsigned integer overflow in function
                      doProlog triggered by large content in element type
                      declarations when there is an element declaration handler
                      present (from a prior call to XML_SetElementDeclHandler).
                      Impact is denial of service or more.

          Bug fixes:
          #544 #545  xmlwf: Fix a memory leak on output file opening error

          Other changes:
              #546  Autotools: Fix broken CMake support under Cygwin
              #554  Windows: Add missing files to the installer to fix
                      compilation with CMake from installed sources
          #552 #554  Version info bumped from 9:3:8 to 9:4:8;
                      see https://verbump.de/ for what these numbers do

(tm)

2022-02-07 02:58:24 UTC MAIN commitmail json YAML

Warn when PLIST is missing, not just when it is outdated

(pho)

2022-02-07 02:43:43 UTC MAIN commitmail json YAML

Fix a bug in my previous commit

(pho)

2022-02-07 02:39:41 UTC MAIN commitmail json YAML

Handle the case where *.cabal lacks the field "Build-Type"

(pho)

2022-02-07 02:26:09 UTC MAIN commitmail json YAML

php80 & php81: update zts option name

Adjust the pkgsrc option name from "maintainer-zts" to "zts" for recent
PHP versions. Relates to PR pkg/56681.

(gutteridge)

2022-02-07 02:14:35 UTC MAIN commitmail json YAML

options.description: add a couple of PHP options

(gutteridge)