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 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 07:27:14 UTC Now

2024-02-16 20:28:56 UTC MAIN commitmail json YAML

Update qore to version 1.19.2

Bugfix release, bugfixes from release notes:
ConnectionProvider module
    Added the encode_chars HTTP / REST connection option.
    Fixed a deadlock issue with connection updates in code using
    this module.
    Do not change the connection status based on whether or not a
    connection can be made.
    Allow connections to be added, updated, and removed while
    already holding the connection lock.
CsvUtil module
    Fixed the CSV writer to automatically detect headers.
DataProvider module
    Fixed conversion of soft binary, bool, float, int, and number
    "or nothing" types from an empty string to NOTHING.
Logger
    Fixed a bug where file rotate could result in logging
    exceptions; removed explicit atomic lock operations and
    implemented low-level atomic file handling instead
Mapper
    Fixed a bug handling default values for output fields with
    required (not-null) types.
    Fixed a bug handling the trunc option in mappers when bulk
    processing.
RestClient
    Fixed a bug where the OAUth2 refresh token was sometimes dropped
    when an access token was acquired.
    Fixed a bug returning the token URL.
SalesforceRestClient
    Fixed a bug where the REST headers were not set up to accept
    JSON responses when the REST client was used with a token, this
    also caused breakage in the SalesforceRestDataProvider module.
SqlUtil module
    Set the column size in the type when creating types for VARCHAR
    columns.
Swagger module
    Fixed support of nullable object properties.
Fixed bugs handling base64-URL-encoded strings.
Fixed a bug where Qore would crash if an on_error statement referred
to the active exception when erroneously called after a thread_exit
statement.
Fixed a bug setting the local time zone on macOS Sonoma.
Fixed a bug where Qore could characters with the incorrect character
encoding to strings while processing HTTP headers in HTTP calls.

(nros)

2024-02-16 20:25:36 UTC MAIN commitmail json YAML

qalculate: cleanup

(adam)

2024-02-16 20:19:01 UTC MAIN commitmail json YAML

Updated devel/ccache, devel/py-gitpython

(adam)

2024-02-16 20:18:44 UTC MAIN commitmail json YAML

2024-02-16 20:14:59 UTC MAIN commitmail json YAML

ccache: updated to 4.9.1

Ccache 4.9.1

Bug fixes

Improved detection of bad remote storage URLs gracefully. This also fixes crashes seen in ccache窶冱 own test suite.
Made caching completely disabled when modification of a source or include file is detected during ccache invocation. Previously this was only done for the direct mode.
Fixed an MSVC crash when using /Zi with many concurrent compilations.
Fixed a crash when -arch is the last compiler option.

(adam)

2024-02-16 19:16:58 UTC MAIN commitmail json YAML

Updated security/py-cryptography, security/py-cryptography_vectors, security/py-requests-gssapi, textproc/py-Levenshtein

(adam)

2024-02-16 19:16:32 UTC MAIN commitmail json YAML

2024-02-16 19:13:23 UTC MAIN commitmail json YAML

py-requests-gssapi: updated to 1.3.0

1.3.0: 2024-02-16

- Drop flag for out of sequence detection
- Use SPNEGO mechanism by default
- Fix ``SanitizedResponse.content`` to be ``bytes`` which reflects the base type
- Migrated project to a ``src`` layout setup and a ``PEP 621`` compliant build, this should have no impact on end users

(adam)

2024-02-16 19:10:49 UTC MAIN commitmail json YAML

py-cryptography[_vectors]: updated to 42.0.3

42.0.3 - 2024-02-15

* Fixed an initialization issue that caused key loading failures for some
  users.

(adam)

2024-02-16 19:04:23 UTC MAIN commitmail json YAML

Updated textproc/py-yamllint, devel/py-zope.interface, www/py-scrapy, devel/py-limits

(adam)

2024-02-16 19:04:01 UTC MAIN commitmail json YAML

py-limits: updated to 3.8.0

v3.8.0
------

* Features

  * Add option to wrap storage errors with a ``StorageError``
    exception

(adam)

2024-02-16 19:02:45 UTC MAIN commitmail json YAML

py-scrapy: updated to 2.11.1

Scrapy 2.11.1 (2024-02-14)
--------------------------

Highlights:

-  Security bug fixes.

-  Support for Twisted >= 23.8.0.

-  Documentation improvements.

Security bug fixes
~~~~~~~~~~~~~~~~~~

-  Addressed `ReDoS vulnerabilities`_:

    -  ``scrapy.utils.iterators.xmliter`` is now deprecated in favor of
        :func:`~scrapy.utils.iterators.xmliter_lxml`, which
        :class:`~scrapy.spiders.XMLFeedSpider` now uses.

        To minimize the impact of this change on existing code,
        :func:`~scrapy.utils.iterators.xmliter_lxml` now supports indicating
        the node namespace with a prefix in the node name, and big files with
        highly nested trees when using libxml2 2.7+.

    -  Fixed regular expressions in the implementation of the
        :func:`~scrapy.utils.response.open_in_browser` function.

    Please, see the `cc65-xxvf-f7r9 security advisory`_ for more information.

    .. _ReDoS vulnerabilities: https://owasp.org/www-community/attacks/Regular_expression_Denial_of_Service_-_ReDoS
    .. _cc65-xxvf-f7r9 security advisory: https://github.com/scrapy/scrapy/security/advisories/GHSA-cc65-xxvf-f7r9

-  :setting:`DOWNLOAD_MAXSIZE` and :setting:`DOWNLOAD_WARNSIZE` now also apply
    to the decompressed response body. Please, see the `7j7m-v7m3-jqm7 security
    advisory`_ for more information.

    .. _7j7m-v7m3-jqm7 security advisory: https://github.com/scrapy/scrapy/security/advisories/GHSA-7j7m-v7m3-jqm7

-  Also in relation with the `7j7m-v7m3-jqm7 security advisory`_, the
    deprecated ``scrapy.downloadermiddlewares.decompression`` module has been
    removed.

-  The ``Authorization`` header is now dropped on redirects to a different
    domain. Please, see the `cw9j-q3vf-hrrv security advisory`_ for more
    information.

    .. _cw9j-q3vf-hrrv security advisory: https://github.com/scrapy/scrapy/security/advisories/GHSA-cw9j-q3vf-hrrv

Modified requirements
~~~~~~~~~~~~~~~~~~~~~

-  The Twisted dependency is no longer restricted to < 23.8.0. (:issue:`6024`,
    :issue:`6064`, :issue:`6142`)

Bug fixes
~~~~~~~~~

-  The OS signal handling code was refactored to no longer use private Twisted
    functions. (:issue:`6024`, :issue:`6064`, :issue:`6112`)

Documentation
~~~~~~~~~~~~~

-  Improved documentation for :class:`~scrapy.crawler.Crawler` initialization
    changes made in the 2.11.0 release. (:issue:`6057`, :issue:`6147`)

-  Extended documentation for :attr:`Request.meta <scrapy.http.Request.meta>`.
    (:issue:`5565`)

-  Fixed the :reqmeta:`dont_merge_cookies` documentation. (:issue:`5936`,
    :issue:`6077`)

