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 (29m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 08:39:43 UTC Now

2023-04-21 13:03:09 UTC MAIN commitmail json YAML

2023-04-21 12:58:59 UTC MAIN commitmail json YAML

doc: Updated devel/smake to 1.7nb2

(micha)

2023-04-21 12:57:19 UTC MAIN commitmail json YAML

devel/smake: Update to 1.7nb2

Remove patches (merged upstream).
Remove custom OS rules (no longer required according to upstream).

New features with AN-2023-04-19:

- RULES/os-sunos5.def: the manstyle detection code for sunos5 and
  newer was broken for GNU make.  Fix the code by moving the
  detection to a configure test setting the new make macro
  SOLARIS_MANSTYLE.  Users building with other make implementations
  or those using the bootstrap smake were not affected.
  Reported by: Michael B辰uerle.  Submitted by: Nico Sonack.

- libschily: no longer provide the symbols fgetline, getline.
  libschily used to provide these symbols as alternative names for
  js_getline and js_fgetline for compatibility with UNOS.  As
  their POSIX-incompatible signature causes problems when linking
  against musl statically, we now no longer provide these symbols
  by default.  Users wishing to restore the old behaviour should
  remove -DNO_GETLINE_COMPAT from CPPOPTS when compiling libschily.

- libschily: accordingly, the man pages getline(3) and fgetline(3)
  have been renamed to js_getline(3) and js_fgetline(3).

- RULES: fix HCC_COM expansion when CCOM=clang.  This fixes builds
  with GNU make when CCOM=clang.
  Submitted by: Nico Sonack.

(micha)

2023-04-21 12:09:13 UTC MAIN commitmail json YAML

digikam: add bl3.mk (for plugins)

(wiz)

2023-04-21 10:40:15 UTC MAIN commitmail json YAML

Needs bsdtar to get timestamps that python's zipfile wants to process

(joerg)

2023-04-21 10:34:25 UTC MAIN commitmail json YAML

2023-04-21 09:26:48 UTC MAIN commitmail json YAML

Updated devel/py-pip, devel/py-yapf

(adam)

2023-04-21 09:26:30 UTC MAIN commitmail json YAML

py-yapf: updated to 0.33.0

0.33.0
Added
- Add a new Python parser to generate logical lines.
- Added support for `# fmt: on` and `# fmt: off` pragmas.
Changes
- Moved 'pytree' parsing tools into its own subdirectory.
- Add support for Python 3.10.
- Format generated dicts with respect to same rules as regular dicts
- Generalized the ending comma heuristic to subscripts.
- Supports "pyproject.toml" by default.
Fixed
- Split line before all comparison operators.

(adam)

2023-04-21 09:21:43 UTC MAIN commitmail json YAML

py-pip: updated to 23.1

23.1 (2023-04-15)
=================

Deprecations and Removals
-------------------------
- Remove support for the deprecated ``--install-options``.
- ``--no-binary`` does not imply ``setup.py install`` anymore. Instead a wheel will be
  built locally and installed.
- ``--no-binary`` does not disable the cache of locally built wheels anymore. It only
  means "don't download wheels".
- Deprecate ``--build-option`` and ``--global-option``. Users are invited to switch to
  ``--config-settings``.
- Using ``--config-settings`` with projects that don't have a ``pyproject.toml`` now print
  a deprecation warning. In the future the presence of config settings will automatically
  enable the default build backend for legacy projects and pass the setttings to it.
- Remove ``setup.py install`` fallback when building a wheel failed for projects without
  ``pyproject.toml``.
- When the ``wheel`` package is not installed, pip now uses the default build backend
  instead of ``setup.py install`` for project without ``pyproject.toml``.

Features
--------
- Specify egg-link location in assertion message when it does not match installed location to provide better error message for debugging.
- Present conflict information during installation after each choice that is rejected (pass ``-vv`` to ``pip install`` to show it)
- Display dependency chain on each Collecting/Processing log line.
- Support a per-requirement ``--config-settings`` option in requirements files.
- The ``--config-settings``/``-C`` option now supports using the same key multiple
  times. When the same key is specified multiple times, all values are passed to
  the build backend as a list, as opposed to the previous behavior, where pip would
  only pass the last value if the same key was used multiple times.
- Add ``-C`` as a short version of the ``--config-settings`` option.
- Reduce the number of resolver rounds, since backjumping makes the resolver more efficient in finding solutions. This also makes pathological cases fail quicker.
- Warn if ``--hash`` is used on a line without requirement in a requirements file.
- Stop propagating CLI ``--config-settings`` to the build dependencies. They already did
  not propagate to requirements provided in requirement files. To pass the same config
  settings to several requirements, users should provide the requirements as CLI
  arguments.
- Support wheel cache when using ``--require-hashes``.
- Add ``--keyring-provider`` flag. See the Authentication page in the documentation for more info.
- In the case of virtual environments, configuration files are now also included from the base installation.

Bug Fixes
---------
- Fix grammar by changing "A new release of pip available:" to "A new release of pip is available:" in the notice used for indicating that.
- Normalize paths before checking if installed scripts are on PATH.
- Correct the way to decide if keyring is available.
- More consistent resolution backtracking by removing legacy hack related to setuptools resolution
- Include ``AUTHORS.txt`` in pip's wheels.
- The ``uninstall`` and ``install --force-reinstall`` commands no longer call
  ``normalize_path()`` repeatedly on the same paths. Instead, these results are
  cached for the duration of an uninstall operation, resulting in improved
  performance, particularly on Windows.
- Fix and improve the parsing of hashes embedded in URL fragments.
- When package A depends on package B provided as a direct URL dependency including a hash
  embedded in the link, the ``--require-hashes`` option did not warn when user supplied hashes
  were missing for package B.
- Correctly report ``requested_extras`` in the installation report when extras are
  specified for a local directory installation.
- When installing an archive from a direct URL or local file, populate
  ``download_info.info.hashes`` in the installation report, in addition to the legacy
  ``download_info.info.hash`` key.

Vendored Libraries
------------------
- Upgrade msgpack to 1.0.5
- Patch pkg_resources to remove dependency on ``jaraco.text``.
- Upgrade platformdirs to 3.2.0
- Upgrade pygments to 2.14.0
- Upgrade resolvelib to 1.0.1
- Upgrade rich to 13.3.3
- Upgrade setuptools to 67.6.1
- Upgrade tenacity to 8.2.2
- Upgrade typing_extensions to 4.5.0
- Upgrade urllib3 to 1.26.15

Improved Documentation
----------------------
- Cross-reference the ``--python`` flag from the ``--prefix`` flag,
  and mention limitations of ``--prefix`` regarding script installation.
- Add SECURITY.md to make the policy offical.
- Add username to Git over SSH example.
- Quote extras in the pip install docs to guard shells with default glob
  qualifiers, like zsh.
- Make it clear that requirements/constraints file can be a URL

(adam)

2023-04-21 09:09:54 UTC MAIN commitmail json YAML

doc: Added graphics/gmic-qt-digikam version 3.2.2.20230417

(wiz)

2023-04-21 09:09:45 UTC MAIN commitmail json YAML

graphics/Makefile: + gmic-qt-digikam

(wiz)

2023-04-21 09:09:31 UTC MAIN commitmail json YAML

graphics/gmic-qt-digikam: import gmic-qt-digikam-3.2.2.20230417

G'MIC is an open and full-featured framework for image processing,
providing several different user interfaces to
convert/manipulate/filter/visualize generic image datasets, from
1d scalar signals to 3d+t sequences of multi-spectral volumetric
images.

The package contains the digiKam plugin based on G'MIC.

(wiz)

2023-04-21 04:27:39 UTC MAIN commitmail json YAML

Updated www/ap2-auth-mellon to 0.18.1

Add persistent sessions patch from upsrtream
https://github.com/latchset/mod_auth_mellon/pull/120

Changes since 0.18.0 from the NEWS file:

* Logout endpoint can handle POST response.

* Ensure compatibility with OpenSSL 3.

* Add encryption certificate in mellon_create_metadata.sh.

(manu)

2023-04-21 01:50:01 UTC MAIN commitmail json YAML

doc: Updated misc/xfce4-calculator-plugin to 0.7.2

(gutteridge)

2023-04-21 01:49:50 UTC MAIN commitmail json YAML

xfce4-calculator-plugin: update to 0.7.2

Change log:

0.7.2 (2023-04-19)
=====
- Add basic GitLab pipeline
- Use same automake options as other projects
- build: Fix intltool lock file problem during make distcheck
- Update copyright year
- Remove deprecated project files
- build: Add missing includes
- build: Fix autoconf warnings
- build: Add GLib requirement
- Use "logo-icon-name" instead of "logo" in about dialog
- Fix license notices mentioning LGPL (#7)
- tests: Parenthesize concatenations to avoid ambiguity
- Fix the 64x64 icon
- Fix compilation warnings
- autoconf: Some updates
- Update bug report URL
- Make configure.ac.in more friendly to xfce-do-release helper
- Translation Updates:
  Albanian, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan,
  Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
  Eastern Armenian, English (Australia), English (Canada), English
  (United Kingdom), Estonian, Finnish, French, Galician, German,
  Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Interlingue,
  Italian, Japanese, Korean, Lithuanian, Malay, Norwegian Bokm奪l,
  Persian (Iran), Polish, Portuguese, Portuguese (Brazil), Russian,
  Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish, Ukrainian

(gutteridge)

2023-04-21 01:16:49 UTC MAIN commitmail json YAML

dmtx-utils: fix MAINTAINER and grammar in DESCR

(gutteridge)

2023-04-21 00:59:41 UTC MAIN commitmail json YAML

2023-04-21 00:51:52 UTC MAIN commitmail json YAML

Add OmitHeadersDB directive to specify file containing per-recipient
list of headers to not use in signature. The file format is:

user@doamin.tld header1,header2,header3
domain.tld      header4,header5

From upstream https://github.com/trusteddomainproject/OpenDKIM/pull/173

(manu)

2023-04-21 00:49:56 UTC MAIN commitmail json YAML

Added mail/openarc 20180921

ARC is a technology proposal, put forward by a consortium of organizations,
intended to allow a chain of message handlers (typically email operators)
to confirm handling by trusted upstream handlers in an attempt to confirm
the valid use of certain identifiers in the message.

ARC is still experimental, and its specification may change.  This package
is intended for use by operators willing to take part in the experiment and
provide their feedback to the development team.

(manu)

2023-04-21 00:44:19 UTC MAIN commitmail json YAML

Added databases/openldap-autogroup 2.6.4

The autogroup overlay allows automated updates of group memberships which
meet the requirements of any filter contained in the group definition.
The filters are built from LDAP URI-valued attributes. Any time an object
is added/deleted/updated, it is tested for compliance with the filters,
and its membership is accordingly updated. For searches and compares
it behaves like a static group.
If the attribute part of the URI is filled, the group entry is populated
by the values of this attribute in the entries resulting from the search.

(manu)

2023-04-21 00:34:01 UTC MAIN commitmail json YAML

2023-04-20 23:01:21 UTC MAIN commitmail json YAML

gmic: update patch to version submitted to upstream, and add URL

(wiz)

2023-04-20 21:32:35 UTC MAIN commitmail json YAML

doc/TODO: + opus-1.4, qemu-8.0, tor-browser-12.0.5.

(wiz)

2023-04-20 18:40:38 UTC MAIN commitmail json YAML

doc: Added misc/chatgpt-shell-cli version 0.0.20230420

(schmonz)

2023-04-20 18:40:31 UTC MAIN commitmail json YAML

Add and enable chatgpt-shell-cli.

(schmonz)

2023-04-20 18:40:28 UTC MAIN commitmail json YAML

Add chatgpt-shell-cli: Shell script to use OpenAI's ChatGPT and DALL-E

A simple, lightweight shell script to use OpenAI's chatGPT and DALL-E
from the terminal without installing python or node.js. The script uses
the official ChatGPT model `gpt-3.5-turbo` with the OpenAI API endpoint
`/chat/completions`. You can also use the new `gpt-4` model, if you
have access.

The script supports the use of all other OpenAI models with the
`completions` endpoint and the `images/generations` endpoint for
generating images.

(schmonz)

2023-04-20 18:13:11 UTC MAIN commitmail json YAML

doc: Updated www/p5-Playwright to 1.324

(schmonz)

2023-04-20 18:13:06 UTC MAIN commitmail json YAML

Update to 1.324. From the changelog:

- Ensure all PW methods returning Locator objects are correctly blessed

(schmonz)

2023-04-20 18:11:41 UTC MAIN commitmail json YAML

doc: Updated shells/oh-my-posh to 14.31.2

(schmonz)

2023-04-20 18:11:35 UTC MAIN commitmail json YAML

Update to 14.31.2. From the changelog:

Bug Fixes:

- battery: map to Full when at 100% on darwin, closes #3729
- fish: get last element from history, closes #3632

Features:

- path: add colored full path

(schmonz)

2023-04-20 14:42:47 UTC MAIN commitmail json YAML

doc: Updated textproc/icu to 73.1nb1

(wiz)

2023-04-20 14:42:32 UTC MAIN commitmail json YAML

icu: fix build breakage

Commit 2de88f9d9c07f7e693449f94858d96053222acea / issue 21833
changes UChar_t* to char16_t* in ures.h (lines 815, 840, 862, 885
at least, functions ures_getUnicodeString() and friends).

This breaks compilation of code using -DUCHAR_TYPE=uint16_t.
https://unicode-org.atlassian.net/browse/ICU-22356

Workaround: revert to previous version, like Gentoo does
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5db7fc59b5ff77e2cf44f51784ed4e87aeab5b

Bump PKGREVISION.

(wiz)

2023-04-20 13:19:06 UTC MAIN commitmail json YAML

2023-04-20 13:03:27 UTC MAIN commitmail json YAML

doc: Updated textproc/qore-yaml-module to 0.7.3

(nros)

2023-04-20 13:03:14 UTC MAIN commitmail json YAML

Update qore-yaml-module to version 0.7.3

Update to build with latest version of qore.
Build using cmake since configure.ac but not
./configure is included in dist any more.
This also means that prebuilt docs are not
included and building them requires doxygen
which is a quite heavy dependency.

(nros)

2023-04-20 13:00:04 UTC MAIN commitmail json YAML

doc: Updated textproc/qore-xml-module to 1.8.0

(nros)

2023-04-20 12:59:46 UTC MAIN commitmail json YAML

Update qore-xml-module to version 1.8.0

Update to build with latest version of qore.
Build using cmake since configure.ac but not
./configure is included in dist any more.
This also means that prebuilt docs are not
included and building them requires doxygen
which is a quite heavy dependency.

(nros)

2023-04-20 12:56:48 UTC MAIN commitmail json YAML

Update qore-uuid-module to version 1.4.1

Update to build with latest version of qore.
Build using cmake since configure.ac but not
./configure is included in dist any more.
This also means that prebuilt docs are not
included and building them requires doxygen
which is a quite heavy dependency.

(nros)

2023-04-20 12:55:45 UTC MAIN commitmail json YAML

doc: Updated databases/qore-openldap-module to 1.2.3

(nros)

2023-04-20 12:55:20 UTC MAIN commitmail json YAML

Update qore-openldap-module to version 1.2.4

Update to build with latest version of qore.
Build using cmake since configure.ac but not
./configure is included in dist any more.
This also means that prebuilt docs are not
included and building them requires doxygen
which is a quite heavy dependency.

(nros)

2023-04-20 12:53:54 UTC MAIN commitmail json YAML

doc: Updated textproc/qore-json-module to 1.8.2

(nros)

2023-04-20 12:51:38 UTC MAIN commitmail json YAML

Update qore-json-module to version 1.8.2

Update to build with latest version of qore.
Build using cmake since configure.ac but not
./configure is included in dist any more.
This also means that prebuilt docs are not
included and building them requires doxygen
which is a quite heavy dependency.

(nros)

2023-04-20 12:48:55 UTC MAIN commitmail json YAML

doc: Updated lang/qore to 1.14.2

(nros)

2023-04-20 12:48:28 UTC MAIN commitmail json YAML

Update lang/qore to version 1.14.2

Add patch to fix build on NetBSD/PowerPC.

New features in qore:
New sqlutils modules:
  JdbcFirebirdSqlUtil
  JdbcOracleSqlUtil
  JdbcPostgresqlSqlUtil
  OdbcFirebirdSqlUtil
  OracleSqlUtilBase
  PgsqlSqlUtilBase
  XdbcFirebirdSqlUtilBase

New DBI method to determine
the actual DB driver name for
wrapper drivers like ODBC and JDBC.
New methods to allow the actual DB
driver name to be determined when
using the odbc and jdbc DBI drivers:
  AbstractDatasource::getDriverRealName()
  Datasource::getDriverRealName()
  DatasourcePool::getDriverRealName()

FileLocationHandler module:
* added support for rest:// and
  rests:// locations
* added support for runtime extensibility
  from an environment variable
  (QORE_FILE_LOCATION_HANDLERS)

RestSchemaValidator module:
* parse and report path arguments when
  processing REST requests on the server
  side

Swagger module:
* parse and report path arguments when
  processing REST requests on the server
  side

Util module:
* added a path_params element to the
  UriQueryInfo typed hash to allow for
  reporting path arguments in calls
  supported by REST schemas

New get_safe_url() function to avoid
exposing passwords in URLs.

Many bugfixes.

(nros)

2023-04-20 11:12:15 UTC MAIN commitmail json YAML

nickle: put back mk/readline.buildlink3.mk unconditionally

(tnn)

2023-04-20 11:10:26 UTC MAIN commitmail json YAML

nickle: fix configure checks instead

This is likely to trip up builtin readline on old NetBSD releases
too since macOS base ships a fork of NetBSD readline.

(tnn)

2023-04-20 10:43:16 UTC MAIN commitmail json YAML

py-cryptography: fix openssl rpath for rust code

(tnn)

2023-04-20 10:13:41 UTC MAIN commitmail json YAML

2023-04-20 10:10:09 UTC MAIN commitmail json YAML

nickle: force pkgsrc readline on macOS

The configure tests are bungled and nickle tries to use
non-existent symbols with the built-in readline:

Undefined symbols for architecture arm64:
  "_rl_echo_signal_char", referenced from:
      _stop in main.o
  "_rl_reset_after_signal", referenced from:
      _stop in main.o

(tnn)

2023-04-20 05:53:12 UTC MAIN commitmail json YAML

Updated textproc/py-rdflib, devel/py-jaraco.path

(adam)

2023-04-20 05:52:12 UTC MAIN commitmail json YAML

py-jaraco.path: updated to 3.5.0

v3.5.0

Introduced ``Recording`` object and ``TreeMaker`` protocol,
with ``build()`` now explicitly accepting any ``TreeMaker``.

(adam)

2023-04-20 05:49:00 UTC MAIN commitmail json YAML

py-rdflib: updated to 6.3.2

RELEASE 6.3.2
fix: ROUND, ENCODE_FOR_URI and SECONDS SPARQL functions
fix: add __hash__ and __eq__ back to rdflib.paths.Path
fix: Add to_dict method to the JSON-LD Context class
fix: add the wgs namespace binding back
fix: change the prefix for https://schema.org/ back to schema
fix: include docs and examples in the sdist tarball
fix: IRI to URI conversion
fix: JSON-LD context construction from a dict
fix: reference to global inside get_target_namespace_elements
fix: restore the 6.1.1 default bound namespaces
test: add webtest marker to tests that use the internet
chore: Update CONTRIBUTORS from commit history
docs: fix typo in NamespaceManager documentation

(adam)

2023-04-20 05:37:51 UTC MAIN commitmail json YAML

dmtx-utils: fix pkglint and use standard checksums

(wiz)

2023-04-20 05:37:00 UTC MAIN commitmail json YAML

doc: + Updated net/parpd to 2.0 [roy 2023-04-13]

(wiz)

2023-04-20 05:36:23 UTC MAIN commitmail json YAML

parpd: remove patch that was removed from distinfo during update

(wiz)

2023-04-20 04:15:28 UTC MAIN commitmail json YAML

doc: Updated net/syncthing to 1.23.4

(triaxx)

2023-04-20 04:14:51 UTC MAIN commitmail json YAML

syncthing: Update to 1.23.4

upstream changes:
-----------------
v1.23.4
Bugfixes:
    #8851: "Running global migration to fix encryption file sizes" on every start

v1.23.3
Bugfixes:
    #5408: Selection of time in versions GUI not possible without editing the string inside the textfield
    #8277: Mutual encrypted sharing doesn't work (both sides with password)
    #8556: Increased file size when sharing between encrypted devices
    #8599: Key generation at connect time is slow for encrypted connections
Enhancements:
    #7859: Allow sub-second watcher delay (use case: remote development)
Other issues:
    #8828: cmd/stdiscosrv: TestDatabaseGetSet flake

(triaxx)

2023-04-20 01:26:46 UTC MAIN commitmail json YAML

2023-04-19 23:53:34 UTC MAIN commitmail json YAML

doc: Updated sysutils/xfce4-genmon-plugin to 4.2.0

(gutteridge)

2023-04-19 23:53:15 UTC MAIN commitmail json YAML

xfce4-genmon-plugin: update to 4.2.0

4.2.0 (2023/04/16)
==================
- Add shell script to migrate settings to xfconf
- Fix GDK_Critical
- Fixed deskbar support. Issue #8
- Add Update Now menu option to right-click menu
- build: Add GLib requirement
- build: Fix autotools warnings
- Use "logo-icon-name" instead of "logo" in about dialog
- ***Migrate settings to xfconf
- Remove unused variable
- Fix intltool lock file bug in make distcheck
- Remove closing of standard file descriptors in the child process
- Update COPYING
- Add <css> tag support
- fixed .genmon_label and -gtk-icon transform bugs
- Fix code indentation and readalility
- Add support for single and multi-row panel layout options
- Added support for <css></css> XML tag. Changed default progressbar width to 4px
- automake: Modernize following other projects
- autoconf: Some updates
- Update `.gitignore`
- Add missing comments to code functions
- Fix indentation
- Translation updates

(gutteridge)

2023-04-19 22:35:38 UTC MAIN commitmail json YAML

doc: Updated lang/nim to 1.6.12

(nikita)

2023-04-19 22:35:27 UTC MAIN commitmail json YAML

nim: update to version 1.6.12

Changelog (https://nim-lang.org/blog/2022/11/23/version-1610-released.html,
https://nim-lang.org/blog/2023/03/10/version-1612-released.html):

Version 1.6.12 released

The Nim team is happy to announce version 1.6.12, our sixth patch release for Nim 1.6.

Version 1.6.12 is a result of almost four months of hard work, and it contains 51 commits, bringing some general improvements over 1.6.10.

Bugfixes

These reported issues were fixed:

    Fixed “sizeof object containing a set is wrong” (#20914)
    Fixed “Missing bounds check for len(toOpenArray..)” (#20954)
    Fixed “Add warning for bare except: clause” (#19580)
    Fixed “Little Copyright notice inconsistency” (#20906)
    Fixed “std/deques: wrong result after calling shrink” (#21278)
    Fixed “io.readLine adds ‘\00’ char to the end” (#21273)
    Fixed “New JS mdoe issue: return + ref ints.” (#21317)
    Fixed “Bad codegen for passed var seq to proc returning array[] converted to seq with @” (#21333)
    Fixed “Templates allowed to use ambiguous identifier” (#1027)
    Fixed “Mutating a var parameter through a mutable view triggers SIGSEGV” (#20422)
    Fixed “macOS use SecRandomCopyBytes instead of getentropy” (#20466)
    Fixed “gcc error when constructing an object that has the same name in the same file name in 2 different directories” (#20139)

Version 1.6.10 released

The Nim team is happy to announce version 1.6.10, our fifth patch release for Nim 1.6.

Version 1.6.10 is a result of almost four months of hard work, and it contains 29 commits, bringing some general improvements over 1.6.8.

This version brings OpenSSL 3 support to Nim 1.6, and large allocations and deallocations for ARC/ORC are now faster.

Bugfixes

These reported issues were fixed:

    Fixed “–styleCheck:off does not work (and –styleCheck:hint is now the default?)” (#20397)
    Fixed “dereferencing pointer to incomplete type error with gcc 9.4 with statics/cast” (#20141)
    Fixed “strutils.find uses cstring optimization that stops after \0” (#19500)
    Fixed “Nimpretty mangles numeric literal procs” (#20553)
    Fixed “Regression in proc symbol resolution; Error: attempting to call routine “ (#18990)
    Fixed “of operator doesn’t consider generics under orc/arc” (#20391)
    Fixed ““incompatible type” when mixing float32 and cfloat in generics” (#19349)
    Fixed “cannot generate code for: mSlice with toOpenArray” (#19969)
    Fixed “-mm flag is ignored on latest Nim 1.7.1 be4bd8” (#20426)

(nikita)

2023-04-19 20:46:05 UTC MAIN commitmail json YAML

doc: Updated textproc/zet to 1.0.0

(pin)

2023-04-19 20:45:41 UTC MAIN commitmail json YAML

textproc/zet: update to 1.0.0

1.0.0 - 2023-04-18
Added
  - Add the --count-lines flag to show the number of times each line occurs in
    the input and the --count-files flag to show the number of files each line
    occurs in. The --count flag acts like --count-lines unless --count-files is
    active, in which case it acts like --count-files. The --count-none flag
    turns off counting, and can be used to override the other count flags.
    (In the usual POSIX convention, the last count flag given will override any
    previous count flag.)

Changed
  - Breaking: When - is used as a file argument, zet reads from standard input,
    not the file - in the current directory. (That file can be passed to zet
    as ./-)
  - When no file arguments are given, zet reads from standard input.
  - Breaking: Add the --files (alias --file) flag for the zet single and zet
    multiple commands. The zet single command now outputs lines that occur
    exactly once in the entire input. The zet single --file command reproduces
    the old behavior (output lines that occur in just one file, though possibly
    many times in that one file). Similarly, zet multiple --files reproduces
    the old behavior of requiring output lines to occur in more than one file,
    while zet multiple without the --files flag will output lines that occur
    more than once, even if in just one file.
  - Use clap 4's help format, but clap 3's colors. This is self-indulgent
    recreation of (part of) clap's help feature, because I like the clap 4's
    help format, but really miss the colored (rather than gray-scale) help.

(pin)

2023-04-19 20:44:46 UTC MAIN commitmail json YAML

doc: Updated graphics/wallust to 2.1.0

(pin)

2023-04-19 20:44:20 UTC MAIN commitmail json YAML

graphics/wallust: update to 2.1.0

- add cursor named parameter, to follow what pywal does and some comments
- write sequences into a file, in order to be used by new terminals
- add -s/--skip_sequences flag
- fix color generation a bit for dark filter
- change terminal color sequences

(pin)

2023-04-19 20:43:18 UTC MAIN commitmail json YAML

doc: Updated net/termscp to 0.11.3

(pin)

2023-04-19 20:42:52 UTC MAIN commitmail json YAML

net/termscp: update to 0.11.3

- Issue 166: fixed SCP relative paths on Windows

(pin)

2023-04-19 17:45:39 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg4, multimedia/ffplay4, lang/nodejs, lang/nodejs18, lang/nodejs16, lang/nodejs14; Removed lang/npm

(adam)

2023-04-19 17:45:31 UTC MAIN commitmail json YAML

2023-04-19 17:42:12 UTC MAIN commitmail json YAML

2023-04-19 17:41:29 UTC MAIN commitmail json YAML

nodejs16: updated to 16.20.0

Version 16.20.0 'Gallium' (LTS)

Notable Changes

deps:
update undici to 5.20.0 (Node.js GitHub Bot)
update c-ares to 1.19.0 (Micha谷l Zasso)
upgrade npm to 8.19.4 (npm team)
update corepack to 0.17.0 (Node.js GitHub Bot)
(SEMVER-MINOR) src: add support for externally shared js builtins (Michael Dawson)

(adam)

2023-04-19 17:40:30 UTC MAIN commitmail json YAML

nodejs18: updated to 18.16.0

Version 18.16.0 'Hydrogen' (LTS)

Notable changes

Add initial support for single executable applications
Replace url parser with Ada
buffer:
(SEMVER-MINOR) add Buffer.copyBytesFrom(...) (James M Snell)
doc:
add marco-ippolito to collaborators (Marco Ippolito)
add debadree25 to collaborators (Debadree Chatterjee)
add deokjinkim to collaborators (Deokjin Kim)
events:
(SEMVER-MINOR) add listener argument to listenerCount (Paolo Insogna)
lib:
(SEMVER-MINOR) add AsyncLocalStorage.bind() and .snapshot() (flakey5)
(SEMVER-MINOR) add aborted() utility function (Debadree Chatterjee)
src:
(SEMVER-MINOR) allow optional Isolate termination in node::Stop() (Shelley Vohr)
(SEMVER-MINOR) allow embedder control of code generation policy (Shelley Vohr)
stream:
(SEMVER-MINOR) add abort signal for ReadableStream and WritableStream (Debadree Chatterjee)
tls:
(SEMVER-MINOR) support automatic DHE (Tobias Nie��en)
url:
(SEMVER-MINOR) implement URLSearchParams size getter (James M Snell)
worker:
(SEMVER-MINOR) add support for worker name in inspector and trace_events (Debadree Chatterjee)

(adam)

2023-04-19 17:38:36 UTC MAIN commitmail json YAML

nodejs: updated to 19.9.0

Version 19.9.0 (Current)

Notable Changes

Tracing Channel in diagnostic_channel
New URL.canParse API
(SEMVER-MINOR) add getMaxListeners method (Khafra)
(SEMVER-MINOR) migrate to WiX4 (Stefan Stojanovic)
(SEMVER-MINOR) deprecate napi_module_register (Vladimir Morozov)
(SEMVER-MINOR) add setter & getter for default highWaterMark (Robert Nagy)
(SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow)

(adam)

2023-04-19 17:36:12 UTC MAIN commitmail json YAML

ffmpeg4 ffplay4: updated to 4.4.4

version 4.4.4:
- avcodec/tests/snowenc: Fix 2nd test
- avcodec/tests/snowenc: return a failure if DWT/IDWT mismatches
- avcodec/snowenc: Fix visual weight calculation
- avcodec/tests/snowenc: unbreak DWT tests
- avcodec/vp3: Add missing check for av_malloc
- avformat/nutdec: Add check for avformat_new_stream
- avcodec/mpeg12dec: Check input size
- avcodec/escape124: Fix some return codes
- avcodec/escape124: fix signdness of end of input check
- Use https for repository links
- avcodec/rpzaenc: stop accessing out of bounds frame
- avcodec/motionpixels: Mask pixels to valid values
- avcodec/xpmdec: Check size before allocation to avoid truncation
- avcodec/bink: Avoid undefined out of array end pointers in binkb_decode_plane()
- avcodec/bink: Fix off by 1 error in ref end
- avcodec/utils: Ensure linesize for SVQ3
- avcodec/utils: allocate a line more for VC1 and WMV3
- avcodec/videodsp_template: Adjust pointers to avoid undefined pointer things
- avcodec/pngdec: Check deloco index more exactly
- avcodec/ffv1dec: Check that num h/v slices is supported
- avformat/mov: Check samplesize and offset to avoid integer overflow
- avcodec/pictordec: Remove mid exit branch
- avcodec/eac3dec: avoid float noise in fixed mode addition to overflow
- avcodec/utils: use 32pixel alignment for bink
- avcodec/scpr3: Check bx
- avcodec/012v: Order operations for odd size handling
- avcodec/eatgq: : Check index increments in tgq_decode_block()
- avcodec/scpr: Test bx before use
- avformat/mxfdec: Use 64bit in remainder
- avcodec/sunrast: Fix maplength check
- avcodec/wavpack: Avoid undefined shift in get_tail()
- avcodec/wavpack: Check for end of input in wv_unpack_dsd_high()
- avformat/id3v2: Check taglen in read_uslt()
- avcodec/tiff: Ignore tile_count
- avcodec/ffv1dec: restructure slice coordinate reading a bit
- avcodec/mlpdec: Check max matrix instead of max channel in noise check
- swscale/input: Use more unsigned intermediates
- avcodec/alsdec: The minimal block is at least 7 bits
- avformat/replaygain: avoid undefined / negative abs
- swscale/output: Bias 16bps output calculations to improve non overflowing range
- avcodec/speedhq: Check buf_size to be big enough for DC
- avcodec/ffv1dec: Fail earlier if prior context is corrupted
- avcodec/nvenc: fix b-frame DTS behavior with fractional framerates
- avfilter/vf_untile: swap the chroma shift values used for plane offsets
- avcodec/nvenc: fix vbv buffer size in cq mode
- avcodec/mjpegenc: take into account component count when writing the SOF header size
- swscale: aarch64: Fix yuv2rgb with negative stride

(adam)

2023-04-19 17:25:56 UTC MAIN commitmail json YAML

Add a package for galette:

Galette is a GALasm-compatible GAL assembler that takes a set of equations,
and generates a JEDEC file suitable for feeding to a GAL programmer.

(thorpej)

2023-04-19 17:18:32 UTC MAIN commitmail json YAML

doc: Updated sysutils/zabbix60-frontend to 6.0.16

(otis)

2023-04-19 17:18:17 UTC MAIN commitmail json YAML

doc: Updated sysutils/zabbix60-agent to 6.0.16

(otis)

2023-04-19 17:17:49 UTC MAIN commitmail json YAML

doc: Updated sysutils/zabbix60-java to 6.0.16

(otis)

2023-04-19 17:17:37 UTC MAIN commitmail json YAML

doc: Updated sysutils/zabbix60-proxy to 6.0.16

(otis)

2023-04-19 17:17:24 UTC MAIN commitmail json YAML

doc: Updated sysutils/zabbix60-server to 6.0.16

(otis)

2023-04-19 17:17:08 UTC MAIN commitmail json YAML

zabbix60: Update to 6.0.16

Bug fixes:
- Fixed the crash in Zabbix agent 2 when running out of available file
  descriptors
- Hid the option "Create new groups" for unprivileged users in the Import form
- Added validation to the "Server" IP/DNS option in the Zabbix agent 2
  configuration
- Fixed loss of preprocessing result when step with delta is used
- Fixed duplication in web scenario error messages when curl cannot resolve
  host
- Added an extra master item prototype to the Elasticsearch Cluster by HTTP
  template to reduce preprocessing worker utilization
- Fixed VMware parameters display
- Fixed the inability to import host prototypes containing SNMPv3 interface;
  allowed to supply conditional parameters with default values to
  hostprototype.create and hostprototype.update API methods when the parameters
  have no effect; added audit logging of changes to host prototypes when
  unlinking a template; fixed the inability to remove group links or group
  prototypes from a host prototype of a linked template
- Fixed different severity paddings in trigger popups and maps triggers
- Fixed selected count when using filter and filtered parameter is changed in a
  popup
- Fixed debug section overlapping with 'Add new widget' placeholder in the
  dashboard
- Fixed messages when updating graph prototype discovery
- Added a check for numeric value in value mapping
- Fixed incorrect padding in multiselect popup contrast dark and light
  stylesheets
- Fixed the markup for Type of calculation expression field
- Added support for item and item_preproc table fields to be either nvarchar or
  nclob

Full release notes: https://www.zabbix.com/rn/rn6.0.16

(otis)

2023-04-19 16:33:39 UTC MAIN commitmail json YAML

Updated devel/cvise

(adam)

2023-04-19 16:31:42 UTC MAIN commitmail json YAML

cvise: updated to 2.7.0

v2.7.0

quite a few Clang passes were reworked
daily GitHub Action has been added for LLVM daily snapshot
--start-with provides a better error message if the pass is not found
pyupgrade was used to modernize the codebase to Python 3.6

(adam)

2023-04-19 15:45:35 UTC MAIN commitmail json YAML

ruby-redmine50: make use of SYSCONFBASE consistent

(triaxx)

2023-04-19 15:43:17 UTC MAIN commitmail json YAML

2023-04-19 15:08:48 UTC MAIN commitmail json YAML

doc: Updated editors/poke to 3.1

(fcambus)

2023-04-19 15:08:36 UTC MAIN commitmail json YAML

poke: update to 3.1.

Version 3.1 (17 April 2023)
* Bug fixes

  - Fix recognition of token 0[bB] in the lexer.

  - Do not validate and check _print* functions within struct types
    as if they were methods.  As functions, they can have any
    signature as they are no special in any way.

  - Do not emit an empty table for computed fiels in the output of
    .info type if the type has no computed fields.

  - Use tar-ustar in AM_INIT_AUTOMAKE.  The usage older algorithms in
    tar was causing problems when creating poke tarballs with long
    path names.

  - std.pk now provides utility functions to parse and compare poke
    versions.  This is for example to be used by poke pickles in
    order to require a particular minimum version of the program.

  - poked now recognizes the short option -S.

  - poked now creates its socket with umask 0077, and it uses a more
    suitable default socket path that includes the PID of the process
    running the daemon.

  - The Poke compiler now emits proper parse errors when problems are
    found in asm templates.

  - poke will no longer abort execution in case it finds a fatal
    error in the lexer, such as memory exhaustion.

  - Casts from arrays to arrays now use the right bounder.

  - Constant folding of offset multiplication by an offset with zero
    unit is now fixed.

(fcambus)

2023-04-19 14:40:42 UTC MAIN commitmail json YAML

doc: Updated sysutils/nnn to 4.8

(sjmulder)

2023-04-19 14:40:35 UTC MAIN commitmail json YAML

sysutils/nnn: Update to 4.8

Changes:
- show total size (key S) of non-filtered selection in a directory
- fix tilde (~) handling in file name
- plugin `.nmv` now respects `-u` flag
- env var `$NNN_PREFER_SELECTION` exported to all plugins
- support for wezterm in `preview-tui`
- create new file or directory (tree) on startup
- run command as plugin now supports exported variables
- use `"$nnn"` anywhere when running command as plugin
- set defaults for some prompts on Enter
- improve archive, rename and create new workflows
- optimize link creation
- allow overwriting regular files on new empty file creation
- add patch for colemak keyboard (existing renamed to colemak-dh)
- add correct check for Wayland in clipboard plugins
- add quitcd script for nushell
- plugin `kdeconnect` - send multiple files
- plugin `preview-tui`: add `chafa` as preferred image viewer, multiple
  fixes
- plugin `nmount` - misc. improvements
- add icon for jxl files

(sjmulder)

2023-04-19 14:38:38 UTC MAIN commitmail json YAML

icu: reflect solib major bump to 73

Ride PKGREVISION bump already made earlier.

(gutteridge)

2023-04-19 14:36:26 UTC MAIN commitmail json YAML

doc: Updated textproc/libxlsxwriter to 1.1.5

(sjmulder)

2023-04-19 14:36:14 UTC MAIN commitmail json YAML

textproc/libxlsxwriter: Update to 1.1.5

Changes:
- Added support for writing a workbook to a memory buffer instead of
  to a file via the output_buffer parameter of workbook_new_opt().
- Add support for using in-memory data instead of temporary files on
  systems where fmemopen() and open_memstream() are supported. This
  requires the USE_MEM_FILE compilation option.

(sjmulder)

2023-04-19 14:28:41 UTC MAIN commitmail json YAML

firefox: 112 requires nss>=3.89

(gutteridge)

2023-04-19 14:14:27 UTC MAIN commitmail json YAML

doc: Updated www/hugo to 0.111.3

(nikita)

2023-04-19 14:14:15 UTC MAIN commitmail json YAML

hugo: update to version 0.111.3

Changelog (taken from https://github.com/gohugoio/hugo/releases):

v0.111.3 Latest
Bug fixes
    Fix "unknown shortcode token" when calling shortcode within fenced code block e7148f3 @bep #10819
    Don't fail when calling Paginate with an empty pages.PagesGroup 34a86e1 @bep #10802
    Improve error message for unclosed shortcode with inner content 9818724 @deining

Improvements
    tpl: Add hasSuffix alias d171d15 @jfish2
    Run gofmt -s on source files d55af2a @deining
    tpl/math: Allow multi numbers in add, sub, mul, div, min and max 84201e8 @septs
    server: Replace golang.org/x/net/context with context 0f01bd4 @alexandear
    watcher: use time.NewTicker to prevent leaks 02ab77d @alexandear
    ensure we default to 10 correctly 873be9f @davidejones
    switch transfers to workers bebb2b8 @davidejones
    customize parallel transfer count e6f029b @davidejones
    metadecoders: Add support for native org dates in frontmatter PR #7433 added support for Org timestamps for the DATE header. This PR widens the support with additional front matter headers LASTMOD, PUBLISHDATE and EXPIRYDATE. bdbfacb @johannesengl #8536

Dependency Updates
    deps: Update go-org to v1.6.6 1c841ec @niklasfasching

Documentation
    docs: Improve examples of variadic math functions b6f44aa @jmooring
    readme: Update dependency list 04b9811 @deining

v0.111.2
Bug fixes
    Fix .Fragments when called cross sites on uninitialized output format b83050c @bep #10794
    Fix "context canceled" with partial 3bbeb56 @bep #10789
    cache: Fix --gc failure on Windows 184a67a @alexandear
    snap: Fix dart-sass-embedded installation a950950 @jmooring #10783
    Allow page.TableOfContents on self in shortcode df5608f @bep #10791
    Page context handling in i18n 6c798eb @bep #10782
    Work around --gc failure on Windows <= 10 ec1c97e @bep #10781
    Correct typos in Go comments 36ce3a4 @alexandear

Documentation
    tpl/partial: Consolidate GoDoc f56ce01 @bep

Build Setup
    Update to Go 1.20.1 f10009e @bep #10785

v0.111.1
This fixes the "page" not defined issue in Hugo 0.111.0. eef23a7 @bep #10774

(nikita)

2023-04-19 13:39:10 UTC MAIN commitmail json YAML

doc: Updated math/sc-im to 0.8.3

(sjmulder)

2023-04-19 13:38:54 UTC MAIN commitmail json YAML

math/sc-im: Update to 0.8.3

Changes:

New
- Multi Sheet support
  added :newsheet, :nextsheet, :prevsheet :delsheet COMMAND_MODE
  commands. `gt` and `gT` commands in NORMAL_MODE are now used for
  moving between sheets
  - added new colors types SHEET, CURRENT_SHEET and FILENM
  - .sc file saving with multiple sheets
  - loading xlsx with multiple sheet
  - saving xlsx with multiple sheets
  - add :renamesheet COMMAND_MODE command
  - created movetosheet command in gram.y, to be used internally or in
    scripts when saving and loading files.
  - reeval in multiple sheets: graph now should keep track of the
    different sheets reference cells from different sheets in formulas:
    ={"Sheet2"}!A2
- Save triggers in files
- Added automated tests
- C command in EDIT MODE
- Added ignore_hidden configuration variable to address #674 #653. With
  this hidden rows can be ignored when exporting spreasheets. Useful
  when exporting the result of a filter. This will also be honored
  when copy/pasting a range that have hidden rows in it.
- PR 725: added 'default_open_file_under_cursor_cmd' configuration
  value that can be set at runtime

Changes
- added more detailed error in gram.y:yyerror
- Adapt string and number search for multisheet
- marks now considers sheet. We could have mark A in Sheet 1, and
  mark B on Sheet 2.
- modified tick() and fix_marks()
- Renamed auto_justify to auto_fit
- `gt` command of NORMAL_MODE renamed to `go`
- Removed --sheet and --filename_with_mode configuration variables
- UNDO now saves reference to the sheet where the action took place.
- copy_to_undostruct() now keep in added/removed list struct ent_ptr *
  (that knows of sheets), rather than struct ent *.
- Copy alignment of strings when doing `Pf`.
- undo: save maxrow, maxcol, modflg values before and after changes,
  so they can be restored after undo/redo actions
- Modified yanklist to be struct ent_ptr list, rather than struct ent
  list.
- Ents_that_depends_on_list now takes ent_ptr rather than struct ent *
  as parameter
- Backslash double quotes in cpaste. Issue 574.
- Do not free ents of sheets when deleting a sheet manually (only at
  exit).  just mark them as deleted.
- Inform old value and new value when changing configuration variable
- UI optimizations
- Store offscr_sc values when saving sc files. Restore them when
  loading sc files
- Simplify clipboard code
- xlsx.c: Convert to uppercase before replacing functions
- Added D command on EDIT mode.
- ESC in EDIT_MODE also confirm changes.
- Reeval when pasting from clipboard and autocalc is set
- Adjust Makefile to have logic for clipboard commands on MacOS

Fixes
- fixed building warnings
- fix in calc_mobile_cols()
- fix not updating graph correctly after yanking cells with references
  -> Pc -> undo.  It could also segfault on ocassions as well. Added
  test5 and test6 for this.
- Issue #568: handle '>' and '<' on mappings.
- Issue #569: fix invalid read/write/segfault when deleting column.
  Added test8 and test9 for this.
- fix horizontal scroll when editing cells with long strings (wider
  than screen)
- Avoid reading passed maxcols maxrows when shifting left or up over
  last sheet column/row.
- fix in Pv when pasting over same place where data was yanked.
- fix in paste_yanked_ents: calloc didnt count that yanked cells could
  share dependencies.
- fix a bug when refreshing grid when autowrap operates. Issue 578.
- Avoid segfault in autobackup when no current file is set.
- fix in cw dw c$ d$ commands of EDIT_MODE
- fix leak in del_selected_cells
- fix when using C-r in INSERT_MODE
- fix arguments reversed on sc.colrow2a
- fix in delete_filters that caused SEGFAULT. Issue 637.
- fix in unformat. call to copy_to_undostruct with wrong parameters.
- fix swapped arguments on lsetform
- added string functions to dep graph
- Issue #697: do not allow to override nocurses config variable
- fix #694: csv import and export / LaTex export
- fix #700: '{' '}' normal mode commands reset cmd_multiplier

(sjmulder)

2023-04-19 13:32:29 UTC MAIN commitmail json YAML

doc: Added databases/pg_top version 4.0.0

(joerg)

2023-04-19 13:32:16 UTC MAIN commitmail json YAML

2023-04-19 13:31:58 UTC MAIN commitmail json YAML

Add pg_top-4.0.0

pg_top is 'top' for PostgreSQL. It is derived from Unix Top. Similar to
top, pg_top allows you to monitor PostgreSQL processes. Also see
pg_systat to monitor various PostgreSQL statistics tables. pg_top also
allows you to:

- View currently running SQL statement of a process.
- View query plan of a currently running SQL statement.
- View locks held by a process.
- Monitor remote databases that have the pg_proctab extension loaded.

(joerg)

2023-04-19 13:22:32 UTC MAIN commitmail json YAML

goplus: fix, stdlib still appears to be missing

(nikita)

2023-04-19 13:19:51 UTC MAIN commitmail json YAML

goplus: does not support go120 yet.

(nikita)

2023-04-19 13:12:36 UTC MAIN commitmail json YAML

devel/mustach: Delete old patch file

(sjmulder)

2023-04-19 13:11:49 UTC MAIN commitmail json YAML

One CATEGORIES is enough

(joerg)

2023-04-19 13:10:45 UTC MAIN commitmail json YAML

doc: Updated devel/mustach to 1.2.5

(sjmulder)

2023-04-19 13:10:31 UTC MAIN commitmail json YAML

devel/mustach: Update to 1.2.5

Changes in 1.2.5:

Fix:
- Don't override CFLAGS in Makefile
- Use of $(INSTALL) in Makefile for setting options

Minor:
- Orthograf of 'instantiate'

Changes in 1.2.4:

Fix:
- Latent SIGSEGV using cJSON

Changes in 1.2.3:

New:
- Flag Mustach_With_ErrorUndefined (and option --strict for the tool)
  for returning a requested tag is not defined
- Test of specifications in separate directory

Fix:
- Version printing is now okay
- Compiling libraries on Darwin (no soname but install_name)
- Compiling test6 with correct flags
- Update test from specifications
- Better use of valgrind reports

(sjmulder)

2023-04-19 12:52:17 UTC MAIN commitmail json YAML

Import goplus version 1.1.3

Go+ is a statically-typed language designed for data
science. It is fully compatible with the Go language, but
has a more script-like style, being more readable code
for data science than Go.

(nikita)

2023-04-19 10:58:31 UTC MAIN commitmail json YAML

gerb: add missing python build tool and improve PKGVERSION

(wiz)

2023-04-19 09:09:19 UTC MAIN commitmail json YAML

doc: Updated games/exult to 1.6nb8

(wiz)

2023-04-19 09:09:02 UTC MAIN commitmail json YAML

exult: depend on png and add ipack to PLIST

Bump PKGREVISION.

(wiz)

2023-04-19 08:29:33 UTC MAIN commitmail json YAML

Updated textproc/icu

(adam)

2023-04-19 08:22:24 UTC MAIN commitmail json YAML

lua-expat: requires expat 2.4 or newer

(wiz)

2023-04-19 08:18:43 UTC MAIN commitmail json YAML

py-transitions: fix previous

(wiz)

2023-04-19 08:12:01 UTC MAIN commitmail json YAML

2023-04-19 08:06:31 UTC MAIN commitmail json YAML

icu: updated to 73.1

ICU 73 improves Japanese and Korean short-text line breaking, reduces C++ memory use in date formatting, and promotes the Java person name formatter from tech preview to draft.

(adam)

2023-04-19 05:27:52 UTC MAIN commitmail json YAML

Updated devel/py-rstr, devel/py-filelock

(adam)

2023-04-19 05:26:38 UTC MAIN commitmail json YAML

py-filelock: updated to 3.12.0

3.12.0
Get rid of warning about inability to link to _thread._local.
Bump deps and tools
Add umask check to tests so umask 002 is valid
Fix lock hang on Windows
Conditionally disable/enable thread-local lock behavior.

(adam)

2023-04-19 05:23:36 UTC MAIN commitmail json YAML

py-rstr: updated to 3.2.1

3.2.1
- Fixes import failure under Python 3.11

(adam)

2023-04-19 05:05:30 UTC MAIN commitmail json YAML

Updated databases/redis, databases/py-peewee, textproc/py-pygments

(adam)

2023-04-19 05:04:49 UTC MAIN commitmail json YAML

py-pygments: updated to 2.15.1

Version 2.15.1
--------------
- Updated lexers:
  * Java properties: Fix catastrophic backtracking

- Fix Python console traceback lexing being too strict
  and sometimes reordering output

(adam)

2023-04-19 05:02:59 UTC MAIN commitmail json YAML

py-peewee: updated to 3.16.1

3.16.1

* Add changes required for building against Cython 3.0 and set Cython
  language-level to 3.
* Ensure indexes aren't added to unindexed fields during introspection.
* Ensure we don't redundantly select same PK in prefetch when using
  PREFETCH_TYPE.JOIN.
* In Sqlite migrator, use Sqlite's builtin DROP and RENAME column facilities
  when possible. This can be overridden by passing `legacy=True` flag.

(adam)

2023-04-19 05:01:08 UTC MAIN commitmail json YAML

redis: updated to 7.0.11

Redis 7.0.11 Released Mon Apr 17 16:00:00 IST 2023
================================================================================

Upgrade urgency: SECURITY, contains fixes to security issues.

Security Fixes:
* (CVE-2023-28856) Authenticated users can use the HINCRBYFLOAT command to create
  an invalid hash field that will crash Redis on access

Bug Fixes
=========

* Add a missing fsync of AOF file in rare cases
* Disconnect pub-sub subscribers when revoking allchannels permission

Platform / toolchain support related improvements
=================================================

* Fix a compiler fortification induced crash when used with link time optimizations

(adam)

2023-04-19 04:54:03 UTC MAIN commitmail json YAML

2023-04-19 00:16:02 UTC MAIN commitmail json YAML

seamonkey: try fixing py-expat dependency

(wiz)

2023-04-18 22:20:25 UTC MAIN commitmail json YAML

py-cryptography: explicitly set OPENSSL_DIR to fix build on NetBSD

(wiz)

2023-04-18 22:14:58 UTC MAIN commitmail json YAML

2023-04-18 22:11:08 UTC MAIN commitmail json YAML

2023-04-18 21:58:02 UTC MAIN commitmail json YAML

Restore upper bound, but allow py-Willow-1.5.

(joerg)

2023-04-18 21:52:37 UTC MAIN commitmail json YAML

py-wagtail: remove upper bound on py-Willow so pbulk has a chance to start

(wiz)

2023-04-18 21:31:16 UTC MAIN commitmail json YAML

doc: Updated math/nickle to 2.91

(wiz)

2023-04-18 21:31:08 UTC MAIN commitmail json YAML

nickle: update to 2.91.

test: Add test for sort functions
prng: Make randint work for values <= 0
sort: make pivot computation pass positive value to randint
edit: Use asprintf when creating file editing command to avoid overflow
PRNG: ensure that randint returns evenly distributed values
Fix release process

(wiz)

2023-04-18 21:11:39 UTC MAIN commitmail json YAML

Updated www/nginx-devel to 1.24.0nb2
Updated www/nginx to 1.24.0nb2

(osa)

2023-04-18 21:10:38 UTC MAIN commitmail json YAML

2023-04-18 20:51:58 UTC MAIN commitmail json YAML

Updated www/nginx-devel to 1.24.0nb1
Updated www/nginx to 1.24.0nb1

(osa)

2023-04-18 20:50:06 UTC MAIN commitmail json YAML

2023-04-18 19:50:34 UTC MAIN commitmail json YAML

Restore dependencies

(joerg)

2023-04-18 19:29:11 UTC MAIN commitmail json YAML

Updated devel/libunit to 1.29.1
Updated www/unit to 1.29.1
Updated www/unit-perl to 1.29.1
Updated www/unit-php to 1.29.1
Updated www/unit-python to 1.29.1
Updated www/unit-ruby to 1.29.1

(osa)

2023-04-18 19:24:53 UTC MAIN commitmail json YAML

*/*unit*: update NGINX Unit from 1.29.0 to 1.29.1

<ChangeLog>

*) Bugfix: stop creating world-writeable directories.

*) Bugfix: memory leak related to NJS.

*) Bugfix: path parsing in PHP applications.

*) Bugfix: enabled UTF-8 for Python config by default to avoid
  applications failing in some cases.

*) Bugfix: using asyncio.get_running_loop() instead of
  asyncio.get_event_loop() when it's available to prevent errors in
  some Python ASGI applications.

*) Bugfix: applications that make use of various low level APIs such as
  pthreads could fail to work correctly.

*) Bugfix: websocket endianness detection for obscure operating systems.

</ChangeLog>

(osa)

2023-04-18 18:53:07 UTC MAIN commitmail json YAML

Updated net/tigervnc to 1.13.1

(abs)

2023-04-18 18:52:08 UTC MAIN commitmail json YAML

doc: Updated net/termscp to 0.11.2

(pin)

2023-04-18 18:51:48 UTC MAIN commitmail json YAML

2023-04-18 18:50:30 UTC MAIN commitmail json YAML

doc: Updated audio/gospt to 0.0.49

(pin)

2023-04-18 18:50:09 UTC MAIN commitmail json YAML

audio/gospt: update to 0.0.49

- 7e22c90 better messages/feedback
- 6ed3453 fix crash if no queue / not playing anything
- efb03c1 fix skipping within queue while playing in a context
- 693b228 make album info less stupid looking
- 5081c44 oopsie
- b5f76fb queue tracks, view queue, queue updates when open, hotkey clean up
- a386f90 queue wow
- 81d5135 sanitize playlist descriptions

(pin)

2023-04-18 18:49:09 UTC MAIN commitmail json YAML

doc: Updated editors/featherpad to 1.4.0

(pin)

2023-04-18 18:48:44 UTC MAIN commitmail json YAML

editors/featherpad: update to 1.4.0

V1.4.0
---------
* Check the view cursor before setting it.
* Recognize `text/plain;charset=…` as plain text when pasting (Qt doesn't).
* Highlight comments inside formulas with LaTex.
* Use icons in the recent files menu where possible.
* Prevent tab DND from tab close button.
* Focus side-pane with Ctrl+Escape.
* Safeguard the file type filters of file dialogs from bad translations.
* Added `application/x-zerosize` to the desktop file (after a change in GLib).
* Added an option for showing window title on the menubar.
* Fixed the tab tooltip for special folders.

(pin)

2023-04-18 18:48:15 UTC MAIN commitmail json YAML

Update tigervnc from 1.12.0 to 1.13.1

Changes in 1.13.0:

- The servers and native viewer now support RealVNC's RSA-AES authentication methods and encryption
- The native viewer is now translated to Romanian and Georgian
- The native viewer now (optionally) supports PiKVM's H.264 encoding
- The display settings for the native viewer have been overhauled to make them easier to understand
- The native viewer now supports adding exceptions for expired certificates
- Resolved an issue where full-screen mode didn't work in the native viewer on macOS 13
- Lock key synchronization has been re-enabled in the native viewer after being accidentally disabled in 1.11.0
- Xvnc/libvnc.so can now be built with Xorg 1.21
- x0vncserver is a bit better at handling differing server and client keyboard layout
- x0vncserver now correctly handles zaphod mode
- Added Ubuntu 22.04 and RHEL 9 packages

Changes in 1.13.1:

- x0vncserver can either crash itself, or crash the X server it is connected to
- The servers might crash if the clipboard is updated just as a client is connected
- The vncserver service can fail to start on SELinux system if ~/.vnc doesn't exist

pkgsrc changes:

- Drop no longer needed patch-unix_vncserver_vncsession.c
- Add workaround (hack) for NetBSD native libXfont2 builtin issue

(abs)

2023-04-18 18:43:36 UTC MAIN commitmail json YAML

Updated www/nginx-devel to 1.24.0
Updated www/nginx to 1.24.0

(osa)

2023-04-18 18:42:00 UTC MAIN commitmail json YAML

www/nginx*: update to the latest stable version - 1.24.0

The new stable version incorporating new features and bug fixes from
the 1.23.x mainline branch, including improved handling of multiple
header lines with identical names, memory usage optimization in
configurations with SSL proxying, better sanity checking of the
listen directive protocol parameters, TLSv1.3 protocol enabled by
default, automatic rotation of TLS session tickets encryption keys
when using shared memory in the ssl_session_cache directive, and more.

Syncronize www/nginx and www/nginx-devel ports, including:
o) merge recent versions of third-party modules from
  www/nginx-devel to www/nginx;
o) syncronize patches between www/nginx and www/nginx-devel;
o) syncronize MESSAGE;
o) remove needless patches;
o) move pcre2 support to the main Makefile, remove `pcre'
  option and devel/pcre support for the both whole ports,
  but keep it for the third-party `lua' module;
o) update naxsi third-party module to its recent commit.

(osa)

2023-04-18 18:17:31 UTC MAIN commitmail json YAML

lxqt: Fix libfm-qt version.

(jperkin)

2023-04-18 17:53:29 UTC MAIN commitmail json YAML

Add locale/ka files to PLIST

(abs)

2023-04-18 17:44:32 UTC MAIN commitmail json YAML

removed markdown from versioned_dependencies.mk

(adam)

2023-04-18 17:40:43 UTC MAIN commitmail json YAML

Updated audio/fluidsynth, fonts/py-fonttools

(adam)

2023-04-18 17:40:23 UTC MAIN commitmail json YAML

py-fonttools: updated to 4.39.3

4.39.3 (released 2023-03-28)
----------------------------
- [sbix] Fixed TypeError when compiling empty glyphs whose imageData is None, regression
  was introduced in v4.39
- [ttFont] Fixed AttributeError on python <= 3.10 when opening a TTFont from a tempfile
  SpooledTemporaryFile, seekable method only added on python 3.11

(adam)

2023-04-18 17:38:05 UTC MAIN commitmail json YAML

fluidsynth: updated to 2.3.2

fluidsynth 2.3.2

Add support for processing all SysEx messages with synth.device-id=127
Various fixes to linking against static libfluidsynth when consumed through CMake or pkg-config
Added fluid_player_get_division
Fix a regression introduced in 2.3.1 which broke MIDI player's seamless looping

(adam)

2023-04-18 17:23:48 UTC MAIN commitmail json YAML

Updated security/py-cryptography, security/py-cryptography_vectors, security/py-OpenSSL, devel/py-resolvelib

(adam)

2023-04-18 17:23:21 UTC MAIN commitmail json YAML

py-resolvelib: updated to 1.0.1

1.0.1 (2023-03-09)

Bug Fixes

- Fix calls to opaque objects and use provider interface calls instead.

1.0.0 (2023-03-08)

Features

- Implement backjumping to significantly speed up the resolution process by skipping over irrelevant parts of the resolution search space.

(adam)

2023-04-18 17:17:39 UTC MAIN commitmail json YAML

py-OpenSSL: updated to 23.1.1

23.1.1 (2023-03-28)

Changes:
- Worked around an issue in OpenSSL 3.1.0 which caused `X509Extension.get_short_name` to raise an exception when no short name was known to OpenSSL.

23.1.0 (2023-03-24)

Changes:
- ``cryptography`` maximum version has been increased to 40.0.x.
- Add ``OpenSSL.SSL.Connection.DTLSv1_get_timeout`` and ``OpenSSL.SSL.Connection.DTLSv1_handle_timeout``
  to support DTLS timeouts

(adam)

2023-04-18 17:16:21 UTC MAIN commitmail json YAML

py-cryptography py-cryptography_vectors: updated to 40.0.2

40.0.2 - 2023-04-14

* Fixed compilation when using LibreSSL 3.7.2.

40.0.1 - 2023-03-24

* Fixed a bug where certain operations would fail if an object happened to be
  in the top-half of the memory-space. This only impacted 32-bit systems.

40.0.0 - 2023-03-24

* **BACKWARDS INCOMPATIBLE:** As announced in the 39.0.0 changelog, the way
  ``cryptography`` links OpenSSL has changed. This only impacts users who
  build ``cryptography`` from source (i.e., not from a ``wheel``), and
  specify their own version of OpenSSL. For those users, the ``CFLAGS``,
  ``LDFLAGS``, ``INCLUDE``, ``LIB``, and ``CRYPTOGRAPHY_SUPPRESS_LINK_FLAGS``
  environment variables are no longer valid. Instead, users need to configure
  their builds `as documented here`_.
* Support for Python 3.6 is deprecated and will be removed in the next
  release.
* Deprecated the current minimum supported Rust version (MSRV) of 1.48.0.
  In the next release we will raise MSRV to 1.56.0. Users with the latest
  ``pip`` will typically get a wheel and not need Rust installed, but check
  :doc:`/installation` for documentation on installing a newer ``rustc`` if
  required.
* Deprecated support for OpenSSL less than 1.1.1d. The next release of
  ``cryptography`` will drop support for older versions.
* Deprecated support for DSA keys in
  :func:`~cryptography.hazmat.primitives.serialization.load_ssh_public_key`
  and
  :func:`~cryptography.hazmat.primitives.serialization.load_ssh_private_key`.
* Deprecated support for OpenSSH serialization in
  :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`
  and
  :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`.
* The minimum supported version of PyPy3 is now 7.3.10.
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.1.0.
* Added support for parsing SSH certificates in addition to public keys with
  :func:`~cryptography.hazmat.primitives.serialization.load_ssh_public_identity`.
  :func:`~cryptography.hazmat.primitives.serialization.load_ssh_public_key`
  continues to support only public keys.
* Added support for generating SSH certificates with
  :class:`~cryptography.hazmat.primitives.serialization.SSHCertificateBuilder`.
* Added :meth:`~cryptography.x509.Certificate.verify_directly_issued_by` to
  :class:`~cryptography.x509.Certificate`.
* Added a check to :class:`~cryptography.x509.NameConstraints` to ensure that
  :class:`~cryptography.x509.DNSName` constraints do not contain any ``*``
  wildcards.
* Removed many unused CFFI OpenSSL bindings. This will not impact you unless
  you are using ``cryptography`` to directly invoke OpenSSL's C API. Note that
  these have never been considered a stable, supported, public API by
  ``cryptography``, this note is included as a courtesy.
* The X.509 builder classes now raise ``UnsupportedAlgorithm`` instead of
  ``ValueError`` if an unsupported hash algorithm is passed.
* Added public union type aliases for type hinting:

  * Asymmetric types:
    :const:`~cryptography.hazmat.primitives.asymmetric.types.PublicKeyTypes`,
    :const:`~cryptography.hazmat.primitives.asymmetric.types.PrivateKeyTypes`,
    :const:`~cryptography.hazmat.primitives.asymmetric.types.CertificatePublicKeyTypes`,
    :const:`~cryptography.hazmat.primitives.asymmetric.types.CertificateIssuerPublicKeyTypes`,
    :const:`~cryptography.hazmat.primitives.asymmetric.types.CertificateIssuerPrivateKeyTypes`.
  * SSH keys:
    :const:`~cryptography.hazmat.primitives.serialization.SSHPublicKeyTypes`,
    :const:`~cryptography.hazmat.primitives.serialization.SSHPrivateKeyTypes`,
    :const:`~cryptography.hazmat.primitives.serialization.SSHCertPublicKeyTypes`,
    :const:`~cryptography.hazmat.primitives.serialization.SSHCertPrivateKeyTypes`.
  * PKCS12:
    :const:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12PrivateKeyTypes`
  * PKCS7:
    :const:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7HashTypes`,
    :const:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7PrivateKeyTypes`.
  * Two-factor:
    :const:`~cryptography.hazmat.primitives.twofactor.hotp.HOTPHashTypes`

* Deprecated previously undocumented but not private type aliases in the
  ``cryptography.hazmat.primitives.asymmetric.types`` module in favor of new
  ones above.

(adam)

2023-04-18 17:11:13 UTC MAIN commitmail json YAML

Added devel/py-calver; Updated misc/py-trove-classifiers

(adam)

2023-04-18 17:10:53 UTC MAIN commitmail json YAML

py-trove-classifiers: updated to 2023.4.18

2023.4.18
Add Pycsou Framework trove-classifier

(adam)

2023-04-18 17:09:39 UTC MAIN commitmail json YAML

py-calver: added version 2022.6.26

The calver package is a setuptools extension for automatically defining your
Python package version as a calendar version.

(adam)

2023-04-18 16:39:14 UTC MAIN commitmail json YAML

doc: Updated devel/texttest to 4.3.0

(schmonz)

2023-04-18 16:39:08 UTC MAIN commitmail json YAML

Update to 4.3.0. From the changelog:

New development:
- We now support multiple external formats for test results, Visual
  Studio's trx format and JetBrains XML format. This means it is now
  possible to run TextTest from within Visual Studio or JetBrains IDEs
  (e.g. PyCharm, IntelliJ, CLion) and present the results there.

Bugfixes:
- Fixed bug #107 AttributeError when reordering test suites (thanks
  Michael Behrisch)

(schmonz)

2023-04-18 16:32:00 UTC MAIN commitmail json YAML

doc: Updated www/p5-Playwright to 1.323

(schmonz)

2023-04-18 16:31:54 UTC MAIN commitmail json YAML

Update to 1.323. From the changelog:

- Ensure temporary files used for IPC by await() are cleaned out of
  /tmp. Patch courtesy of Yanick Champoux.
- Add experimental support for the locator API via Page->locator().

(schmonz)

2023-04-18 16:04:02 UTC MAIN commitmail json YAML

2023-04-18 16:00:20 UTC MAIN commitmail json YAML

doc: Updated graphics/gmic to 3.2.3

(wiz)

2023-04-18 16:00:08 UTC MAIN commitmail json YAML

2023-04-18 15:47:37 UTC MAIN commitmail json YAML

pkg_install: allow cecill-c-v1 by default (OSI approved)

(wiz)

2023-04-18 15:47:10 UTC MAIN commitmail json YAML

mk: allow cecille-c-v1 by default (OSI approved)

(wiz)

2023-04-18 15:43:29 UTC MAIN commitmail json YAML

mk: add cecill-c-v1 (OSI approved)

(wiz)

2023-04-18 14:42:09 UTC MAIN commitmail json YAML

doc: Updated sysutils/coreutils to 9.2

(ryoon)

2023-04-18 14:41:31 UTC MAIN commitmail json YAML

coreutils: Update to 9.2

Changelog:
* Noteworthy changes in release 9.2 (2023-03-20) [stable]

** Bug fixes

  'comm --output-delimiter="" --total' now delimits columns in the total
  line with the NUL character, consistent with NUL column delimiters in
  the rest of the output.  Previously no delimiters were used for the
  total line in this case.
  [bug introduced with the --total option in coreutils-8.26]

  'cp -p' no longer has a security hole when cloning into a dangling
  symbolic link on macOS 10.12 and later.
  [bug introduced in coreutils-9.1]

  'cp -rx / /mnt' no longer complains "cannot create directory /mnt/".
  [bug introduced in coreutils-9.1]

  cp, mv, and install avoid allocating too much memory, and possibly
  triggering "memory exhausted" failures, on file systems like ZFS,
  which can return varied file system I/O block size values for files.
  [bug introduced in coreutils-6.0]

  cp, mv, and install now immediately acknowledge transient errors
  when creating copy-on-write or cloned reflink files, on supporting
  file systems like XFS, BTRFS, APFS, etc.
  Previously they would have tried again with other copy methods
  which may have resulted in data corruption.
  [bug introduced in coreutils-7.5 and enabled by default in coreutils-9.0]

  cp, mv, and install now handle ENOENT failures across CIFS file systems,
  falling back from copy_file_range to a better supported standard copy.
  [issue introduced in coreutils-9.0]

  'mv --backup=simple f d/' no longer mistakenly backs up d/f to f~.
  [bug introduced in coreutils-9.1]

  rm now fails gracefully when memory is exhausted.
  Previously it may have aborted with a failed assertion in some cases.
  [This bug was present in "the beginning".]

  rm -d (--dir) now properly handles unreadable empty directories.
  E.g., before, this would fail to remove d: mkdir -m0 d; src/rm -d d
  [bug introduced in v8.19 with the addition of this option]

  runcon --compute no longer looks up the specified command in the $PATH
  so that there is no mismatch between the inspected and executed file.
  [bug introduced when runcon was introduced in coreutils-6.9.90]

  'sort -g' no longer infloops when given multiple NaNs on platforms
  like x86_64 where 'long double' has padding bits in memory.
  Although the fix alters sort -g's NaN ordering, that ordering has
  long been documented to be platform-dependent.
  [bug introduced 1999-05-02 and only partly fixed in coreutils-8.14]

  stty ispeed and ospeed options no longer accept and silently ignore
  invalid speed arguments, or give false warnings for valid speeds.
  Now they're validated against both the general accepted set,
  and the system supported set of valid speeds.
  [This bug was present in "the beginning".]

  stty now wraps output appropriately for the terminal width.
  Previously it may have output 1 character too wide for certain widths.
  [bug introduced in coreutils-5.3]

  tail --follow=name works again with non seekable files.  Previously it
  exited with an "Illegal seek" error when such a file was replaced.
  [bug introduced in fileutils-4.1.6]

  'wc -c' will again efficiently determine the size of large files
  on all systems.  It no longer redundantly reads data from certain
  sized files larger than SIZE_MAX.
  [bug introduced in coreutils-8.24]

** Changes in behavior

  Programs now support the new Ronna (R), and Quetta (Q) SI prefixes,
  corresponding to 10^27 and 10^30 respectively,
  along with their binary counterparts Ri (2^90) and Qi (2^100).
  In some cases (e.g., 'sort -h') these new prefixes simply work;
  in others, where they exceed integer width limits, they now elicit
  the same integer overflow diagnostics as other large prefixes.

  'cp --reflink=always A B' no longer leaves behind a newly created
  empty file B merely because copy-on-write clones are not supported.

  'cp -n' and 'mv -n' now exit with nonzero status if they skip their
  action because the destination exists, and likewise for 'cp -i',
  'ln -i', and 'mv -i' when the user declines.  (POSIX specifies this
  for 'cp -i' and 'mv -i'.)

  cp, mv, and install again read in multiples of the reported block size,
  to support unusual devices that may have this constraint.
  [behavior inadvertently changed in coreutils-7.2]

  du --apparent now counts apparent sizes only of regular files and
  symbolic links.  POSIX does not specify the meaning of apparent
  sizes (i.e., st_size) for other file types, and counting those sizes
  could cause confusing and unwanted size mismatches.

  'ls -v' and 'sort -V' go back to sorting ".0" before ".A",
  reverting to the behavior in coreutils-9.0 and earlier.
  This behavior is now documented.

  ls --color now matches a file extension case sensitively
  if there are different sequences defined for separate cases.

  printf unicode \uNNNN, \UNNNNNNNN syntax, now supports all valid
  unicode code points.  Previously is was restricted to the C
  universal character subset, which restricted most points <= 0x9F.

  runcon now exits with status 125 for internal errors.  Previously upon
  internal errors it would exit with status 1, which was less distinguishable
  from errors from the invoked command.

  'split -n N' now splits more evenly when the input size is not a
  multiple of N, by creating N output files whose sizes differ by at
  most 1 byte.  Formerly, it did this only when the input size was
  less than N.

  'stat -c %s' now prints sizes as unsigned, consistent with 'ls'.

** New Features

  cksum now accepts the --base64 (-b) option to print base64-encoded
  checksums.  It also accepts/checks such checksums.

  cksum now accepts the --raw option to output a raw binary checksum.
  No file name or other information is output in this mode.

  cp, mv, and install now accept the --debug option to
  print details on how a file is being copied.

  factor now accepts the --exponents (-h) option to print factors
  in the form p^e, rather than repeating the prime p, e times.

  ls now supports the --time=modification option, to explicitly
  select the default mtime timestamp for display and sorting.

  mv now supports the --no-copy option, which causes it to fail when
  asked to move a file to a different file system.

  split now accepts options like '-n SIZE' that exceed machine integer
  range, when they can be implemented as if they were infinity.

  split -n now accepts piped input even when not in round-robin mode,
  by first copying input to a temporary file to determine its size.

  wc now accepts the --total={auto,never,always,only} option
  to give explicit control over when the total is output.

** Improvements

  cp --sparse=auto (the default), mv, and install,
  will use the copy_file_range syscall now also with sparse files.
  This may be more efficient, by avoiding user space copies,
  and possibly employing copy offloading or reflinking,
  for the non sparse portion of such sparse files.

  On macOS, cp creates a copy-on-write clone in more cases.
  Previously cp would only do this when preserving mode and timestamps.

  date --debug now diagnoses if multiple --date or --set options are
  specified, as only the last specified is significant in that case.

  rm outputs more accurate diagnostics in the presence of errors
  when removing directories.  For example EIO will be faithfully
  diagnosed, rather than being conflated with ENOTEMPTY.

  tail --follow=name now works with single non regular files even
  when their modification time doesn't change when new data is available.
  Previously tail would not show any new data in this case.

  tee -p detects when all remaining outputs have become broken pipes, and
  exits, rather than waiting for more input to induce an exit when written.

  tee now handles non blocking outputs, which can be seen for example with
  telnet or mpirun piping through tee to a terminal.
  Previously tee could truncate data written to such an output and fail,
  and also potentially output a "Resource temporarily unavailable" error.

(ryoon)

2023-04-18 14:32:48 UTC MAIN commitmail json YAML

doc: Updated graphics/blender to 3.5.0

(ryoon)

2023-04-18 14:31:59 UTC MAIN commitmail json YAML

blender: Update to 3.5.0

Changelog:
Blender 3.5 is feature packed, touching almost every corner to make
Blender better in every way:

    GPU accelerated viewport compositor
    Support for sculpting with Vector Displacement Maps (VDM) textures
    26 built-in node groups assets for Hair grooming
    Faster rendering of scenes with many lights in Cycles
    Import and export USDZ

(ryoon)

2023-04-18 14:17:19 UTC MAIN commitmail json YAML

doc: Updated www/seamonkey-l10n to 2.53.16

(ryoon)

2023-04-18 14:16:50 UTC MAIN commitmail json YAML

seamonkey-l10n: Update to 2.53.16

* Sync with www/seamonkey-2.53.16.

(ryoon)

2023-04-18 14:16:11 UTC MAIN commitmail json YAML

doc: Updated www/seamonkey to 2.53.16

(ryoon)

2023-04-18 14:15:28 UTC MAIN commitmail json YAML

seamonkey: Update to 2.53.16

Changelog:
What's New in SeaMonkey 2.53.16

SeaMonkey 2.53.16 contains (among other changes) the following major changes
relative to SeaMonkey 2.53.15:

  * No throbber in plaintext editor bug 85498.
  * Remove unused gridlines class from EdAdvancedEdit bug 1806632.
  * Remove ESR 91 links from debugQA bug 1804534.
  * Rename devtools/shim to devtools/startup bug 1812367.
  * Remove unused seltype=text|cell css bug 1806653.
  * Implement new shared tree styling bug 1807802.
  * Use `win.focus()` in macWindowMenu.js bug 1807817.
  * Remove WCAP provider bug 1579020.
  * Remove ftp/file tree view support bug 1239239.
  * Change calendar list tree to a list bug 1561530.
  * Various other updates to the calendar code.
  * Continue the switch from Python 2 to Python 3 in the build system.
  * Verified compatibility with Rust 1.66.1.

SeaMonkey 2.53.16 contains (among other changes) the following major changes
relative to SeaMonkey 2.49.5:

  * The Bookmarks Manager has switched its name to Library, and now also
    includes the History list. When History is invoked, the Library will be
    shown with the History list selected. The extensive modifications were
    needed because of Mozilla Gecko platform API changes.
  * Download Manager has been migrated to a new API. Although it looks pretty
    much the same as before, the search option is missing and some other minor
    details work differently. The previous downloads history is removed during
    the upgrade.
  * The layout panel was added to the CSS Grid tools.
  * TLS 1.3 is the default SSL version now.
  * Support for all NPAPI plugins like Flash, Java and Silverlight has been
    removed. For displaying pdf files in the browser you can use
    pdf.js-seamonkey from Isaac Schemm.
  * SeaMonkey now uses a new api for formatting regional data like time and
    date. Default is to use the application locale of the current SeaMonkey
    build. If you use a language pack or a different OS formatting this is
    usually not desired. You can change the formatting from the application
    locale to the regional settings locale (OS) in the preferences dialog under
    "Appearance".

SeaMonkey 2.53.16 uses the same backend as Firefox and contains the relevant
Firefox 60.8 security fixes.

SeaMonkey 2.53.16 shares most parts of the mail and news code with Thunderbird.
Please read the Thunderbird 60.8.0 release notes for specific security fixes in
this release.

Additional important security fixes up to Current Firefox 102.9 and Thunderbird
102.9 ESR plus many enhancements have been backported. We will continue to
enhance SeaMonkey security in subsequent 2.53.x beta and release versions as
fast as we are able to.

SeaMonkey-specific changes

  * SeaMonkey now uses gtk3 on Linux. If you experience a problem because of
    this please file a bug and link it to bug 1367257. Please try another OS
    theme first. Some of them are buggy and cause problems with SeaMonkey,
    Thunderbird and Firefox.

(ryoon)

2023-04-18 14:01:57 UTC MAIN commitmail json YAML

doc: Updated www/firefox-l10n to 112.0.1

(ryoon)

2023-04-18 14:01:25 UTC MAIN commitmail json YAML

firefox-l10n: Update to 112.0.1

* Sync with www/firefox-112.0.1.

(ryoon)

2023-04-18 14:00:59 UTC MAIN commitmail json YAML

doc: Updated www/firefox to 112.0.1

(ryoon)

2023-04-18 14:00:11 UTC MAIN commitmail json YAML

firefox: Update to 112.0.1

Changelog:
112.0.1
Fixed

  * Fixed a bug where cookie dates appear to be set in the far future after
    updating Firefox. This may have caused cookies to be unintentionally
    purged. (bug 1827669).

112.0
New

  * Right-clicking on password fields now shows an option to reveal the
    password.

  * Ubuntu Linux users can now import their browser data from the Chromium Snap
    package. Currently, this will only work if Firefox is not also installed as
    a Snap package, but work is underway to address this!

  * Do you use the tab list panel in the tab bar? If so, you can now close tabs
    by middle-clicking items in that list.

  * You've always been able to un-close a tab by using (Cmd/Ctrl)-Shift-T. Now,
    that same shortcut will restore the previous session if there are no more
    closed tabs from the same session to re-open.

  * For all ETP Strict users, we extended the list of known tracking parameters
    that are removed from URLs to further protect our users from cross-site
    tracking.

  * Enables overlay of software-decoded video on Intel GPUs in Windows.
    Improves video down scaling quality and reduces GPU usage.

  * Private windows and ETP set to strict will now include email tracking
    protection. This will make it harder for email trackers to learn the
    browsing habits of Firefox users. You can check the Tracking Content in the
    sub-panel on the shield icon panel.

Fixed

  * Various security fixes.

Changed

  * The deprecated U2F Javascript API is now disabled by default. The U2F
    protocol remains usable through the WebAuthn API. The U2F API can be
    re-enabled using the security.webauth.u2f preference.

Security fixes:
#CVE-2023-29531: Out-of-bound memory access in WebGL on macOS
#CVE-2023-29532: Mozilla Maintenance Service Write-lock bypass
#CVE-2023-29533: Fullscreen notification obscured
#CVE-2023-29534: Fullscreen notification could have been obscured on Firefox
for Android
#CVE-2023-1999: Double-free in libwebp
#CVE-2023-29535: Potential Memory Corruption following Garbage Collector
compaction
#CVE-2023-29536: Invalid free from JavaScript code
#CVE-2023-29537: Data Races in font initialization code
#CVE-2023-29538: Directory information could have been leaked to WebExtensions
#CVE-2023-29539: Content-Disposition filename truncation leads to Reflected
File Download
#CVE-2023-29540: Iframe sandbox bypass using redirects and sourceMappingUrls
#CVE-2023-29541: Files with malicious extensions could have been downloaded
unsafely on Linux
#CVE-2023-29542: Bypass of file download extension restrictions
#CVE-2023-29543: Use-after-free in debugging APIs
#CVE-2023-29544: Memory Corruption in garbage collector
#CVE-2023-29545: Windows Save As dialog resolved environment variables
#CVE-2023-29546: Screen recording in Private Browsing included address bar on
Android
#CVE-2023-29547: Secure document cookie could be spoofed with insecure cookie
#CVE-2023-29548: Incorrect optimization result on ARM64
#CVE-2023-29549: Javascript's bind function may have failed
#CVE-2023-29550: Memory safety bugs fixed in Firefox 112 and Firefox ESR 102.10
#CVE-2023-29551: Memory safety bugs fixed in Firefox 112

(ryoon)

2023-04-18 13:22:51 UTC MAIN commitmail json YAML

Updated devel/py-test-subtests, devel/py-pip-run

(adam)

2023-04-18 13:22:34 UTC MAIN commitmail json YAML

py-pip-run: updated to 10.0.7

v10.0.7

Avoid OSError when a parameter to Python exceeds the
allowed filename length.

v10.0.6

Fixed ``EncodingWarnings``.

(adam)

2023-04-18 13:20:31 UTC MAIN commitmail json YAML

py-test-subtests: updated to 0.10.0

0.10.0 (2022-02-15)
-------------------
* Added experimental support for suppressing subtest output dots in non-verbose mode with ``--no-subtests-shortletter`` -- this allows the native pytest column calculations to not be disrupted and minimizes unneeded output for large CI systems.

(adam)

2023-04-18 12:13:38 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/lxqt to 1.3.0

(pin)

2023-04-18 12:13:17 UTC MAIN commitmail json YAML

meta-pkgs/lxqt: update to 1.3.0

General
- LXQt 1.3.0 is still based on Qt 5.15, the last LTS version of Qt5. The Qt6
  support was started (and is usable in WIP branches) but could not be
  released due to the lack of a stable KF6.
- In LXQt窶冱 file manager and its library, smooth scrolling can be switched for
  all view modes, minor issues of the Desktop mode are fixed, and handling of
  zero-sized files is improved.
- QTerminal has received small bug fixes, especially for use under Wayland.
- Support for doas has been added to lxqt-sudo.
- In LXQt Session, the detection of window manager and system tray has been
  improved.
- Translations have received many updates.
- Other changes can be found in change logs of LXQt components.

(pin)

2023-04-18 12:01:50 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-session to 1.3.0

(pin)

2023-04-18 12:01:18 UTC MAIN commitmail json YAML

x11/lxqt-session: update to 1.3.0

lxqt-session-1.3.0 / 2023-04-15
================================
* Added support for procps-ng >= 4.0.0.
* Use timer based checking for window manager and tray.
* Disable crashing calls on Wayland.
* Fixed typos.

(pin)

2023-04-18 12:00:32 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-panel to 1.3.0

(pin)

2023-04-18 11:59:59 UTC MAIN commitmail json YAML

x11/lxqt-panel: update to 1.3.0

lxqt-panel-1.3.0 / 2023-04-15
==============================
* Removed redundant classes from `VolumeButton` in volume plugin.
* Fixed typos.
* Added nullity check for quicklaunch placeholder.
* Fixed the seconds shown by the clock widget.
* Enable DOM plugin by default.

(pin)

2023-04-18 11:59:16 UTC MAIN commitmail json YAML

doc: Updated x11/lxqt-config to 1.3.0

(pin)

2023-04-18 11:58:53 UTC MAIN commitmail json YAML

x11/lxqt-config: update to 1.3.0

lxqt-config-1.3.0 / 2023-04-15
===============================
* Fixed potential segfault when loading keyboard layout settings.
* lxqt-config-monitor: More header file inclusion for libkscreen 5.26.90.

(pin)

2023-04-18 11:53:07 UTC MAIN commitmail json YAML

doc: Updated graphics/digikam to 8.0.0

(wiz)

2023-04-18 11:52:56 UTC MAIN commitmail json YAML

digikam: update to 8.0.0.

New Online Documentation
Improved File Format Support
New OCR tool, Spell-checking, and Localize Settings
Metadata and ExifTool Improvements
Item Renaming Engine and Usability Improvements
New Search Engine, Database, and Collections Options
Image Quality Classifier Gain With a Neural Network Engine
Better Integration with G窶儁IC-Qt 3.2.2
Qt6 Support in Source Code
Maintenance and Bugs Triage

(wiz)

2023-04-18 11:46:21 UTC MAIN commitmail json YAML

doc: Updated audio/pavucontrol-qt to 1.3.0

(pin)

2023-04-18 11:45:57 UTC MAIN commitmail json YAML

audio/pavucontrol-qt: update to 1.3.0

pavucontrol-qt-1.3.0 / 2023-04-15
==================================
* Fixed pa_stream leaks.
* Updated many translations.

(pin)

2023-04-18 11:45:10 UTC MAIN commitmail json YAML

doc: Updated sysutils/lxqt-powermanagement to 1.3.0

(pin)