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 (2h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 03:05:47 UTC Now

2024-01-04 22:43:19 UTC MAIN commitmail json YAML

Updated www/py-daphne, www/py-channels, devel/py-frozendict, devel/py-progressbar2

(adam)

2024-01-04 22:42:52 UTC MAIN commitmail json YAML

py-progressbar2: updated to 4.3.2

v4.3.2
disabling run-command until it is properly finished

v4.3.1
fixed typeerror on Windows
excluded docs from install
added readthedocs configuration file

(adam)

2024-01-04 22:38:08 UTC MAIN commitmail json YAML

py-frozendict: updated to 2.4.0

2.4.0
Implemented deepfreeze, a function that let you transform any object, nested at any level, in a frozen one. Check the docs.

(adam)

2024-01-04 22:36:43 UTC MAIN commitmail json YAML

py-channels: updated to 4.0.0

4.0.0 (2022-10-15)
------------------

Channels 4 is the next major version of the Channels package. Together with the
matching Daphne v4 and channels-redis v4 releases, it updates dependencies,
fixes issues, and removes outdated code. It so provides the foundation for
Channels development going forward.

In most cases, you can update now by updating ``channels``, ``daphne``, and
``channels-redis`` as appropriate, with ``pip``, and by adding ``daphne`` at
the top of your ``INSTALLED_APPS`` setting.

First ``pip``::

    pip install -U 'channels[daphne]' channels-redis

Then in your Django settings file::

    INSTALLED_APPS = [
        "daphne",
        ...
    ]

Again, this is a major version change. Amongst other changes, large amounts of
the Django-wrapping code deprecated in Channels v3 has now been removed, in
favour of Django's own ASGI handling, and the ``runserver`` command has been
moved into the Daphne package.

(adam)

2024-01-04 22:34:30 UTC MAIN commitmail json YAML

py-daphne: updated to 4.0.0

4.0.0 (2022-10-07)
------------------

Major versioning targeting use with Channels 4.0 and beyond. Except where
noted should remain usable with Channels v3 projects, but updating Channels to the latest version is recommended.

* Added a ``runserver`` command to run an ASGI Django development server.

  Added ``"daphne"`` to the ``INSTALLED_APPS`` setting, before
  ``"django.contrib.staticfiles"`` to enable:

  INSTALLED_APPS = [
    "daphne",
    ...
  ]

  This replaces the Channels implementation of ``runserver``, which is removed
  in Channels 4.0.

* Made the ``DaphneProcess`` tests helper class compatible with the ``spawn``
  process start method, which is used on macOS and Windows.

  Note that requires Channels v4 if using with ``ChannelsLiveServerTestCase``.

* Dropped support for Python 3.6.

* Updated dependencies to the latest versions.

  Previously a range of Twisted versions have been supported. Recent Twisted
  releases (22.2, 22.4) have issued security fixes, so those are now the
  minimum supported version. Given the stability of Twisted, supporting a
  range of versions does not represent a good use of maintainer time. Going
  forward the latest Twisted version will be required.

* Set ``daphne`` as default ``Server`` header.

  This can be configured with the ``--server-name`` CLI argument.

  Added the new ``--no-server-name`` CLI argument to disable the ``Server``
  header, which is equivalent to ``--server-name=` (an empty name).

* Added ``--log-fmt`` CLI argument.

* Added support for ``ASGI_THREADS`` environment variable, setting the maximum
  number of workers used by a ``SyncToAsync`` thread-pool executor.

  Set e.g. ``ASGI_THREADS=4 daphne ...`` when running to limit the number of
  workers.

* Removed deprecated ``--ws_protocols`` CLI option.

(adam)

2024-01-04 22:29:51 UTC MAIN commitmail json YAML

Updated archivers/py-lz4, devel/py-test-check, lang/py-mypy, www/py-jwcrypto

(adam)

2024-01-04 22:29:23 UTC MAIN commitmail json YAML

py-jwcrypto: updated to 1.5.1

Version 1.5.1 - Security Release

This is a minor security release to fix a potential DoS for applications that allow the use of symmetric keys with pbkdf2.

What's Changed

Fix X22519 import/export from PEM
Read the Docs now requires a config file
chore: refactor for removing pdb symbols
Fix potential DoS issue with p2c header

(adam)

2024-01-04 22:27:13 UTC MAIN commitmail json YAML

py-mypy: updated to 1.8.0

1.8

Type-checking Improvements
Performance Improvements
Improvements to Error Reporting
Stubgen Improvements
Stubtest Improvements
Fixes to Crashes
Documentation Updates

(adam)

2024-01-04 22:20:23 UTC MAIN commitmail json YAML

py-test-check: updated to 2.2.3

2.2.3

- Check failure info now shows up in summaries.
- fix [133](https://github.com/okken/pytest-check/issues/133)

(adam)

2024-01-04 22:18:29 UTC MAIN commitmail json YAML

py-lz4: updated to 4.3.3

4.3.3
Add .readthedocs.yml
Build wheels for Python 3.12

(adam)

2024-01-04 22:08:21 UTC MAIN commitmail json YAML

Updated math/py-numpy, math/py-patsy

(adam)

2024-01-04 22:07:20 UTC MAIN commitmail json YAML

py-patsy: updated to 0.5.6

v0.5.6
* Avoid using deprecated `is_categorical_dtype` from `pandas` at all in pandas >=0.25.
* Avoid using deprecated `numpy.row_stack` in favor of `numpy.vstack`.

v0.5.5
* Handle deprecation of `_is_categorical_dtype` in `pandas`.
* Replace `numpy.issubsctype` usage with `numpy.issubdtype` for compatibility with `numpy` 2.0.

(adam)

2024-01-04 22:06:13 UTC MAIN commitmail json YAML

py-numpy: updated to 1.26.3

1.26.3
MAINT: prepare 1.26.x for further development
TYP: add None to ``__getitem__`` in ``numpy.array_api``
BLD,BUG: quadmath required where available [f2py]
BUG: alpha doesn't use REAL(10)
BUG: Fix FP overflow error in division when the divisor is scalar
MAINT: Pin scipy-openblas version.
BUG: Fix f2py to enable use of string optional inout argument
BUG: Fix -fsanitize=alignment issue in numpy/_core/src/multiarray/arraytypes.c.src
TST: Explicitly pass NumPy path to cython during tests (also...
BUG: fix issues with ``newaxis`` and ``linalg.solve`` in ``numpy.array_api``
BUG: Disallow shadowed modulenames
BUG: Handle common blocks with kind specifications from modules
BUG: Fix moving compiled executable to root with f2py -c on Windows
BUG: Fix single to half-precision conversion on PPC64/VSX3
TST: f2py: fix issue in test skip condition
Revert "MAINT: Pin scipy-openblas version."
MAINT: do not use ``long`` type
TST: PyPy needs another gc.collect on latest versions
CI: Install Lapack runtime on Cygwin.
MAINT: Bump conda-incubator/setup-miniconda from 2.2.0 to 3.0.1
BLD: update vendored Meson for AIX shared library fix
MAINT: Init ``base`` in cpu_avx512_kn
BUG: Fix failing test_features on SapphireRapids
BUG: Fix non-contiguous memory load when ARM/Neon is enabled
MAINT,BUG: Never import distutils above 3.12 [f2py]
MAINT: make the import-time check for old Accelerate more specific
BUG: fix macOS version checks for Accelerate support
MAINT: Bump actions/setup-node and larsoner/circleci-artifacts-redirector-action
BUG: avoid seg fault from OOB access in RandomState.set_state()
BUG: Fix two errors related to not checking for failed allocations
BUG: Fix regression with ``f2py`` wrappers when modules and subroutines...
BUG: Fix build issues on SPR
BLD: fix uninitialized variable warnings from simd/neon/memory.h
BUG: Handle ``iso_c_type`` mappings more consistently
BUG: Fix module name bug in signature files [urgent] [f2py]
BUG: Handle .pyf.src and fix SciPy [urgent]
DOC: ``f2py`` rewrite with ``meson`` details
BUG: Add external library handling for meson [f2py]
MAINT: Run f2py's meson backend with the same python that ran...
MAINT: Update ``numpy/f2py/_backends`` from main.
MAINT: Easy updates of ``f2py/*.py`` from main.
MAINT: Update crackfortran.py and f2py2e.py from main

(adam)

2024-01-04 21:50:43 UTC MAIN commitmail json YAML

doc: Updated cad/qcad to 3.28.2.2

(plunky)

2024-01-04 21:50:29 UTC MAIN commitmail json YAML

2024-01-04 21:37:48 UTC MAIN commitmail json YAML

doc: Updated games/openrct2 to 0.4.7

(triaxx)

2024-01-04 21:35:57 UTC MAIN commitmail json YAML

doc: Updated databases/libpqxx to 7.8.1

(prlw1)

2024-01-04 21:35:41 UTC MAIN commitmail json YAML

Update libpqxx to 7.8.1

Note: given the previous choice to use
USE_CXX_FEATURES+=      c++17
don't attempt to use with a program using e.g. -std=c++20

7.8.1
- Regenerate build files. Should fix ARM Mac build. (#715)
- Reinstate `<ciso646>` that MSVC can't live with or without. (#713)
7.8.0
- Streaming large data sets now benchmarks faster than similar C/libpq code!
- New `array` class for easier parsing of SQL arrays.
- Deprecating `stream_from`.  Use `transaction_base::stream()`.
- Use `array_parser` only on comma-separated types, i.e. most of them. (#590)
- Bumping requirements versions: need postgres 10.
- Fix `array_parser` bug when parsing semicolon in an unquoted string.
- Make some `zview` constructors `noexcept` if `string_view` does it.
- Handle result status code for starting streaming replication.  (#631)
- Faster text decoding and escaping in data streaming.  (#601)
- Deprecate `basic_fieldstream` and `fieldstream`.
- Deprecate `<<` operator inserting a field into an `ostream`.
- New string conversion fields: `converts_to_string` & `converts_from_string`.
- Ran `autoupdate` (because the autotools told me to).
- Documentation tweak. (#584)
- Typo in README.md. (#586)
- Support `std::optional<std::string_view>` etc. in `stream_to`. (#596)
- Remove support for single-quoted array/composite elements.  No such thing!
- Optimise out a kink in composite field parser.
- Work around build warning in MinGW: include `winsock2.h` before `windows.h`.
- Drop some redundant encoding groups.
- If CMake can't find libpq, fall back to pkg-config. (#664)
- Work around spurious compile error on g++ pre-gcc-10. (#665)
- Include `<pqxx/range>` and `<pqxx/time>` headers in `<pqxx/pqxx>`. (#667)
- Don't use `std::function` as deleter for smart pointers.
- Work around gcc compile error with regex + address sanitizer + analyzers.
- Fix "double free" on exit when built as shared library on Debian. (#681)
- Stop including `<ciso646>`; should be built into compilers. (#680)
- New `broken_connection` exception subclass: `protocol_violation`. (#686)
- Retired unused `blob_already_exists` exception class. (#686)
- Support for `PQinitOpenSSL()`. (#678)
- Slightly more helpful error for unsupported conversions. (#695)
- Replace some C++ feature tests with C++20 feature macros.
- Support moving of `stream_to`. (#706)
- Incorporate `source_location` in exceptions.

(prlw1)

2024-01-04 20:49:57 UTC MAIN commitmail json YAML

doc: Updated security/py27-cryptography to 3.3.2nb5

(triaxx)

2024-01-04 20:49:27 UTC MAIN commitmail json YAML

2024-01-04 18:44:59 UTC MAIN commitmail json YAML

Updated textproc/fmtlib, multimedia/mkvtoolnix

(adam)

2024-01-04 18:44:21 UTC MAIN commitmail json YAML

mkvtoolnix: updated to 82.0

Version 82.0 "I'm The President" 2024-01-02

New features and enhancements

* mkvmerge: Matroska reader: the "video alpha mode" track header property will
be copied to the output file if present.
* mkvmerge: Matroska reader: the "video alpha mode" track header property will
be reported in JSON identification mode as the track property
`alpha_mode`.
* mkvmerge: Matroska reader: the file's timestamp scaling factor will be
reported in JSON identification mode as the container property
`timestamp_scale`.
* mkvmerge: MPEG transport stream reader: teletext subtitles intended for
hearing impaired people (type 0x05) are now marked as such via the
appropriate flag in the track headers.
* mkvmerge: file identification: the JSON identification output schema version
has been bumped to 19.
* mkvmerge: added a new hack `always_write_block_add_ids` that can be used as
a workaround for players that don't support the handling of missing "Block
Addition ID" sub-elements of "Block More" elements in block additions
properly. These are used for e.g. alpha channel data in VP9 with a "Block
Addition ID" value of 1, which is also its default value.
* mkvinfo: added support for the "video alpha mode" track header element.
* mkvpropedit, MKVToolNix GUI's header editor: added support for the "video
alpha mode" track header property. In `mkvpropedit` it's called
`alpha-mode`.
* MKVToolNix GUI: multiplexer: when adding files the GUI can automatically
enable the "hearing impaired" flag for audio and subtitle tracks if the file
name contains the word "cc" or "sdh" delimited by certain characters
(configurable). This feature is turned on by default.
* MKVToolNix GUI: multiplexer: when scanning for Blu-ray playlists the GUI
will now ignore playlists that are likely meant for menus. Currently the GUI
considers this to be the case when a playlist contains the same item at
least five times. This behavior can be turned off in the
preferences.

Bug fixes

* mkvmerge: MPEG transport stream reader: fixed a crash introduced in v81 that
occurred when there was at least one PCM track that wasn't copied from the
transport stream file.
* mkvmerge: when reading data from Matroska files damaged in a specific way,
mkvmerge ended up trying to write various types of elements that aren't
allowed to be written (so-called `EbmlDummy` elements as well as elements
that don't have a value set) to the output file, which caused the underlying
`libebml` library to abort. These types of broken elements are now filtered
out.

Build system changes

* Qt 5 is no longer supported. Qt 6 is now required for building
MKVToolNix. This implies that the options to `configure` revolving around
configuring Qt 5 or choosing between the two have been removed
(e.g. `--disable-qt6`).
* Qt 6 detection: if detection fails, error messages from `qmake` can now be
found in `config.log`.
* Qt 6 detection: `configure` will only consider Qt 6.2.0 or newer, not 6.0.x
or 6.1.y anymore, due to the lack of support for the multimedia module.
* Qt 6 detection: `configure` will now fail to detect Qt 6 if the 'multimedia'
module is not found by `qmake` (e.g. due to development packages not being
installed).
* The bundled `fmt` library was updated to v10.1.1.

(adam)

2024-01-04 18:42:57 UTC MAIN commitmail json YAML

fmtlib: updated to 10.2.1

10.2.1 - 2024-01-03

-  Fixed ABI compatibility with earlier 10.x versions

10.2.0 - 2024-01-01

-  Added support for the `%j` specifier (the number of days) for
    `std::chrono::duration`

-  Added support for the chrono suffix for days and changed
    the suffix for minutes from "m" to the correct "min"
    For example ([godbolt](https://godbolt.org/z/9KhMnq9ba)):

    ```c++
    #include <fmt/chrono.h>

    int main() {
      fmt::print("{}\n", std::chrono::days(42)); // prints "42d"
    }
    ```

-  Fixed an overflow in `std::chrono::time_point` formatting with large dates
-  Added a formatter for `std::source_location`
    For example ([godbolt](https://godbolt.org/z/YajfKjhhr)):

    ```c++
    #include <source_location>
    #include <fmt/std.h>

    int main() {
      fmt::print("{}\n", std::source_location::current());
    }
    ```

    prints

    ```
    /app/example.cpp:5:51: int main()
    ```

-  Added a formatter for `std::bitset`

    ```c++
    #include <bitset>
    #include <fmt/std.h>

    int main() {
      fmt::print("{}\n", std::bitset<6>(42)); // prints "101010"
    }
    ```

-  Added an experimental `nested_formatter` that provides an easy way of
    applying a formatter to one or more subobjects while automatically handling
    width, fill and alignment. For example:

    ```c++
    #include <fmt/format.h>

    struct point {
      double x, y;
    };

    template <>
    struct fmt::formatter<point> : nested_formatter<double> {
      auto format(point p, format_context& ctx) const {
        return write_padded(ctx, [=](auto out) {
          return format_to(out, "({}, {})", nested(p.x), nested(p.y));
        });
      }
    };

    int main() {
      fmt::print("[{:>20.2f}]", point{1, 2});
    }
    ```

    prints

    ```
    [          (1.00, 2.00)]
    ```

-  Added the generic representation (`g`) to `std::filesystem::path`

    ```c++
    #include <filesystem>
    #include <fmt/std.h>

    int main() {
      fmt::print("{:g}\n", std::filesystem::path("C:\\foo"));
    }
    ```

    prints `"C:/foo"` on Windows.

-  Made `format_as` work with references
-  Fixed formatting of invalid UTF-8 with precision
-  Fixed an inconsistency between `fmt::to_string` and `fmt::format`
-  Disallowed unsafe uses of `fmt::styled`

    ```c++
    auto s = fmt::styled(std::string("dangle"), fmt::emphasis::bold);
    fmt::print("{}\n", s); // compile error
    ```

    Pass `fmt::styled(...)` as a parameter instead.

-  Added a null check when formatting a C string with the `s` specifier
-  Disallowed the `c` specifier for `bool`
-  Made the default formatting unlocalized in `fmt::ostream_formatter` for
    consistency with the rest of the library
-  Fixed localized formatting in bases other than decimal
-  Fixed a performance regression in experimental `fmt::ostream::print`
-  Added synchronization with the underlying output stream when writing to
    the Windows console
-  Changed to only export `format_error` when {fmt} is built as a shared
    library
-  Made `fmt::streamed` `constexpr`.
-  Enabled `consteval` on older versions of MSVC
-  Added an option to build without `wchar_t` support on Windows
-  Improved build and CI configuration
-  Fixed various warnings, compilation and test issues
-  Improved documentation and README
-  Updated CI dependencies

(adam)

2024-01-04 18:26:36 UTC MAIN commitmail json YAML

doc: Updated devel/fossil to 2.23

(js)

2024-01-04 18:26:29 UTC MAIN commitmail json YAML

Update devel/fossil to 2.23

Changes for version 2.23 (2023-11-01)

  *  Add ability to "close" forum threads, such that unprivileged users
    may no longer respond to them. Only administrators can close
    threads or respond to them by default, and the
    [/help?cmd=forum-close-policy|forum-close-policy setting] can be
    used to add that capability to moderators.
  *  Add the [/help?cmd=all|fossil all whatis] command.
  *  The [/help?cmd=status|fossil status] command and relevant UI pages now
    correctly report files which were both renamed <b>and</b> edited as such.
  *  Show default value of settings that have a default in
    [/help?cmd=help|fossil help SETTING] output.
  *  On timeline graphs, show closed check-ins using an X in the middle of the
    node circle or box.
  *  New options for email notification:  Get email only for the first
    post in each new thread, and/or posts that are in reply to my posts.
  *  Fix a regression bug introduced in version 2.22 that caused FTS5 searches
    to fail for terms containing non-ASCII characters.
  *  Improved defense-in-depth against malicious attack:
      *  When an attempted SQL injection attack is detected, return
        HTTP result code 418, which can signal the web server to sanction
        the attacking IP address.
      *  Better defense against cross-site request forgery (CSRF)
        attacks.
      *  Improvements to static analysis of source code (the codecheck1.c
        file in the source tree).
  *  Enhance the [/help?cmd=/dir|treeview file listings]
    ([/dir?type=tree&ci=trunk|example]) by displaying file sizes
    and adding the option to sort by file size.
  *  The [/help?cmd=fts-config|fossil fts-config] command now shows how much
    repository space is used by the full-text index.
  *  Changing a setting to an empty string is now the same as deleting the
    setting, in most cases.  There are a few exceptions, indicated by the
    keep-empty flag on the setting definition.
  *  The [/help?cmd=branch|fossil branch list] command can now filter branches
    that have/have not been merged into the current branch.
  *  Improvements to interactions with remote repositories over SSH:
      *  Print the text of the SSH command that is run to do remote interaction,
        for full disclosure to the operator.
      *  Add a PATH= argument to the [/help?cmd=ui|fossil ui remote:/] and
        [/help?cmd=patch|fossil patch push/pull remote:...] commands so that
        they work when the "remote" machine is a Mac and the "fossil"
        executable is in the $HOME/bin directory.
  *  Update built-in libraries SQLite, ZLib, Pikchr to their latest versions.
  *  Documentation enhancements and typo fixes.

(js)

2024-01-04 14:51:22 UTC MAIN commitmail json YAML

Updated net/wireshark, graphics/leptonica

(adam)

2024-01-04 14:51:04 UTC MAIN commitmail json YAML

leptonica: updated to 1.84.1

1.84.1
* Remove support for openjpeg versions < 2.1.
* Improve error handling for stringLength() and stringCat(), and
  add tests in prog/string_reg.
* Source files changed: blend.c, dnafunc1.c, jp2kio.c, pageseg.c,
  partify.c, pix1.c, ptafunc2.c, sarray2.c, utils2.c
* Prog files changed: boxa3_reg.c, string_reg.c, writetext_reg.c,
  deskew_it.c

1.84.0
* Add getPdfPageCount() to find the number of pages in a pdf file.
* Add getPdfPageSizes() and getPdfMediaBoxSizes() to find the
  information necessary to render images properly.  Modify cleanpdf.c
  and concatpdf.c to use this information.
* Add prog/splitpdf.c to split a pdf file into nearly equal page sets.
* Add ability to read and write rgba in bmp format, and
  test in ioformats_reg.
* Add regression test prog/partition_reg.c
* Change the autotools library name from liblept to libleptonica,
  to be consistent with the cmake library name.  (Apologies to Jeff!)
* Add tests for 24 bit pix reading and writing in bmp and png in
  ioformats_reg.  Test new pixDisplayDiff() for visualizing diffs.
* Allow prog/concatpdf to output pdf with tiffg4 encoding and with
  mixed tiffg4 and DCT encoding depending on image color content.
* Rename prog/concatpdf --> prog/compresspdf
* Put image processing and generation of output pdf from compresspdf
  and cleanpdf into functions in new files: pdfapp.c, pdfappstub.c.
* Add versatile function for cropping an image and filling to
  page size, along with prog/croppdf to do this on pdf file.

(adam)

2024-01-04 14:47:29 UTC MAIN commitmail json YAML

wireshark: updated to 4.2.1

Wireshark 4.2.1 Release Notes

What’s New

Bug Fixes

  The following vulnerabilities have been fixed:

    • wnpa-sec-2024-01[2] GVCP dissector crash. Issue 19496[3].
      CVE-2024-0208[4].

    • wnpa-sec-2024-02[5] IEEE 1609.2 dissector crash. Issue 19501[6].
      CVE-2024-0209[7].

    • wnpa-sec-2024-03[8] HTTP3 dissector crash. Issue 19502[9].
      CVE-2024-0207[10].

    • wnpa-sec-2024-04[11] Zigbee TLV dissector crash. Issue 19504[12].
      CVE-2024-0210[13].

    • wnpa-sec-2024-05[14] DOCSIS dissector crash. Issue 19557[15].
      CVE-2024-0211[16].

  The following bugs have been fixed:

    • Capture filters not saved to recently used list. Issue 12918[17].

    • CFM dissector does not handle Sender ID TLV correctly when
      Chassis ID Length is zero. Issue 13720[18].

    • OSS-Fuzz 64290: wireshark:fuzzshark_ip: Global-buffer-overflow in
      dissect_zcl_read_attr_struct. Issue 19490[19].

    • Overriding capture options set by preference by command line
      arguments (like -S) doesn’t work. Issue 14549[20].

    • Segfault when enabling monitor mode on wireless card that falsely
      claims to support it. Issue 16693[21].

    • Documented format of temporary file name is out of date in the
      Wireshark User’s Guide. Issue 18464[22].

    • Selection highlight lost when interface list is sorted. Issue
      19133[23].

    • HTTP3 malformed packets. Issue 19475[24].

    • Capture filter compilation fails with obscure error message.
      Issue 19480[25].

    • XML: Parsing encoding attribute failed when standalone attribute
      exists. Issue 19485[26].

    • Display filter expressions where the protocol name starts with
      digit and contains a hyphen are rejected. Issue 19489[27].

    • diameter.3GPP-* display filters not working after upgrade to
      version 4.2.0. Issue 19493[28].

    • GigE-vision: Control Protocol shows \"unknown\" as value for
      ASCII character set. Issue 19494[29].

    • The HTTP/3 Request Header URI is not correct. Issue 19497[30].

    • QUIC/TLS not extracting \"h3\" from ALPN in a capture. Issue
      19503[31].

    • Documentation on system requirements should be updated. Issue
      19512[32].

    • 4.2.0: init.lua in subdirectories not loaded anymore. Issue
      19516[33].

    • Malformed SIP/SDP messages: components are not decoded properly.
      Issue 19518[34].

    • heuristic_protos do not reset on profile swap. Issue 19520[35].

    • Wireshark 4.2 crashes on Apply As Column. Issue 19521[36].

    • NFLOG timestamp is incorrect. Issue 19525[37].

    • Qt6 Crash (Double Free) When Attempting to Save TCP Stream Graph.
      Issue 19529[38].

    • Fixed parsing display filter expressions containing literal OID
      values, e.g. `snmp.name == 1.3.6.1.2.1.1.3.0`.

(adam)

2024-01-04 12:31:55 UTC MAIN commitmail json YAML

chat/senpai: fix upstream url

(pin)

2024-01-04 12:31:09 UTC MAIN commitmail json YAML

doc: Updated audio/spotify-player to 0.16.3

(pin)

2024-01-04 12:30:44 UTC MAIN commitmail json YAML

audio/spotify-player: update to 0.16.3

What's Changed
- move examples to a separate README file in #325
- fix image rendering issue when playback position is bottom in #328

(pin)

2024-01-04 12:29:59 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.21.5

(pin)

2024-01-04 12:29:34 UTC MAIN commitmail json YAML

sysutils/xplr: update to 0.21.5

Changes & fixes
- Added new messages to make it easier to jump between the deep level
  directories from history (as an alternative to runtime bookmarking).
    - PreviousVisitedDeepBranch
    - NextVisitedDeepBranch
- New key bindings ( and ) bound to the new messages.
- Added support for function keys upto F24.
- Added selection count indicator in Input/Logs panel, so that selection panel
  can be hidden without losing the indicator.
- Dependency updates.

(pin)

2024-01-04 12:28:31 UTC MAIN commitmail json YAML

doc: Updated sysutils/dua-cli to 2.25.0

(pin)

2024-01-04 12:28:05 UTC MAIN commitmail json YAML

sysutils/dua-cli: update to 2.25.0

2.25.0 (2024-01-03)
Chore
- remove obsolete tui-shared feature

New Features
- add --log-file flag to keep track of some debug info, which includes panics.
  Previously, when dua i was used, panics would be hard to observe, if at all,
  as they would print to the alternate screen.
  Now, when the --log-file dua.log is specified, the panic will be emitted
  into the log file instead and thus won't be lost anymore.

- This may help with debugging in future.

Bug Fixes
- --ignore-dirs now work as expected. Previously they would need to be
  specified as relative to the traversal root, which was unintuitive and would
  lead to ignores not working for many.
  Even though this was done for performance to avoid canonicalization, we do
  now perform a more performance version of canonicalization so the overall
  performance should be acceptable nonetheless.
  Also note that ignored directories are now logged when using a --log-file.

- consistent language across the application and improved style of the Help
  pane. Generally, what was called entry is now called item, consistently.

Other
- clarify that (and why) termion isn't supported anymore in README.md This was
  triggered by crossterm essentially breaking event handling on Windows, which
  is when I decided to just use the seemingly more powerful crossterm events
  natively.
  Overall, this made event handling more complex, but also allows users of
  crosstermion (the crate that actually dropped termion support) to write even
  more interactive applications without worrying about the always out-of-date
  intermediate layer.
  Interestingly, the crosstermion crate adds some useful features around event
  handling, but also optimizes build times thanks to termion, which is
  something that on my current machine I don't notice anymore, so the value of
  it diminished greatly.

(pin)

2024-01-04 11:33:46 UTC MAIN commitmail json YAML

doc: Updated x11/pixman to 0.43.0

(wiz)

2024-01-04 11:33:38 UTC MAIN commitmail json YAML

pixman: update to 0.43.0.

Benjamin Gilbert (3):
      meson: don't dllexport when built as static library
      mmx: use xmmintrin.h if building with SSE2
      meson: avoid linking with -pthread if we don't have pthreads

Claude Heiland-Allen (2):
      implement r8g8b8 sRGB (without alpha)
      add r8g8b8 sRGB to test suite

Dylan Baker (2):
      autotools: remove autotools
      delete win32 make files

Emanuel Schmidt (3):
      Separate meson build options for demos and tests
      Changed name of the config-header to "pixman-config.h"
      Fixed missing dependency in libdemo

Gauthier ��stervall (1):
      Update build instructions to meson and ninja

Havard Eidnes (2):
      vmx: Simplify scaled_nearest_scanline_vmx_8888_8888_OVER
      vmx: Reimplement create_mask_32_128 and use it in vmx_fill

Heiko Lewin (2):
      Fix signed-unsigned semantics in reduce_32
      pixman-arma64: Adjustments to build with llvm integrated assembler

Matt Turner (9):
      Post-release version bump to 0.42.3
      test: Revert to including pixman-private.h
      Remove generic build system information
      Use more Markdown-friendly syntax
      meson: Fix syntax
      pixman-sse2: Remove unused functions
      pixman-mmx: Don't redefine _MM_SHUFFLE
      pixman-access: Mark __dummy__ variables with MAYBE_UNUSED
      test: Use fabsl on float128

Pavel Labath (1):
      Fix alignment problem in pixman-fast-path.c

Sam James (1):
      pixman-bits-image: fix -Walloc-size

Simon Ser (5):
      Add pixman_region{,32}_empty()
      Constify pixman_image_set_clip_region()
      Fix const warnings in pixman_image_set_clip_region()
      ci: upgrade to Fedora 39
      Pre-release version bump to 0.43.0

(wiz)

2024-01-04 11:32:52 UTC MAIN commitmail json YAML

doc: Updated devel/swagger-codegen to 3.0.52

(schmonz)

2024-01-04 11:32:46 UTC MAIN commitmail json YAML

swagger-codegen: update to 3.0.52. Changes:

- New attribute isJson in parameters
- Fix for #804 subtypeName for discriminator mapping
- Osztos a feature/java interface discriminator helper
- Update dependencies

(schmonz)

2024-01-04 11:28:22 UTC MAIN commitmail json YAML

doc: Updated mail/swaks to 20240103.0

(schmonz)

2024-01-04 11:28:18 UTC MAIN commitmail json YAML

swaks: update to 20240103.0. Changes:

New Features:

* Added cc and bcc options
* Numerous TLS debugging and verification improvements
      o Debug output contains whether a client cert was requested and
        whether one was sent
      o Add new options tls-verify-ca and tls-verify-host to
        differentiate between types of certificate verification (tls-
        verify does both)
      o Add tls-target option to allow setting of hostname to be used in
        hostname verification. This is useful in some inet debugging
        situations and required to do hostname verification with socket or
        pipe
      o Add tls-chain (#60, initial implementation by Wolfgang Karall-
        Ahlborn)
      o Add tls-get-peer-chain option (analogous to tls-get-peer-cert,
        #73)
      o Certificate debug now includes all client and peer certs, it a
        chain was used (#73)
      o Certificate debug now includes notAfter, commonName, and
        subjectAltName

Notable Changes:

* output-file, output-file-stderr, and output-file-stdout now truncate
  the specified file if it already exists
* Documentation improvements
* Extensive test harness improvements
* Add new stop-point XCLIENT-HELO to address lack of specificity when
  mixing XCLIENT usage with the HELO stop-point
* Add new stop-point PROXY
* Use IO::Socket::IP by default. Will still use IO::Socket::INET/INET6 to
  cover transition, but this is deprecated and will be removed in the
  future (#43)
* TLS session debug information is now printed even if we decide not to
  continue the session (eg for failed verification)
* Previously-deprecated functionality to allow some options to be either a
  filename or a literal string has been removed. Using the @ sigil is now
  the only was to specify file contents
* Previously-deprecated -g option removed

Notable Bugs Fixed:

* TLS certificate verification did not always work. It should now

(schmonz)

2024-01-04 11:25:28 UTC MAIN commitmail json YAML

doc: Updated www/p5-libwww to 6.72

(wiz)

2024-01-04 11:25:20 UTC MAIN commitmail json YAML

p5-libwww: update to 6.72.

6.72      2023-07-17 22:01:19Z
    - Don't mangle protocol scheme and don't require it to be valid if
      implementor is already known (GH#436) (mwgamera)

6.71      2023-06-20 19:44:19Z
    - Use rather than require Module::Load (GH#435) (Olaf Alders)

(wiz)

2024-01-04 11:23:26 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-XML-Parser to 2.47

(wiz)

2024-01-04 11:23:19 UTC MAIN commitmail json YAML

p5-XML-Parser: update to 2.47.

2.47 2023-12-28 (by Todd Rinaldo)
    - #84 use $fh instead of $foo
- #85 Fix typo in documentation
- #89 Devel::CheckLib to from 0.99 -> 1.14
- Devel::CheckLibn 1.16
- #91 POD fix for verbatim text
- #97 Add a LICENSE file
- #94 Don't ship Expat/Makefile
- Various github workflow improvements. Windows is still not working.

(wiz)

2024-01-04 11:21:04 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-Text-CSV_XS to 1.53

(wiz)

2024-01-04 11:20:57 UTC MAIN commitmail json YAML

p5-Text-CSV_XS: update to 1.53.

1.53 - 2023-11-22, H.Merijn Brand
    * Two casts for -Wformat (issue 50)
    * Add --skip-empty to csv2xlsx
    * Add --font and --font-size to csv2xlsx
    * Fix skip_empty_rows ("skip") and trailing newlines (Corey Hickey, PR#52)
    * Fix comment in last line (RT#150501)

(wiz)

2024-01-04 11:20:25 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-Text-CSV to 2.04

(wiz)

2024-01-04 11:20:17 UTC MAIN commitmail json YAML

p5-Text-CSV: update to 2.04.

2.04  2023-12-02
    - Imported tests/fixes from Text::CSV_XS 1.53
      - Fixed skip_empty_rows('skip') and trailing newlines (GH#65, bugfood++)

(wiz)

2024-01-04 11:19:32 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Test2-Suite to 0.000159

(wiz)

2024-01-04 11:19:25 UTC MAIN commitmail json YAML

p5-Test2-Suite: update to 0.000159.

0.000159  2023-10-25 14:09:23-07:00 America/Los_Angeles

    - Document that diag() intentionally returns false, and add a `return 0`

0.000158  2023-10-22 22:05:42-07:00 America/Los_Angeles

    - Mark Workflow-Acceptance.t as AUTHOR_TESTING

0.000157  2023-10-22 21:26:49-07:00 America/Los_Angeles

    - Fix #280: Document --no_srand option in Test2::V0
    - Fix #276: Document bool() import in Test2::V0
    - Fix #279: Merged fix for VMS test issues
    - Fix #277: Merged POD tweaks

(wiz)

2024-01-04 11:16:13 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Test-Output to 1.034

(wiz)

2024-01-04 11:16:06 UTC MAIN commitmail json YAML

p5-Test-Output: update to 1.034.

1.034 2023-07-05T14:46:18Z
* Remove unnecessary -T from pod tests. Now that v5.38 allows you
to compile without taint support and those perls won't run if
they see a -T, these tests needlessly fail there.
* Edward Betts corrected some of the docs.

(wiz)

2024-01-04 11:15:35 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Test-Differences to 0.7100

(wiz)

2024-01-04 11:15:28 UTC MAIN commitmail json YAML

p5-Test-Differences: update to 0.7100.

0.71  2023-10-12

    - Document and test different behaviour regarding Booleans in perl
      5.38.0 compared to earlier versions.
      See https://github.com/DrHyde/perl-modules-Test-Differences/issues/21

0.70  2023-07-07
    - Stop pointless use of taint-mode in tests, so tests pass when perl is
      built without taint support

(wiz)

2024-01-04 11:14:58 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Term-Table to 0.018

(wiz)

2024-01-04 11:14:51 UTC MAIN commitmail json YAML

p5-Term-Table: update to 0.018.

0.018    2023-10-22 21:55:51-07:00 America/Los_Angeles

    - Merged doc fix PR

0.017    2023-09-13 10:41:08-07:00 America/Los_Angeles

    - Remove 'Importer' dependency

(wiz)

2024-01-04 11:14:10 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Syntax-Keyword-Match to 0.13

(wiz)

2024-01-04 11:14:03 UTC MAIN commitmail json YAML

p5-Syntax-Keyword-Match: update to 0.13.

0.13    2023-07-20
        [CHANGES]
        * Provide new `case if` syntax (RT148939)
        * Remember to implement `no Syntax::Keyword::Match` to disable the
          syntax

        [BUGFIXES]
        * Ensure that new lexical variables introduced in the expression
          correctly go out of scope at the end of the `match` block

0.12    2023-06-19
        [BUGFIXES]
        * Ensure that the temporary topic variable gets cleared at the end of
          match/case block

0.11    2023-06-12
        [CHANGES]
        * Support `isa` as a comparison operator even on perls before 5.32
        * Swap all of the unit tests from Test::More to Test2::V0

(wiz)

2024-01-04 11:13:02 UTC MAIN commitmail json YAML

doc: Updated devel/p5-XS-Parse-Keyword to 0.39

(wiz)

2024-01-04 11:12:54 UTC MAIN commitmail json YAML

p5-XS-Parse-Keyword: update to 0.39.

0.39    2023-12-04
        [CHANGES]
        * Added optional variants of XPK_ARITHEXPR, XPK_TERMEXPR,
          XPK_LISTEXPR and the context-forcing versions

0.38    2023-08-09
        [BUGFIXES]
        * Fix warn() non-static format string (RT149346)
        * Don't bother with Build.PL probing for PL_infix_plugin; just use
          perl version number

0.37    2023-08-08
        [CHANGES]
        * Added `XPK_WARNING()` and several conditional variants

0.36    2023-07-20
        [BUGFIXES]
        * Remember to also call `op_scope()` after `block_end()` if the
          XPK_FLAG_BLOCKSCOPE flag is set

0.35    2023-07-19
        [CHANGES]
        * Added XPK_INTRO_MY, to call `intro_my()`
        * Added XPK_FLAG_BLOCKSCOPE to wrap a block_start()+block_end()
          around a syntax construction
        * Renamed XPK_PARENSCOPE to XPK_PARENS, etc..
        * Adjusted documentation of XS::Parse::Infix for release of
          Perl v5.38

(wiz)

2024-01-04 11:11:16 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Sub-Exporter to 0.991

(wiz)

2024-01-04 11:11:09 UTC MAIN commitmail json YAML

p5-Sub-Exporter: update to 0.991.

0.991    2023-11-23 20:32:17-05:00 America/New_York
        - make the requirement for perl v5.12.0 explicit; previously, it was
          only implicit because of prerequisites

(wiz)

2024-01-04 11:10:23 UTC MAIN commitmail json YAML

doc: Updated lang/p5-Perl-LanguageServer to 2.6.2

(wiz)

2024-01-04 11:10:15 UTC MAIN commitmail json YAML

p5-Perl-LanguageServer: update to 2.6.2.

2.6.2  2023-12-23

* avoid given/when/smartmatch because these features are deprecated in perl 5.38 (#199) [real-dam]

(wiz)

2024-01-04 11:06:31 UTC MAIN commitmail json YAML

doc: Added devel/p5-Hash-SafeKeys version 0.04

(wiz)

2024-01-04 11:06:23 UTC MAIN commitmail json YAML

devel/Makefile: + p5-Hash-SafeKeys

(wiz)

2024-01-04 11:04:19 UTC MAIN commitmail json YAML

devel/p5-Hash-SafeKeys: import p5-Hash-SafeKeys-0.04

Every hash variable in Perl has its own internal iterator, accessed
by the builtin each, keys, and values functions. The iterator is
also implicitly used whenever the hash is evaluated in list context.
The iterator is "reset" whenever keys or values is called on a
hash, including the implicit calls when the hash is evaluated in
list context. That makes it dangerous to do certain hash operations
inside a while ... each loop.

Hash::SafeKeys provides alternate functions to access the keys,
values, or entire contents of a hash in a way that does not reset
the iterator, making them safe to use in such contexts.

(wiz)

2024-01-04 11:00:10 UTC MAIN commitmail json YAML

doc: Updated www/p5-Net-HTTP to 6.23

(wiz)

2024-01-04 11:00:03 UTC MAIN commitmail json YAML

p5-Net-HTTP: update to 6.23.

6.23      2023-06-16 11:46:01Z
    - Don't treat HTTP header names as case sensitive in test (GH#81) (Olaf
      Alders)

(wiz)

2024-01-04 10:59:37 UTC MAIN commitmail json YAML

doc: Updated net/p5-Net-DNS to 1.42

(wiz)

2024-01-04 10:59:30 UTC MAIN commitmail json YAML

p5-Net-DNS: update to 1.42.

**** 1.42 Dec 24, 2023

Fix rt.cpan.org #150695
Hang in Net::DNS::Nameserver on Windows

**** 1.41 Nov 28, 2023

Accept inbound Ethernet "Jumbo" UDP packet.
Facilitate decoding of mDNS/SD packets with compressed RDATA.
Update Parameters.pm to resync with IANA registry.

Fix rt.cpan.org #150550
Error trying to use Socket macro SO_REUSEPORT in Windows

(wiz)

2024-01-04 10:58:50 UTC MAIN commitmail json YAML

doc: Updated security/p5-Mozilla-CA to 20231213

(wiz)

2024-01-04 10:58:43 UTC MAIN commitmail json YAML

p5-Mozilla-CA: update to 20231213.

20231213
  - Update from Mozilla repository to 2023-12-13
  - Added certificates:
    - CommScope Public Trust ECC Root-01
      sha256: 11437cda7bb45e41365f45b39a38986b0de00def348e0c7bb0873633800bc38b
    - CommScope Public Trust ECC Root-02
      sha256: 2ffb7f813bbbb3c89ab4e8162d0f16d71509a830cc9d73c262e5140875d1ad4a
    - CommScope Public Trust RSA Root-01
      sha256: 02bdf96e2a45dd9bf18fc7e1dbdf21a0379ba3c9c2610344cfd8d606fec1ed81
    - CommScope Public Trust RSA Root-02
      sha256: ffe943d793424b4f7c440c1c3d648d5363f34b82dc87aa7a9f118fc5dee101f1
    - TrustAsia Global Root CA G3
      sha256: e0d3226aeb1163c2e48ff9be3b50b4c6431be7bb1eacc5c36b5d5ec509039a08
    - TrustAsia Global Root CA G4
      sha256: be4b56cb5056c0136a526df444508daa36a0b54f42e4ac38f72af470e479654c
  - Removed certificates:
    - Security Communication Root CA
      sha256: e75e72ed9f560eec6eb4800073a43fc3ad19195a392282017895974a99026b6c

(wiz)

2024-01-04 10:56:04 UTC MAIN commitmail json YAML

doc: Updated math/p5-Math-Round to 0.08

(wiz)

2024-01-04 10:55:57 UTC MAIN commitmail json YAML

p5-Math-Round: update to 0.08.

0.08  2023-10-10 NEILB
    - NEILB has taken over maintenance
    - Added usual directory structure with lib/ and t/
    - Converted test.pl to traditional Test::More suite
    - Added LICENSE to doc and ensured metadata has license.
      I emailed Geoffrey to request this change, and ended
      up getting co-maint to make this happen :-)
    - Dropped `use vars`, replaced with `our` and `use warnings`.
    - Switched to dzil

(wiz)

2024-01-04 10:55:30 UTC MAIN commitmail json YAML

doc: Updated www/p5-LWP-Protocol-https to 6.11

(wiz)

2024-01-04 10:55:23 UTC MAIN commitmail json YAML

p5-LWP-Protocol-https: update to 6.11.

6.11      2023-07-09 15:10:30Z
    - Remove Authority section from dist.ini (GH#64) (Olaf Alders)
    - Add very basic diagnostic information via test (GH#73) (Olaf Alders)
    - CVE-2014-3230 - don't disable verification if only hostnames should not
      (GH#14) (Steffen Ullrich)
    - Make explicit requirement of Mozilla::CA obsolete (GH#72) (Steffen
      Ullrich and Olaf Alders)
    - Remove _in_san and _cn_match. Empty out the _check_sock hook (GH#71)
      (Chase Whitener)
    - Use warnings (GH#69) (Pete Houston)

(wiz)

2024-01-04 10:53:32 UTC MAIN commitmail json YAML

doc: Updated graphics/p5-Image-Info to 1.44

(wiz)

2024-01-04 10:53:25 UTC MAIN commitmail json YAML

p5-Image-Info: update to 1.44.

2023-08-03  Slaven Rezic  <slaven@rezic.de>

    Release 1.44

    Stable release with the change in 1.43_50

2023-07-25  Slaven Rezic  <slaven@rezic.de>

    Release 1.43_50

    Support for AVIF files (PR #12, thanks to Zefram and Michael Kroell)

(wiz)

2024-01-04 10:52:47 UTC MAIN commitmail json YAML

doc: Updated graphics/p5-Image-ExifTool to 12.70

(wiz)

2024-01-04 10:52:40 UTC MAIN commitmail json YAML

p5-Image-ExifTool: update to 12.70.

Nov. 19, 2023 - Version 12.70 (production release)

  - This marks the 20th anniversary of the initial ExifTool release!
  - Added ability to read/delete C2PA CAI JUMBF metadata from TIFF-based images
    (eg. DNG), QuickTime-based files (eg. MP4) and WebP images, and read JUMBF
    from other RIFF-based files (eg. WAV, AVI), GIF images and ID3v2 metadata
  - Added read/write support for JPH images
  - Added ability to read Leica Q3 maker notes
  - Added ability to recognize and write FujiFilm M-RAW RAF images (multiple raw
    images in a single file) and the ability to read preview-less RAF images
  - Added support for reading a number of obscure Microsoft EXIF tags
  - Added a few new Sony lenses and support for the ILCE-9M3 (thanks Jos Roost)
  - Added a couple of new Panasonic Leica lenses
  - Added a couple of new Canon RF lenses (thanks Norbert Wasser)
  - Added a number of new CPUType values for ELF executables
  - Added some new Olympus CameraType values
  - Decode a few more ID3v2.2 tags (github #142)
  - Decode a few new Canon G5X Mark II tags (thanks Martin B.)
  - Decode WB_RGGBLevels for a few more Nikon cameras
  - Extract information from FujiFilm M-RAW header
  - Improved decoding of a few Nikon Z tags (thanks Warren Hatch)
  - Marked misspelt XMP-drone-dji:GPSLongtitude tag to Avoid when writing
  - Changed RIFF MaxDataRate conversion to use SI prefixes by default
  - Fixed decoding of unknown ColorBalance information for some Nikon models
  - Fixed an incorrect Nikon Z LensID
  - API Changes:
      - Added ByteUnit option

(wiz)

2024-01-04 10:51:33 UTC MAIN commitmail json YAML

doc: Updated www/p5-HTTP-Cookies to 6.11

(wiz)

2024-01-04 10:51:25 UTC MAIN commitmail json YAML

p5-HTTP-Cookies: update to 6.11.

6.11      2023-12-07 16:36:52Z
    - Replace "Test" with "Test::More" (GH#70) (James Raspass)

(wiz)

2024-01-04 10:50:51 UTC MAIN commitmail json YAML

doc: Updated sysutils/p5-File-Copy-Recursive-Reduced to 0.007

(wiz)

2024-01-04 10:50:44 UTC MAIN commitmail json YAML

p5-File-Copy-Recursive-Reduced: update to 0.007.

0.007 Sat Sep 16 07:48:17 AM EDT 2023
    - Corrections to better accommodate Windows path separators, mostly
      provided by H奪kon H脱gland.

(wiz)

2024-01-04 10:49:59 UTC MAIN commitmail json YAML

doc: Updated time/p5-DateTime-TimeZone to 2.61

(wiz)

2024-01-04 10:49:52 UTC MAIN commitmail json YAML

p5-DateTime-TimeZone: update to 2.61.

2.61    2023-12-30

- This release is based on version 2023d of the Olson database. This release
  includes contemporary changes for Antarctica, Greenland, and Palestine.

(wiz)

2024-01-04 10:49:03 UTC MAIN commitmail json YAML

doc: Updated databases/p5-DBM-Deep to 2.0019

(wiz)

2024-01-04 10:48:55 UTC MAIN commitmail json YAML

p5-DBM-Deep: update to 2.0019.

2.0019    2023-11-12

- improvement so that when you try to put too much data in you get a
  useful error, and don't corrupt the db

2.0018    2023-11-08

- tiny documentation and metadata fixes to make sure people go to the
  correct issue tracker

2.0017    2023-09-01

- get rid of old perl4-style ' package separator and use :: instead
  for compatibility with perl 5.38

(wiz)

2024-01-04 10:47:43 UTC MAIN commitmail json YAML

doc: Updated databases/p5-DBD-SQLite to 1.74

(wiz)

2024-01-04 10:47:35 UTC MAIN commitmail json YAML

p5-DBD-SQLite: update to 1.74.

1.74 2023-09-20
    - Switched to a production version

1.73_01 2023-07-09
    - Upgraded SQLite to 3.42.0
    - Add missing possible table_type values to POD (GH#105, dboehmer++)

(wiz)

2024-01-04 10:45:49 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-Convert-ASN1 to 0.34

(wiz)

2024-01-04 10:45:41 UTC MAIN commitmail json YAML

p5-Convert-ASN1: update to 0.34.

0.34 -- Mon Aug 07 19:46:22 ADT 2023

Bug Fixes

Thanks to chrisridd and fschlich for these bug fixes
  * Fixes: #47 2nd - Debug output using print instead of printf
  * Fixes #47 Debug output using print instead of printf
  * ASN1.pod: fix minor typo

(wiz)

2024-01-04 10:44:27 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-Alien-Libxml2 to 0.19

(wiz)

2024-01-04 10:44:19 UTC MAIN commitmail json YAML

p5-Alien-Libxml2: update to 0.19.

0.19      2022-09-25 08:54:48 -0600

0.18_01  2022-09-23 21:05:53 -0600
  - Use Download::GitLab plugin to fetch recent version of
    libxml2

(wiz)

2024-01-04 10:43:46 UTC MAIN commitmail json YAML

doc: Added devel/p5-Alien-Build-Plugin-Download-GitLab version 0.01

(wiz)

2024-01-04 10:43:37 UTC MAIN commitmail json YAML

devel/Makefile: + p5-Alien-Build-Plugin-Download-GitLab

(wiz)

2024-01-04 10:43:23 UTC MAIN commitmail json YAML

devel/p5-Alien-Build-Plugin-Download-GitLab: import p5-Alien-Build-Plugin-Download-GitLab-0.01

This plugin is designed for downloading assets from a GitLab instance.

(wiz)

2024-01-04 08:06:06 UTC MAIN commitmail json YAML

doc: Updated net/rclone to 1.65.0

(bsiegert)

2024-01-04 08:05:51 UTC MAIN commitmail json YAML

rclone: update to 1.65.0

* New backends
    * Azure Files (karan, moongdal, Nick Craig-Wood)
    * ImageKit (Abhinav Dhiman)
    * Linkbox (viktor, Nick Craig-Wood)
* New commands
    * `serve s3`: Let rclone act as an S3 compatible server (Mikubill, Artur Neumann, Saw-jan, Nick Craig-Wood)
    * `nfsmount`: mount command to provide mount mechanism on macOS without FUSE (Saleh Dindar)
    * `serve nfs`: to serve a remote for use by `nfsmount` (Saleh Dindar)
* New Features
    * install.sh: Clean up temp files in install script (Jacob Hands)
    * build
        * Update all dependencies (Nick Craig-Wood)
        * Refactor version info and icon resource handling on windows (albertony)
    * doc updates (albertony, alfish2000, asdffdsazqqq, Dimitri Papadopoulos, Herby Gillot, Joda Stößer, Manoj Ghosh, Nick Craig-Wood)
    * Implement `--metadata-mapper` to transform metatadata with a user supplied program (Nick Craig-Wood)
    * Add `ChunkWriterDoesntSeek` feature flag and set it for b2 (Nick Craig-Wood)
    * lib/http: Export basic go string functions for use in `--template` (Gabriel Espinoza)
    * makefile: Use POSIX compatible install arguments (Mina Galić)
    * operations
        * Use less memory when doing multithread uploads (Nick Craig-Wood)
        * Implement `--partial-suffix` to control extension of temporary file names (Volodymyr)
    * rc
        * Add `operations/check` to the rc API (Nick Craig-Wood)
        * Always report an error as JSON (Nick Craig-Wood)
        * Set `Last-Modified` header for files served by `--rc-serve` (Nikita Shoshin)
    * size: Dont show duplicate object count when less than 1k (albertony)
* Bug Fixes
    * fshttp: Fix `--contimeout` being ignored (你知道未来吗)
    * march: Fix excessive parallelism when using `--no-traverse` (Nick Craig-Wood)
    * ncdu: Fix crash when re-entering changed directory after rescan (Nick Craig-Wood)
    * operations
        * Fix overwrite of destination when multi-thread transfer fails (Nick Craig-Wood)
        * Fix invalid UTF-8 when truncating file names when not using `--inplace` (Nick Craig-Wood)
    * serve dnla: Fix crash on graceful exit (wuxingzhong)
* Mount
    * Disable mount for freebsd and alias cmount as mount on that platform (Nick Craig-Wood)
* VFS
    * Add `--vfs-refresh` flag to read all the directories on start (Beyond Meat)
    * Implement Name() method in WriteFileHandle and ReadFileHandle (Saleh Dindar)
    * Add go-billy dependency and make sure vfs.Handle implements billy.File (Saleh Dindar)
    * Error out early if can't upload 0 length file (Nick Craig-Wood)
* Local
    * Fix copying from Windows Volume Shadows (Nick Craig-Wood)
* Azure Blob
    * Add support for cold tier (Ivan Yanitra)
* B2
    * Implement "rclone backend lifecycle" to read and set bucket lifecycles (Nick Craig-Wood)
    * Implement `--b2-lifecycle` to control lifecycle when creating buckets (Nick Craig-Wood)
    * Fix listing all buckets when not needed (Nick Craig-Wood)
    * Fix multi-thread upload with copyto going to wrong name (Nick Craig-Wood)
    * Fix server side chunked copy when file size was exactly `--b2-copy-cutoff` (Nick Craig-Wood)
    * Fix streaming chunked files an exact multiple of chunk size (Nick Craig-Wood)
* Box
    * Filter more EventIDs when polling (David Sze)
    * Add more logging for polling (David Sze)
    * Fix performance problem reading metadata for single files (Nick Craig-Wood)
* Drive
    * Add read/write metadata support (Nick Craig-Wood)
    * Add support for SHA-1 and SHA-256 checksums (rinsuki)
    * Add `--drive-show-all-gdocs` to allow unexportable gdocs to be server side copied (Nick Craig-Wood)
    * Add a note that `--drive-scope` accepts comma-separated list of scopes (Keigo Imai)
    * Fix error updating created time metadata on existing object (Nick Craig-Wood)
    * Fix integration tests by enabling metadata support from the context (Nick Craig-Wood)
* Dropbox
    * Factor batcher into lib/batcher (Nick Craig-Wood)
    * Fix missing encoding for rclone purge (Nick Craig-Wood)
* Google Cloud Storage
    * Fix 400 Bad request errors when using multi-thread copy (Nick Craig-Wood)
* Googlephotos
    * Implement batcher for uploads (Nick Craig-Wood)
* Hdfs
    * Added support for list of namenodes in hdfs remote config (Tayo-pasedaRJ)
* HTTP
    * Implement set backend command to update running backend (Nick Craig-Wood)
    * Enable methods used with WebDAV (Alen Šiljak)
* Jottacloud
    * Add support for reading and writing metadata (albertony)
* Onedrive
    * Implement ListR method which gives `--fast-list` support (Nick Craig-Wood)
        * This must be enabled with the `--onedrive-delta` flag
* Quatrix
    * Add partial upload support (Oksana Zhykina)
    * Overwrite files on conflict during server-side move (Oksana Zhykina)
* S3
    * Add Linode provider (Nick Craig-Wood)
    * Add docs on how to add a new provider (Nick Craig-Wood)
    * Fix no error being returned when creating a bucket we don't own (Nick Craig-Wood)
    * Emit a debug message if anonymous credentials are in use (Nick Craig-Wood)
    * Add `--s3-disable-multipart-uploads` flag (Nick Craig-Wood)
    * Detect looping when using gcs and versions (Nick Craig-Wood)
* SFTP
    * Implement `--sftp-copy-is-hardlink` to server side copy as hardlink (Nick Craig-Wood)
* Smb
    * Fix incorrect `about` size by switching to `github.com/cloudsoda/go-smb2` fork (Nick Craig-Wood)
    * Fix modtime of multithread uploads by setting PartialUploads (Nick Craig-Wood)
* WebDAV
    * Added an rclone vendor to work with `rclone serve webdav` (Adithya Kumar)

(bsiegert)

2024-01-04 07:10:14 UTC MAIN commitmail json YAML

ghdl: regen distinfo for patch change

(wiz)

2024-01-04 07:08:30 UTC MAIN commitmail json YAML

asterisk20: remove patch that is not in distinfo

(wiz)

2024-01-04 01:37:09 UTC MAIN commitmail json YAML

awesome: switch back to ImageMagick (7) as a tool dependency

Now that the ImageMagick project has fixed the issue (in both the 6 and
7 releases), we might as well switch back to 7, as it receives more
attention in pkgsrc than 6 does, and 6 shows no greater likelihood of
avoiding regressions, evidently.

(gutteridge)

2024-01-04 01:32:22 UTC MAIN commitmail json YAML

doc: Updated graphics/ImageMagick6 to 6.9.13.3

(gutteridge)

2024-01-04 01:32:09 UTC MAIN commitmail json YAML

2024-01-04 00:10:37 UTC MAIN commitmail json YAML

2024-01-04 00:07:04 UTC MAIN commitmail json YAML

2024-01-04 00:03:12 UTC MAIN commitmail json YAML

doc: Updated finance/p5-Finance-Quote to 1.59

(gutteridge)

2024-01-04 00:03:04 UTC MAIN commitmail json YAML

p5-Finance-Quote: update to 1.59

1.59      2023-12-31 14:52:12-08:00 America/Los_Angeles
* Fixed XETRA, Tradegate and SInvestor after webpage was restructured - Issue #350
* Fidelity.pm temporarily disabled - Issue #346
* Finanzpartner.pm - Fix scraper, did not work if quote was higher than the previous day's quote.
* GoogleWeb.pm - Updated to retrieve mutual fund and BATS prices - Issue #355
* BSEIndia.pm - Updated to use standardized data file at URL
  https://www.bseindia.com/download/BhavCopy/Equity/BSE_EQ_BHAVCOPY_{DDMMYYYY}.ZIP
  Eliminated need to use temp folders by storing standardized file data from URL into a variable.
  Updated names of source fields to conform to those in the standardized data file
* IndiaMutual.pm - Eliminated need to use temp folders by storing nav file data from URL into a variable.
* TMX.pm - Correct a self-reference in documentation - PR #345
* Stooq.pm - Added new currencies and a fix for commodities' prices
* YahooWeb.pm - Skip rows in the price table where the prices are "-".
  This seems to happen sometimes with TIAA (and perhaps other) securities
  including TILIX and QCILIX
* TSP.pm - Was not returning hash when the HTTP GET failed completely
  or the content did not contain the expected CSV file. - Issue #338
* BSEIndia.pm - Removed print when symbol not found - Issue #335

(gutteridge)

2024-01-03 23:32:11 UTC MAIN commitmail json YAML

mail/s-nail: Reset MAINTAINER

The upstream maintainer and a pkgsrc contributor both report not
hearing back from MAINTAINER, so reset.

(gdt)

2024-01-03 20:17:45 UTC pkgsrc-2023Q4 commitmail json YAML

Mention the first three pull-up tickets on the branch

(bsiegert)

2024-01-03 20:17:17 UTC pkgsrc-2023Q4 commitmail json YAML

Pullup ticket #6829 - requested by wiz
devel/py-pybind11: build fix

Revisions pulled up:
- devel/py-pybind11/buildlink3.mk                              1.5

---
  Module Name: pkgsrc
  Committed By: tnn
  Date: Fri Dec 29 20:27:03 UTC 2023

  Modified Files:
  pkgsrc/devel/py-pybind11: buildlink3.mk

  Log Message:
  py-pybind11: avoid duplicate pre-configure target in gnuradio-core

(bsiegert)

2024-01-03 16:28:44 UTC MAIN commitmail json YAML

doc: Updated devel/py-nihtest to 1.4.0nb1

(wiz)

2024-01-03 16:28:37 UTC MAIN commitmail json YAML

2024-01-03 16:14:06 UTC MAIN commitmail json YAML

doc: Updated devel/py-nihtest to 1.4.0

(wiz)

2024-01-03 16:13:57 UTC MAIN commitmail json YAML

py-nihtest: update to 1.4.0.

# 1.4.0 [2024-01-03]

- Add copiers.
- Add `working-directory` directive.
- Add `read-only` directive.

(wiz)

2024-01-03 15:59:34 UTC MAIN commitmail json YAML

devel/ruby-readline: restrict to Ruby 3.1 and 3.2

This is preparation for Ruby 3.3 import.

(taca)

2024-01-03 15:58:42 UTC MAIN commitmail json YAML

www/ruby-html-proofer: remove extra RUBY_VERSIONS_ACCEPTED

(taca)

2024-01-03 15:58:07 UTC MAIN commitmail json YAML

textproc/ruby-classifier-reborn: remove extra RUBY_VERSIONS_ACCEPTED

(taca)

2024-01-03 15:57:15 UTC MAIN commitmail json YAML

sysutils/ruby-chef: remove extra RUBY_VERSIONS_ACCEPTED

(taca)

2024-01-03 15:56:39 UTC MAIN commitmail json YAML

devel/ruby-contracts: remove extra RUBY_VERSIONS_ACCEPTED

(taca)

2024-01-03 15:55:57 UTC MAIN commitmail json YAML

devel/ruby-async: remove extra RUBY_VERSIONS_ACCEPTED

(taca)

2024-01-03 15:35:32 UTC MAIN commitmail json YAML

doc: Updated devel/difftastic to 0.53.1

(pin)

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

devel/difftastic: update to 0.53.1

Build
- Fixed a dependency issue that broke aarch64 builds on older rustc versions.

(pin)

2024-01-03 15:34:09 UTC MAIN commitmail json YAML

doc: Updated graphics/lsix to 1.8.2

(pin)

2024-01-03 15:33:37 UTC MAIN commitmail json YAML

graphics/lsix: update to 1.8.2

1.8.2
- Minor typo from 1.8.1. Compared to 1.8.0, now handles animated webp format
  same as gif (just first frame).

1.8.1
- Only show first frame if no filenames were specified on the command line.

(pin)

2024-01-03 15:33:00 UTC MAIN commitmail json YAML

doc: Updated graphics/nsxiv to 32

(pin)

2024-01-03 15:32:37 UTC MAIN commitmail json YAML

graphics/nsxiv: update to 32

v32 (October 01, 2023)
Changes:
- Removed legacy multi-frame loaders. Animated image support now requires
  Imlib2 v1.8.0 or above.
- Move loading/caching messages to right side bar #446
- Set a default delay if delay is 0 in a multi-frame image #445
- config.mk: default to -O2 #435
- config.mk no longer explicitly sets CC to c99 #455
- Assertions are now opt-in and requires explicitly defining DEBUG #447

Added:
- Added a pick-quit key-binding #432
- Ability to configure Xresources class name in config.h #427
- --version output now also includes compiled-in feature list #462
- Document handling of empty X resources values #428
- Experimental flag --bg-cache to generate thumbnail cache in a background
  process #438

Fixes:
- Changing brightness/contrast on multi-frame images #440
- Brightness keybindings on manpage #467
- Various autoreload bugs #437, #459, #460
- *-info scripts not updating when selecting thumbnail with mouse #477
- Updated openbsd configuration in config.mk #453
- Memory leak in win_draw_bar #444
- Thumbnail leak when removing the last file #423

v31 (January 28, 2023)
Changes:
- Uncritical files moved to etc/. #350
- Empty Xresource entry will now be ignored. #340
- win-title will be read in a non-blocking manner. #314

Added:
- Support for multi-frame images via Imlib2. #373
- Support for long-opts. #332
- Cli flag --anti-alias to enable/disable anti-aliasing. #361
- Cli flag --alpha-layer to enable/disable checkerboard background. #408
- Accept directory via stdin (-i) #383
- Support for modifying brightness and contrast #396

Fixes:
- Build failure when _SC_PHYS_PAGES is not defined. #334
- Various statusbar issues. #353,#341
- Crashes due to faulty signal-handler. #411
- Potential memory leak in r_readdir(). #319
- Potentially printing incorrect error message. #321
- Wrong slideshow length on animated webp. #381
- Document missing Ctrl+6 binding in the manpage. #347

SPECIAL NOTE: Due to this incident we have moved development over to Codeberg.

A lot of the references below may now be 404 on GitHub. Any threads which
survived the wipe have been migrated over to nsxiv-record. All of the references
above can be found on the new main nsxiv repository on Codeberg.

v30 (June 15, 2022)
Changes:
- Development and main repository moved over to Codeberg. See the special note
  above for more info.
- autoreload_{inotify,nop}.c merged into a single file, autoreload.c. #263
- Moved all configuration related macros to config.mk. #264
- win-title is now called only when there's change rather than being called on
  each redraw. #266

Added:
- Added more mimetypes to the .desktop entry. #260
- Added thumb-info for customizing the statusbar in thumbnail-mode. #265
- Added comments for building on OpenBSD. #264

Fixes:
- "Too many open file" error due to not closing the win-title script. #245
- -f now directly starts in fullscreen mode rather than opening a normal
  window and then going fullscreen. #251
- Broken slideshow on slow systems or fast animations. #282
- Memory leak when removing an image in thumbnail mode. #247
- Correctly setting _NET_WM_PID. #251
- Don't override statusbar if info script doesn't exist. #271
- Potential misbehavior regarding font. #250

(pin)

2024-01-03 15:31:58 UTC MAIN commitmail json YAML

doc: Updated misc/rust-kanban to 0.9.0

(pin)

2024-01-03 15:31:07 UTC MAIN commitmail json YAML

misc/rust-kanban: update to 0.9.0

- Dragging and dropping cards is now possible with the mouse!

(pin)

2024-01-03 15:30:23 UTC MAIN commitmail json YAML

doc: Updated chat/senpai to 0.3.0

(pin)

2024-01-03 15:30:06 UTC MAIN commitmail json YAML

chat/senpai: update to 0.3.0

senpai v0.3.0

This is a smaller release, it contains small new features and bug fixes.
- A new setup assistant enables easy configuration after installation.
- An unread indicator bar enables quickly knowing which messages are new
  when switching tabs.
- Desktop notifications are now sent through the terminal automatically.
- A transient/memory-only mode was added, for the SSH demo.
- Emoji auto-completion makes it easier to input emoji.
- Several IRC commands (and replies) were added, including LIST.
- Status messages can now be hidden.
- New color configuration options were added.

(pin)

2024-01-03 15:23:28 UTC MAIN commitmail json YAML

py-zope.testrunner: fix PLIST for Python != 3.12

(wiz)

2024-01-03 15:22:06 UTC MAIN commitmail json YAML

py-pybind11: disallow Python 2 before including pyversion.mk so it works

(wiz)

2024-01-03 14:06:31 UTC MAIN commitmail json YAML

mk/compiler/gcc.mk: Expand comments about language versions/features

Explain more nuances of rounding up to NetBSD-release versions vs not.
Inspired by tech-pkg@ comments by nia@.

(This is a comment-only change.)

(gdt)

2024-01-03 13:30:49 UTC MAIN commitmail json YAML

2024-01-03 12:35:22 UTC MAIN commitmail json YAML

pkgtools/pkg_rolling-replace: Revert unintended change

(Despite an explicit cvs diff of packages to review, ENOTENOUGHCOFFEE
lead to not carrying thatt to the commit.  Sorry for the noise.)

(gdt)

2024-01-03 12:32:59 UTC MAIN commitmail json YAML

pkgtools/*: revbump for libfetch

libfetch's recent behavior change can be viewed as a bugfix or as an
ABI change.  pkg_install vendors libfetch from the sources, for
bootstrapping reasons and thus needs a revbump.  For consistency and
to reduce confusion, also bump the other two packages that depend on
it.

(gdt)

2024-01-03 12:20:22 UTC MAIN commitmail json YAML

mk/compiler.mk: Sort CXX_FEATURES values in comment

c99 sorts before c11 and c17, once the implicit digits are considered.
(Defer worrying about the pending Y2100 C/C++ standards naming
problem.)

This is a comment-only change.

(gdt)

2024-01-03 09:34:53 UTC MAIN commitmail json YAML

doc/TODO: + netsurf-3.11, vim-9.1.

(wiz)

2024-01-03 09:07:29 UTC MAIN commitmail json YAML

xpp: mark as not MAKE_JOBS_SAFE so that mainwindow.h is guaranteed to have been generated before mainwindow.c compiles

(nros)

2024-01-03 08:33:39 UTC MAIN commitmail json YAML

(ham/xnec2c) Fix build by USE_CC_FEATURES+= c17 (for NetBSD 9.0)

(mef)

2024-01-03 08:16:37 UTC MAIN commitmail json YAML

2024-01-03 08:11:51 UTC MAIN commitmail json YAML

(mk/compiler.mk, mk/compiler/gcc.mk) Add c17 on USE_CC_FEATURES (Re: gcc-10.x

(mef)

2024-01-03 07:03:29 UTC MAIN commitmail json YAML

Updated devel/py-traitlets, net/py-comm, net/py-netaddr, net/py-minio

(adam)

2024-01-03 07:03:00 UTC MAIN commitmail json YAML

py-minio: updated to 7.2.3

7.2.2
fix install_requires urllib3

7.2.1
Add type hints for MinioAdmin class
fix remove_objects() example to convert map to list of map
fix part size value appropriately in upload_snowball_objects() API
Add type annotations to xml.py
Add typing to remove_object() API
Add typing to sse.py
Add typing to time.py
Remove 16KiB limit in MinioAdmin crypto functions
Add typing to helpers.py
Add typing in signer.py
Add typing in crypto.py
Add typing in versioningconfig.py
Add typing in tagging.py
Add extra headers to stat_object() API
Remove typing.Dict usage in sse.py
fix typing in xml.py
Add typing in sseconfig.py
Add typing in retention.py
Add typing in objectlockconfig.py
Add typing in legalhold.py
Add typing in error.py
Add typing in deleteobjects.py
Add typing in datatypes.py
Add typing in commonconfig.py
Add typing in lifecycleconfig.py
Add typing in notificationconfig.py
Add typing in replicationconfig.py
fix typing in signer.py
fix: certs path directory
fix typing in versioningconfig.py
Fix typing in tagging py
Add typing in credentials module
fix typing in helpers.py
Add typing in minioadmin.py
Add typing in api.py
Enable mypy check
Update the Python Quickstart README

(adam)

2024-01-03 06:53:25 UTC MAIN commitmail json YAML

py-netaddr: updated to 0.10.1

Release: 0.10.1

Fixed:

* Get rid of some warnings

Deprecated:

* Deprecate the flag shorthands: ``N``, ``P`` and ``Z``. Use :data:`NOHOST`, :data:`INET_PTON`
  and :data:`ZEROFILL` instead.
* Deprecate importing objects from ``netaddr`` subpackages. Only importing things from the
  top-level ``netaddr`` namespace is supported, everything else is considered private.

  This has already been the case but we can use a reminder.
* Deprecate permissive-by-default IPv4 parsing in :func:`valid_ipv4`. The ``inet_pton()``
  semantics (with leading zeros always disallowed) will become the default. Use :data:`INET_ATON`
  and/or :data:`ZEROFILL` flags if you need the legacy behavior.

(adam)

2024-01-03 06:52:26 UTC MAIN commitmail json YAML

py-comm: updated to 0.2.1

0.2.1

Maintenance and upkeep improvements

Update ruff config

Other merged PRs

chore: update pre-commit hooks
Prevent exception spam during interpreter teardown
chore: update pre-commit hooks
chore: update pre-commit hooks

(adam)

2024-01-03 06:50:54 UTC MAIN commitmail json YAML

py-traitlets: updated to 5.14.1

5.14.1

Bugs fixed

- FIX: map - to _ for environement variable prefix.

Maintenance and upkeep improvements

- chore: update pre-commit hooks
- Update ruff config

(adam)

2024-01-03 04:01:52 UTC MAIN commitmail json YAML

doc: Updated devel/git-cinnabar to 0.6.3

(riastradh)

2024-01-03 04:01:38 UTC MAIN commitmail json YAML

devel/git-cinnabar: update to 0.6.3; implement test target

- Fixed handling of null manifests.
- Added support for httppostargs.
- Worked around bug in curl >= 8.3, <= 8.5 with libressl (like on e.g. macOS Sonoma)

(riastradh)

2024-01-03 03:55:12 UTC MAIN commitmail json YAML

doc: Updated net/libfetch to 2.40

(riastradh)

2024-01-03 03:54:46 UTC MAIN commitmail json YAML

net/libfetch: update to 2.40

Validate HTTPS by default, unless environment variable
SSL_NO_VERIFY_PEER is set (from FreeBSD).

WARNING: This changes the semantics of the library in ways that may
break the functionality of existing callers, even callers that don't
ask to fetch HTTPS URLs -- because HTTP may redirect to HTTPS.

WARNING: This does not guarantee fetching HTTPS URLs will return only
authenticated data from the named host.  If the host redirects to
HTTP or FTP, libfetch will follow the redirect and return
unauthenticated data with no way for the caller to know this has
happened (short of disabling redirects altogether -- including
HTTPS-to-HTTPS redirects -- with the undocumented `A' flag).

That's OK for pkgsrc distfile fetch, since we have checksums stored
in pkgsrc for the distfiles, but makes a simple server
misconfiguration a security vulnerability with pkg_add or pkgin (even
with signed packages, because there's a lot of attack surface between
the transport layer and the package signatures).

Discussion on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/12/09/msg028590.html
https://mail-index.netbsd.org/tech-pkg/2023/12/22/msg028654.html

ok gdt (https://mail-index.netbsd.org/tech-pkg/2023/12/31/msg028733.html)

(riastradh)

2024-01-02 23:37:48 UTC MAIN commitmail json YAML

gcc.mk: Add NetBSD 7's compiler version to the list

(gdt)

2024-01-02 23:35:00 UTC MAIN commitmail json YAML

mk/compiler/gcc.mk: Expand comment about version choices

Be more explicit about aligning to versions in NetBSD releases as well
tested and fewer in number than all versions.

(gdt)

2024-01-02 21:00:52 UTC MAIN commitmail json YAML

doc: Added security/sops version 3.8.1

(leot)

2024-01-02 21:00:41 UTC MAIN commitmail json YAML

security: Add sops

(leot)

2024-01-02 21:00:20 UTC MAIN commitmail json YAML

sops: Import sops-3.8.1 as security/sops

sops is an editor of encrypted files that supports YAML, JSON, ENV, INI
and BINARY formats and encrypts with AWS KMS, GCP KMS, Azure Key Vault,
age, and PGP.

Packaged in pkgsrc-wip by myself.

(leot)

2024-01-02 20:49:46 UTC MAIN commitmail json YAML

doc: Updated net/nextcloud-client to 3.11.0

(plunky)

2024-01-02 20:49:28 UTC MAIN commitmail json YAML

2024-01-02 20:41:47 UTC MAIN commitmail json YAML

pixmap: Make the program start, pkglint fixes
pixmap segfaulted on startup, fix implicit
function declarations in build to make it start.
Also fix warning about casting pointer to an int
of different size.
Add comments to some patches.
Set LICENSE.

(nros)

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

doc: Updated shells/starship to 1.17.1

(pin)

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

shells/starship: update to 1.17.1

1.17.1 (2024-01-02)
Bug Fixes
- v1.17.0 post-release fix-ups (#5660) (89dc192)

Reverts
- refactor(modules): use whoami crate to get username (#5669) (a83e107)

(pin)

2024-01-02 20:06:38 UTC MAIN commitmail json YAML

doc: Updated sysutils/broot to 1.32.0

(pin)

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

sysutils/broot: update to 1.32.0

v1.32.0 - 2024-01-02
- whith "modal" enabled, initial_mode setting lets you choose whether to
  start in input mode or command mode (default) - Fix #708

(pin)

2024-01-02 19:57:46 UTC MAIN commitmail json YAML

math/py-numpy: actually blas=blas (cblas implicit) for more correct linkage

(thor)

2024-01-02 17:57:29 UTC MAIN commitmail json YAML

2024-01-02 16:03:02 UTC MAIN commitmail json YAML

doc: Updated textproc/tuc to 1.2.0

(pin)

2024-01-02 16:02:44 UTC MAIN commitmail json YAML

textproc/tuc: update to 1.2.0

[1.2.0] - 2024-01-01
- feat: new option --json to format output as JSON array
- feat: -r can be used when cutting --characters. It replaces the (empty)
  delimiter between characters with whatever you provided
- feat: exit early when some combinations of fields cannot be used together
- feat: updated dependencies. In particular the regex crate which offers new
  functionalities (word boundary assertions)
- fix: field formatting is now applied to field 1 even if no delimiters are
  found (similar to how we print the unformatted field 1)
- doc: many error messages have been rewritten for better clarity
- doc: new svg demo in the README

(pin)

2024-01-02 16:02:00 UTC MAIN commitmail json YAML

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

(pin)

2024-01-02 16:01:41 UTC MAIN commitmail json YAML

shells/oh-my-posh: update to 19.3.1

Bug Fixes
- correct theme memory display template for byte-to-gigabyte conversion
  (e976ce8)
- hyperlink: use built-in format to avoid collisions (bff6353), closes #4569
- nba: adjust test to solve season offset on year end (0c304f0)

(pin)

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

doc: Updated games/minetest to 5.8.0

(gdt)

2024-01-02 14:18:08 UTC MAIN commitmail json YAML

games/minetest: update minetest to 5.8.0

Update prepared in wip by Kevin Bloom

Added buildlink3 for textproc/jsoncpp to avoid used of vendored copy.
Also prevents build error when building on a system that has jsoncpp
installed.

Deprecations and compatibility notes
- Minetest Game is no longer the default game and will no longer be
  shipped by Minetest. If you want it back, install it by using the
  "Content" tab
- C++17 support is now required

Client / Audiovisuals
- Redesign main menu and unify settings interface
- better main menu prompt to install a game when none is installed
- various main menu fixes
- Load package list asynchronously
- Option to invert direction or disable mouse wheel for hotbar item
  selection
- Inventory mouse shortcut improvements
- Holding down Sneak+click while moving the mouse over item slots now
  continously moves items to other inventory (if available)
- Press Sneak+click on the crafting output slot to craft and move
  result to inventory
- While crafting:
  - Left mouse button: Craft as many as possible
  - Mouse wheel: Craft 10 times
  - Right mouse button: Craft once
  - Drag an item stack on the crafting grid to split stacks evenly
  - Hold down Left mouse button while holding an item stack and move
    the cursor over the slots to pick up items of the same type
- Implement check_offset for decorations
- Touchscreen input improvements
- Rendering-related performance improvements and fixes
- Add antialiasing filters
- Reverse eye-offset Z-coordinate in 3rd person front view
- DPI-aware crosshair
- Prevent early respawns caused by up/down button in the death screen
- Sounds and animations are now paused in pause menu in singleplayer
- X11: Add primary selection (copy & paste via select & middleclick)
  support

World / Server / Environment
- Major speedup for crafting shapeless craft recipes
- Fix crash on handling wallmounted nodes with invalid param2
Fix biomes not repecting their Y limits
- Especially thin biomes will now be generated as intended.
- Saner (HTTP) timeout limits and log messages

Script API / Modding
- Add ability to override item images using ItemMetaData
- Add node pos to node damage HP change reason
- Add vector.in_area() utility function
- Add focused styling to buttons
- Add min/max protocol version to minetest.get_version()
- Add additional texture modifiers
- Add node group disable_descend to disable actively descending down
  climbable nodes and nodes with liquid move physics
- Add VoxelArea::intersect()
- Allow nodes to have their post_effect_color affected by lighting
- Fix potential freeze in core.check_for_falling
- Send everlasting particle spawners to all players
- Allow place_param2 = 0 node placement predictions
- New player physics overrides for climb speed, sneak speed,
  acceleration, liquid fluidity and liquid sink speed
- Allow to set custom third person front view camera offset
- Add script to update/generate mod translations:
  util/mod_translation_updater.py
- Add start_time to sound parameter tables

Misc / Maintenance
- Entity/Object fixes and unittests
- Lua environment cleanups and improvements
- Various documentation improvements
- Inventory code fixes
- Many various code fixes
- Opt-out option for Doxygen generation on build
- Sound code cleanups and improvements
  - Long sounds in sound packs, or sent via dynamic media, no longer
    cause client freezes on load
  - Positional sounds can be faded now
  - Documentation
  - Other improvements listed elsewhere
- Faster client load times (#12764 and irr#233)

(gdt)

2024-01-02 11:59:17 UTC MAIN commitmail json YAML

Updated devel/ccache

(adam)

2024-01-02 11:59:02 UTC MAIN commitmail json YAML

ccache: updated to 4.9

Ccache 4.9

New features and improvements

Made ignore_options/CCACHE_IGNOREOPTIONS also skip the option from special processing, similar to how --ccache-skip works.
Added support for expanding environment variables references in all configuration options.
MSVC options /Fd, /FS and /MP are no longer included in the input hash.
Made ccache terminate an ongoing compiler subprocess when terminated on all platforms, not only on Unix.
Added support for multiple -Xarch_* arguments matching -arch.
Added a debug_level/CCACHE_DEBUGLEVEL configuration option, making it possible to tell ccache to only write a log file for each compilation, not other debug files.
Added max_cache_size_kibibyte and max_files_in_cache fields in output from ccache --print-stats.
Paths after -Xclang -include are now rewritten to relative paths if base_dir/CCACHE_BASEDIR is in effect.
Added support for clang --analyze.
Improved processing of input file arguments.
Added support for st_Xtimensec fields in struct stat, thus improving behavior on some BSDs when using newly created include files.
Added support for the undocumented GCC/Clang option --include.

Bug fixes

Ccache now exits more gracefully on invalid sharded remote storage URLs.
Made ccache bail out on too hard options -fmodules-ts, -fmodule-header, -wrapper and -Xclang -ast-dump.
Stopped relying on the st_blocks field in struct stat since it cannot be trusted for filesystems such as ZFS that do transparent compression or deduplication and adjust st_blocks some time in the future.
Fixed crash on Windows for paths with only a drive letter.
Made handling of Clang config options (such as --config-system-dir) more robust.
Fixed compiler type detection when compiler is a symlink called ���clang-cl���.
Made sure to use MSVC logic for clang-cl when handling a precompiled header.
Generalized expansion of remote storage URLs with sharding, for instance making it possible to shard on port number.

Build improvements

Upgraded to xxHash 0.8.2, thereby fixing an error when compiling ccache with -Og.
Fixed sign-compare warning in src/InodeCache.cpp on FreeBSD.
Fixed the CMake option STATIC_LINK on Linux/macOS.
Added the CMake option OFFLINE, defaulting to the value of the standard variable FETCHCONTENT_FULLY_DISCONNECTED (which is OFF by default), to disable downloading anything from the internet.
Fixed warnings about unused functions on new MSVC versions.
Made sure to set both C and C++ CMake compiler launcher variables if either is set.

Documentation improvements

The manual now mentions that system_headers sloppiness is not supported for MSVC.

Test improvements

Fixed regex in direct.bash.

(adam)

2024-01-02 10:54:57 UTC MAIN commitmail json YAML

py-hmmlearn: Fix PYTHON_VERSIONS_INCOMPATIBLE.

(jperkin)

2024-01-02 08:43:19 UTC MAIN commitmail json YAML

doc: Updated devel/scons4 to 4.6.0.post1

(wiz)

2024-01-02 08:43:10 UTC MAIN commitmail json YAML

scons4: update to 4.6.0.post1

This new release removes the pycache files that were accidentally
included in the previous one.

(wiz)

2024-01-02 07:34:02 UTC MAIN commitmail json YAML

2024-01-02 07:26:32 UTC MAIN commitmail json YAML

2024-01-02 06:26:47 UTC MAIN commitmail json YAML

doc: Updated audio/parlatype to 4.0

(ryoon)

2024-01-02 06:26:37 UTC MAIN commitmail json YAML

parlatype: Update to 4.0

Changelog:
4.0:
Main changes

    Switch to GTK 4
    Screenshots for help pages are generated automatically
    Fix an MPRIS related crash

(ryoon)

2024-01-02 06:17:29 UTC MAIN commitmail json YAML

doc: Updated textproc/itstool to 2.0.7nb5

(ryoon)

2024-01-02 06:17:15 UTC MAIN commitmail json YAML

2024-01-02 00:54:23 UTC MAIN commitmail json YAML

textproc: Enable enju

(ryoon)

2024-01-02 00:53:26 UTC MAIN commitmail json YAML

doc: Added textproc/enju version 2.4.4pre20180629

(ryoon)

2024-01-02 00:53:07 UTC MAIN commitmail json YAML

textproc/enju: import enju-2.4.4pre20180629

Enju is an accurate natural language parser for English. With a
wide-coverage probabilistic HPSG grammar and an efficient parsing
algorithm, this parser can effectively analyze syntactic/semantic
structures of English sentences and provide a user with phrase
structures and predicate-argument structures.  Those outputs would
be especially useful for high-level NLP applications, including
information extraction, automatic summarization, question answering,
and machine translation, where the "meaning" of a sentence plays
a central role.

(ryoon)

2024-01-02 00:43:41 UTC MAIN commitmail json YAML

doc: Ajust previous

(ryoon)

2024-01-02 00:43:09 UTC MAIN commitmail json YAML

ghdl: Bump PKGREVISION for previous

(ryoon)

2024-01-02 00:42:14 UTC MAIN commitmail json YAML

doc: Updated cad/ghdl to 3.0.0nb1

(ryoon)

2024-01-02 00:42:03 UTC MAIN commitmail json YAML

2024-01-02 00:37:50 UTC MAIN commitmail json YAML

doc: Updated math/py-networkx to 3.2.1

(ryoon)

2024-01-02 00:37:38 UTC MAIN commitmail json YAML

py-networkx: Update to 3.2.1

Changelog:
3.2.1:

Release date: 28 October 2023

Supports Python 3.9, 3.10, 3.11, and 3.12.

NetworkX is a Python package for the creation, manipulation, and study of the
structure, dynamics, and functions of complex networks.

For more information, please visit our website and our gallery of examples.
Please send comments and questions to the networkx-discuss mailing list.

API Changes#

  * Disallow negative number of nodes in complete_multipartite_graph (#7057).

Enhancements#

  * Add Tadpole graph (#6999).

Bug Fixes#

  * Fix listing of release notes on Releases page (#7030).

  * Fix syntax warning from bad escape sequence (#7034).

  * Fix triangles to avoid using is to compare nodes (#7041).

  * Fix error message for nx.mycielski_graph(0) (#7056).

  * Disallow negative number of nodes in complete_multipartite_graph (#7057).

Documentation#

  * Update release process (#7029).

  * fix extendability function name in bipartite.rst (#7042).

  * Minor doc cleanups to remove doc build warnings (#7048).

Maintenance#

  * fix: Explicitly check for None/False in edge_attr during import from np (#
    6825).

  * Add favicon (#7043).

  * Remove unused code resistance_distance (#7053).

  * Fix names of small graphs (#7055).

  * Improve error messages for misconfigured backend treatment (#7062).

Other#

  * Update convert_matrix.py (#7018).

3.2:

Release date: 18 October 2023

Supports Python 3.9, 3.10, 3.11, and 3.12.

NetworkX is a Python package for the creation, manipulation, and study of the
structure, dynamics, and functions of complex networks.

For more information, please visit our website and our gallery of examples.
Please send comments and questions to the networkx-discuss mailing list.

Highlights#

  * Add @nx._dispatch decorator to most algorithms (#6688).

API Changes#

  * Remove topo_order kwarg from is_semiconnected without deprecation (#6651).

  * deprecate Edmonds class (#6785).

  * Make weight part of the API for functions which had default assumptions (#
    6814).

  * ENH: let users set a default value in get_attr methods (#6887).

  * Rename function join as join_trees (#6908).

  * API: Add a decorator to deprecate positional args (#6905).

  * Expire deprecation for attrs kwarg in node_link module (#6939).

  * Minor touchup to the sort_neighbors deprecation (#6942).

  * Rm deprecated create_using kwarg from scale_free_graph (#6940).

  * Make position part of the API for geometric_edges (#6816).

  * Undeprecate literal_(de)stringizer (#6943).

  * Make new dtype param for incidence_matrix kwarg-only (#6954).

  * Make weight and seed for fast_label_propagation_communities kwarg only (#
    6955).

  * API: Rm default value from time_delta for cd_index (#6953).

  * Deprecate strongly_connected_components_recursive (#6957).

  * Rm deprecated clique helper functions (#6941).

Enhancements#

  * Update calculation of triangles (#6258).

  * Add single_source_all_shortest_paths and all_pairs_all_shortest_paths (#
    5959).

  * Add @nx._dispatch decorator to most algorithms (#6688).

  * Move benchmarks inside main repo (#6835).

  * ENH ?? Replaced for-loops in :function:rescale_layout with numpy vectorized
    methods (#6879).

  * Fast label propagation algorithm for community detection (#6843).

  * Add time series Visibility Graph generator (#6880).

  * Random trees & forests (#6758).

  * Add support for tuple-nodes to default gml parser (#6950).

  * Add Kemeny??s constant (#6929).

  * Speedup resistance_distance (#6925).

  * Allow graph generators and conversion functions to be dispatched (#6876).

  * adding extendability problem (2nd try) (#4890).

Bug Fixes#

  * Fixing DOT format for to_agraph() (#6474).

  * Remove topo_order kwarg from is_semiconnected without deprecation (#6651).

  * Stabilize test of approximation.connected_components (#6715).

  * Fix minimum_cycle_basis and change to return cycle instead of set (#6788).

  * Refix minimum_cycle_basis and scipy.sparse conversions and add tests (#6789
    ).

  * number_of_walks might use a weighted edge attribute (#6815).

  * GML: added support for reading multi-line values (#6837).

  * Avoid directed_laplacian_matrix causing nans in some cases (#6866).

  * Add test about zero weight cycles and fix goldberg-radzik (#6892).

  * Modify s_metric normalized default so function doesn??t raise (#6841).

  * Error handling for invalid prufer sequence from_prufer_sequence: issue #
    6420 (#6457).

  * FIX: Better default behaviour for percolation centrality with no node attrs
    (#6894).

  * FIX: MultiDiGraphs keys got lost in weighted shortest paths (#6963).

  * Handle edge cases in Laplacian centrality (#6938).

  * adding a formula that ignores self-loops at the each level of directed
    louvain algorithm (#6630).

  * Fix ````is_k_edge_connected```` for case of k=2 (#7024).

Documentation#

  * Fix links in laplacian_centrality and laplacian_matrix (#6623).

  * Add Greedy Coloring Example to Gallery (#6647).

  * Add linting to contributor guide (#6692).

  * Minor fixups to equitable_coloring docstring (#6673).

  * Remove survey banner (#6818).

  * fix: make messages readable (#6860).

  * add docs for source input of dfs_predecessor and dfs_successor (#6867).

  * Clarify that basis generates simple cycles only (#6882).

  * Revert ??Clarify that basis generates simple cycles only?? (#6885).

  * updating TSP example docs (#6794).

  * MAINT: Point the PR template to pre-commit (#6902).

  * fix doc build errors/warnings (#6907).

  * DOC: stray backtick and double instead of simple backtick (#6917).

  * DOC: Add example for self loop multidigraph in contraction (#6901).

  * Fix sphinx docs rendering of dispatched functions (#6895).

  * added more examples on graphical degree sequence (#5634).

  * Minor touchup to the sort_neighbors deprecation (#6942).

  * Warning comment for float weights in betweenness.py (#5171).

  * DOC: Misc typos (#6959).

  * Fixing typo in effective_size documentation (#6967).

  * fix examples in tournament.py (#6964).

  * Fix a reference (#6977).

  * Add missing parameter to snap_aggregation docstring (#6978).

  * Update developer deprecation todo list (#6985).

  * Add ??networkx.plugin_info?? entry point and update docstring (#6911).

  * document graph type; add links; rm unused import (#6992).

  * Add GraphBLAS backend to online docs (#6998).

  * Add 3.2rc0 release notes (#6997).

  * Update release process for changelist (#7005).

  * Update contributing guide for changelist workflow (#7004).

  * Fix definition of \(m\) parameter in docstring of modularity function (#
    6990).

  * updated docs of SA_tsp and TA_tsp (#7013).

  * Update katz_centrality missing default alpha value (#7015).

Maintenance#

  * Replacing codecov Python CLI with gh action (#6635).

  * Bump pyupgrade minimum Python version to 3.9 (#6634).

  * MAINT: minor coverage cleanup (#6674).

  * Rm unreachable code for validating input (#6675).

  * Pin sphinx<7 as temporary fix for doc CI failures (#6680).

  * Example of improving test granularity related to #5092 (#5094).

  * MAINT: Bump scipy version and take advantage of lazy loading (#6704).

  * Drop support for Python 3.8 per SPEC0 (#6733).

  * Update pygraphviz (#6724).

  * Update core dependencies per SPEC0 (#6734).

  * Test on Python 3.12-beta2 (#6737).

  * update the OSMnx example (#6775).

  * Minor fixups to clear up numpy deprecation warnings (#6776).

  * Add label-check workflow (#6797).

  * Use dependabot (#6799).

  * Bump webfactory/ssh-agent from 0.7.0 to 0.8.0 (#6800).

  * Attach milestone to merged PRs (#6802).

  * Add preserve_all_attrs to convert_from_nx to make it concise (#6812).

  * Bump scientific-python/attach-next-milestone-action from
    f94a5235518d4d34911c41e19d780b8e79d42238 to
    bc07be829f693829263e57d5e8489f4e57d3d420 (#6830).

  * Relax threshold in test of betweenness_centrality (#6827).

  * Add @nx._dispatch to {single_source,all_pairs}_all_shortest_paths, cd_index
    (#6832).

  * ci: Add distribution verification checks to nightly wheel upload (#6831).

  * MAINT: fix link to nightly releases wheels (#6845).

  * Don??t test numpy2 nightlies (#6852).

  * MAINT: replace numpy aliases in scipy namespace (#6857).

  * Unpin scipy upperbound for tests (#6727).

  * Temporary work-around for NEP 51 numpy scalar reprs + NX doctests (#6856).

  * Unpin numpy nightly wheels (#6854).

  * fix: make messages readable (#6860).

  * Revert ??Pin sphinx<7 as temporary fix for doc CI failures (#6680)?? (#6859
    ).

  * Change _dispatch to a class instead of a closure (#6840).

  * Move random_state decorators before @nx._dispatch (#6878).

  * MAINT: Make GEXF and graphml writer work with numpy 2.0 (#6900).

  * Rename function join as join_trees (#6908).

  * add missing join deprecation stuff to release_dev and conftest (#6933).

  * MAINT: move dispatch test workflow as an independent CI job (#6934).

  * MAINT: Use importlib.resources instead of file dunder to access files (#
    6936).

  * DOC, MAINT: Deduplicate docs instructions (#6937).

  * MAINT: Raise clean error with random_triad for graph with <3 nodes (#6962).

  * Update numpydoc (#6773).

  * MAINT: update pre-commit tools deps (#6965).

  * MAINT: Clean up commented out code in triads (#6961).

  * MAINT: Scipy nightly failing with np alias (#6969).

  * Bump actions/checkout from 3 to 4 (#6970).

  * Add for testing new pydata-sphinx-theme PR (#6982).

  * MAINT: Disable building delaunay geospatial example temporarily (#6981).

  * Revert ??MAINT: Disable building delaunay geospatial example temporarily??
    (#6984).

  * Enhancements change default join trees 6947 (#6948).

  * Update sphinx theme (#6930).

  * Generate requirements files from pyproject.toml (#6987).

  * Use trusted publisher (#6988).

  * Prefer ??backend?? instead of ??plugin?? (#6989).

  * CI: Pin scientific-python/upload-nightly-action to 0.2.0 (#6993).

  * Support Python 3.12 (#7009).

  * pip install nx-cugraph from git, not nightly wheels, for docs (#7011).

  * Fix typos (#7012).

Other#

  * Update release process (#6622).

  * Add Lowest Common Ancestor example to Gallery (#6542).

  * Add examples to bipartite centrality.py (#6613).

  * Remove Python 3.8 from CI (#6636).

  * Fix links in eigenvector.py and katz_centrality.py (#6640).

  * Use the correct namespace for girvan_newman examples (#6643).

  * Preserve node order in bipartite_layout (#6644).

  * Make cycle_basis() deterministic (#6654).

  * Added docstrings examples for clique.py (#6576).

  * Fix output of is_chordal for empty graphs (#6563).

  * Allow multiple graphs for @nx._dispatch (#6628).

  * Adding GitHub Links next to Dheeraj??s name in the contributors list (#6670
    ).

  * Adding is_tounament to main namespace (#6498).

  * Use unpacking operator on dicts to prevent constructing intermediate
    objects (#6040).

  * Added tests to test_correlation.py (#6590).

  * Improve test coverage for neighbor_degree.py (#6589).

  * Added docstring examples for nx_pylab.py (#6616).

  * Improve Test Coverage for current_flow_closeness.py (#6677).

  * try adding circleci artifact secret (#6679).

  * Improve test coverage for reaching.py (#6678).

  * added tests to euler.py (#6608).

  * codespell: pre-commit, config, typos fixed (#6662).

  * Improve test coverage for mst.py (#6540).

  * Handle weights as distance= in testing dispatch (#6671).

  * remove survey banner (#6687).

  * CircleCI: add token for image redirector (#6695).

  * MAINT: Add subgraph_view and reverse_view to nx namespace directly through
    graphviews (#6689).

  * Added docstring example for dense.py (#6669).

  * MAINT: Add a github action cron job to upload nightly wheels (#6701).

  * MAINT: fix file path in nightly build workflow (#6702).

  * Add example script for shortest path (#6534).

  * Added doctrings for generic_graph_view (#6697).

  * Doc: wrong underline length (#6708).

  * MAINT: cron job to test against nightly deps every week (#6705).

  * simplify stack in dfs (#6366).

  * optimize generic_bfs_edges function (#6359).

  * Optimize _plain_bfs functions (#6340).

  * Added girth computation function (#6633).

  * MAINT: Stop CI from uploading nightly on forks (#6717).

  * Performance improvement for astar_path (#6723).

  * Skip scipy-1.11.0rc1 due to known issue (#6726).

  * Add an optional argument to the incidence_matrix function to provide ?? (#
    6725).

  * Graph walks implementation by jfinkels & dtekinoglu (#5908).

  * DOCS: Add walks to algorithms.index (#6736).

  * Add note about using latex formatting in docstring in the contributor guide
    (#6535).

  * Fix intersection_all method (#6744).

  * Fix Johnson method for unweighted graphs (#6760).

  * MAINT: Ignore SciPy v1.11 in requirements (#6769).

  * Replace deprecated numpy.alltrue method (#6768).

  * keep out scipy 1.11.1 (#6772).

  * Document additional imports required for building the documentation (#6766
    ).

  * modified max_weight_matching to be non-recursive (#6684).

  * Rewrite NXEP 3 (#6648).

  * Refactor edmonds algorithm (#6743).

  * Docstring improvement for nx_pylab.py (#6602).

  * Use pyproject.toml (#6774).

  * Include missing package_data (#6780).

  * [BUG] Patch doc and functionality for is_minimal_d_separator (#6427).

  * Update to the documentation of eigenvector centrality (#6009).

  * Fix typo in contributing page (#6784).

  * Fix empty graph zero division error for louvain (#6791).

  * Vertical chains for network text (#6759).

  * Time dependent module (#6682).

  * Allow user to opt out of edge attributes in from_numpy_array (#6259).

  * modifies ````bfs_edges```` and adds warning to ````generic_bfs_edges```` (#
    5925).

  * Spelling (#6752).

  * Added test cases for join operation and fixed join operation to handle
    label_attributes (#6503).

  * Remove serialisation artifacts on adjacency_graph (#6041).

  * Patch view signature (#6267).

  * Doc add nongraphical examples 6944 (#6946).

  * feat: docstring examples for algorithms/operators/all.py (#6974).

(ryoon)

2024-01-02 00:21:25 UTC MAIN commitmail json YAML

doc: Updated emulators/xroar to 1.4.2

(ryoon)

2024-01-02 00:21:01 UTC MAIN commitmail json YAML

xroar: Update to 1.4.2

Changelog:
Version 1.4.2, Tue 16 Jun 2023

* Fix running with -ui null

Version 1.4.1, Tue  6 Jun 2023

* Fix composite colour switching in -ccr simple and -ccr 5bit [Keith Palmer]

Version 1.4, Mon  5 Jun 2023

* NTSC colour tweaks for slightly better "cyan"
* Initial support for middle-button paste
* Add brightness, contrast, saturation & hue controls to GTK+ and Windows UIs
* Add gain/volume controls to GTK+ and Windows UIs
* New options: -vo-brightness, -vo-contrast, -vo-colour, -vo-hue
* New tape control & drive control windows in Windows UI
* GIME: implement bug in 16-colour, 16 byte-per-row modes
* New option -vo-pixel-fmt specifies pixel layout and bit depth
* Old NTSC-only composite renderer renamed -ccr partial
* New composite renderer that handles PAL used for -ccr simulated
* WD279x: write sync bytes before DAM (fixes written-to DMK) [Michael Furman]
* New option: -no-vo-colour-killer

Version 1.3.1, Tue 14 Feb 2023

* Further GIME VSC tweaks
* Allow preemption of Control key (for CoCo 3)
* Fix GTK+ zoom in/out
* Work around build issues on Apple Silicon [Allen Huffman, Blair Leduc]

Version 1.3, Wed  4 Jan 2023

* Add -no-ratelimit option to start at maximum speed
* Further fixes to 6809 TFR/EXG involving CC/DP [Tim Lindner]
* Fix Delta density select [Phill Harvey-Smith]
* Track floppy disk 'dirty' state to avoid unnecessary image rewrites
* Important: disk write-back now defaults to ENABLED
* Better Vertical SCroll register behaviour in GIME [Ralph Serpas]
* 6309 timing fix for bit operations

Version 1.2, Thu 27 Oct 2022

* Fixed comma, lowercase 'm', lowercase '淡' glyphs for GIME [Tim Lindner]
* Fix SDL-only builds
* 6809: flesh out some illegal instruction behaviours [David Banks]
* 6309: flesh out some undocumented behaviour [David Banks]
* Fleshed out T1-compatibility in CoCo 3 GIME [R. Allen Murphy]

Version 1.1, Thu 21 Jul 2022

* New GDB monitor commands [by Tormod Volden]
* New configure options to only build specific machine archs
* Support 1M or 2M in CoCo 3 [with Christopher Hawks]
* Support K7 cassette image files (read-only)
* Support UTF-8 block characters in -type for MC-10
* Type ASCII BASIC from file on MC-10
* Matra & Hachette Alice support (keyboard layout, built-in profile)
* New meta-options -machine-opt and -cart-opt
* New ide-addr=address cart-opt
* New abstract block device handling
* IDE support adjusted to use abstracted block devices
* MOOH/NX32 support adjusted to use abstracted block devices
* 6801/6803: fix some illegal instruction timings [George Phillips]
* Fixed uppercase 'G', lowercase 'j' and 'w' glyphs for 6847T1 [Tim Lindner]

Version 1.0.9, Tue 18 Jan 2022

* Close file after serialisation [Steve Rasmussen]

Version 1.0.8, Thu 13 Jan 2022

* Fix WASM audio for non-Firefox [Greg Dionne]
* Fix crash reading zero-length CAS file
* Fix joystick reads for Pacdude Monster Maze

Version 1.0.7, Sat  1 Jan 2022

* Fix Windows 11 video (set SDL hint to use different renderer)

Version 1.0.6, Fri 31 Dec 2021

* Fix SDL audio thread interactions
* Try multiple SDL video renderers in order
* Fix composite phase setting

Version 1.0.5, Thu 23 Dec 2021

* Open IDE images in binary mode under Windows [by Tormod Volden]

Version 1.0.4, Sun 12 Dec 2021

* GIME IO range fixes [Roger Taylor]
* Enable GDB for CoCo 3 [Michael Furman]
* Fix HD6309 TFM when W=0 [Michael Furman, L. Curtis Boyle]

Version 1.0.3, Mon  6 Dec 2021

* 6801/6803: many more illegal instructions [Greg Dionne, Ron Klein]
* Fix EXTMEM signalling for writes to RAM [Stewart Orchard]
* MC10: Constrain video to internal 4K RAM [Simon Jonassen]
* Default -ao-fragments changed for new SDL audio [Steve Bamford]
* MPI: return to selected slot on reset ["dragonnostalgia", Tim Lindner]

(ryoon)

2024-01-02 00:13:16 UTC MAIN commitmail json YAML

(meta-pkgs/boost)  Drop patch, now corrected upstream

(mef)

2024-01-01 22:18:12 UTC MAIN commitmail json YAML

zziplib: add missing pkgconfig overrides

(nros)

2024-01-01 19:51:20 UTC MAIN commitmail json YAML

open-simh: avoid clang warnings for gcc-specific optimizations. NFCI.

(schmonz)

2024-01-01 19:39:24 UTC MAIN commitmail json YAML

doc: Updated devel/cargo-c to 0.9.29

(pin)