-  Added a link to Zyte's export guides to the :ref:`feed exports
    <topics-feed-exports>` documentation. (:issue:`6183`)

-  Added a missing note about backward-incompatible changes in
    :class:`~scrapy.exporters.PythonItemExporter` to the 2.11.0 release notes.
    (:issue:`6060`, :issue:`6081`)

-  Added a missing note about removing the deprecated
    ``scrapy.utils.boto.is_botocore()`` function to the 2.8.0 release notes.
    (:issue:`6056`, :issue:`6061`)

-  Other documentation improvements. (:issue:`6128`, :issue:`6144`,
    :issue:`6163`, :issue:`6190`, :issue:`6192`)

Quality assurance
~~~~~~~~~~~~~~~~~

-  Added Python 3.12 to the CI configuration, re-enabled tests that were
    disabled when the pre-release support was added. (:issue:`5985`,
    :issue:`6083`, :issue:`6098`)

-  Fixed a test issue on PyPy 7.3.14. (:issue:`6204`, :issue:`6205`)

(adam)

2024-02-16 18:57:40 UTC MAIN commitmail json YAML

py-zope.interface: updated to 6.2

6.2 (2024-02-16)

- Add preliminary support for Python 3.13 as of 3.13a3.
- Add support to use the pipe (``|``) syntax for ``typing.Union``.

(adam)

2024-02-16 18:54:59 UTC MAIN commitmail json YAML

py-yamllint: updated to 1.35.1

1.35.1 (2024-02-16)

- Restore ignoration of files passed as command-line arguments
- Revert API change from version 1.35.0

(adam)

2024-02-16 18:17:03 UTC MAIN commitmail json YAML

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

(osa)

2024-02-16 18:12:28 UTC MAIN commitmail json YAML

www/nginx: third-party modules management (+)

o) update ndk: 0.3.2 -> 0.3.3;
o) update lua: 0.10.25 -> 0.10.26;
o) update headers_more: 0.34 -> 0.37.

Bump PKGREVISION.

(osa)

2024-02-16 18:07:30 UTC MAIN commitmail json YAML

www/nginx-devel: third-party modules management (+)

o) update ndk: 0.3.2 -> 0.3.3;
o) update lua: 0.10.25 -> 0.10.26;
o) update headers_more: 0.34 -> 0.37.

Bump PKGREVISION.

(osa)

2024-02-16 17:55:08 UTC MAIN commitmail json YAML

Updated devel/pcre2, net/py-responses

(adam)

2024-02-16 17:54:55 UTC MAIN commitmail json YAML

py-responses: remove do-test target

(adam)

2024-02-16 17:54:27 UTC MAIN commitmail json YAML

py-responses: updated to 0.25.0

0.25.0

* Added support for Python 3.12
* Fixed `matchers.header_matcher` not failing when a matched header is missing from the request.

(adam)

2024-02-16 17:51:22 UTC MAIN commitmail json YAML

pcre2: updated to 10.43

PCRE2-10.43

There are a lot of changes in this release. Those that are not just bugfixes or source tidies are described in the NEWS file and there is more information in ChangeLog. Note that JIT support for Armv5 is withdrawn in this release. There have only been minor changes since 10.43-RC1.

(adam)

2024-02-16 17:41:46 UTC MAIN commitmail json YAML

Updated meta-pkgs/qt6, net/wireshark

(adam)

2024-02-16 17:40:59 UTC MAIN commitmail json YAML

wireshark: updated to 4.2.3

Wireshark 4.2.3 Release Notes

What窶冱 New

Bug Fixes

  If you are upgrading Wireshark 4.2.0 or 4.2.1 on Windows you will
  need to download and install[2] Wireshark 4.2.3 or later by hand.

  The following bugs have been fixed:

New and Updated Features

  There are no new or updated features in this release.

New Protocol Support

  There are no new protocols in this release.

Updated Protocol Support

New and Updated Capture File Support

  There is no new or updated capture file support in this release.

(adam)

2024-02-16 17:39:17 UTC MAIN commitmail json YAML

qt6: updated to 6.6.2

We have released Qt 6.6.2 today. As a patch release, Qt 6.6.2 does not introduce any new features but contains more than 400 bug fixes, security updates, and other improvements to the top of the Qt 6.6.1 release. See more information about the most important changes and bug fixes from Qt 6.6.2 release note.

https://www.qt.io/blog/qt-6.6.2-released

(adam)

2024-02-16 17:39:07 UTC MAIN commitmail json YAML

2024-02-16 15:48:20 UTC MAIN commitmail json YAML

Updated www/nginx-devel to 1.25.4

(osa)

2024-02-16 15:46:36 UTC MAIN commitmail json YAML

www/nginx-devel: update 1.25.3 -> 1.25.4

<ChangeLog>

*) Security: when using HTTP/3 a segmentation fault might occur in a
  worker process while processing a specially crafted QUIC session
  (CVE-2024-24989, CVE-2024-24990).

*) Bugfix: connections with pending AIO operations might be closed
  prematurely during graceful shutdown of old worker processes.

*) Bugfix: socket leak alerts no longer logged when fast shutdown was
  requested after graceful shutdown of old worker processes.

*) Bugfix: a socket descriptor error, a socket leak, or a segmentation
  fault in a worker process (for SSL proxying) might occur if AIO was
  used in a subrequest.

*) Bugfix: a segmentation fault might occur in a worker process if SSL
  proxying was used along with the "image_filter" directive and errors
  with code 415 were redirected with the "error_page" directive.

*) Bugfixes and improvements in HTTP/3.

</ChangeLog>

(osa)

2024-02-16 14:32:48 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-nokogiri to 1.16.2

(tsutsui)

2024-02-16 14:32:28 UTC MAIN commitmail json YAML

ruby-nokogiri: update to 1.16.2.

Upstream changes:
https://github.com/sparklemotion/nokogiri/releases

v1.16.2 / 2024-02-04

Security

  * [CRuby] Vendored libxml2 is updated to address CVE-2024-25062. See
    GHSA-xc9x-jj77-9p9j for more information.

Dependencies

  * [CRuby] Vendored libxml2 is updated to v2.12.5 from v2.12.4. (@flavorjones)

v1.16.1 / 2024-02-03

Dependencies

  * [CRuby] Vendored libxml2 is updated to v2.12.4 from v2.12.3. (@flavorjones)

Fixed

  * [CRuby] XML::Reader defaults the encoding to UTF-8 if it's not specified in
    either the document or as a method parameter. Previously non-ASCII
    characters were serialized as NCRs in this case. [#2891] (@flavorjones)
  * [CRuby] Restored support for compilation by GCC versions earlier than 4.6,
    which was broken in v1.15.0 (540e9ae). [#3090] (@adfoster-r7)
  * [CRuby] Patched upstream libxml2 to allow parsing HTML5 in the context of a
    namespaced node (e.g., foreign content like MathML). [#3112, #3116] (
    @flavorjones)
  * [CRuby] Fixed a small memory leak in libgumbo (HTML5 parser) when the
    maximum tree depth limit is hit. [#3098, #3100] (@stevecheckoway)

v1.16.0 / 2023-12-27

Notable Changes

Ruby

This release introduces native gem support for Ruby 3.3.

This release ends support for Ruby 2.7, for which upstream support ended
2023-03-31.

Pattern matching

This version marks official support for the pattern matching API in XML::Attr,
XML::Document, XML::DocumentFragment, XML::Namespace, XML::Node, and
XML::NodeSet (and their subclasses), originally introduced as an experimental
feature in v1.14.0. (@flavorjones)

Documentation on what can be matched:

  * XML::Attr#deconstruct_keys
  * XML::Document#deconstruct_keys
  * XML::Namespace#deconstruct_keys
  * XML::Node#deconstruct_keys
  * XML::DocumentFragment#deconstruct
  * XML::NodeSet#deconstruct

Dependencies

  * [CRuby] Vendored libxml2 is updated to v2.12.3 from v2.11.6. (@flavorjones)
      + https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.0
      + https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.1
      + https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.2
      + https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.12.3

Fixed

  * CSS nth pseudo-classes now handle spaces, e.g. "2n + 1". [#3018]
    (@fusion2004)
  * [CRuby] libgumbo no longer leaks memory when an incomplete tag is abandoned
    by the HTML5 parser. [#3036] (@flavorjones)

Removed

  * Removed Nokogiri::HTML5.get which was deprecated in v1.12.0. [#2278]
    (@flavorjones)
  * Removed the CSS-to-XPath utility modules XPathVisitorAlwaysUseBuiltins and
    XPathVisitorOptimallyUseBuiltins, which were deprecated in v1.13.0 in favor
    of XPathVisitor constructor args. [#2403] (@flavorjones)
  * Removed XML::Reader#attribute_nodes which was deprecated in v1.13.8 in
    favor of #attribute_hash. [#2598, #2599] (@flavorjones)
  * [CRuby] Removed the libxml/libxml2_path key from VersionInfo, used in the
    past for third-party library integration, in favor of the nokogiri/cppflags
    and nokogiri/ldflags keys. Please note that third-party library integration
    is not fully supported and may be deprecated soon, see #2746 for more
    context. [#2143] (@flavorjones)

(tsutsui)

2024-02-16 13:41:54 UTC MAIN commitmail json YAML

Updated devel/protobuf, devel/py-protobuf

(adam)

2024-02-16 13:41:11 UTC MAIN commitmail json YAML

protobuf py-protobuf: updated to (4.)25.3

Protocol Buffers v25.3

Apple Privacy Manifest Requirement

[CPP] Add the privacy manifest to the C++ CocoaPod. (9d1bc10)
[ObjC] Add the privacy manifest to the ObjC CocoaPod. (cec08dc)
Add PrivacyInfo.xcprivacy

C++

Remove use of mach_absolute_time

Objective-C

[ObjC] Use a local to avoid warnings in 32bit builds. (9dc736d)

Python

Bump python version to 3.9 for gcloud 460.0.0 (17ec19d)

Ruby

Update Ruby GHA to test against Ruby 3.3. (25b1e81)
Pin bundler version to 2.4.22 for Ruby 2.7 support

(adam)

2024-02-16 13:17:22 UTC MAIN commitmail json YAML

doc: Updated lang/php82 to 8.2.16

(taca)

2024-02-16 13:16:59 UTC MAIN commitmail json YAML

lang/php82: update to 8.2.16

15 Feb 2024, PHP 8.2.16

- Core:
  . Fixed timer leak in zend-max-execution-timers builds. (withinboredom)
  . Fixed bug GH-12349 (linking failure on ARM with mold). (Jan Palus)
  . Fixed bug GH-13097 (Anonymous class reference in trigger_error / thrown
    Exception). (nielsdos)
  . Fixed bug GH-13215 (GCC 14 build failure). (Remi)

- Curl:
  . Fix missing error check in curl_multi_init(). (divinity76)

- FPM:
  . Fixed bug GH-12996 (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when
    plus in path). (Jakub Zelenka)

- GD:
  . Fixed bug GH-10344 (imagettfbbox(): Could not find/open font UNC path).
    (nielsdos)
  . Fixed bug GH-10614 (imagerotate will turn the picture all black, when
    rotated 90). (nielsdos)

- MySQLnd:
  . Fixed bug GH-12107 (When running a stored procedure (that returns a result
    set) twice, PHP crashes). (nielsdos)

- Opcache:
  . Fixed bug GH-13232 (Segmentation fault will be reported when JIT is off but
    JIT_debug is still on). (nielsdos)

- OpenSSL:
  . Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set.
  (David Carlier).

- PDO_Firebird:
  . Fix GH-13119 (Changed to convert float and double values ������into strings using
    `H` format). (SakiTakamachi)

- Phar:
  . Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
  . Fixed bug GH-13037 (PharData incorrectly extracts zip file). (nielsdos)

- Random:
  . Fixed bug GH-13138 (Randomizer::pickArrayKeys() does not detect broken
    engines). (timwolla)

- Session:
  . Fixed bug GH-12504 (Corrupted session written when there's a fatal error
    in autoloader). (nielsdos)

- Streams:
  . Fixed bug GH-13071 (Copying large files using mmap-able source streams may
    exhaust available memory and fail). (nielsdos)

(taca)

2024-02-16 13:16:19 UTC MAIN commitmail json YAML

doc: Updated lang/php83 to 8.3.3

(taca)

2024-02-16 13:15:20 UTC MAIN commitmail json YAML

lang/php83: update to 8.3.3

15 Feb 2024, PHP 8.3.3

- Core:
  . Fixed timer leak in zend-max-execution-timers builds. (withinboredom)
  . Fixed bug GH-12349 (linking failure on ARM with mold). (Jan Palus)
  . Fixed bug GH-13097 (Anonymous class reference in trigger_error / thrown
    Exception). (nielsdos)
  . Fixed bug GH-13177 (PHP 8.3.2: final private constructor not allowed
    when used in trait). (nielsdos)
  . Fixed bug GH-13215 (GCC 14 build failure). (Remi)

- Curl:
  . Fix missing error check in curl_multi_init(). (divinity76)

- FPM:
  . Fixed bug GH-12996 (Incorrect SCRIPT_NAME with Apache ProxyPassMatch when
    plus in path). (Jakub Zelenka)

- GD:
  . Fixed bug GH-10344 (imagettfbbox(): Could not find/open font UNC path).
    (nielsdos)
  . Fixed bug GH-10614 (imagerotate will turn the picture all black, when
    rotated 90). (nielsdos)

- LibXML:
  . Fix crashes with entity references and predefined entities. (nielsdos)

- MySQLnd:
  . Fixed bug GH-12107 (When running a stored procedure (that returns a result
    set) twice, PHP crashes). (nielsdos)

- Opcache:
  . Fixed bug GH-13145 (strtok() is not comptime). (ilutov)
  . Fixed type inference of range(). (ilutov)
  . Fixed bug GH-13232 (Segmentation fault will be reported when JIT is off but
    JIT_debug is still on). (nielsdos)

- OpenSSL:
  . Fixed LibreSSL undefined reference when OPENSSL_NO_ENGINE not set.
  (David Carlier).

- PDO_Firebird:
  . Fix GH-13119 (Changed to convert float and double values ������into strings using
    `H` format). (SakiTakamachi)

- Phar:
  . Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
  . Fixed bug GH-13037 (PharData incorrectly extracts zip file). (nielsdos)

- Random:
  . Fixed bug GH-13138 (Randomizer::pickArrayKeys() does not detect broken
    engines). (timwolla)

- Session:
  . Fixed bug GH-12504 (Corrupted session written when there's a fatal error
    in autoloader). (nielsdos)

- Standard:
  . Fixed bug GH-13094 (range(9.9, '0') causes segmentation fault). (nielsdos)

- Streams:
  . Fixed bug GH-13071 (Copying large files using mmap-able source streams may
    exhaust available memory and fail). (nielsdos)

(taca)

2024-02-16 11:21:59 UTC MAIN commitmail json YAML

doc: Updated graphics/webp-pixbuf-loader to 0.2.7

(tsutsui)

2024-02-16 11:21:22 UTC MAIN commitmail json YAML

2024-02-16 10:00:07 UTC MAIN commitmail json YAML

ipmitool: Use standard autoreconf.

The supplied bootstrap script is broken.  Fixes build on Darwin.

(jperkin)

2024-02-16 08:38:19 UTC MAIN commitmail json YAML

Updated net/haproxy, textproc/py-yamllint

(adam)

2024-02-16 08:37:58 UTC MAIN commitmail json YAML

py-yamllint: updated to 1.35.0

1.35.0 (2024-02-15)

Fix failure on broken symlinks that should be ignored
API change: linter.run(stream, config) doesn't filter files anymore
Docs: Restore official Read the Docs theme

(adam)

2024-02-16 08:36:06 UTC MAIN commitmail json YAML

haproxy: updated to 2.9.5

2.9.5
- BUG/MINOR: diag: always show the version before dumping a diag warning
- BUG/MINOR: diag: run the final diags before quitting when using -c
- BUG/MINOR: quic: Wrong ack ranges handling when reaching the limit.
- BUILD: quic: Variable name typo inside a BUG_ON().
- BUG/MINOR: ssl: Fix error message after ssl_sock_load_ocsp call
- CLEANUP: quic: Code clarifications for QUIC CUBIC (RFC 9438)
- BUG/MINOR: quic: fix possible integer wrap around in cubic window calculation
- MINOR: quic: Stop using 1024th of a second.
- MINOR: compiler: add a new DO_NOT_FOLD() macro to prevent code folding
- MINOR: debug: make sure calls to ha_crash_now() are never merged
- MINOR: debug: make ABORT_NOW() store the caller's line number when using abort
- BUILD: debug: remove leftover parentheses in ABORT_NOW()
- MINOR: debug: make BUG_ON() catch build errors even without DEBUG_STRICT
- BUG/MINOR: ssl: Duplicate ocsp update mode when dup'ing ckch
- BUG/MINOR: ssl: Clear the ckch instance when deleting a crt-list line
- MINOR: ssl: Use OCSP_CERTID instead of ckch_store in ckch_store_build_certid
- BUG/MEDIUM: ocsp: Separate refcount per instance and per store
- BUG/MINOR: ssl: Destroy ckch instances before the store during deinit
- BUG/MINOR: ssl: Reenable ocsp auto-update after an "add ssl crt-list"
- REGTESTS: ssl: Fix empty line in cli command input
- REGTESTS: ssl: Add OCSP related tests
- DOC: install: recommend pcre2
- DOC: config: fix misplaced "txn.conn_retries"
- DOC: config: fix typos for "bytes_{in,out}"
- DOC: config: fix misplaced "bytes_{in,out}"
- DOC: internal: update missing data types in peers-v2.0.txt
- BUG/MINOR: vars/cli: fix missing LF after "get var" output
- BUG/MEDIUM: cli: fix once for all the problem of missing trailing LFs
- CI: Update to actions/cache@v4
- BUILD: address a few remaining calloc(size, n) cases
- BUG/MEDIUM: pool: fix rare risk of deadlock in pool_flush()
- BUG/MEDIUM: ssl: Fix crash when calling "update ssl ocsp-response" when an update is ongoing
- BUG/MEDIUM: quic: Wrong K CUBIC calculation.
- MINOR: quic: Update K CUBIC calculation (RFC 9438)
- MINOR: quic: Dynamic packet reordering threshold
- MINOR: quic: Add a counter for reordered packets
- BUG/MEDIUM: stconn: Allow expiration update when READ/WRITE event is pending
- BUG/MEDIUM: stconn: Don't check pending shutdown to wake an applet up
- CLEANUP: stconn: Move SE flags set by app layer at the end of the bitfield
- MINOR: stconn: Rename SE_FL_MAY_FASTFWD and reorder bitfield
- MINOR: stconn: Add SE flag to announce zero-copy forwarding on consumer side
- MINOR: muxes: Announce support for zero-copy forwarding on consumer side
- BUG/MAJOR: stconn: Check support for zero-copy forwarding on both sides
- MINOR: muxes/applet: Simplify checks on options to disable zero-copy forwarding
- BUG/MEDIUM: mux-h2: Switch pending error to error if demux buffer is empty
- BUG/MEDIUM: mux-h2: Only Report H2C error on read error if demux buffer is empty
- BUG/MEDIUM: mux-h2: Don't report error on SE if error is only pending on H2C
- BUG/MEDIUM: mux-h2: Don't report error on SE for closed H2 streams

(adam)

2024-02-16 08:24:33 UTC MAIN commitmail json YAML

libplacebo: Avoid use of illegal reserved typedef, helps build on SunOS

(nia)

2024-02-16 08:21:36 UTC MAIN commitmail json YAML

2024-02-16 08:15:33 UTC MAIN commitmail json YAML

py-lxml: fix build with compilers that default to c89.

(nia)

2024-02-16 08:13:13 UTC MAIN commitmail json YAML

2024-02-16 07:56:18 UTC MAIN commitmail json YAML

pulseaudio: fix PLIST for alsa.

(nia)

2024-02-16 07:51:10 UTC MAIN commitmail json YAML

easyrpg-player: Mark BROKEN

(nia)

2024-02-16 07:49:55 UTC MAIN commitmail json YAML

2024-02-16 06:49:14 UTC MAIN commitmail json YAML

editors/fileobj: Update to v0.8.4

ChangeLog:
- --blkscan/cmp/md: Minor fixes
- Minor fixes and cleanups

(tkusumi)

2024-02-16 04:06:03 UTC MAIN commitmail json YAML

rust-bin: adjust Linux packaging after version update

(gutteridge)

2024-02-16 03:50:08 UTC MAIN commitmail json YAML

cargo-c: requires minimum Rust 1.74 to build

(gutteridge)

2024-02-15 22:47:21 UTC MAIN commitmail json YAML

2024-02-15 22:46:59 UTC MAIN commitmail json YAML

doc: Updated devel/nss to 3.98

(wiz)

2024-02-15 22:46:50 UTC MAIN commitmail json YAML

nss: update to 3.98.

Changes:

  - Bug 1780432 - (CVE-2023-5388) Timing attack against RSA
    decryption in TLS.
  - Bug 1879513 - Certificate Compression: enabling the check
    that the compression was advertised.
  - Bug 1831552 - Move Windows workers to
    nss-1/b-win2022-alpha.
  - Bug 1879945 - Remove Email trust bit from OISTE WISeKey
    Global Root GC CA.
  - Bug 1877344 - Replace `distutils.spawn.find_executable`
    with `shutil.which` within `mach` in `nss`.
  - Bug 1548723 - Certificate Compression: Updating
    nss_bogo_shim to support Certificate compression.
  - Bug 1548723 - TLS Certificate Compression (RFC 8879)
    Implementation.
  - Bug 1875356 - Add valgrind annotations to freebl kyber
    operations for constant-time execution tests.
  - Bug 1870673 - Set nssckbi version number to 2.66.
  - Bug 1874017 - Add Telekom Security roots.
  - Bug 1873095 - Add D-Trust 2022 S/MIME roots.
  - Bug 1865450 - Remove expired Security Communication RootCA1
    root.
  - Bug 1876179 - move keys to a slot that supports
    concatenation in PK11_ConcatSymKeys.
  - Bug 1876800 - remove unmaintained tls-interop tests.
  - Bug 1874937 - bogo: add support for the -ipv6 and -shim-id
    shim flags.
  - Bug 1874937 - bogo: add support for the -curves shim flag
    and update Kyber expectations.
  - Bug 1874937 - bogo: adjust expectation for a key usage bit
    test.
  - Bug 1757758 - mozpkix: add option to ignore invalid subject
    alternative names.
  - Bug 1841029 - Fix selfserv not stripping `publicname:` from
    -X value.
  - Bug 1876390 - take ownership of ecckilla shims.
  - Bug 1874458 - add valgrind annotations to freebl/ec.c.
  - Bug  864039 - PR_INADDR_ANY needs PR_htonl before
    assignment to inet.ip.
  - Bug 1875965 - Update zlib to 1.3.1.

(wiz)

2024-02-15 22:23:44 UTC MAIN commitmail json YAML

py-cherrypy: add missing tool

(wiz)

2024-02-15 22:20:21 UTC MAIN commitmail json YAML

py-wagtail: add missing tools

(wiz)

2024-02-15 22:16:38 UTC MAIN commitmail json YAML

py-django-bootstrap5: fix tools

(wiz)

2024-02-15 22:15:05 UTC MAIN commitmail json YAML

py-photutils: allow Python 3.11/3.12 now that py-scikit-image supports them

(wiz)

2024-02-15 22:14:32 UTC MAIN commitmail json YAML

doc: Updated math/py-scikit-image to 0.22.0

(wiz)

2024-02-15 22:14:14 UTC MAIN commitmail json YAML

py-scikit-image: update to 0.22.0.

0.22.0

New Features

    Add new image sequence skimage.data.palisades_of_vogt showing in-vivo tissue of the palisades of Vogt (#6858).

Performance

    Add lazy loading to the skimage.feature module (#6983).
    Add lazy loading to the skimage.graph submodule (#6985).
    Add lazy loading to the skimage.measure submodule (#6999).
    Add lazy loading to the skimage.transform submodule (#7009).
    Add lazy loading to the skimage.restoration submodule (#7021).
    Add lazy loading to the skimage.registration submodule (#7032).
    Avoid unnecessary padding in skimage.measure.block_resize (#7092).

Bug Fixes

    Add num_pixels and coords_scaled to regionprops_table (#7039).
    Update video.rst (#7076).
    For uniform intensity images, return intensity value as threshold (#7098).
    Fix color conversion error (#7116).
    Make phase_cross_correlation return ndarray when disambiguate=True (#7112).
    Allow extra_properties of non equal lengths to be passed correctly to regionprops_table (#7136).

API Changes

    Make PyWavelets an optional dependency which is only required for skimage.restoration.denoise_wavelet and skimage.restoration.estimate_sigma (#7156).
    Remove deprecated skimage.filters.inverse. Use skimage.filters.filter_inverse instead (#7161).
    Remove deprecated function skimage.filters.ridges.compute_hessian_eigenvalues. Use skimage.feature.hessian_matrix_eigvals on the results of skimage.feature.hessian_matrix instead (#7162).
    Remove deprecated automatic detection of the color channel in skimage.filters.gaussian. channel_axis=None now indicates a grayscale image. Set the color channel with channel_axis=-1 explicitly (#7164).
    Change number of returned arguments in skimage.registration.phase_cross_correlation. The function now always returns the 3 arguments shift, error, and phasediff (#7166).
    Deprecate return_error in skimage.registration.phase_cross_correlation (#7174).

Maintenance

    Don't test numpy prerelease on azure (#6996).
    Drop Python 3.8 support per SPEC 0 (#6990).
    Upper pin imageio (#7002).
    Update core dependencies per SPEC0 (#7005).
    meson: allow proper selection of NumPy, Pythran in cross builds (#7003).
    Unpin imageio and add warningfilter (#7006).
    Update to latest attach-next-milestone action (#7014).
    Avoid deprecated auto-removal of overlapping axes in thresholding example (#7026).
    Update lazy_loader (#7043).
    Remove conflicting setuptools upper pin (#7045).
    Remove future.graph after v0.21 release (#6899).
    Cleanup from move to pyproject.toml (#7044).
    Ignore new matplotlib warning (#7056).
    Update spin (#7054).
    Ignore SciPy 1.12.dev0 deprecation warning (#7057).
    Include expected warning for SciPy 1.12 (#7058).
    Mark NaN-related deprecation warning from np.clip as optional in tests (#7052).
    Fix abs value function warnings (#7010).
    Temporary fix for wheel recipe (#7059).
    Temporary fix for wheel building (#7060).
    Remove outdated comment (#7077).
    Include py.typed file in distribution (PEP 561) (#7073).
    Transition user guide to import skimage as ski (#7024).
    Fix for NumPy 1.25 (#6970).
    Pin sphinx until sphinx-gallery is fixed (#7100).
    Cleanup old Python 3.11 tests (#7099).
    Revert "Pin sphinx until sphinx-gallery is fixed (#7100)" (#7102).
    MNT: Remove np.float_ alias; it is removed in NumPy 2.0 (#7118).
    Fix for NumPy 1.26 (#7101).
    Update meson-python (#7120).
    We now require sklearn 1.1, as per SPEC0 (#7121).
    Update for NumPy 2 namespace cleanup (#7119).
    DOC: minor numpydoc syntax update (#7123).
    Update for NumPy 2 namespace cleanup (#7122).
    Temporary work-around for NEP 51 numpy scalar reprs + doctests (#7125).
    Update lazy loader (#7126).
    Fix PEP 8 issues (#7142).
    Remove single-threaded dask usage in face detection gallery example which fixes issues with running the example on Windows and CI (#7141).
    Update spin version to 0.6 (#7150).
    Match pep8speaks and ruff line lengths to 88 (#7148).
    Remove last reference to distutils in _build_utils/tempita.py (#7137).
    Update sphinx, sphinx-gallery & sphinx_design (#7155).
    Update minimal version of numpydoc to 1.6 (#7106).
    Build wheels for py3.12 (#7082).
    Update label and milestone workflows (#7163).
    Update TODO (see #6899) (#7165).
    Announce Python 3.12 support (#7167).
    Remove pep8speaks config (#7172).
    Filter out expected runtime warnings in registation.phase_cross_correlation when disambiguate=True (#7147).
    Use pre-commit bot (#7171).
    Fix missing warnings import in phase_cross_correlation (#7175).
    Fix release notes error (#7177).
    Use trusted publisher (#7178).

Documentation

    Use a more descriptive title for current inpainting example (#6989).
    Fix URLs to the install page (#6998).
    Fix equation for Wiener filter in restoration.wiener's docstring (#6987).
    Fix missing links in INSTALL.rst and simplify language (#6984).
    Edit installation and contributor guidelines (#6991).
    Fix URLs that lead to 404 page (#7008).
    Replace with correct reference to eigenvalues in ridge detection docstrings (#7034).
    ...

0.21.0

Highlights

    Last release to support Python 3.8
    Unified API for PRNGs

New Features

    Implement Fisher vectors in scikit-image (#5349).
    Add support for y-dimensional shear to the AffineTransform (#6752).

0.20.0

With this release, many of the functions in skimage.measure now
support anisotropic images with different voxel spacings.

Many performance improvements were made, such as support for
footprint decomposition in skimage.morphology

Four new gallery examples were added to the documentation, including
the new interactive example "Track solidification of a metallic
alloy".

This release completes the transition to a more flexible channel_axis
parameter for indicating multi-channel images, and includes several
other deprecations that make the API more consistent and expressive.

Finally, in preparation for the removal of distutils in the upcoming
Python 3.12 release, we replaced our build system with meson and
a static pyproject.toml specification.

This release supports Python 3.8--3.11.

(wiz)

2024-02-15 22:02:21 UTC MAIN commitmail json YAML

py-scikit-image: current version doesn't support Python 3.12 either

(wiz)

2024-02-15 21:48:57 UTC MAIN commitmail json YAML

2024-02-15 21:46:17 UTC MAIN commitmail json YAML

php-mongodb: doesn't update php 8.3 either

XXX: someone should update this

(wiz)

2024-02-15 21:45:02 UTC MAIN commitmail json YAML

py-dnaio: add missing tool

(wiz)

2024-02-15 21:42:49 UTC MAIN commitmail json YAML

p5-Test-Mock-Cmd: fix MASTER_SITES

(wiz)

2024-02-15 21:40:39 UTC MAIN commitmail json YAML

py-certbot-dns-luadns: regen distinfo after update of Makefile.common

(no further tests done)

(wiz)

2024-02-15 21:28:07 UTC MAIN commitmail json YAML

doc: Updated shells/elvish to 0.20.1

(pin)

2024-02-15 21:27:48 UTC MAIN commitmail json YAML

shells/elvish: update to 0.20.1

- Elvish 0.20.1 fixes a test that is failing on s370x. There are no user-visible changes.
  For changes since the 0.19.x series, see the 0.20.0 release notes.

(pin)

2024-02-15 21:11:47 UTC MAIN commitmail json YAML

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

(pin)

2024-02-15 21:11:29 UTC MAIN commitmail json YAML

shells/oh-my-posh: update to 19.11.2

Bug Fixes
- image: add terminal width to export (59be189)
- image: exclude U+e0b6 from double width (502558e)
- image: use fixed image width (fece104)
- themes: adjust themes for correct rendering (9e7237a)

(pin)

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

doc: Updated graphics/stitchy to 0.1.6

(pin)

2024-02-15 21:10:23 UTC MAIN commitmail json YAML

graphics/stitchy: update to 0.1.6

  - (BREAKING) Added traits FileLocation and FileProperties, where ImageFiles
    is generic over those
  - (Credit: Friendly-Banana) Removed edge cases in grid layout to make it more
    intuitive
  - Updated to support stitchy-core 0.1.1

(pin)

2024-02-15 20:54:48 UTC MAIN commitmail json YAML

doc: Updated sysutils/eza to 0.18.3

(pin)

2024-02-15 20:54:27 UTC MAIN commitmail json YAML

sysutils/eza: update to 0.18.3

[0.18.3] - 2024-02-15
Bug Fixes
- Duplicates in shell completions

Documentation
- Add target arch to deb PPA installation for strict apt environments

Performance
- Do not pre-compute MountInfo to reduce readlink calls

Refactor
- Use #[default] attribute instead of custom impl for enums

(pin)

2024-02-15 20:53:42 UTC MAIN commitmail json YAML

doc: Updated devel/ast-grep to 0.19.0

(pin)

2024-02-15 20:53:22 UTC MAIN commitmail json YAML

devel/ast-grep: update to 0.19.0

- Breaking change: refactor: remove unused type generic 9b13d41
- Breaking change: fix: update pyo3 test ff10e81
- fix: fix parallel thread output be230ca

(pin)

2024-02-15 19:50:47 UTC MAIN commitmail json YAML

2024-02-15 19:47:00 UTC MAIN commitmail json YAML

tex package updates

(markd)

2024-02-15 19:45:04 UTC MAIN commitmail json YAML

2024-02-15 19:43:42 UTC MAIN commitmail json YAML

Don't build bsdunzip, it's not used anyway.

(joerg)

2024-02-15 19:43:16 UTC MAIN commitmail json YAML

tex-pxchfon{,-doc}: update to 2.0

This is a major version update, and thus contains breaking changes.
- The obsolete package ���pxjafont��� is removed.
- The deprecated option ���unicode*��� (for transitive settings) is removed.
  You must instead use ���unicode��� now.
- The deprecated command ���\asUTF��� is removed.
- The option ���unicode��� has key-value format. You are encouraged to
  use ���unicode=simple��� instead of ���directunicode��� now.

(markd)

2024-02-15 19:40:37 UTC MAIN commitmail json YAML

2024-02-15 19:38:15 UTC MAIN commitmail json YAML

2024-02-15 19:36:03 UTC MAIN commitmail json YAML

2024-02-15 19:33:25 UTC MAIN commitmail json YAML

2024-02-15 19:30:48 UTC MAIN commitmail json YAML

tex-polyglossia{,-doc}: update to 1.66

1.64
Fix conflict of soul with splithyphens on XeLaTeX (regression in some languages)

1.65
Bug fixes
* Fix spurious space in Hebrew captions.
* Fix resetting of language specifications at end of inline switch.

Documentation improvements
* Refer to \greeknumeral and \Greeknumeral rather than to the synonyms
  \greeknumber and \Greeknumber.

1.66
Bug fixes
‣ Fix OpenType language and script tags in Chinese.
‣ Fix resetting of language specifications at the end of a local font set with
  babel legacy means (\foreignlanguage or otherlanguage* environment).
‣ Fix lowercasing of \textlang’s first mandatory argument. Now the casing does
  not change (language tag was lower-cased always).
‣ Add missing BCP-47 alias for Khmer.
‣ Stop \charifavailable from looking ahead for more numbers or gobbling a space.

New Features
‣ Add support for Odia, provided by AviseK Jena and AshoK Das.
‣ New auxiliary package odiadigits
‣ Add auxiliary command \IfCharIsAvailableTF to complement \charifavailable.

(markd)

2024-02-15 19:26:42 UTC MAIN commitmail json YAML

tex-plex{,-doc}: update to 2023

Reverted to the original family name (IBMPlex) except for re-named pfbs.
Now supports LGR encoding in the serif family.

(markd)

2024-02-15 19:24:15 UTC MAIN commitmail json YAML

2024-02-15 19:11:21 UTC MAIN commitmail json YAML

doc: Updated devel/swagger-codegen to 3.0.53

(schmonz)

2024-02-15 19:11:17 UTC MAIN commitmail json YAML

swagger-codegen: update to 3.0.53. Changes:

- implement /model endpoint returning intermediate model
- allow custom codegen generator be loaded

(schmonz)

2024-02-15 19:08:58 UTC MAIN commitmail json YAML

doc: Updated misc/exercism to 3.3.0

(schmonz)

2024-02-15 19:08:53 UTC MAIN commitmail json YAML

exercism: update to 3.3.0. Changes:

* Fix `exercism test` command not working for the `8th` and
  `emacs-lisp` tracks
* Simplify root command description
* Use correct domain for FAQ link

(schmonz)

2024-02-15 18:45:58 UTC MAIN commitmail json YAML

tex-pdfmanagement-testphase{,-doc}: update to 0.96d

0.96a
- prepare for kernel switch to e-types
- use properties instead of l3ref-tmp.sty if format is new enough
- improve xcolor firstaid patch

0.96b
- switch to e-type
- correct fontspec spotcolor support

0.96c
- remove dependency to ltxcmds in the hyperref driver
- correct a local/global assigment
- remove l3ref-tmp.sty
- l3pdffile.dtx: change mimetype of xml to application/xml

0.96d
### Added
- l3pdfmeta.dtx: support for PDF declarations in XMP metadata.
- hyperref-generic.dtx: option nested-links key to suppress nested links.

### Changed
- key family in hyperref-generic is now hyp and not hyp/setup
- do not use pdfuaid:rev with pdf/UA-1 to avoid validator failures
- l3bitset is not loaded if a current l3kernel is detected

(markd)

2024-02-15 18:21:34 UTC MAIN commitmail json YAML

fcitx5: requires a C++ implementation new enough to have charconv

(nia)

2024-02-15 18:20:16 UTC MAIN commitmail json YAML

2024-02-15 18:19:45 UTC MAIN commitmail json YAML

fcitx: requires a C++ implementation new enough to have charconv

(nia)

2024-02-15 18:14:34 UTC MAIN commitmail json YAML

doc: Updated databases/postgresql-postgis2 to 3.4.2nb1

(gdt)

2024-02-15 18:14:27 UTC MAIN commitmail json YAML

2024-02-15 13:24:20 UTC MAIN commitmail json YAML

doc: Updated www/grafana to 10.3.3

(wiz)

2024-02-15 13:24:06 UTC MAIN commitmail json YAML

2024-02-15 08:37:20 UTC MAIN commitmail json YAML

doc: Updated devel/go-wire to 0.6.0

(wiz)

2024-02-15 08:37:12 UTC MAIN commitmail json YAML

go-wire: remove unused patch

(wiz)

2024-02-15 08:36:59 UTC MAIN commitmail json YAML

go-wire: update to 0.6.0.

No changes summary found, but this supports go 1.22.
Complete list of changes:
https://github.com/google/wire/compare/v0.5.0...v0.6.0

(wiz)

2024-02-15 07:48:50 UTC MAIN commitmail json YAML

R: fix dealing with conflict with NetBSD function strtoi()

Just rename the C level function strtoi() to not conflict with the
NetBSD function.  Don't also change the name of the R level funstion.

(markd)

2024-02-15 07:37:01 UTC MAIN commitmail json YAML

doc: Added devel/py-scikit-build-core version 0.8.1

(wiz)

2024-02-15 07:36:52 UTC MAIN commitmail json YAML

devel/Makefile: + py-scikit-build-core

(wiz)

2024-02-15 07:36:36 UTC MAIN commitmail json YAML

devel/py-scikit-build-core: import py-scikit-build-core-0.8.1

Scikit-build-core is a build backend for Python that uses CMake to
build extension modules. It has a simple yet powerful static
configuration system in pyproject.toml, and supports almost unlimited
flexibility via CMake. It was initially developed to support the
demanding needs of scientific users, but can build any sort of
package that uses CMake.

Scikit-build-core is a ground-up rewrite of the classic Scikit-build.

(wiz)

2024-02-15 07:02:15 UTC MAIN commitmail json YAML

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

(pin)

2024-02-15 07:00:58 UTC MAIN commitmail json YAML

shells/oh-my-posh: update to 19.11.1

Bug Fixes
- cli: initialize .Var correctly (43e9246)
- image: use correct range for icon code points (6bbca22)

(pin)

2024-02-15 06:57:25 UTC MAIN commitmail json YAML

security/Makefile: + py-certbot-dns-cloudflare

(wiz)

2024-02-15 06:56:57 UTC MAIN commitmail json YAML

math/Makefile: + R-itertools

(wiz)

2024-02-15 04:34:21 UTC MAIN commitmail json YAML

bsdtar: drop redundant bsd.prefs.mk inclusion

It's already included on line 4.

(gutteridge)

2024-02-15 04:31:32 UTC MAIN commitmail json YAML

doc: Updated x11/libxfce4ui to 4.18.5

(gutteridge)

2024-02-15 04:31:18 UTC MAIN commitmail json YAML

libxfce4ui: update to 4.18.5

4.18.5 (2024-02-05)
======
- Update copyright year
- build: Search for bind_textdomain_codeset in libintl too
- sm-client: Reset SmcConnection when IceConnection is closed on error
- docs: Improve xfce_sm_client_get()
- shortcuts-grabber: Fix filtering by level
- shortcuts-grabber: Simplify filtering by group
- shortcuts-grabber: Variable renaming
- shortcuts-grabber: Filter grabbing by key level
- Detect keyboard shortcuts with only single modifier keys on key
release
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian,
  Azerbaijani, Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese
  (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech,
  Danish, Dutch, Eastern Armenian, English (Australia), English (United
  Kingdom), Estonian, Finnish, French, Galician, Georgian, German,
  Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
  Italian, Japanese, Kazakh, Korean, Lithuanian, Malay, Norwegian
  Bokm奪l, Norwegian Nynorsk, Occitan (post 1500), Persian (Iran),
  Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
  Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish,
  Ukrainian, Uyghur, Welsh

(gutteridge)

2024-02-15 04:22:54 UTC MAIN commitmail json YAML

doc: Updated x11/libxfce4util to 4.18.2

(gutteridge)

2024-02-15 04:22:38 UTC MAIN commitmail json YAML

libxfce4util: update to 4.18.2

4.18.2 (2024-02-05)
======
- Update copyright year
- Search for bind_textdomain_codeset in libintl too
- xfce-rc: Add support for the LANGUAGE environment variable
- Add missing config.h includes
- Improve checksum calculation (#17)
- xfce-rc: Document the fact that delimiter escaping is not supported
- xfce-rc: Properly write translated entries when available
- Update bug report address

(gutteridge)

2024-02-15 01:35:47 UTC MAIN commitmail json YAML

doc: Updated x11/xfce4-garcon to 4.18.2

(gutteridge)

2024-02-15 01:35:33 UTC MAIN commitmail json YAML

xfce4-garcon: update to 4.18.2

4.18.2 (2024-02-05)
======
- Update copyright year
- garcon-gtk: Remove weak ref on GarconMenu on finalize()
- Use target desktop files instead of symlinks (Fixes #1)
- garcon-gtk: Avoid populating a wrong menu
- garcon-gtk: Prevent use-after-free when loading garcon menu
- Add icon at 64px, clean up SVG metadata
- Translation Updates:
  Catalan, Czech, Danish, French, German, Italian, Kabyle, Portuguese
  (Brazil)

(gutteridge)

2024-02-14 21:57:48 UTC MAIN commitmail json YAML

Updated www/py-jwcrypto, net/py-prometheus_client, databases/postgresql-timescaledb, www/py-httpcore

(adam)

2024-02-14 21:57:00 UTC MAIN commitmail json YAML

py-httpcore: updated to 1.0.3

1.0.3 (February 13th, 2024)

- Fix support for async cancellations.
- Fix trace extension when used with socks proxy.
- Fix SSL context for connections using the "wss" scheme

(adam)

2024-02-14 21:54:21 UTC MAIN commitmail json YAML

postgresql-timescaledb: updated to 2.14.1

2.14.1 (2024-02-14)

This release contains bug fixes since the 2.14.0 release.
We recommend that you upgrade at the next available opportunity.

**Features**
* Add views for per chunk compression settings

**Bugfixes**
* Fixes extension update of compressed hypertables with dropped columns
* Reset sequence numbers on non-rollup compression
* Disable default indexscan for compression
* Fix DecompressChunk path generation with per chunk settings

(adam)

2024-02-14 21:52:10 UTC MAIN commitmail json YAML

py-prometheus_client: updated to 0.20.0

0.20.0

[CHANGE/BUGFIX] Update OpenMetrics Content Type to 1.0.0.
[FEATURE] Enable graceful shutdown for start_{http,wsgi}_server by returning the server and thread.
[FEATURE] Allow resetting counter metrics.
[BUGFIX] wsgi server: address family discovery is not quite right.

(adam)

2024-02-14 21:50:29 UTC MAIN commitmail json YAML

py-jwcrypto: updated to 1.5.4

v1.5.4

One more release bump to address issues with typing_extensions minimum required version

(adam)

2024-02-14 21:46:06 UTC MAIN commitmail json YAML

Updated archivers/lziprecover, devel/abseil

(adam)

2024-02-14 21:45:28 UTC MAIN commitmail json YAML

abseil: updated to 20240116.1

Abseil LTS 20240116.1

What's New:

Added absl::NoDestructor<T> to simplify defining static types that do not need to be destructed upon program exit.
Added configurable verbose logging (also known as VLOG).
Added absl::Overload(), which returns a functor that provides overloads based on the functors passed to it. Note that this functionality requires C++17 or newer.
Bzlmod is now officially supported (previously it was supported by the community). Note that it may take several days after the release for it to become available in the Bazel Central Registry.

Breaking Changes:

AbslHashValue() no longer accepts C-style arrays as a parameter. Previously the array would decay to a pointer type, which could lead to subtle, unintended bugs. The most common potential error is passing a C-string literal. After this change, these call-sites require wrapping the literal in absl::string_view.
absl::weak_equality and absl::strong_equality have been removed. The corresponding std types were removed before C++20 was finalized (https://wg21.link/P1959R0).

(adam)

2024-02-14 21:42:38 UTC MAIN commitmail json YAML

lziprecover: updated to 1.24

* Version 1.24 released.
* New options '--empty-error', '--marking-error', '--clear-marki
* dump_remove.cc, main.cc: Accept 'empty' in --dump, --remove, -
* main.cc: Rename '--repair' to '--byte-repair'.
  Rename '--debug-repair' to '--debug-byte-repair'.
  Reformat file diagnostics as 'PROGRAM: FILE: MESSAGE'.
  (show_option_error): New function showing argument and option
  (main): Make -o preserve date/mode/owner if 1 input file.
  (open_outstream): Create missing intermediate directories.
* lzip.h: Rename verify_* to check_*.
* repair.cc: Rename to byte_repair.cc.
* unzcrash.cc: Rename '--no-verify' to '--no-check'.
* configure, Makefile.in: New variable 'MAKEINFO'.
* Makefile.in: Remove target 'install-as-lzip'; -e needs a real
* testsuite: New test files test_3m.txt.lz.md5, fox6_mark.lz.

(adam)

2024-02-14 21:37:36 UTC MAIN commitmail json YAML

Updated lang/nodejs18, devel/py-editorconfig-core, parallel/py-threadpoolctl, security/py-pip-audit

(adam)

2024-02-14 21:36:32 UTC MAIN commitmail json YAML

py-pip-audit: updated to 2.7.1

2.7.1

Fixed

Improved the error returned to users when their default temporary directory lacks execute permissions

(adam)

2024-02-14 21:31:34 UTC MAIN commitmail json YAML

doc: Updated lang/rust-bin to 1.74.1

(pin)

2024-02-14 21:31:14 UTC MAIN commitmail json YAML

lang/rust-bin: update to 1.74.1

Follow rust-src.
For changes check the source package.

Prepared in wip by he@

(pin)

2024-02-14 21:31:01 UTC MAIN commitmail json YAML

py-threadpoolctl: updated to 3.3.0

3.3.0 (2024-02-14)
==================

- Extended FlexiBLAS support to be able to switch backend at runtime.
  https://github.com/joblib/threadpoolctl/pull/163

- Added support for FlexiBLAS
  https://github.com/joblib/threadpoolctl/pull/156

- Fixed a bug where an unsupported library would be detected because it shares a common
  prefix with one of the supported libraries. Now the symbols are also checked to
  identify the supported libraries.
  https://github.com/joblib/threadpoolctl/pull/151

(adam)

2024-02-14 21:29:26 UTC MAIN commitmail json YAML

2024-02-14 21:26:59 UTC MAIN commitmail json YAML

nodejs18: updated to 18.19.1

Version 18.19.1 'Hydrogen' (LTS)

Notable changes

CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High)
CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High)
CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against PKCS#1 v1.5 padding) - (Medium)
CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium)
undici version 5.28.3
npm version 10.2.4

(adam)

2024-02-14 21:19:40 UTC MAIN commitmail json YAML

Updated lang/nodejs, lang/nodejs20

(adam)

2024-02-14 21:16:23 UTC MAIN commitmail json YAML

nodejs20: updated to 20.11.1

Version 20.11.1 'Iron' (LTS)

Notable changes

CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High)
CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High)
CVE-2024-21896 - Path traversal by monkey-patching Buffer internals- (High)
CVE-2024-22017 - setuid() does not drop all privileges due to io_uring - (High)
CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against PKCS#1 v1.5 padding) - (Medium)
CVE-2024-21891 - Multiple permission model bypasses due to improper path traversal sequence sanitization - (Medium)
CVE-2024-21890 - Improper handling of wildcards in --allow-fs-read and --allow-fs-write (Medium)
CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium)
undici version 5.28.3
libuv version 1.48.0
OpenSSL version 3.0.13+quic1

(adam)

2024-02-14 21:15:56 UTC MAIN commitmail json YAML

nodejs: updated to 21.6.2

Version 21.6.2 (Current)

Notable changes

CVE-2024-21892 - Code injection and privilege escalation through Linux capabilities- (High)
CVE-2024-22019 - http: Reading unprocessed HTTP request with unbounded chunk extension allows DoS attacks- (High)
CVE-2024-21896 - Path traversal by monkey-patching Buffer internals- (High)
CVE-2024-22017 - setuid() does not drop all privileges due to io_uring - (High)
CVE-2023-46809 - Node.js is vulnerable to the Marvin Attack (timing variant of the Bleichenbacher attack against PKCS#1 v1.5 padding) - (Medium)
CVE-2024-21891 - Multiple permission model bypasses due to improper path traversal sequence sanitization - (Medium)
CVE-2024-21890 - Improper handling of wildcards in --allow-fs-read and --allow-fs-write (Medium)
CVE-2024-22025 - Denial of Service by resource exhaustion in fetch() brotli decoding - (Medium)
undici version 5.28.3
libuv version 1.48.0
OpenSSL version 3.0.13+quic1

(adam)

2024-02-14 20:03:34 UTC MAIN commitmail json YAML

tex package updates

(markd)

2024-02-14 20:01:16 UTC MAIN commitmail json YAML

tex-overpic: update to 2.1

Partially rewritten to avoid a possible adverse impact on the behavior of
`\includegraphics'.

(markd)

2024-02-14 20:00:00 UTC MAIN commitmail json YAML

tex-orcidlink{,-doc}: update to 1.0.5

Minor improvements:
- Prevent the ORCiD logo from being externalized by TikZ if the user does
  externalization
- Better documentation of compatibility with suggested load order

(markd)

2024-02-14 19:58:02 UTC MAIN commitmail json YAML

tex-oldstandard{,-doc}: update to 2.7a

2.7
Oldstyle and proportional figures are new and are now the
default figure style.

2.7a
Corrects italic old-style figures.

(markd)

2024-02-14 19:55:41 UTC MAIN commitmail json YAML

2024-02-14 19:53:46 UTC MAIN commitmail json YAML

2024-02-14 19:51:27 UTC MAIN commitmail json YAML

tex-newfloat{,-doc}: update to 1.2

New stuff:

* New section "Multi-language support" in documentation
* \DeclareFloatingEnvironment now defines a name for \autoref, too
* Optional fallback to v1.0 and v1.1
* New options "autorefname=" (for hyperref) and "legendname=" (for memoir)
* New command \newfloat at dont@patch at chapter for LaTeX document class
  maintainers
* The maintenance status of this package is now "unmaintained"

Bugfixes since v1.1l: (2019/09/02)

* line spacing in the list of algorithms(2e) disappears with newfloat option
  of minted
* The option "chapterlistsgaps" results in an error when used with a document
  class w/o chapters

(markd)

2024-02-14 19:48:40 UTC MAIN commitmail json YAML

doc: Added games/bugdom2 version 4.0.0

(charlotte)

2024-02-14 19:48:10 UTC MAIN commitmail json YAML

tex-newcomputermodern{,-doc}: update to 5.1

5.0
This is a major release of NewComputerModern.

It adds support for the Devanagari script and languages Hindi(default),
Sanskrit, Marathi, Nepali.
The fonts provide Devanagari Regular and Book at 08pt and 10pt and
Bold at 10pt. Check the documentation on how to use them.

Devanagari numbers and Unicode encoded letters are provided in the
Math fonts too for use as variables and auto switch from Arabic numerals
with the proper Stylistic Set (check the documentation).

It adds its own matching mathbb (and keeps the AMS mathbb as an option).
Math also provides two series of Latin calligraphic capitals for
Mathematics and one for lowercase.

The full block of diacritics U+0300 to U+036F is supported in all
fonts with stacking too.

Several improvements in Bold Sans.

Completion of the Greek+Coptic block in all fonts (there were a few
rare characters missing in some fonts).

5.1
Aegean Numbers added in Sans family (U10100 to U1013F)
Alternative oldstyle 1 in the form of I added in cv06
Some missing ligatures in dlig were added (like ch, ck, il) from certain faces.
Fixed kerning issues between uni026D and slash
A bug in newcomputermodern.sty calling fsp[old]default.sty instead of .tex was fixed.

(markd)

2024-02-14 19:47:36 UTC MAIN commitmail json YAML

games/Makefile: + bugdom2

(charlotte)

2024-02-14 19:47:14 UTC MAIN commitmail json YAML

games/bugdom2: New package

It has been three years since Rollie McFly rid the Bugdom of the evil King
Thorax and his minions, but the Bugdom can still be dangerous place as our
new hero Skip is about to find out. While on his way to visit his family on
the far side of the Bugdom, a Bully Bee swooped down and stole Skip窶冱
knapsack. Your job as Skip is to track down the Bully Bee and get your
knapsack back.

Bugdom 2 was released in 2002 by Pangea Software as a Mac game. It is the
sequel to the original Bugdom.

(charlotte)

2024-02-14 19:45:29 UTC MAIN commitmail json YAML

tex-mpchess{,-doc}: update to 0.7

Black knight adjustment, adding color board themes (GreenLichess,
PinkPyramidalLichess, Wood) with color type (set_board_type).

(markd)

2024-02-14 19:43:33 UTC MAIN commitmail json YAML

tex-modes{,-doc}: update to 4.3

This update to modes.mf adds a mode for potrace usage at 7200 dpi,
requested by Hans Hagen and Mikael Sundqvist.

The modes.mf file collects all known Metafont modes for printing or
display devices, of whatever printing technology. Special provision is
made for write-white printers, and `landscape' support is available, for
making suitable fonts for printers with pixels whose aspect is
non-square.

The file also provides definitions that make \specials identifying the
mode in Metafont's GF output, and put coding information and other
Xerox-world information in the TFM file.

(markd)

2024-02-14 19:41:04 UTC MAIN commitmail json YAML

2024-02-14 19:38:56 UTC MAIN commitmail json YAML

tex-mhchem{,-doc}: update to 4.10

mhchem.sty
- Remove TeX4ht support, because the author of TeX4ht added it to his package
hpstatements.sty
- Using most-recent statements from the EU

(markd)

2024-02-14 19:36:47 UTC MAIN commitmail json YAML

tex-memoir{,-doc}: update to 3.8.2

3.8
-- now requires a LaTeX format from 2021/06/01 or newer.

    The class will halt compilation (in all interaction modes) if the
    format is too old.

-- \titleref is now an alias for \nameref (autoloaded).
    The class have been adjusted to provide info for sectionals and
    normal captions.

    The titleref package will remain marked as being emulated
    as it shouldn't be used with the class (and haven't been updated in
    20+ years).

-- nameref paches in the class are no longer needed

-- label handling for subcaptions and friends have been reimplemented.

-- no longer re-defines \label as per request of the LaTeX Team.

-- booktabs is now loaded as a required package instead of being
    embedded

-- Fixed typo in the caption of figure 2.13. Thanks to Vladimir
    G. Ivanović for the report.

-- removed etex loading (was only loaded for kernels from before
    2015). The noetex class option removed as well.

-- reimplemented \pagenumbering(*) as a single macro

-- additions to \@xfloat is now done via a cmd/after hook if the
    format version supports it.

-- Definition of \theHpoem changed to \providecommand

-- The \theH<counter> macros defined in memoir was modified to use
    \the\value{counter} instead of just \arabic{counter} as some
    packages change \arabic.

-- \toclevel at part was actually never fixed in v3.7.19, now it is

-- added \@currentcounter in various places that manually
    set \@currentlabel (primarily footnote constructions).
    Reported by Gustavo Barros.

-- replaced hardcoded \footnotesize in \verbfootnote by \foottextfont

-- made a small change to footnote formatting. Now one can use
    \raggedright in \footnotetext to get raggedright footnotes. Use
    with care as \raggedright does change various paragraph settings

-- replaced etoolbox loading by xpatch (which loads etoolbox) as it
    can patch more.

-- Added a Hook named memoir/subcaption/aftercounter which is executed
    after \refstepcounter in \subcaption, \subbottom, \subtop
    etc. Requested by Gustavo Barros.

-- Redefinition of \@setsize removed, was copied from setspace.sty
    which states that it was only needed for some 209 packages.

3.8a
-- forgot to enable the announced stop if the LaTeX format is to old.
-- updated the bibliography to more recent years.

3.8.1
The new additions to \@xfloat via AddToHook are too fragile
(thefloat package changes \@xfloat in an incompatible way).
We've moved the additions to the \@floatboxreset.

3.8.2
-- In v3.8 I forgot to add some internal testing code related to
  \@startsection. The code experiment has now been added, but is not
  enabled by default.

-- Axel Sommerfeldt suggested a useful macro abstraction for
  sidecaption and sidecontcaption that simplifies his adjustments
  whenever the caption package is loaded.

-- Fixed a small (but important) typo in my maintainers note (Peter started
  memoir in 2001, not 2021)

-- The Nov-2023 kernel update gave issued with our version of \verb.
  Now fixed by un-embedding the verbatim package. Issue first
  reported by Andrew Swann.

-- Fixed a typo in \m at make@footnotetext where ##1 got interpreted as a
  macro name, not contents. Reported by Richard Zach.

-- Replaced the embedded copy of the shortvrb package by loading the
  package instead.

-- Replaced the embedded and modified copy of the verbatim package by
  just loading the package.

(markd)

2024-02-14 19:04:59 UTC MAIN commitmail json YAML

doc: Updated games/cromagrally to 3.0.1

(charlotte)

2024-02-14 19:04:05 UTC MAIN commitmail json YAML

games/cromagrally: Update to 3.0.1

Notable changes:

- Improved Italian localization contributed by @orazioedoardo - grazie!
- Improved Spanish localization contributed by Alfonso Ducceschi - gracias!
- You can now rebind the left analog stick and the D-Pad to your heart's
  content
- macOS: Retina support; Sonoma Game Mode support; Prevent accidental quitting
  when hitting Command-W or Command-Q in-game
- Windows: Fix rare bug if AppData\Local contains a file with a bad name
  encoding
- Linux: Wayland support

(charlotte)

2024-02-14 18:44:40 UTC MAIN commitmail json YAML

doc: Updated lang/janet to 1.33.0

(charlotte)

2024-02-14 18:39:37 UTC MAIN commitmail json YAML

lang/janet: Update to 1.33.0

Notable changes since 1.31.0:

## 1.33.0 - 2024-01-07

- Add more + and * keywords to default-peg-grammar by @sogaiu.
- Use libc strlen in janet_buffer_push_cstring by @williewillus.
- Be a bit safer with reference counting.
- Add support for atomic loads in Janet's atomic abstraction.
- Fix poll event loop CPU usage issue.
- Add ipv6, shared, and cryptorand options to meson.
- Add more ipv6 feature detection.
- Fix loop for forever loop.
- Cleaned up unused NetStateConnect, fixed janet_async_end() ev refcount by
  @zevv.
- Fix warnings w/ MSVC and format.
- Fix marshal_one_env w/ JANET_MARSHAL_UNSAFE.
- Fix `(default)`.
- Fix cannot marshal fiber with c stackframe, in a dynamic way that is fairly
  conservative.
- Fix typo for SIGALARM in os/proc-kill.
- Prevent bytecode optimization from remove mk* instructions.
- Fix arity typo in peg.c by @pepe.
- Update Makefile for MinGW.
- Fix canceling waiting fiber.
- Add a new (sub) PEG special by @ianthehenry.
- Fix if net/server's handler has incorrect arity.
- Fix macex raising on ().

## 1.32.1 - 2023-10-15

- Fix return value from C function `janet_dobytes` when called on Janet
  functions that yield to event loop.
- Change C API for event loop interaction - get rid of JanetListener and
  instead use `janet_async_start` and `janet_async_end`.
- Rework event loop to make fewer system calls on kqueue and epoll.
- Expose atomic refcount abstraction in janet.h
- Add `array/weak` for weak references in arrays
- Add support for weak tables via `table/weak`, `table/weak-keys`, and
  `table/weak-values`.
- Fix compiler bug with using the result of `(break x)` expression in some
  contexts.
- Rework internal event loop code to be better behaved on Windows
- Update meson build to work better on windows

(charlotte)

2024-02-14 16:32:53 UTC MAIN commitmail json YAML

Updated devel/py-dict2xml, net/py-netaddr

(adam)

2024-02-14 16:32:29 UTC MAIN commitmail json YAML

py-netaddr: updated to 1.0.0

Release: 1.0.0
--------------

Date: 2024-02-10

Removed:

* Drop support for Python versions lower than 3.7.
* Remove the flag shorthands: ``N``, ``P`` and ``Z``. Use :data:`NOHOST`, :data:`INET_PTON`
  and :data:`ZEROFILL` instead.
* Remove abbreviated CIDR format support in :class:`IPNetwork` (``implicit_prefix=True``),
  use :func:`cidr_abbrev_to_verbose` if you need this behavior.
* Remove the ``IPAddress.is_private`` method.

  There are more precise replacements for subset of the addresses that used to handled by ``is_private``:

  * :meth:`IPAddress.is_link_local`
  * :meth:`IPAddress.is_ipv4_private_use`
  * :meth:`IPAddress.is_ipv6_unique_local`
  * :meth:`IPAddress.is_global`

  The following address blocks used to be handled by ``is_private`` have no dedicated
  convenience methods and you'll have to handle them manually or request a method
  addition:

  * ``100.64.0.0/10`` – Shared Address Space
  * ``192.0.0.0/24`` – IETF Protocol Assignments (watch out – there are exceptions in there)
  * ``198.18.0.0/15`` – Benchmarking
  * ``239.0.0.0``-``239.255.255.255`` – ``240.0.0.0/4`` is Reserved, ``239.0.0.0/8`` – unclear

Changed:

* Stop accepting leading zeros when parsing IPv4 addresses in :data:`INET_PTON` mode
  (it's been allowed on some platforms).

  If you need to allow and discard leading zeros use the :data:`ZEROFILL` flag.

  This change will affect implicit conversions from ``str`` in all relevant contexts. If you need
  to control the IPv4 parsing mode construct :class:`IPAddress` objects explicitly.
* Stop parsing IPv4 addresses permissively (``inet_aton()``-like) by default.

  :data:`INET_PTON` is the default mode.

  If you need to be permissive and parse using ``inet_aton()`` semantics use the
  :data:`INET_ATON` flag.

  This change will affect implicit conversions from ``str`` in all relevant contexts. If you
  need to control the IPv4 parsing mode construct :class:`IPAddress` objects explicitly.
* Apply the two changes above to :func:`valid_ipv4` as well.
* Update the address databases to the 2024-02-10 versions.

Fixed:

* Return ``False`` instead of raising :exc:`AddrFormatError` when an empty string is passed
  to :func:`valid_ipv4` or :func:`valid_ipv6`.
* Fix handling of ``dialect`` provided to :class:`EUI` during copy-construction.

(adam)

2024-02-14 16:30:27 UTC MAIN commitmail json YAML

py-dict2xml: updated to 1.7.5

1.7.5 - 13 February 2024
Introduced the data_sorter option

(adam)

2024-02-14 16:26:46 UTC MAIN commitmail json YAML

Updated devel/py-urwid, devel/py-test-httpserver

(adam)

2024-02-14 16:26:07 UTC MAIN commitmail json YAML

py-test-httpserver: updated to 1.0.9

1.0.9
New Features

- Add ``__repr__`` to ``RequestHandler`` object so when it is compared (eg. with
  the ``log`` attribute of the server) it will show the matcher parameters.

(adam)

2024-02-14 16:24:47 UTC MAIN commitmail json YAML

doc: Updated editors/xnedit to 1.5.3

(micha)

2024-02-14 16:22:54 UTC MAIN commitmail json YAML

editors/xnedit: Update to 1.5.3

version 1.5.3 (2024-02-12)
--------------------------

- changed file dialog to remember the filter setting
- fixed uninitialized memory access
- fixed editorconfig end_of_line setting was not applied
- fixed cursor line highlighting rendering

(micha)

2024-02-14 16:22:46 UTC MAIN commitmail json YAML

py-urwid: updated to 2.5.3

2.5.3

Bug fixes

Fix render regression: khal Padding width > size

Other Changes

Update unicode table to the version 15.1.0

(adam)

2024-02-14 16:00:05 UTC MAIN commitmail json YAML

doc: Updated graphics/ocaml-cairo to 0.6.4nb10

(wiz)

2024-02-14 15:59:57 UTC MAIN commitmail json YAML

2024-02-14 15:48:12 UTC MAIN commitmail json YAML

doc: powerdns-recursor vuln

(wiz)

2024-02-14 15:45:09 UTC MAIN commitmail json YAML

ocaml-cairo: pkglint cleanup

(wiz)

2024-02-14 15:44:27 UTC MAIN commitmail json YAML

doc: Updated graphics/ocaml-cairo to 0.6.4nb9

(wiz)

2024-02-14 15:44:19 UTC MAIN commitmail json YAML

ocaml-cairo: hack build until it works

For some reason, dune (the build framework) as used by ocaml-cairo
doesn't find pkg-config. Provide overrides for that, leading to another
error with another override.

Untested, but at least this builds and packages again now.

Bump PKGREVISION.

(wiz)

2024-02-14 12:28:49 UTC MAIN commitmail json YAML

Updated devel/py-rpds-py, devel/py-serializable

(adam)

2024-02-14 12:27:48 UTC MAIN commitmail json YAML

py-serializable: updated to 1.0.1

1.0.1

fix: serialization of datetime without timezone with local time offset

(adam)

2024-02-14 12:25:05 UTC MAIN commitmail json YAML

2024-02-14 11:20:09 UTC MAIN commitmail json YAML

add krb5-strength

(markd)

2024-02-14 11:17:48 UTC MAIN commitmail json YAML

krb5-strength: add version 3.3

krb5-strength provides a password quality plugin for the MIT Kerberos KDC
(specifically the kadmind server) and Heimdal KDC, an external password
quality program for use with Heimdal, and a per-principal password history
implementation for Heimdal. Passwords can be tested with CrackLib, checked
against a CDB or SQLite database of known weak passwords with some
transformations, checked for length, checked for non-printable or non-ASCII
characters that may be difficult to enter reproducibly, required to contain
particular character classes, or any combination of these tests.

(markd)

2024-02-14 10:58:01 UTC MAIN commitmail json YAML

konqueror: allow use of particular hunspell dictionaries

(markd)

2024-02-14 10:33:04 UTC MAIN commitmail json YAML

doc: Updated graphics/wallust to 3.0.0

(pin)

2024-02-14 10:31:59 UTC MAIN commitmail json YAML

graphics/wallust: update to 3.0.0-alpha

new major pre-release version: 3.0.0-alpha

- rand -> fastrand
- BREAKING: disallow 'wallust image'
- add shell completions
(NOTE: I left these out of the pkgsrc package for now, as it looks like support
for other shells is planned)
- add man pages
- introduce a Makefile
- strip the binary
- BREAKING disallow '[[entry]]' like syntax in config files for '[templates]'
  header instead
- BREAKING: no need for 'new_engine = true' since it will be default.
  Now you do 'pywal = true' for pywal syntax
- introduce 'wallust migrate' to handle new config syntax
- new flags: -i/--ignore-sequence
- BREAKING change to minijinja template engine.
  This is breaking since some variables like '{{color0.rgb}}' are now achieved
  by calling a filter like '{{color0 | rgb}}'
- change cache output to be "pretty" and a string, as rather, a consequence of
  using minijinja serde.
- update dependencies (fast_image_resize also had a breaking v3 release c:)

Please read about v3 breaking changes, https://codeberg.org/explosion-mental/wallust/src/tag/3.0.0-alpha/v3.md
the link is also in the cli itself 'wallust -h' so there should not be a problem.

The tars -with-assets contains man pages and completions.

(pin)

2024-02-14 10:31:02 UTC MAIN commitmail json YAML

doc: Updated sysutils/xcp to 0.20.3

(pin)

2024-02-14 10:29:53 UTC MAIN commitmail json YAML

sysutils/xcp: update to 0.20.3

- Add more checks and tests for self-overwrite corner cases.

(pin)

2024-02-14 10:12:48 UTC MAIN commitmail json YAML

konqueror: install useragenttemplatesrc via examples dir

(markd)

2024-02-14 09:51:15 UTC MAIN commitmail json YAML

remove kfilemetatdata

(markd)

2024-02-14 09:49:13 UTC MAIN commitmail json YAML

2024-02-14 08:40:53 UTC MAIN commitmail json YAML

Updated devel/meson, x11/gtk4

(adam)

2024-02-14 08:40:36 UTC MAIN commitmail json YAML

gtk4: updated to 4.12.5

Overview of Changes in 4.12.5, 17-01-2024
=========================================

* GtkColumnView:
- Fix a crash on dispose

* GtkEmojiChooser:
- Update to CLDR v44
- Add more translations

* GtkFileDialog:
- Return an error if no file is selected
- Make closing the portal file chooser work

* GtkDropDown:
- Fix display of the initial checkmark

* GtkShortcutsWindow:
- Reduce the minimum width

* GDK:
- Make the png loader safer against overflow

* Windows:
- Use new clipboard api

* Wayland:
- Fix cursor handling with graphics tablets

* macOS:
- Silence secure-restore message
- Fix build on macOS < 10.13

* Translation updates
Basque
British English
Catalan
Chinese (China)
Czech
Georgian
German
Hebrew
Indonesian
Lithuanian
Persian
Polish
Romanian
Russian
Slovenian
Swedish
Turkish
Ukrainian
Vietnamese

(adam)

2024-02-14 08:34:00 UTC MAIN commitmail json YAML

meson: updated to 1.3.2

1.3.2
Bug fixes

(adam)

2024-02-14 08:23:49 UTC MAIN commitmail json YAML

doc: Updated archivers/lzip to 1.24

(wiz)

2024-02-14 08:23:39 UTC MAIN commitmail json YAML

lzip: update to 1.24.

Changes in version 1.24:

The option '--empty-error', which forces exit status 2 if any empty member
is found, has been added.

The option '--marking-error', which forces exit status 2 if the first LZMA
byte is non-zero in any member, has been added.

File diagnostics have been reformatted as 'PROGRAM: FILE: MESSAGE'.

Diagnostics caused by invalid arguments to command-line options now show the
argument and the name of the option.

The option '-o, --output' now preserves dates, permissions, and ownership of
the file when (de)compressing exactly one file.

The option '-o, --output' now creates missing intermediate directories when
writing to a file.

The variable MAKEINFO has been added to configure and Makefile.in.

(wiz)

2024-02-14 08:22:48 UTC MAIN commitmail json YAML

doc: Updated www/neon to 0.33.0

(wiz)

2024-02-14 08:22:39 UTC MAIN commitmail json YAML

neon: update to 0.33.0.

Changes in release 0.33.0:
* Interface changes:
- API and ABI backwards-compatible with 0.27.x and later
* Interface clarifications:
- ne_locks.h: note that returned lock may have a different URI
  than the path passed to ne_lock_discover() due to added
  support for RFC 4918 "lockroot" in lock discovery
- ne_request.h: ne_request_create() takes a "target" rather
  than a path and this can also be an absolute-URI
- ne_request.h: never-used ne_free_hooks typedef removed
- ne_dates.h: clarified error cases (behaviour unchanged)
- ne_session.h: ne_session_create() 'host' must match RFC 3986
  syntax; IPv6 literal addresses must use [] brackets
* New interfaces and features:
- added new configure flag --enable-auto-libproxy which enables
  libproxy by default for new sessions (Jan-Michael Brummer)
- ne_locks.h: added DAV:lockroot support per RFC 4918
- ne_ssl.h: ne_ssl_trust_default_ca() now a no-op for non-SSL sessions
- ne_request.h: add ne_add_interim_handler() to handle interim
  (1xx) responses; headers in interim responses are now accessible
- ne_basic.h: add ne_putbuf()
- ne_strhash: SHA-512/256 now supported for LibreSSL 3.8+ (orbea)
- response handling no longer applies a maximum limit on 1xx interim
  responses; an overall timeout equal to the read timeout is now
  applied if a read timeout is configured and 1XXTIMEOUT is enabled
- ne_request.h: add NE_REQFLAG_1XXTIMEOUT
* Bug fixes:
- test suite now works correctly on IPv6-only hosts (Jeremy Sowden)
- fixes for building against LibreSSL (orbea)
- ne_uri_parse() fixes for handling URI with no path and catch
  some invalid URIs which were allowed (fasticc)
- retry requests after a 408 response on a persisted connection
- 207 error strings are cleaned and compressed to a single line
- fixed thread-safety in ne_rfc1123_date where gmtime_r is available
- ne_lock_refresh() fixed to use a non-idempotent request
- TLS name verification updated to match RFC 9110/6125, added strict
  handling of IP literals vs DNS names

(wiz)

2024-02-14 08:15:07 UTC MAIN commitmail json YAML

doc: Updated mail/neomutt to 20240201

(wiz)

2024-02-14 08:14:58 UTC MAIN commitmail json YAML

neomutt: update to 20240201.

2024-02-01  Richard Russon  \<rich@flatcap.org\>
* Features
  - #4134 Command-line Crypto (neomutt -C)
* Bug Fixes
  - #4065 track new-mail check time per mailbox
  - #4141 fix(change-folder): don't exclude notmuch
  - #4147 envelope: manage subject/real_subj together
  - #4155 fix parsing of $REPLYTO
  - #4158 status: fix refresh after sync-mailbox
  - #4166 Fix two memory leaks in notmuch support
  - progress: fix percentages
* Translations
  - 100% Czech
  - 100% German
  - 100% Lithuanian
  - 100% Serbian
  - 100% Slovak
  - 100% Turkish
* Docs
  - #4172 Several fixes for the manual pages
* Build
  - build: openbsd workarounds
* Code
  - #4142 add mutt_time_now()
  - #4146 config: factor out R_ flags
  - #4154 file: upgrade mutt_file_fopen/fclose()
  - #4159 upgrade mutt_str_append_item() to use struct Buffer
  - #4161 maildir: encapsulate the header cache
  - #4162 remove mutt_str_dequote_comment()
  - #4165 bufferize mutt_str_inline_replace() as buf_inline_replace()
  - #4167 bufferize mutt_strn_rfind() as buf_rfind()
  - #4168 replace buf_len() checks with buf_is_empty()
  - config: drop unused flags
  - use message_new()/message_free()
  - Reconsider the config type bitmap entirely

(wiz)

2024-02-14 08:13:32 UTC MAIN commitmail json YAML

doc: Updated x11/xkeyboard-config to 2.41

(wiz)

2024-02-14 08:13:24 UTC MAIN commitmail json YAML

xkeyboard-config: update to 2.41.

2.41 33 commits
Translations updated

(wiz)

2024-02-14 08:12:24 UTC MAIN commitmail json YAML

doc: Updated net/filezilla to 3.66.5

(wiz)

2024-02-14 08:12:13 UTC MAIN commitmail json YAML

filezilla: update to 3.66.5.

3.66.5 (2024-02-07)

! Official binaries are now built againt GnuTLS 3.8.3
- Updated to libfilezilla 0.46.0
- MSW: Fixed tab navigation over message log

(wiz)

2024-02-14 08:06:11 UTC MAIN commitmail json YAML

doc: Updated net/libfilezilla to 0.46.0

(wiz)

2024-02-14 08:06:03 UTC MAIN commitmail json YAML

libfilezilla: update to 0.46.0.

0.46.0 (2024-02-06)

+ fz::process: Add io redirection mode that excluded stderr
+ fz::remove_file and remove_dir now take additional parameter and return fz::result
+ Added transitional fz::file::read2 and fz::file::write2 returning fz::rwresult, old read/write have been marked deprecated
- HTTP: Fix redirect if "Connection: close" header is set

(wiz)

2024-02-14 07:45:11 UTC MAIN commitmail json YAML

libksysguard: needs knewstuff

(markd)

2024-02-14 07:32:06 UTC MAIN commitmail json YAML

filelight: note needs c++20

(markd)